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 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906
|
<?xml version="1.0" encoding="UTF-8"?>
<map xmlns="http://openorienteering.org/apps/mapper/xml/v2" version="9">
<notes></notes>
<georeferencing scale="4000" auxiliary_scale_factor="0.999925" declination="2.35" grivation="0.37"><ref_point x="10" y="35"/><projected_crs id="UTM"><spec language="PROJ.4">+proj=utm +datum=WGS84 +zone=32</spec><parameter>32 N</parameter><ref_point x="696686.398978" y="5347699.134904"/></projected_crs><geographic_crs id="Geographic coordinates"><spec language="PROJ.4">+proj=latlong +datum=WGS84</spec><ref_point_deg lat="48.25195669" lon="11.64973926"/></geographic_crs></georeferencing>
<colors count="39">
<color priority="0" name="Purple" c="0.2" m="1" y="0" k="0" opacity="1"><spotcolors><namedcolor>PURPLE</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.8" g="0" b="1"/></color>
<color priority="1" name="Purple 50%" c="0.1" m="0.5" y="0" k="0" opacity="1"><spotcolors><component factor="0.5" spotcolor="0"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.9" g="0.5" b="1"/></color>
<color priority="2" name="Black" c="0" m="0" y="0" k="1" opacity="1"><spotcolors knockout="true"><namedcolor>BLACK</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0" g="0" b="0"/></color>
<color priority="3" name="Red for logos" c="0" m="1" y="1" k="0" opacity="1"><spotcolors knockout="true"><namedcolor>RED</namedcolor></spotcolors><cmyk method="rgb"/><rgb method="custom" r="1" g="0" b="0"/></color>
<color priority="4" name="Opaque White below Black" c="0" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="5" name="Brown for contours" c="0" m="0.56" y="1" k="0.18" opacity="1"><spotcolors><component factor="1" spotcolor="23"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.82" g="0.361" b="0"/></color>
<color priority="6" name="Black 50-65% for buildings" c="0" m="0" y="0" k="0.65" opacity="1"><spotcolors knockout="true"><component factor="0.65" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.35" g="0.35" b="0.35"/></color>
<color priority="7" name="Black 50%" c="0" m="0" y="0" k="0.5" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.5" g="0.5" b="0.5"/></color>
<color priority="8" name="Black 30%" c="0" m="0" y="0" k="0.3" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.7" g="0.7" b="0.7"/></color>
<color priority="9" name="Black 20%" c="0" m="0" y="0" k="0.2" opacity="1"><spotcolors knockout="true"><component factor="0.2" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.8" g="0.8" b="0.8"/></color>
<color priority="10" name="Green, Black 50% above Brown" c="0.76" m="0" y="0.91" k="0.5" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="30"/><component factor="0.5" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.12" g="0.5" b="0.045"/></color>
<color priority="11" name="Opaque Blue above Brown" c="0.87" m="0.18" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="18"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.13" g="0.82" b="1"/></color>
<color priority="12" name="Blue above Brown" c="0.87" m="0.18" y="0" k="0" opacity="1"><spotcolors><component factor="1" spotcolor="18"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.13" g="0.82" b="1"/></color>
<color priority="13" name="Green above Brown" c="0.76" m="0" y="0.91" k="0" opacity="1"><spotcolors><component factor="1" spotcolor="30"/><component factor="0" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.24" g="1" b="0.09"/></color>
<color priority="14" name="Brown 20-50% for paved area, non-urban" c="0" m="0.224" y="0.4" k="0.072" opacity="1"><spotcolors knockout="true"><component factor="0.4" spotcolor="23"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.928" g="0.744" b="0.6"/></color>
<color priority="15" name="Brown 0-30% for paved area, urban" c="0" m="0.112" y="0.2" k="0.036" opacity="1"><spotcolors knockout="true"><component factor="0.2" spotcolor="23"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.964" g="0.872" b="0.8"/></color>
<color priority="16" name="Black below light browns" c="0" m="0" y="0" k="1" opacity="1"><spotcolors><component factor="1" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0" g="0" b="0"/></color>
<color priority="17" name="Opaque Blue" c="0.87" m="0.18" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="18"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.13" g="0.82" b="1"/></color>
<color priority="18" name="Blue" c="0.87" m="0.18" y="0" k="0" opacity="1"><spotcolors><namedcolor>BLUE</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.13" g="0.82" b="1"/></color>
<color priority="19" name="White for logo" c="0" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0" spotcolor="18"/></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="1" g="1" b="1"/></color>
<color priority="20" name="Blue 75%" c="0.653" m="0.135" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.75" spotcolor="18"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.348" g="0.865" b="1"/></color>
<color priority="21" name="Blue 30%" c="0.261" m="0.054" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="18"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.739" g="0.946" b="1"/></color>
<color priority="22" name="OpenOrienteering Blue 50%" c="0.435" m="0.09" y="0" k="0" opacity="1"><spotcolors><component factor="0.5" spotcolor="18"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.565" g="0.91" b="1"/></color>
<color priority="23" name="Brown" c="0" m="0.56" y="1" k="0.18" opacity="1"><spotcolors><namedcolor>BROWN</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.82" g="0.361" b="0"/></color>
<color priority="24" name="OpenOrienteering Orange" c="0" m="0.474" y="0.895" k="0.09" opacity="1"><spotcolors><component factor="0.5" spotcolor="23"/><component factor="1" spotcolor="34"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.91" g="0.497" b="0.105"/></color>
<color priority="25" name="Grey" c="0" m="0" y="0" k="0.2" opacity="1"><spotcolors knockout="true"><component factor="0.2" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.8" g="0.8" b="0.8"/></color>
<color priority="26" name="Green 50%, Yellow" c="0.38" m="0.27" y="0.886" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="30"/><component factor="1" spotcolor="34"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.62" g="0.73" b="0.114"/></color>
<color priority="27" name="White over Green" c="0" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0" spotcolor="30"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="28" name="Green, Black 50%" c="0.76" m="0" y="0.91" k="0.5" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="30"/><component factor="0.5" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.12" g="0.5" b="0.045"/></color>
<color priority="29" name="Opaque Green" c="0.76" m="0" y="0.91" k="0" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="30"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.24" g="1" b="0.09"/></color>
<color priority="30" name="Green" c="0.76" m="0" y="0.91" k="0" opacity="1"><spotcolors><namedcolor>GREEN</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.24" g="1" b="0.09"/></color>
<color priority="31" name="Green 60%" c="0.456" m="0" y="0.546" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.6" spotcolor="30"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.544" g="1" b="0.454"/></color>
<color priority="32" name="Green 30%" c="0.228" m="0" y="0.273" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="30"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.772" g="1" b="0.727"/></color>
<color priority="33" name="Green below light greens" c="0.76" m="0" y="0.91" k="0" opacity="1"><spotcolors><component factor="1" spotcolor="30"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.24" g="1" b="0.09"/></color>
<color priority="34" name="Yellow" c="0" m="0.27" y="0.79" k="0" opacity="1"><spotcolors><namedcolor>YELLOW</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="1" g="0.73" b="0.21"/></color>
<color priority="35" name="Yellow 50%" c="0" m="0.135" y="0.395" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="34"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="0.865" b="0.605"/></color>
<color priority="36" name="White over Yellow 70%" c="0" m="0" y="0" k="0" opacity="1"><spotcolors><component factor="0" spotcolor="34"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="37" name="Yellow 70%" c="0" m="0.189" y="0.553" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.7" spotcolor="34"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="0.811" b="0.447"/></color>
<color priority="38" name="Blue 30% for map frame" c="0.261" m="0.054" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="18"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.739" g="0.946" b="1"/></color>
</colors>
<barrier version="6" required="0.6.0">
<symbols count="182" id="ISSOM">
<symbol type="2" id="0" code="101" name="Contour"><description>A line joining points of equal height. The standard vertical interval between contours is 2 or 2.5 m. To emphasize the 3-dimensional effect of the contour line image, contour lines shall be represented as continuous lines through all symbols, also building (526.1) and canopy (526.2). However, contour lines shall be cut out for better legibility, if they touch the following symbols: small earth wall (108.1), small knoll (112), small elongated knoll (113), small depression (115), pit or hole (116), prominent landform feature (118), step or edge of paved area (529.1).
The relative height difference between neighbouring features must be represented on the map as accurately as possible. Absolute height accuracy is of less importance. It is permissible to alter the height of a contour slightly if this will improve the representation of a feature. This deviation should not exceed 25% of the contour interval and attention must be paid to neighbouring features. The smallest bend in a contour is 0.4 mm from centre to centre of the lines.</description><line_symbol color="5" line_width="210" minimum_length="0" join_style="2" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="1" code="102" name="Index contour"><description>Every fifth contour shall be drawn with a thicker line. This is an aid to the quick assessment of height difference and the overall shape of the terrain surface. Where an index contour coincides with an area of much detail, it may be shown with symbol contour (101).</description><line_symbol color="5" line_width="350" minimum_length="0" join_style="2" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="2" code="103" name="Form line"><description>An intermediate contour line. Form lines are used where more information can be given about the shape of the ground. They are used only where representation is not possible with ordinary contours. Only one form line may be used between neighbouring contours.</description><line_symbol color="5" line_width="210" minimum_length="0" join_style="2" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1870" break_length="350" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="3" code="104" name="Slope line"><description>Slope lines should be drawn on the lower side of a contour line where it is necessary to clarify the direction of slope, e.g. along the line of a re-entrant or in a depression.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="5" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 0;0 -750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="8" id="4" code="105" name="Contour value"><description>Contour values may be included to aid assessment of large height differences. They are inserted in the index contours in positions where other detail is not obscured. The figures should be orientated so that the top of the figure is on the higher side of the contour.</description><text_symbol icon_text="375" rotatable="true"><font family="Arial" size="2117"/><text color="5" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="2" id="5" code="106.0" name="Earth bank"><description>A steep earth bank is an abrupt change in ground level which can be clearly distinguished from its surroundings, e.g. gravel or sand pits, roads and railway cuttings or embankments. The tags should show the full extent of the slope, but may be omitted if two banks are close together. Impassable banks shall be drawn with the symbol impassable cliff (201). The line width of very high earth banks may be 0.37 mm.</description><line_symbol color="23" line_width="270" minimum_length="325" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="380" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="23" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 750;0 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="6" code="106.1" name="Earth bank, very high"><description>A steep earth bank is an abrupt change in ground level which can be clearly distinguished from its surroundings, e.g. gravel or sand pits, roads and railway cuttings or embankments. The tags should show the full extent of the slope, but may be omitted if two banks are close together. Impassable banks shall be drawn with the symbol impassable cliff (201). The line width of very high earth banks may be 0.37 mm.</description><line_symbol color="23" line_width="370" minimum_length="325" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="380" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="23" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 750;0 100;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="7" code="106.2" name="Earth bank, tag line"><description>Use this symbol to display the full extent of wide earth banks.</description><line_symbol color="23" line_width="210" minimum_length="645" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="8" code="108.1" name="Small earth wall"><description>A small distinct earth wall, usually man made. The minimum height is 0.5 m. Larger earth walls should be represented with the symbols contour (101), form line (103) or earth bank (106).</description><line_symbol color="23" line_width="210" minimum_length="0" join_style="2" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="300" inner_color="23" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="9" code="109" name="Erosion gully or trench"><description>An erosion gully or trench which is too small to be represented with the symbol earth bank (106), contour (101), index contour (102) or form line (103) is represented by a single line. The line width reflects the size of the gully. The end of the line is pointed. Minimum depth is 1 m. Minimum length is 3 mm on the map.</description><line_symbol color="23" line_width="370" minimum_length="3000" join_style="2" cap_style="3" pointed_cap_length="750" start_offset="750" end_offset="750" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="10" code="110" name="Small erosion gully"><description>A small erosion gully or trench. Minimum depth is 0.5 m.</description><line_symbol color="2" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="600" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="185" inner_color="23" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="11" code="112" name="Small knoll"><description>A small obvious mound or rocky knoll which cannot be drawn to scale with a contour (101), index contour (102) or form line (103). The height of the knoll should be a minimum of 1 m from the surrounding ground.</description><point_symbol inner_radius="375" inner_color="23" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="12" code="113" name="Elongated knoll"><description>A small obvious elongated knoll which cannot be drawn to scale with a contour (101), index contour (102) or form line (103). The maximum length should be 6 m and the maximum width 2 m. The height of the knoll should be a minimum of 1 m from the surrounding ground. Knolls larger than this shall be shown by contours.
The symbol may not be drawn in free form or such that two elongated knoll symbols touch or overlap.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="23" min_area="0" patterns="0"/></symbol><object type="1"><coords count="13">0 -600 1;166 -600;300 -331;300 0 1;300 331;166 600;0 600 1;-166 600;-300 331;-300 0 1;-300 -331;-166 -600;0 -600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="13" code="115" name="Small depression"><description>A small shallow natural depression or hollow which cannot be represented by the symbol contour (101) or form line (103) is represented by a semicircle. The minimum diameter should be 2 m. The minimum depth from the surrounding ground should be 1 m. The symbol is orientated to north.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="23" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="7">475 -135 1;475 127;262 340;0 340 1;-262 340;-475 127;-475 -135;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="14" code="116" name="Pit"><description>A pit or hole with distinct steep sides which cannot be represented to scale with the symbol earth bank (106). The minimum diameter shall be 2 m. The minimum depth from the surrounding ground shall be 1 m. The symbol is orientated to north.</description><point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="23" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 -409;-274 -409;0 217;274 -409;546 -409;0 841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="15" code="117.1" name="Broken ground, small"><description>An area of pits or knolls, which is too complex to be represented in detail. The density of randomly placed dots may vary according to the detail on the ground.</description><point_symbol inner_radius="100" inner_color="23" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="16" code="117.2" name="Broken ground"><description>An area of pits or knolls, which is too complex to be represented in detail. The density of randomly placed dots may vary according to the detail on the ground.</description><point_symbol inner_radius="150" inner_color="23" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="17" code="118" name="Prominent landform feature"><description>A small landform feature which is significant or prominent. The definition of the symbol shall always be given in the map legend. The symbol is orientated to north.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="23" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 -600;600 600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="23" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 600;600 -600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="18" code="201" name="Impassable cliff <span style="color:magenta">(forbidden to cross)</span>"><description>An impassable cliff, quarry or earth bank [see symbol earth bank (106)]. Tags are drawn downwards, showing its full extent from the top line to the foot. For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.3 mm).
The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face drops straight into water making it impossible to pass under the cliff along the water's edge, the bank line is omitted or the tags shall clearly extend over the bank line. Minimum height is 2 meters.
<span style="color:magenta">It is forbidden to cross an impassable cliff!
Competitors violating this rule will be disqualified.</span></description><line_symbol color="2" line_width="500" minimum_length="900" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="270" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 100;0 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="19" code="201.0.1" name="Impassable cliff, minimum size <span style="color:magenta">(forbidden to cross)</span>"><description>An impassable cliff, quarry or earth bank [see symbol earth bank (106)]. Tags are drawn downwards, showing its full extent from the top line to the foot. For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.3 mm).
The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face drops straight into water making it impossible to pass under the cliff along the water's edge, the bank line is omitted or the tags shall clearly extend over the bank line. Minimum height is 2 meters.
<span style="color:magenta">It is forbidden to cross an impassable cliff!
Competitors violating this rule will be disqualified.</span></description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3"><element><symbol type="2" code=""><line_symbol color="2" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">270 0;270 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-270 0;-270 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="20" code="201.1" name="Impassable cliff, no tags <span style="color:magenta">(forbidden to cross)</span>"><description>For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.3 mm).</description><line_symbol color="2" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="21" code="201.1.1" name="Impassable cliff, no tags, minimum size <span style="color:magenta">(forbidden to cross)</span>"><description>For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.3 mm).</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="22" code="201.2" name="Impassable cliff, tag line"><description>Use this symbol to display the full extent of a wide cliff.</description><line_symbol color="2" line_width="180" minimum_length="500" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="23" code="202" name="Gigantic boulder or rock pillar"><description>A gigantic boulder, rock pillar or massive cliff shall be represented in plan shape without tags.</description><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol>
<symbol type="2" id="24" code="203" name="Passable rock face"><description>A small vertical rock face may be shown without tags. If the direction of fall of the rock face is not apparent from the contours or to improve legibility, short tags should be drawn in the direction of the fall. Minimum height is 1 m. For passable rock faces shown without tags the end of the line may be rounded to improve legibility.</description><line_symbol color="2" line_width="300" minimum_length="900" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="270" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 50;0 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="25" code="203.0.1" name="Passable rock face, minimum size"><description>A small vertical rock face may be shown without tags. If the direction of fall of the rock face is not apparent from the contours or to improve legibility, short tags should be drawn in the direction of the fall. Minimum height is 1 m. For passable rock faces shown without tags the end of the line may be rounded to improve legibility.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3"><element><symbol type="2" code=""><line_symbol color="2" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">270 0;270 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-270 0;-270 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="26" code="203.1" name="Passable rock face, no tags"><description>Should be used if the direction of fall of the rock face is apparent from the contours and the legibility is good.</description><line_symbol color="2" line_width="300" minimum_length="900" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="27" code="203.1.1" name="Passable rock face, no tags, minimum size"><description>Should be used if the direction of fall of the rock face is apparent from the contours and the legibility is good.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="28" code="203.2" name="Passable rock face, no tags, rounded"><description>Should be used if the direction of fall of the rock face is apparent from the contours and the legibility is good. For passable rock faces shown without tags the end of the line may be rounded to improve legibility.</description><line_symbol color="2" line_width="300" minimum_length="900" join_style="1" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="29" code="203.2.1" name="Passable rock face, no tags, rounded, minimum size"><description>Should be used if the direction of fall of the rock face is apparent from the contours and the legibility is good. For passable rock faces shown without tags the end of the line may be rounded to improve legibility.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="300" minimum_length="0" join_style="1" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-300 0;300 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="30" code="204" name="Rocky pit"><description>A rocky pit, hole or mineshaft which may constitute a danger to the competitor. The symbol is orientated to north.</description><point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 -409;-274 -409;0 217;274 -409;546 -409;0 841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="31" code="205" name="Cave"><description>A cave is represented by the same symbol as a rocky pit. In this case the symbol shall be orientated to point up the slope as indicated opposite. This symbol should generally not be used in urban areas. The centre of gravity of the symbol marks the opening.
<span style="color:magenta">Controls may not be placed inside caves!</span></description><point_symbol rotatable="true" inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 -409;-274 -409;0 217;274 -409;546 -409;0 841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="32" code="206" name="Boulder"><description>A small distinct boulder. The minimum height is 1 m. Every boulder marked on the map shall be immediately identifiable on the ground.</description><point_symbol inner_radius="300" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="33" code="207" name="Large boulder"><description>A particularly large and distinct boulder. Gigantic boulders shall be represented in plan shape with the symbol gigantic boulder or rock pillar (202).</description><point_symbol inner_radius="450" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="34" code="208" name="Boulder field"><description>An area which is covered with so many blocks of stone that they cannot be marked individually is represented with randomly orientated solid triangles. The runnability is reduced and is indicated by the density of the triangles. A minimum of two triangles shall be used. The triangles can be enlarged by up to 20 %.</description><point_symbol rotatable="true" inner_radius="640" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">150 452;150 -508;-299 55;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="35" code="208.1" name="Boulder field, large"><description>An area which is covered with so many blocks of stone that they cannot be marked individually is represented with randomly orientated solid triangles. The runnability is reduced and is indicated by the density of the triangles. A minimum of two triangles shall be used. The triangles can be enlarged by up to 20 %.</description><point_symbol rotatable="true" inner_radius="768" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">180 542;180 -610;-359 66;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="36" code="210.1" name="Stony ground"><description>An area of stony or rocky ground which reduces runnability. The dots shall be randomly distributed with density according to the amount of rock. A minimum of three dots shall be used.</description><point_symbol inner_radius="100" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="37" code="210.2" name="Stony ground, large"><description>An area of stony or rocky ground which reduces runnability. The dots shall be randomly distributed with density according to the amount of rock. A minimum of three dots shall be used.</description><point_symbol inner_radius="125" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="4" id="38" code="211" name="Open sandy ground"><description>An area of soft sandy ground or gravel with no vegetation which reduces runnability. Where an area of sandy ground is open and has good runnability, it is represented with symbol open land (401), open land with scattered trees (402) or paved area (529).</description><area_symbol inner_color="35" min_area="1000" patterns="1"><pattern type="2" angle="0.785398" line_spacing="450" line_offset="0" offset_along_line="0" point_distance="450"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="90" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="39" code="212" name="Bare rock"><description>An area of runnable rock without earth or vegetation. An area of rock covered with grass, moss or other low vegetation shall be represented according to its openness and runnability (401/402/403/404).</description><area_symbol inner_color="25" min_area="500" patterns="0"/></symbol>
<symbol type="1" id="40" code="303" name="Waterhole"><description>A water-filled pit or an area of water which is too small to be shown to scale. The symbol is orientated to north.</description><point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="12" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 -409;-274 -409;0 217;274 -409;546 -409;0 841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="16" id="41" code="304.1" name="Impassable body of water, with bank line, 100% blue <span style="color:magenta">(forbidden to cross)</span>"><description>An area of deep water such as a lake, pond, river or fountain which may constitute a danger to the competitor or has forbidden access. The dark blue colour and the bordering black line indicates that the feature cannot or shall not be crossed. The minimum dimension is 1 mm².
<span style="color:magenta">It is forbidden to cross an impassable body of water!
Competitors violating this rule will be disqualified.</span></description><combined_symbol parts="2"><part symbol="43"/><part symbol="44"/></combined_symbol></symbol>
<symbol type="16" id="42" code="304.1.1" name="Impassable body of water, with bank line, 75% blue <span style="color:magenta">(forbidden to cross)</span>"><description>An area of deep water such as a lake, pond, river or fountain which may constitute a danger to the competitor or has forbidden access. The dark blue colour and the bordering black line indicates that the feature cannot or shall not be crossed. The minimum dimension is 1 mm².
<span style="color:magenta">It is forbidden to cross an impassable body of water!
Competitors violating this rule will be disqualified.</span></description><combined_symbol parts="2"><part symbol="43"/><part symbol="45"/></combined_symbol></symbol>
<symbol type="2" id="43" code="304.2" name="Impassable body of water, bank line <span style="color:magenta">(forbidden to cross)</span>"><description>The bordering black line indicates that the feature cannot or shall not be crossed.</description><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="44" code="304.3" name="Impassable body of water, fill, 100% blue <span style="color:magenta">(forbidden to cross)</span>"><description>An area of deep water such as a lake, pond, river or fountain which may constitute a danger to the competitor or has forbidden access. The dark blue colour and the bordering black line indicates that the feature cannot or shall not be crossed. The minimum dimension is 1 mm².
<span style="color:magenta">It is forbidden to cross an impassable body of water!
Competitors violating this rule will be disqualified.</span></description><area_symbol inner_color="17" min_area="1000" patterns="0"/></symbol>
<symbol type="4" id="45" code="304.4" name="Impassable body of water, fill, 75% blue <span style="color:magenta">(forbidden to cross)</span>"><description>An area of deep water such as a lake, pond, river or fountain which may constitute a danger to the competitor or has forbidden access. The dark blue colour and the bordering black line indicates that the feature cannot or shall not be crossed. The minimum dimension is 1 mm².
<span style="color:magenta">It is forbidden to cross an impassable body of water!
Competitors violating this rule will be disqualified.</span></description><area_symbol inner_color="20" min_area="1000" patterns="0"/></symbol>
<symbol type="4" id="46" code="305.0.1" name="Passable body of water, fill"><description>An area of shallow water such as a pond, river or fountain that can be crossed. The body of water shall be less than 0.5 m deep and runnable. If the body of water is not runnable it shall be represented with the symbol impassable body of water (304.1). If no other line symbol touches the border of the passable body of water, the border shall be represented with a blue line.</description><area_symbol inner_color="21" min_area="1000" patterns="0"/></symbol>
<symbol type="2" id="47" code="305.0.2" name="Passable body of water, bank line"><description>An area of shallow water such as a pond, river or fountain that can be crossed. The body of water shall be less than 0.5 m deep and runnable. If the body of water is not runnable it shall be represented with the symbol (304.1). If no other line symbol touches the border of the passable body of water, the border shall be represented with a blue line.</description><line_symbol color="11" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="16" id="48" code="305.1" name="Passable body of water"><description>An area of shallow water such as a pond, river or fountain that can be crossed. The body of water shall be less than 0.5 m deep and runnable. If the body of water is not runnable it shall be represented with the symbol impassable body of water (304.1). If no other line symbol touches the border of the passable body of water, the border shall be represented with a blue line.</description><combined_symbol parts="2"><part symbol="47"/><part symbol="46"/></combined_symbol></symbol>
<symbol type="2" id="49" code="306" name="Passable small watercourse"><description>A crossable watercourse less than 2 m wide.</description><line_symbol color="12" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="50" code="307" name="Minor watercourse"><description>A natural or man-made minor water channel which may contain water only intermittently.</description><line_symbol color="12" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1870" break_length="370" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="51" code="308" name="Narrow marsh"><description>A marsh or trickle of water which is too narrow to be shown with symbol marsh (310).</description><line_symbol color="2" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="600" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="185" inner_color="12" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="16" id="52" code="309" name="Impassable marsh <span style="color:magenta">(forbidden to cross)</span>"><description>A marsh which is impassable or which may constitute a danger to the competitor. The feature cannot or shall not be crossed.
<span style="color:magenta">It is forbidden to cross an impassable marsh!
Competitors violating this rule will be disqualified.</span></description><combined_symbol parts="2"><part symbol="53"/><part symbol="54"/></combined_symbol></symbol>
<symbol type="4" id="53" code="309.0.1" name="Impassable marsh, fill"><description>This symbol should not be used on its own.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="0" line_spacing="500" line_offset="0" offset_along_line="0" color="18" line_width="250"/></area_symbol></symbol>
<symbol type="2" id="54" code="309.0.2" name="Impassable marsh, border line"><description>This symbol should not be used on its own.</description><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="55" code="310" name="Marsh"><description>A crossable marsh, usually with a distinct edge. The symbol shall be combined with vegetation symbols to show runnability and openness.
Minimum size: not less than 2 lines, 5 mm long.</description><area_symbol inner_color="-1" min_area="200" patterns="1"><pattern type="1" angle="0" line_spacing="300" line_offset="0" offset_along_line="0" color="18" line_width="100"/></area_symbol></symbol>
<symbol type="1" id="56" code="310.1" name="Marsh, minimum size"><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-250 150;250 150;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-250 -150;250 -150;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="57" code="311" name="Indistinct marsh"><description>An indistinct or seasonal marsh or area of gradual transition from marsh to firm ground, which is crossable. The edge is generally indistinct and the vegetation similar to that of the surrounding ground. The symbol should be combined with vegetation symbols to show runnability and openness.
Minimum size: 4 dashes.</description><area_symbol inner_color="-1" min_area="0" patterns="2"><pattern type="2" angle="0" line_spacing="600" line_offset="0" offset_along_line="0" point_distance="1150"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern><pattern type="2" angle="0" line_spacing="600" line_offset="300" offset_along_line="575" point_distance="1150"><symbol type="1" code="" name="Pattern fill 2"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="1" id="58" code="311.1" name="Indistinct marsh, minimum size"><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="4"><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">125 0;1025 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-125 0;-1025 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 -300;450 -300;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 300;450 300;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="59" code="312" name="Small fountain or well"><description>Small well or fountain, which is at least 1 m high or at least 1 m in diameter.</description><point_symbol inner_radius="350" inner_color="-1" outer_width="250" outer_color="12" elements="0"/></symbol>
<symbol type="1" id="60" code="313" name="Spring"><description>The source of a stream with a distinct outflow. This symbol should generally not be used in urban areas. The symbol is orientated to open downstream.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="12" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="7">475 -135 1;475 127;262 340;0 340 1;-262 340;-475 127;-475 -135;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="61" code="314" name="Prominent water feature"><description>A small water feature which is significant or prominent. The definition of the symbol shall always be given in the map legend. The symbol is orientated to north.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="12" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 -600;600 600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="12" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 600;600 -600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="62" code="401" name="Open land"><description>An area of cultivated land, lawn, field, meadow, grassland, etc. without trees, offering very good runnability.</description><area_symbol inner_color="34" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="63" code="402" name="Open land with scattered trees"><description>An area of meadows with scattered trees or bushes, with grass or similar ground cover offering very good runnability. Areas smaller than 10 mm² at the maps scale are shown as open land (401). Symbols prominent large tree (418) and prominent bush or small tree (419) may be added.</description><area_symbol inner_color="-1" min_area="10000" patterns="1"><pattern type="2" angle="0.785398" line_spacing="500" line_offset="0" offset_along_line="0" point_distance="500"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="200" inner_color="34" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="64" code="403" name="Rough open land"><description>An area of heath or moorland, a felled area, a newly planted area (trees lower than ca. 1 m) or other generally open land with rough ground vegetation, i.e. heather or tall grass. This symbol may be combined with symbols undergrowth: slow running (407) and undergrowth: difficult to run (409) to show reduced runnability.</description><area_symbol inner_color="35" min_area="1000" patterns="0"/></symbol>
<symbol type="4" id="65" code="404" name="Rough open land with scattered trees"><description>An area of rough open land with scattered trees or bushes. Areas smaller than 16 mm² in the map scale are either mapped as rough open land (403) or forest: easy running (405). Symbols prominent large tree (418) and prominent bush or small tree (419) may be added.</description><area_symbol inner_color="37" min_area="16000" patterns="1"><pattern type="2" angle="0.785398" line_spacing="700" line_offset="0" offset_along_line="0" point_distance="700"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="275" inner_color="36" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="66" code="405" name="Forest: easy running"><description>An area of typical open runnable forest for the particular type of terrain. If no part of the forest is runnable then no white should appear on the map.</description><area_symbol inner_color="27" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="67" code="406" name="Forest: slow running"><description>An area with dense trees (low visibility) which reduces running to ca. 60-80% of normal speed.
Minimum width 0.25 mm.</description><area_symbol inner_color="32" min_area="1000" patterns="0"/></symbol>
<symbol type="2" id="68" code="406.1" name="Forest: slow running, minimum width"><line_symbol color="32" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="69" code="407" name="Undergrowth: slow running"><description>An area of dense undergrowth but otherwise good visibility (brambles, heather, low bushes, cut branches, etc.) which reduces running to ca. 60-80% of normal speed. This symbol shall not be combined with the symbol forest: slow running (406) or forest: difficult to run (408).</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" line_spacing="840" line_offset="0" offset_along_line="0" color="33" line_width="120"/></area_symbol></symbol>
<symbol type="4" id="70" code="408" name="Forest: difficult to run"><description>An area with dense trees or thicket (low visibility) which reduces running to ca. 20-60% of normal speed.</description><area_symbol inner_color="31" min_area="1000" patterns="0"/></symbol>
<symbol type="2" id="71" code="408.1" name="Forest: difficult to run, minimum width"><line_symbol color="31" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="72" code="409" name="Undergrowth: difficult to run"><description>An area of dense undergrowth but otherwise good visibility (brambles, heather, low bushes, and including cut branches) which reduces running to ca. 20-60% of normal speed. This symbol may not be combined with 406 or 408.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" line_spacing="420" line_offset="0" offset_along_line="0" color="33" line_width="120"/></area_symbol></symbol>
<symbol type="4" id="73" code="410" name="Vegetation: very difficult to run"><description>An area of dense vegetation (trees or undergrowth) which is barely passable. Running reduced 1-20% of normal speed.
Minimum width: 0.25 mm.</description><area_symbol inner_color="29" min_area="500" patterns="0"/></symbol>
<symbol type="2" id="74" code="410.1" name="Vegetation, very difficult to run, minimum width (hedge)"><line_symbol color="13" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="75" code="411.1" name="Forest (406) runnable in one direction"><description>When an area of forest provides good running in one direction but less good in others, white stripes are left in the screen symbol (406) to show the direction with good runnability.</description><area_symbol inner_color="32" min_area="1000" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="1500" line_offset="0" offset_along_line="0" color="27" line_width="400"/></area_symbol></symbol>
<symbol type="4" id="76" code="411.2" name="Forest (408) runnable in one direction"><description>When an area of forest provides good running in one direction but less good in others, white stripes are left in the screen symbol (408) to show the direction with good runnability.</description><area_symbol inner_color="31" min_area="1000" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="1500" line_offset="0" offset_along_line="0" color="27" line_width="400"/></area_symbol></symbol>
<symbol type="4" id="77" code="411.3" name="Forest (410) runnable in one direction"><description>When an area of forest provides good running in one direction but less good in others, white stripes are left in the screen symbol (410) to show the direction with good runnability.</description><area_symbol inner_color="29" min_area="1000" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="1500" line_offset="0" offset_along_line="0" color="27" line_width="400"/></area_symbol></symbol>
<symbol type="4" id="78" code="412" name="Orchard"><description>Land planted with fruit trees or bushes. The dot lines may be orientated to represent the direction of planting.</description><area_symbol inner_color="34" min_area="500" patterns="1"><pattern type="2" angle="0" rotatable="true" line_spacing="800" line_offset="0" offset_along_line="0" point_distance="800"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="225" inner_color="30" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="79" code="413" name="Orchard, one direction (e.g. Vineyard)"><description>Land planted with fruit trees or bushes, with a distinct direction of planting which reduces the runnability. The green lines shall be orientated to show the direction of planting.</description><area_symbol inner_color="34" min_area="500" patterns="2"><pattern type="2" angle="1.5708" rotatable="true" line_spacing="1700" line_offset="0" offset_along_line="0" point_distance="1900"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="0" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="30" line_width="200" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -650;0 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern><pattern type="2" angle="1.5708" rotatable="true" line_spacing="1700" line_offset="850" offset_along_line="950" point_distance="1900"><symbol type="1" code="" name="Pattern fill 2"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="30" line_width="200" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -650;0 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="2" id="80" code="414" name="Distinct cultivation boundary"><description>The boundary of symbol cultivated land (seasonally out of bounds) (415) when not shown with other symbols (fence, wall, path, etc.) is represented with a black line. A permanent boundary between different types of cultivated land is also represented with this symbol.</description><line_symbol color="2" line_width="70" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="81" code="415" name="Cultivated land (seasonally out of bounds)"><description>Cultivated land which is seasonally out-of-bounds due to growing crops may be shown with a black dot screen.</description><area_symbol inner_color="34" min_area="500" patterns="1"><pattern type="2" angle="0" line_spacing="800" line_offset="0" offset_along_line="0" point_distance="800"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="100" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="2" id="82" code="416" name="Distinct vegetation boundary"><description>A distinct forest edge or very distinct vegetation boundary within the forest. For indistinct boundaries, the area edges are shown only by the change in colour and/or dot screen.</description><line_symbol color="2" line_width="0" minimum_length="220" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="600" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="2" minimum_mid_symbol_count_when_closed="5" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="125" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="83" code="418" name="Prominent large tree"><description>A prominent single tree.</description><point_symbol inner_radius="350" inner_color="-1" outer_width="250" outer_color="13" elements="0"/></symbol>
<symbol type="1" id="84" code="419" name="Prominent bush or small tree"><description>A bush or a tree with a trunk less than 0.5 m diameter.</description><point_symbol inner_radius="375" inner_color="13" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="85" code="420" name="Prominent vegetation feature"><description>A vegetation feature which is significant or prominent. The definition of the symbol shall always be given in the map legend. The symbol is orientated to north.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="13" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 -600;600 600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="13" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 600;600 -600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="86" code="421" name="Impassable vegetation <span style="color:magenta">(forbidden to cross)</span>"><description>An area of dense vegetation (trees or undergrowth) which is impassable or which shall not be crossed, due to forbidden access or because it may constitute a danger to the competitor.
Minimum width: 0.4 mm.
<span style="color:magenta">It is forbidden to cross impassable vegetation!
Competitors violating this rule will be disqualified.</span></description><area_symbol inner_color="28" min_area="500" patterns="0"/></symbol>
<symbol type="2" id="87" code="421.1" name="Impassable vegetation, minimum width (hedge)"><line_symbol color="10" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="88" code="506.1.1" name="Unpaved footpath or track, urban, minimum width"><description>An unpaved footpath or rough vehicle track is a way for passing mainly by foot, without a smooth, hard surface. The density of the brown fill-in shall be the same as the density chosen for the symbol (529).
To improve the legibility of this symbol in non-urban parts of the map, the line width shall, in the non-urban parts of the map, be increased from 0.07 mm to 0.14 mm, and the brown fill-in shall, in the non-urban parts of the map, be drawn darker, so that if (x)% brown is used in urban parts of the map, (x+20)% brown shall be used in the non-urban parts of the map.
Colour: black, brown 0%(white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (min.60lines/cm) (non-urban); the colour and the line width shall be the same as for the symbols paved area (529) and step or edge of paved areas (529.1).</description><line_symbol color="15" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="70" shift="35" dashed="true" dash_length="2000" break_length="250"/></borders></line_symbol></symbol>
<symbol type="2" id="89" code="506.1.2" name="Unpaved footpath or track, urban, 0.55mm width"><description>An unpaved footpath or rough vehicle track is a way for passing mainly by foot, without a smooth, hard surface. The density of the brown fill-in shall be the same as the density chosen for the symbol (529).
To improve the legibility of this symbol in non-urban parts of the map, the line width shall, in the non-urban parts of the map, be increased from 0.07 mm to 0.14 mm, and the brown fill-in shall, in the non-urban parts of the map, be drawn darker, so that if (x)% brown is used in urban parts of the map, (x+20)% brown shall be used in the non-urban parts of the map.
Colour: black, brown 0%(white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (min.60lines/cm) (non-urban); the colour and the line width shall be the same as for the symbols paved area (529) and step or edge of paved areas (529.1).</description><line_symbol color="15" line_width="550" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="70" shift="35" dashed="true" dash_length="2000" break_length="250"/></borders></line_symbol></symbol>
<symbol type="2" id="90" code="506.1.3" name="Unpaved footpath or track, non-urban, minimum width"><description>An unpaved footpath or rough vehicle track is a way for passing mainly by foot, without a smooth, hard surface. The density of the brown fill-in shall be the same as the density chosen for the symbol (529).
To improve the legibility of this symbol in non-urban parts of the map, the line width shall, in the non-urban parts of the map, be increased from 0.07 mm to 0.14 mm, and the brown fill-in shall, in the non-urban parts of the map, be drawn darker, so that if (x)% brown is used in urban parts of the map, (x+20)% brown shall be used in the non-urban parts of the map.
Colour: black, brown 0%(white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (min.60lines/cm) (non-urban); the colour and the line width shall be the same as for the symbols paved area (529) and step or edge of paved areas (529.1).</description><line_symbol color="14" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="140" shift="70" dashed="true" dash_length="2000" break_length="250"/></borders></line_symbol></symbol>
<symbol type="2" id="91" code="506.1.4" name="Unpaved footpath or track, non-urban, 0.55mm width"><description>An unpaved footpath or rough vehicle track is a way for passing mainly by foot, without a smooth, hard surface. The density of the brown fill-in shall be the same as the density chosen for the symbol (529).
To improve the legibility of this symbol in non-urban parts of the map, the line width shall, in the non-urban parts of the map, be increased from 0.07 mm to 0.14 mm, and the brown fill-in shall, in the non-urban parts of the map, be drawn darker, so that if (x)% brown is used in urban parts of the map, (x+20)% brown shall be used in the non-urban parts of the map.
Colour: black, brown 0%(white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (min.60lines/cm) (non-urban); the colour and the line width shall be the same as for the symbols paved area (529) and step or edge of paved areas (529.1).</description><line_symbol color="14" line_width="550" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="140" shift="70" dashed="true" dash_length="2000" break_length="250"/></borders></line_symbol></symbol>
<symbol type="2" id="92" code="507" name="Small unpaved footpath or track"><description>A small unpaved footpath or track. Not to be used in urban areas.</description><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="93" code="508" name="Less distinct small path"><description>A less distinct path or forestry extraction track. Not to be used in urban areas.</description><line_symbol color="2" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1000" break_length="1000" dashes_in_group="2" in_group_break_length="250" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="94" code="509" name="Narrow ride"><description>A distinct ride is a linear break in the forest (usually in a plantation), which does not have a distinct path along it. Where there is a path along a ride, the symbol small unpaved footpath or track (506.1) shall be used. Not to be used in urban areas.</description><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="3000" break_length="500" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="95" code="512.1.1" name="Bridge, minimum width"><description>A bridge is a structure spanning and permitting passage over a river, chasm, road or the like.</description><line_symbol color="-1" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><start_symbol><symbol type="1" code="" name="Start symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">125 200;125 670;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">125 -200;125 -670;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-125 -200;-125 -670;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-125 200;-125 670;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol><borders><border color="2" width="250" shift="125"/></borders></line_symbol></symbol>
<symbol type="2" id="96" code="512.1.2" name="Bridge, one side"><description>A bridge is a structure spanning and permitting passage over a river, chasm, road or the like.</description><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><start_symbol><symbol type="1" code="" name="Start symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">125 0;125 -345;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-125 0;-125 -345;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol></line_symbol></symbol>
<symbol type="16" id="97" code="515.1" name="Railway"><description>A railway is a permanent track laid with rails on which locomotives, carriages or wagons can travel. If it is forbidden to cross or run along the railroad, the forbidden area around the railway shall be represented with symbol area with forbidden access (528.1).</description><combined_symbol parts="2"><part private="true"><symbol type="2" code="515.1.2" name="Railway helper: inner black dashes"><line_symbol color="2" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="3000" end_length="1500" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1500" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol></part><part private="true"><symbol type="2" code="515.1.1" name="Railway helper: black border, white background"><line_symbol color="4" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3000" end_length="1500" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1500" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="2" width="100" shift="0"/></borders></line_symbol></symbol></part></combined_symbol></symbol>
<symbol type="2" id="98" code="515.2" name="Tramway"><description>A tramway is a public vehicle running regularly along certain streets, usually on rails. The track can be easily crossed by the competitor. Tramways are generally not represented. However, if they serve navigation or orientation, they can be represented.</description><line_symbol color="-1" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3000" end_length="1500" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1500" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="7" width="100" shift="0"/></borders></line_symbol></symbol>
<symbol type="2" id="99" code="516" name="Power line, cableway or skilift"><description>Power line, cableway or skilift. The bars indicate the exact location of the pylons.
<b>Note: When drawing this symbol, press space to toggle placing the pylon symbols at new nodes.</b></description><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><dash_symbol><symbol type="1" code="" name="Dash symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -300;0 300;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></dash_symbol></line_symbol></symbol>
<symbol type="2" id="100" code="517" name="Major power line"><description>Major power lines should be drawn with a double line. The gap between the lines may indicate the extent of the powerline.
Very large carrying masts shall be represented in plan shape or with the symbol high tower (535). In this case, the cable lines can be left out (the map shows only the pylons).
<b>Note: When drawing this symbol, press space to toggle placing the pylon symbols at new nodes.</b></description><line_symbol color="-1" line_width="1500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><dash_symbol><symbol type="1" code="" name="Dash symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1120;0 1120;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></dash_symbol><borders><border color="2" width="140" shift="70"/></borders></line_symbol></symbol>
<symbol type="2" id="101" code="518.1" name="Underpass or tunnel"><description>An underpass or a tunnel is a passage running underneath the ground, especially a passage for pedestrians or vehicles, crossing under for instance a railroad or a road.
<span style="color: magenta">If underpasses or tunnels etc. are to be used in a competition, they shall be emphasized with the symbol crossing point (708) or crossing section (708.1)!</span></description><line_symbol color="2" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="500" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="2" minimum_mid_symbol_count_when_closed="0" dash_length="250" break_length="500" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">-125 125;125 125;125 -125;-125 -125;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="102" code="519" name="Passable stone wall"><description>A stone wall or stone faced bank. This symbol shall be used only in non-urban areas. If such a wall is higher than 2 m, it shall be represented with the symbol impassable wall (521.1).</description><line_symbol color="2" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="300" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="103" code="519.1.1" name="Passable wall"><description>A passable wall or retaining wall is a construction made of stone, brick, concrete etc., which can be passed. This symbol is suitable for urban areas. If such a wall is higher than 2 m, it shall be represented with the symbol impassable wall (521.1). Wide walls shall be drawn in plan shape.</description><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="0" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="104" code="519.1.2" name="Passable wall, plan shape"><description>A passable wall or retaining wall is a construction made of stone, brick, concrete etc., which can be passed. This symbol is suitable for urban areas. If such a wall is higher than 2 m, it shall be represented with the symbol (521.1). Wide walls shall be drawn in plan shape.</description><area_symbol inner_color="7" min_area="500" patterns="0"/></symbol>
<symbol type="2" id="105" code="521.1.1" name="Impassable wall <span style="color:magenta">(forbidden to cross)</span>"><description>An impassable wall or retaining wall is a wall, which fulfill the function of an enclosure or solid barrier. It shall not be crossed, due to forbidden access or because it may constitute a danger to the competitor due to its height. Very wide impassable walls shall be drawn in plan shape and represented with the symbol building (526.1).
<span style="color:magenta">It is forbidden to cross an impassable wall!
Competitors violating this rule will be disqualified.</span></description><line_symbol color="2" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="0" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="106" code="521.1.2" name="Impassable wall, plan shape <span style="color:magenta">(forbidden to cross)</span>"><description>An impassable wall or retaining wall is a wall, which fulfill the function of an enclosure or solid barrier. It shall not be crossed, due to forbidden access or because it may constitute a danger to the competitor due to its height. Very wide impassable walls shall be drawn in plan shape and represented with the symbol building (526.1).
<span style="color:magenta">It is forbidden to cross an impassable wall!
Competitors violating this rule will be disqualified.</span></description><area_symbol inner_color="2" min_area="500" patterns="0"/></symbol>
<symbol type="2" id="107" code="522" name="Passable fence or railing"><description>A passable fence is a barrier enclosing or bordering a field, yard, etc., usually made of posts and wire or wood. It is used to prevent entrance or to confine or mark a boundary. A railing is a fencelike barrier composed of one or more horizontal rails supported by widely spaced upright poles, usually it can be slipped through.
If a fence or railing is higher than 2 m or very difficult to cross, it shall be represented with the symbol impassable fence or railing (524).</description><line_symbol color="2" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 0;375 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="108" code="522.0.1" name="Passable fence or railing (no forced dash)"><description>A passable fence is a barrier enclosing or bordering a field, yard, etc., usually made of posts and wire or wood. It is used to prevent entrance or to confine or mark a boundary. A railing is a fencelike barrier composed of one or more horizontal rails supported by widely spaced upright poles, usually it can be slipped through.
If a fence or railing is higher than 2 m or very difficult to cross, it shall be represented with the symbol impassable fence or railing (524).</description><line_symbol color="2" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 0;375 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="109" code="524" name="Impassable fence or railing <span style="color:magenta">(forbidden to cross)</span>"><description>An impassable fence or railing, which shall not be crossed, due to forbidden access or because it may constitute a danger to the competitor because of its height.
<span style="color:magenta">It is forbidden to cross an impassable fence or railing!
Competitors violating this rule will be disqualified.</span></description><line_symbol color="2" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4650" end_length="2325" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">450 0;825 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;-75 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="110" code="525" name="Crossing point"><description>A crossing point is a gap or an opening in a fence, railing or wall, which can easily be crossed by a competitor. Small gaps or openings which can not easily be crossed by competitors, shall not be represented on the map and shall be closed during the competition.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">450 -700;450 700;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 -700;-450 700;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="16" id="111" code="526.1" name="Building <span style="color:magenta">(forbidden to pass through or over)</span>"><description>A building is a relatively permanent construction having a roof. Buildings within symbol area with forbidden access (527.1) may just be represented in a simplified manner.Areas totally contained within a building shall be mapped as being a part of the building.
The minimum gap between buildings and between buildings and other impassable features shall be 0.40 mm. The black screen percentage should be chosen according to the terrain. A dark screen gives a better contrast to passable areas, such as streets, stairways and canopies, while a light screen makes contours and course overprint more clearly visible (which can be important in very densely built up urban terrain and in steep urban terrain). The black screen shall be the same for the whole map.
<span style="color:magenta">It is forbidden to pass through or over a building!
Competitors violating this rule will be disqualified.</span></description><combined_symbol parts="2"><part symbol="112"/><part symbol="113"/></combined_symbol></symbol>
<symbol type="4" id="112" code="526.1.1" name="Building helper 1"><description>Do not use this symbol on its own!</description><area_symbol inner_color="6" min_area="250" patterns="0"/></symbol>
<symbol type="2" id="113" code="526.1.2" name="Building helper 2"><description>Do not use this symbol on its own!</description><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="114" code="526.1.3" name="Building, minimum size <span style="color:magenta">(forbidden to pass through or over)</span>"><description>A building is a relatively permanent construction having a roof. Buildings within symbol area with forbidden access (527.1) may just be represented in a simplified manner.Areas totally contained within a building shall be mapped as being a part of the building.
The minimum gap between buildings and between buildings and other impassable features shall be 0.40 mm. The black screen percentage should be chosen according to the terrain. A dark screen gives a better contrast to passable areas, such as streets, stairways and canopies, while a light screen makes contours and course overprint more clearly visible (which can be important in very densely built up urban terrain and in steep urban terrain). The black screen shall be the same for the whole map.
<span style="color:magenta">It is forbidden to pass through or over a building!
Competitors violating this rule will be disqualified.</span></description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="4" code=""><area_symbol inner_color="6" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">180 -180;180 180;-180 180;-180 -180;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">180 -180;180 180;-180 180;-180 -180;180 -180 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="16" id="115" code="526.2" name="Canopy"><description>A canopy is a building construction (with a roof), normally supported by pillars, poles or walls, such as passages, gangways, courts, bus stops, gas stations or garages.
Small passable parts of buildings which can not easily be crossed by competitors, shall not be represented on the map and shall be closed during the competition.</description><combined_symbol parts="2"><part symbol="116"/><part symbol="117"/></combined_symbol></symbol>
<symbol type="4" id="116" code="526.2.1" name="Canopy helper 1"><description>Do not use this symbol on its own!</description><area_symbol inner_color="9" min_area="250" patterns="0"/></symbol>
<symbol type="2" id="117" code="526.2.2" name="Canopy helper 2"><description>Do not use this symbol on its own!</description><line_symbol color="2" line_width="70" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="118" code="526.3" name="Pillar"><description>A pillar is an upright shaft or structure of stone, brick or other material, relatively slender in proportion to its height and any shape in section, used as a building support. Pillars smaller than 2 m × 2 m are generally not represented.
Columns of pillars and pillars along buildings are not represented. However, if they are important for navigation and orientation, they can be represented.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">-250 -250;250 -250;250 250;-250 250;-250 -250 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="119" code="528.1" name="Area with forbidden access <span style="color:magenta">(forbidden to cross)</span>"><description>An area with forbidden access such as a private area, a flower bed, a railway area etc. No feature shall be represented in this area, except very prominent features such as railways, large buildings, or very large trees. Road entrances shall be represented clearly.
Areas with forbidden access totally contained within buildings shall be mapped as being a part of the building.
<span style="color:magenta">It is forbidden to cross an area with forbidden access!
Competitors violating this rule will be disqualified.</span></description><area_symbol inner_color="26" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="120" code="529.0.1" name="Paved area, urban"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: black, brown 0%(white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (min.60lines/cm) (non-urban); the colour and the line width shall be the same as for the symbol unpaved footpath or track (506.1).</description><area_symbol inner_color="15" min_area="500" patterns="0"/></symbol>
<symbol type="16" id="121" code="529.0.2" name="Paved area with border, urban"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><combined_symbol parts="2"><part symbol="120"/><part symbol="132"/></combined_symbol></symbol>
<symbol type="2" id="122" code="529.0.3" name="Paved road, footpath or track, urban, 0.35mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="15" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="70" shift="35"/></borders></line_symbol></symbol>
<symbol type="2" id="123" code="529.0.4" name="Paved road, footpath or track, urban, 0.55mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="15" line_width="550" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="70" shift="35"/></borders></line_symbol></symbol>
<symbol type="2" id="124" code="529.0.5" name="Paved road, footpath or track, urban, 0.7mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="15" line_width="700" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="70" shift="35"/></borders></line_symbol></symbol>
<symbol type="2" id="125" code="529.0.6" name="Paved road, footpath or track, urban, 0.9mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="15" line_width="900" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="70" shift="35"/></borders></line_symbol></symbol>
<symbol type="4" id="126" code="529.0.7" name="Paved area, non-urban"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><area_symbol inner_color="14" min_area="500" patterns="0"/></symbol>
<symbol type="16" id="127" code="529.0.8" name="Paved area with border, non-urban"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><combined_symbol parts="2"><part symbol="126"/><part symbol="133"/></combined_symbol></symbol>
<symbol type="2" id="128" code="529.0.9" name="Paved road, footpath or track, non-urban, 0.35mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="14" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="140" shift="70"/></borders></line_symbol></symbol>
<symbol type="2" id="129" code="529.0.10" name="Paved road, footpath or track, non-urban, 0.55mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="14" line_width="550" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="140" shift="70"/></borders></line_symbol></symbol>
<symbol type="2" id="130" code="529.0.11" name="Paved road, footpath or track, non-urban, 0.7mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="14" line_width="700" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="140" shift="70"/></borders></line_symbol></symbol>
<symbol type="2" id="131" code="529.0.12" name="Paved road, footpath or track, non-urban, 0.9mm width"><description>A paved area is an area with a firm level surfaces such as asphalt, hard gravel, tiles, concrete or the like. It shall be bordered (or framed) by the symbol step or edge of paved area (529.1). Distinct differences within the paved area can be represented with the symbol step or edge of paved area (529.1), if they serve navigation.
Where a paved road, footpath or track goes through a non-urban area, the brown fill-in shall be drawn darker, so that if (x)% brown is used in urban areas, (x+20)% brown shall be used in the non-urban areas, and the line width of the black outline shall be increased from 0.07 to 0.14 mm. The black border line can be omitted where it is logical (e.g. indistinct/gradual gravel-to-grass transitions).
Colour: brown 0 (white), 10%, 20% or 30% (urban) / 20%, 30%, 40%, 50% (non-urban) (min. 60 lines/cm), black; the colour and the line width shall be the same as for symbol unpaved footpath or track (506.1).</description><line_symbol color="14" line_width="900" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="16" width="140" shift="70"/></borders></line_symbol></symbol>
<symbol type="2" id="132" code="529.1.1" name="Step or edge of paved area, urban"><description>A step or an edge of a paved area. Steps of a stairway shall be represented in a generalized manner. Edges within paved areas are generally not represented, unless they serve navigation. The thickness of edge of paved areas shall be enlarged to 0.14 mm in non-urban areas to improve legibility. The thickness of step lines shall always be 0.07 mm.</description><line_symbol color="2" line_width="70" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="133" code="529.1.2" name="Step or edge of paved area, non-urban"><description>A step or an edge of a paved area. Steps of a stairway shall be represented in a generalized manner. Edges within paved areas are generally not represented, unless they serve navigation. The thickness of edge of paved areas shall be enlarged to 0.14 mm in non-urban areas to improve legibility. The thickness of step lines shall always be 0.07 mm.</description><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="134" code="529.1.3" name="Step or edge of paved area, narrow stairway"><description>A step or an edge of a paved area. Steps of a stairway shall be represented in a generalized manner. Edges within paved areas are generally not represented, unless they serve navigation. The thickness of edge of paved areas shall be enlarged to 0.14 mm in non-urban areas to improve legibility. The thickness of step lines shall always be 0.07 mm.</description><line_symbol color="2" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="420" end_length="35" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="70" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 220;0 -220;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="135" code="529.1.4" name="Step or edge of paved area, wide stairway"><description>A step or an edge of a paved area. Steps of a stairway shall be represented in a generalized manner. Edges within paved areas are generally not represented, unless they serve navigation. The thickness of edge of paved areas shall be enlarged to 0.14 mm in non-urban areas to improve legibility. The thickness of step lines shall always be 0.07 mm.</description><line_symbol color="2" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="420" end_length="35" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="70" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 440;0 -440;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="136" code="533" name="Passable pipeline"><description>A pipeline (gas, water, oil, etc.) above ground level which can be crossed over or under.</description><line_symbol color="2" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="3">-530 530;0 0;-530 -530;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="137" code="534" name="Impassable pipeline <span style="color:magenta">(forbidden to cross)</span>"><description>An impassable pipeline (gas, water, oil, etc.) above ground level which shall not be crossed, due to forbidden access or because it may constitute a danger to the competitor because of its height.
<span style="color:magenta">It is forbidden to cross an impassable pipeline!
Competitors violating this rule will be disqualified.</span></description><line_symbol color="2" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="2" mid_symbol_distance="900"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="3">-530 530;0 0;-530 -530;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="138" code="535" name="High tower"><description>A high tower or large pylon. Very large towers shall be represented in plan shape with the symbol building (526.1). The symbol is orientated to north.</description><point_symbol inner_radius="600" inner_color="2" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-1050 0;1050 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1050;0 1050;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="139" code="536" name="Small tower"><description>An obvious small tower, platform or seat. The symbol is orientated to north.</description><point_symbol inner_radius="600" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-750 -382;750 -382;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -382;0 1118;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="140" code="537" name="Cairn, memorial, small monument or boundary stone"><description>Cairn, memorial, small monument or boundary stone more than 0.5 m high. Large massive monuments shall be represented in plan shape with the symbol building (526.1).</description><point_symbol inner_radius="380" inner_color="-1" outer_width="220" outer_color="2" elements="1"><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">0 0;</coords></object></element></point_symbol></symbol>
<symbol type="1" id="141" code="538" name="Fodder rack"><description>A fodder rack, which is free standing or attached to a tree. The symbol is orientated to north.</description><point_symbol inner_radius="600" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="3">-750 -48;0 -481;750 -48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -481;0 1019;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="142" code="539" name="Prominent man-made feature"><description>A man-made feature which is significant or prominent. The definition of the symbol shall always be given in the map legend.</description><point_symbol inner_radius="380" inner_color="-1" outer_width="220" outer_color="2" elements="0"/></symbol>
<symbol type="1" id="143" code="540" name="Prominent man-made feature"><description>A man-made feature which is significant or prominent. The definition of the symbol shall always be given in the map legend. The symbol is orientated to north.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="2" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 -600;600 600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 600;600 -600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="144" code="601.0.1" name="Magnetic north line - black"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm on the 1:5 000 map so they represent 150 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.</description><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="145" code="601.0.2" name="Magnetic north line, black with arrow"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm on the 1:5 000 map so they represent 150 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.
<b>Note: this is a non-standard addition to the symbol set.</b></description><line_symbol color="2" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">500 0;-1500 -600;-1000 0;-1500 600;500 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol></line_symbol></symbol>
<symbol type="4" id="146" code="601.0.3" name="North lines pattern - black"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm on the 1:5000 map so they represent 150 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc. Cut holes in the pattern to create these breaks.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="37500" line_offset="0" offset_along_line="0" color="2" line_width="140"/></area_symbol></symbol>
<symbol type="2" id="147" code="601.0.4" name="Magnetic north line, blue"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm on the 1:5 000 map so they represent 150 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.</description><line_symbol color="12" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="148" code="601.0.5" name="Magnetic north line, blue, with arrow"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm on the 1:5 000 map so they represent 150 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.
<b>Note: this is a non-standard addition to the symbol set.</b></description><line_symbol color="12" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="12" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">500 0;-1500 -600;-1000 0;-1500 600;500 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol></line_symbol></symbol>
<symbol type="4" id="149" code="601.0.6" name="North lines pattern, blue" is_protected="true"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm on the 1:5 000 map so they represent 150 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc. Cut holes in the pattern to create these breaks.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="37500" line_offset="0" offset_along_line="0" color="12" line_width="180"/></area_symbol></symbol>
<symbol type="1" id="150" code="602" name="Registration mark"><description>At least three registration marks shall be placed within the frame of a map in a non-symmetrical arrangement. In addition, a colour check should be possible.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="-900" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -2000;0 2000;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="-900" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-2000 0;2000 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="151" code="603.0.1" name="Spot height, dot"><description>Spot heights are used for the rough assessment of height differences. The height is given to the nearest metre. The figures are orientated to the north. Water levels are given without the dot.</description><point_symbol inner_radius="150" inner_color="2" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="8" id="152" code="603.0.2" name="Spot height"><description>Spot heights are used for the rough assessment of height differences. The height is given to the nearest metre. The figures are orientated to the north. Water levels are given without the dot.</description><text_symbol icon_text="321" rotatable="true"><font family="Arial" size="1500"/><text color="2" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="1" id="153" code="701" name="Start"><description>The start or map issue point (if not at the start) is shown by an equilateral triangle which points in the direction of the first control. The centre of the triangle shows the precise position of the start point.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-3500 2021;0 -4041;3500 2021;-3500 2021 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="154" code="702" name="Control point"><description>The control points are shown with circles. The centre of the circle shows the precise position of the feature. Sections of circles should be omitted to leave important detail showing.</description><point_symbol inner_radius="2825" inner_color="-1" outer_width="350" outer_color="0" elements="0"/></symbol>
<symbol type="8" id="155" code="703" name="Control number"><description>The number of the control is placed close to the control point circle in such a way that it does not obscure important detail. The numbers are orientated to north.</description><text_symbol icon_text="5"><font family="Arial" size="5468"/><text color="0" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="2" id="156" code="704" name="Line"><description>Where controls are to be visited in order, the start, control points and finish are joined together by straight lines. Sections of lines should be omitted to leave important detail showing.</description><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="157" code="705" name="Marked route"><description>A marked route is shown on the map with a dashed line.</description><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="500" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="158" code="706" name="Finish"><description>The finish is shown by two concentric circles.</description><point_symbol inner_radius="2325" inner_color="-1" outer_width="350" outer_color="0" elements="1"><element><symbol type="1" code=""><point_symbol inner_radius="3325" inner_color="-1" outer_width="350" outer_color="0" elements="0"/></symbol><object type="0"><coords count="1">0 0;</coords></object></element></point_symbol></symbol>
<symbol type="2" id="159" code="707" name="Uncrossable boundary <span style="color:magenta">(forbidden to cross)</span>"><description>A boundary which it is not permitted to cross. Uncrossable boundaries shall be mapped by using the symbols: impassable cliff (201), impassable body of water (304.1), impassable marsh (309), impassable wall (521.1), impassable fence or railing (524) or impassable pipeline (534) and shall not be overprinted with symbol uncrossable boundary (707). This symbol is to be used only for last minute updates to the competition area, as excessive use of purple for indicating barriers is unfortunate.
<span style="color:magenta">It is forbidden to cross an uncrossable boundary!
Competitors violating this rule will be disqualified.</span></description><line_symbol color="0" line_width="700" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="160" code="708" name="Crossing point"><description>A crossing point through or over a wall or fence, or across a road or railway or through a tunnel or an out-of-bounds area is drawn on the map with two lines curving outwards.
If underpasses or tunnels etc. are to be used in a competition, they shall be emphasized with symbol crossing point (708) or crossing section (708.1).</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-1500 725 1;-500 450;500 450;1500 725;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-1500 -725 1;-500 -450;500 -450;1500 -725;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="161" code="708.1" name="Crossing section, one side"><description>Acrossing section through or over a building, wall or fence, or across a road or railway or through a tunnel or an out-of-bounds area is drawn on the map as a linear object, according to the plan shape.
If underpasses or tunnels etc. are to be used in a competition, they shall be emphasized with symbol (708) or (708.1).</description><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><start_symbol><symbol type="1" code="" name="Start symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">250 0;0 0 1;-600 0;-900 -150;-1500 -650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">-250 0;0 0 1;600 0;900 -150;1500 -650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol></line_symbol></symbol>
<symbol type="4" id="162" code="709" name="Out-of-bounds area <span style="color:magenta">(forbidden to cross)</span>"><description>Out of bounds areas are mapped with the symbol area with forbidden access (528.1). This symbol shall only be used for last minute updates to the competition map (e.g. for areas that may be dangerous for the competitors during the competition, or very late changes to the competition terrain).
An out-of-bounds area is shown with vertical stripes. A bounding line may be drawn if there is no natural boundary, as follows:
- a solid line indicates that the boundary is marked continuously (tapes, etc.) on the ground,
- a dashed line indicates intermittent marking on the ground,
- no line indicates no marking on the ground.
<span style="color:magenta">It is forbidden to cross an out-of-bounds area!
Competitors violating this rule will be disqualified.</span></description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" line_spacing="600" line_offset="0" offset_along_line="0" color="0" line_width="250"/></area_symbol></symbol>
<symbol type="2" id="163" code="709.1" name="Out-of-bounds area, solid boundary"><description>A solid line indicates that the boundary is marked continuously (tapes, etc.) on the ground.</description><line_symbol color="0" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="164" code="709.2" name="Out-of-bounds area, dashed boundary"><description>A dashed line indicates intermittent marking on the ground.</description><line_symbol color="0" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="3000" break_length="500" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="165" code="712" name="First aid post"><description>The location of a first aid post.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="0" line_width="1000" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-1500 0;1500 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="0" line_width="1000" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1500;0 1500;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="166" code="713" name="Refreshment point"><description>The location of a refreshment point which is not at a control or along the marked route.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="4"><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-1340 -1395;-820 1380;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">1340 -1395;820 1380;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="2" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="13">0 -1770 1;600 -1770;1200 -1620;1340 -1395 1;1200 -1170;600 -1020;0 -1020 1;-600 -1020;-1200 -1170;-1340 -1395 1;-1200 -1620;-600 -1770;0 -1770;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="2" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-820 1380 1;-680 1680;680 1680;820 1380;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="167" code="714" name="Temporary construction or closed area <span style="color:magenta">(forbidden to cross)</span>"><description>Obvious temporary constructions like platforms for spectators and speaker, closed area for spectators, outside restaurant areas, etc. shall be represented in plan shape.
<span style="color:magenta">It is forbidden to enter a temporary construction or closed area!
Competitors violating this rule will be disqualified.</span></description><area_symbol inner_color="1" min_area="500" patterns="0"/></symbol>
<symbol type="2" id="168" code="799" name="Simple Orienteering Course"><description>This symbol provides a simple and quick way to make training courses.
The purple line will extend a bit into the finish symbol. This is a shortcoming of this simple approach.</description><line_symbol color="-1" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="1150" end_length="3650" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1000" break_length="1450" dashes_in_group="1" in_group_break_length="1600" mid_symbols_per_spot="1" mid_symbol_distance="0" suppress_dash_symbol_at_ends="true"><start_symbol><symbol type="1" code="" name="Anfangssymbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">3041 0;3541 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-3021 3500;3041 0;-3021 -3500;-3021 3500 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><mid_symbol><symbol type="1" code="" name="Zwischensymbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="0" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 0;600 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol><end_symbol><symbol type="1" code="" name="Endsymbol"><point_symbol rotatable="true" inner_radius="3325" inner_color="-1" outer_width="350" outer_color="0" elements="1"><element><symbol type="1" code=""><point_symbol inner_radius="2325" inner_color="-1" outer_width="350" outer_color="0" elements="0"/></symbol><object type="0"><coords count="1">0 0;</coords></object></element></point_symbol></symbol></end_symbol><dash_symbol><symbol type="1" code="" name="Strichelungssymbol"><point_symbol rotatable="true" inner_radius="2825" inner_color="-1" outer_width="350" outer_color="0" elements="0"/></symbol></dash_symbol></line_symbol></symbol>
<symbol type="8" id="169" code="799.1" name="Legend text"><text_symbol icon_text="Leg"><font family="Arial" size="2117"/><text color="2" line_spacing="1.5" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="2" id="170" code="799.2" name="Map frame" is_hidden="true"><line_symbol color="12" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="8" id="171" code="800" name="Title"><text_symbol icon_text="Tit"><font family="DejaVu Sans" size="20000" bold="true"/><text color="18" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="172" code="800.1" name="Title, white"><text_symbol icon_text="Tit"><font family="DejaVu Sans" size="20000" bold="true"/><text color="19" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="173" code="800.1.1" name="Subtitle"><text_symbol icon_text="sub"><font family="DejaVu Sans" size="3900" bold="true"/><text color="18" line_spacing="1" paragraph_spacing="0" character_spacing="0.8" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="174" code="800.2" name="Bold text"><text_symbol icon_text="Tex"><font family="DejaVu Sans" size="4300" bold="true"/><text color="2" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="175" code="800.3" name="Normal text"><text_symbol icon_text="Tex"><font family="DejaVu Sans" size="4300"/><text color="2" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="176" code="800.4" name="Small print"><text_symbol icon_text="sm"><font family="DejaVu Sans" size="3200"/><text color="2" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="177" code="800.5" name="SprintCup text"><text_symbol icon_text="sc"><font family="Arial" size="3034" bold="true" italic="true"/><text color="30" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="178" code="800.6" name="Small print, bold"><text_symbol icon_text="sm"><font family="DejaVu Sans" size="3200" bold="true"/><text color="2" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="4" id="179" code="899.0.1" name="Map frame"><area_symbol inner_color="38" min_area="1000" patterns="0"/></symbol>
<symbol type="4" id="180" code="899.0.2" name="Red for logos"><area_symbol inner_color="3" min_area="1000" patterns="0"/></symbol>
<symbol type="1" id="181" code="999" name="OpenOrienteering Logo"><description>The OpenOrienteering Logo.</description><point_symbol inner_radius="250" inner_color="-1" outer_width="0" outer_color="-1" elements="30"><element><symbol type="4" code=""><area_symbol inner_color="8" min_area="0" patterns="0"/></symbol><object type="1"><coords count="10">-12797 -557 1;-12755 -447;-12770 -420;-12873 -420 1;-12953 -420;-12973 -440;-12973 -520 1;-12973 -635;-12838 -663;-12797 -557 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="8" min_area="0" patterns="0"/></symbol><object type="1"><coords count="14">-933 2063 1;-933 1925;-920 1900;-851 1900 1;-780 1900;-770 1921;-781 2050 1;-789 2154;-814 2203;-863 2213 1;-920 2224;-933 2197;-933 2063;-933 2063 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">-8875 -3860 1;-8922 -3920;-8984 -3968;-9061 -4006 1;-9134 -4045;-9225 -4065;-9337 -4065 1;-9444 -4065;-9535 -4045;-9612 -4006 1;-9688 -3974;-9752 -3927;-9803 -3867 1;-9855 -3807;-9895 -3737;-9925 -3655 1;-9950 -3578;-9970 -3500;-9982 -3418;-8723 -3418 1;-8725 -3500;-8740 -3578;-8768 -3655 1;-8789 -3732;-8824 -3800;-8875 -3860 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="37">-4230 -3923 1;-4183 -3737;-4160 -3527;-4160 -3296;-4160 -1395;-5113 -1395;-5113 -3182 1;-5113 -3488;-5155 -3707;-5235 -3833 1;-5317 -3961;-5468 -4027;-5690 -4027 1;-5759 -4027;-5830 -4021;-5907 -4013 1;-5983 -4008;-6052 -4004;-6112 -3993;-6112 -1395;-7064 -1395;-7064 -4646 1;-6903 -4693;-6694 -4736;-6438 -4774 1;-6181 -4818;-5913 -4838;-5631 -4838 1;-5347 -4838;-5110 -4800;-4921 -4723 1;-4730 -4652;-4579 -4547;-4467 -4410 1;-4357 -4273;-4277 -4111;-4230 -3923 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="35">-13524 1118 1;-13605 1126;-13667 1137;-13708 1150;-13708 3722;-14662 3722;-14662 536 1;-14492 476;-14292 420;-14060 369 1;-13827 314;-13565 286;-13280 286 1;-13229 286;-13167 290;-13096 299 1;-13022 303;-12951 312;-12878 325 1;-12806 333;-12733 345;-12660 363 1;-12587 375;-12526 392;-12474 414;-12634 1201 1;-12719 1180;-12819 1158;-12936 1137 1;-13051 1112;-13174 1098;-13306 1098 1;-13366 1098;-13439 1105;-13524 1118 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="25">-11093 -200 1;-11204 -101;-11336 -52;-11490 -52 1;-11642 -52;-11777 -101;-11893 -200 1;-12004 -303;-12059 -441;-12059 -616 1;-12059 -791;-12004 -927;-11893 -1026 1;-11777 -1128;-11642 -1179;-11490 -1179 1;-11336 -1179;-11204 -1128;-11093 -1026 1;-10978 -927;-10920 -791;-10920 -616 1;-10920 -441;-10978 -303;-11093 -200 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">-11009 3722;-11963 3722;-11963 357;-11009 357;-11009 3722 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">-8649 1053 1;-8755 1053;-8847 1073;-8924 1112 1;-9001 1145;-9065 1192;-9115 1252 1;-9167 1312;-9207 1381;-9237 1464 1;-9264 1539;-9282 1618;-9296 1700;-8034 1700 1;-8039 1618;-8054 1539;-8079 1464 1;-8101 1387;-8137 1318;-8189 1259 1;-8236 1199;-8297 1150;-8374 1112 1;-8445 1073;-8537 1053;-8649 1053 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="37">-5220 1105 1;-5297 1110;-5365 1115;-5425 1125;-5425 3722;-6378 3722;-6378 472 1;-6217 425;-6007 382;-5751 344 1;-5495 301;-5227 280;-4945 280 1;-4658 280;-4422 318;-4235 395 1;-4042 467;-3890 572;-3781 709 1;-3669 845;-3591 1007;-3544 1195 1;-3497 1381;-3474 1592;-3474 1821;-3474 3722;-4427 3722;-4427 1937 1;-4427 1630;-4467 1411;-4549 1285 1;-4628 1156;-4780 1092;-5002 1092 1;-5070 1092;-5143 1097;-5220 1105 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="39">-2636 2346;-2636 -481;-1683 -634;-1683 357;-539 357;-539 1150;-1683 1150;-1683 2333 1;-1683 2535;-1648 2694;-1581 2813 1;-1508 2933;-1365 2993;-1151 2993 1;-1050 2993;-945 2984;-838 2966 1;-728 2946;-627 2918;-539 2884;-404 3626 1;-518 3673;-646 3712;-787 3748 1;-928 3780;-1102 3799;-1305 3799 1;-1566 3799;-1781 3764;-1951 3696 1;-2123 3624;-2259 3526;-2361 3402 1;-2463 3274;-2536 3121;-2579 2941 1;-2618 2763;-2636 2565;-2636 2346 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">2142 1464 1;2121 1387;2084 1318;2032 1259 1;1986 1199;1924 1150;1847 1112 1;1776 1073;1685 1053;1572 1053 1;1466 1053;1375 1073;1298 1112 1;1221 1145;1156 1192;1106 1252 1;1054 1312;1014 1381;984 1464 1;958 1539;939 1618;926 1700;2187 1700 1;2183 1618;2168 1539;2142 1464 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">5923 1700 1;5919 1618;5904 1539;5878 1464 1;5856 1387;5821 1318;5769 1259 1;5723 1199;5661 1150;5585 1112 1;5511 1073;5419 1053;5308 1053 1;5201 1053;5110 1073;5033 1112 1;4957 1145;4893 1192;4841 1252 1;4790 1312;4750 1381;4720 1464 1;4695 1539;4675 1618;4663 1700;5923 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="35">8718 1118 1;8637 1126;8575 1137;8534 1150;8534 3722;7581 3722;7581 536 1;7750 476;7950 420;8182 369 1;8415 314;8677 286;8962 286 1;9013 286;9075 290;9146 299 1;9220 303;9292 312;9365 325 1;9437 333;9510 345;9583 363 1;9655 375;9717 392;9768 414;9608 1201 1;9523 1180;9424 1158;9306 1137 1;9191 1112;9069 1098;8937 1098 1;8877 1098;8804 1105;8718 1118 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="25">10350 -200 1;10238 -303;10183 -441;10183 -616 1;10183 -791;10238 -927;10350 -1026 1;10465 -1128;10600 -1179;10752 -1179 1;10906 -1179;11038 -1128;11149 -1026 1;11264 -927;11323 -791;11323 -616 1;11323 -441;11264 -303;11149 -200 1;11038 -101;10906 -52;10752 -52 1;10600 -52;10465 -101;10350 -200 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">11233 3722;10279 3722;10279 357;11233 357;11233 3722 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="37">14726 709 1;14836 845;14916 1007;14963 1195 1;15010 1381;15033 1592;15033 1821;15033 3722;14080 3722;14080 1937 1;14080 1630;14039 1411;13958 1285 1;13876 1156;13725 1092;13504 1092 1;13435 1092;13363 1097;13287 1105 1;13210 1110;13142 1115;13082 1125;13082 3722;12129 3722;12129 472 1;12290 425;12499 382;12756 344 1;13012 301;13280 280;13562 280 1;13847 280;14083 318;14272 395 1;14463 467;14614 572;14726 709 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="74">-17051 -1307 1;-17299 -1307;-17525 -1349;-17729 -1434 1;-17931 -1521;-18102 -1639;-18247 -1794 1;-18392 -1951;-18505 -2139;-18587 -2355 1;-18669 -2579;-18708 -2820;-18708 -3085 1;-18708 -3350;-18669 -3591;-18587 -3808 1;-18502 -4027;-18387 -4211;-18242 -4365 1;-18092 -4518;-17917 -4638;-17717 -4723 1;-17512 -4808;-17291 -4851;-17051 -4851 1;-16808 -4851;-16586 -4808;-16386 -4723 1;-16182 -4638;-16006 -4518;-15861 -4365 1;-15716 -4211;-15603 -4027;-15523 -3808 1;-15442 -3591;-15401 -3350;-15401 -3085 1;-15401 -2820;-15440 -2579;-15517 -2355 1;-15593 -2139;-15703 -1951;-15848 -1794 1;-15993 -1639;-16168 -1521;-16373 -1434 1;-16574 -1349;-16800 -1307;-17051 -1307 18;-17051 -2126 1;-16834 -2126;-16668 -2210;-16552 -2383 1;-16433 -2557;-16373 -2792;-16373 -3085 1;-16373 -3380;-16433 -3610;-16552 -3777 1;-16668 -3946;-16834 -4034;-17051 -4034 1;-17269 -4034;-17437 -3946;-17557 -3777 1;-17675 -3610;-17736 -3380;-17736 -3085 1;-17736 -2792;-17675 -2557;-17557 -2383 1;-17437 -2210;-17269 -2126;-17051 -2126 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="69">-14662 -213;-14662 -4646 1;-14576 -4673;-14478 -4697;-14369 -4716 1;-14257 -4743;-14142 -4765;-14022 -4781 1;-13898 -4798;-13776 -4811;-13652 -4819 1;-13524 -4833;-13402 -4838;-13287 -4838 1;-13009 -4838;-12763 -4796;-12544 -4711 1;-12328 -4630;-12144 -4513;-11995 -4358 1;-11846 -4210;-11732 -4027;-11657 -3808 1;-11574 -3591;-11535 -3348;-11535 -3078 1;-11535 -2819;-11566 -2582;-11629 -2368 1;-11694 -2156;-11788 -1972;-11911 -1819 1;-12034 -1666;-12189 -1546;-12373 -1461 1;-12556 -1376;-12765 -1333;-13006 -1333 1;-13137 -1333;-13261 -1346;-13377 -1371 1;-13492 -1395;-13602 -1432;-13708 -1479;-13708 -213;-14662 -213 18;-13184 -2139 1;-12733 -2139;-12506 -2443;-12506 -3054 1;-12506 -3348;-12572 -3582;-12704 -3756 1;-12837 -3936;-13032 -4027;-13293 -4027 1;-13379 -4027;-13457 -4021;-13530 -4013 1;-13602 -4008;-13662 -4004;-13708 -3993;-13708 -2274 1;-13648 -2234;-13572 -2202;-13479 -2177 1;-13381 -2152;-13282 -2139;-13184 -2139 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">-9182 -1307 1;-9485 -1307;-9750 -1352;-9976 -1440 1;-10198 -1530;-10383 -1652;-10533 -1806 1;-10678 -1964;-10787 -2149;-10858 -2362 1;-10926 -2575;-10962 -2807;-10962 -3054 1;-10962 -3352;-10917 -3612;-10827 -3833 1;-10733 -4060;-10611 -4248;-10462 -4396 1;-10314 -4547;-10141 -4660;-9950 -4736 1;-9754 -4813;-9553 -4851;-9349 -4851 1;-8872 -4851;-8494 -4705;-8217 -4410 1;-7939 -4120;-7801 -3692;-7801 -3123 1;-7801 -3069;-7803 -3007;-7808 -2939 1;-7810 -2873;-7816 -2817;-7819 -2766;-9982 -2766 1;-9961 -2569;-9870 -2413;-9707 -2299 1;-9545 -2184;-9327 -2126;-9055 -2126 1;-8881 -2126;-8708 -2141;-8542 -2171 1;-8372 -2205;-8234 -2246;-8127 -2292;-7999 -1517 1;-8051 -1493;-8119 -1468;-8204 -1440 1;-8289 -1416;-8385 -1395;-8492 -1378 1;-8594 -1356;-8706 -1339;-8824 -1326 1;-8944 -1314;-9063 -1307;-9182 -1307 18;-9982 -3418;-8723 -3418 1;-8725 -3500;-8740 -3578;-8768 -3655 1;-8789 -3732;-8824 -3800;-8875 -3860 1;-8922 -3920;-8984 -3968;-9061 -4006 1;-9134 -4045;-9225 -4065;-9337 -4065 1;-9444 -4065;-9535 -4045;-9612 -4006 1;-9688 -3974;-9752 -3927;-9803 -3867 1;-9855 -3807;-9895 -3737;-9925 -3655 1;-9950 -3578;-9970 -3500;-9982 -3418 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="38">-17051 -2126 1;-17269 -2126;-17437 -2210;-17557 -2383 1;-17675 -2557;-17736 -2792;-17736 -3085 1;-17736 -3380;-17675 -3610;-17557 -3777 1;-17437 -3946;-17269 -4034;-17051 -4034 1;-16834 -4034;-16668 -3946;-16552 -3777 1;-16433 -3610;-16373 -3380;-16373 -3085 1;-16373 -2792;-16433 -2557;-16552 -2383 1;-16668 -2210;-16834 -2126;-17051 -2126 18;-17064 -2593 1;-16944 -2591;-16842 -2808;-16838 -3077 1;-16834 -3347;-16928 -3567;-17049 -3569 1;-17170 -3571;-17271 -3354;-17275 -3084 1;-17280 -2815;-17185 -2595;-17064 -2593 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">-8496 3810 1;-8798 3810;-9062 3765;-9288 3677 1;-9510 3588;-9696 3466;-9845 3312 1;-9990 3154;-10098 2969;-10171 2756 1;-10240 2542;-10273 2311;-10273 2065 1;-10273 1766;-10230 1507;-10140 1285 1;-10045 1058;-9923 870;-9775 722 1;-9625 572;-9455 459;-9264 382 1;-9067 305;-8867 267;-8662 267 1;-8184 267;-7806 414;-7529 709 1;-7252 998;-7113 1426;-7113 1995 1;-7113 2050;-7116 2112;-7119 2180 1;-7124 2245;-7128 2301;-7132 2353;-9296 2353 1;-9273 2550;-9182 2704;-9020 2820 1;-8857 2934;-8640 2993;-8368 2993 1;-8193 2993;-8022 2978;-7855 2948 1;-7684 2912;-7546 2873;-7440 2826;-7311 3601 1;-7363 3626;-7431 3651;-7516 3677 1;-7603 3703;-7697 3724;-7804 3741 1;-7908 3763;-8017 3779;-8137 3793 1;-8257 3804;-8376 3810;-8496 3810 18;-9296 1700;-8034 1700 1;-8039 1618;-8054 1539;-8079 1464 1;-8101 1387;-8137 1318;-8189 1259 1;-8236 1199;-8297 1150;-8374 1112 1;-8445 1073;-8537 1053;-8649 1053 1;-8755 1053;-8847 1073;-8924 1112 1;-9001 1145;-9065 1192;-9115 1252 1;-9167 1312;-9207 1381;-9237 1464 1;-9264 1539;-9282 1618;-9296 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">1726 3810 1;1422 3810;1159 3765;933 3677 1;712 3588;524 3466;376 3312 1;231 3154;123 2969;49 2756 1;-19 2542;-52 2311;-52 2065 1;-52 1766;-9 1507;81 1285 1;177 1058;298 870;446 722 1;596 572;766 459;958 382 1;1154 305;1354 267;1559 267 1;2038 267;2416 414;2692 709 1;2968 998;3109 1426;3109 1995 1;3109 2050;3105 2112;3102 2180 1;3097 2245;3094 2301;3088 2353;926 2353 1;947 2550;1039 2704;1201 2820 1;1364 2934;1581 2993;1854 2993 1;2029 2993;2199 2978;2365 2948 1;2538 2912;2675 2873;2782 2826;2910 3601 1;2859 3626;2790 3651;2705 3677 1;2619 3703;2524 3724;2417 3741 1;2314 3763;2204 3779;2084 3793 1;1965 3804;1846 3810;1726 3810 18;926 1700;2187 1700 1;2183 1618;2168 1539;2142 1464 1;2121 1387;2084 1318;2032 1259 1;1986 1199;1924 1150;1847 1112 1;1776 1073;1685 1053;1572 1053 1;1466 1053;1375 1073;1298 1112 1;1221 1145;1156 1192;1106 1252 1;1054 1312;1014 1381;984 1464 1;958 1539;939 1618;926 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">5463 3810 1;5160 3810;4895 3765;4668 3677 1;4446 3588;4262 3466;4112 3312 1;3967 3154;3858 2969;3787 2756 1;3719 2542;3684 2311;3684 2065 1;3684 1766;3729 1507;3819 1285 1;3911 1058;4033 870;4183 722 1;4332 572;4503 459;4695 382 1;4891 305;5091 267;5297 267 1;5773 267;6151 414;6428 709 1;6706 998;6844 1426;6844 1995 1;6844 2050;6843 2112;6837 2180 1;6834 2245;6829 2301;6826 2353;4663 2353 1;4683 2550;4775 2704;4938 2820 1;5100 2934;5318 2993;5590 2993 1;5765 2993;5936 2978;6103 2948 1;6272 2912;6411 2873;6518 2826;6646 3601 1;6594 3626;6526 3651;6441 3677 1;6356 3703;6259 3724;6152 3741 1;6051 3763;5939 3779;5821 3793 1;5701 3804;5581 3810;5463 3810 18;4663 1700;5923 1700 1;5919 1618;5904 1539;5878 1464 1;5856 1387;5821 1318;5769 1259 1;5723 1199;5661 1150;5585 1112 1;5511 1073;5419 1053;5308 1053 1;5201 1053;5110 1073;5033 1112 1;4957 1145;4893 1192;4841 1252 1;4790 1312;4750 1381;4720 1464 1;4695 1539;4675 1618;4663 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="87">17092 4924 1;16887 4924;16682 4905;16477 4867 1;16272 4832;16083 4785;15908 4725;16074 3926 1;16224 3986;16379 4032;16543 4067 1;16707 4101;16896 4119;17105 4119 1;17377 4119;17570 4059;17680 3939 1;17796 3819;17854 3666;17854 3479;17854 3357 1;17750 3404;17644 3441;17533 3466 1;17427 3487;17309 3498;17182 3498 1;16717 3498;16361 3361;16113 3087 1;15866 2811;15743 2424;15743 1930 1;15743 1683;15781 1458;15857 1259 1;15934 1053;16044 878;16189 733 1;16339 589;16521 478;16734 402 1;16947 320;17187 280;17457 280 1;17572 280;17689 286;17809 299 1;17931 307;18053 320;18173 337 1;18292 354;18405 375;18512 402 1;18624 422;18722 446;18806 472;18806 3299 1;18806 3849;18665 4257;18385 4522 1;18107 4790;17677 4924;17092 4924 18;17360 2730 1;17459 2730;17550 2718;17636 2691 1;17720 2666;17794 2636;17854 2603;17854 1080 1;17807 1072;17750 1065;17687 1060 1;17623 1052;17548 1047;17464 1047 1;17212 1047;17024 1130;16900 1297 1;16776 1464;16714 1675;16714 1930 1;16714 2463;16930 2730;17360 2730 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="38">-17051 2993 1;-17269 2993;-17437 2908;-17557 2736 1;-17675 2561;-17736 2326;-17736 2033 1;-17736 1738;-17675 1509;-17557 1342 1;-17437 1171;-17269 1085;-17051 1085 1;-16834 1085;-16668 1171;-16552 1342 1;-16433 1509;-16373 1738;-16373 2033 1;-16373 2326;-16433 2561;-16552 2736 1;-16668 2908;-16834 2993;-17051 2993 18;-17064 2526 1;-16944 2528;-16842 2311;-16838 2042 1;-16834 1772;-16928 1552;-17049 1550 1;-17170 1548;-17271 1765;-17275 2035 1;-17280 2304;-17185 2524;-17064 2526 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="24" min_area="0" patterns="0"/></symbol><object type="1"><coords count="74">-17051 3810 1;-17299 3810;-17525 3769;-17729 3684 1;-17931 3598;-18102 3479;-18247 3324 1;-18392 3168;-18505 2980;-18587 2763 1;-18669 2540;-18708 2298;-18708 2033 1;-18708 1768;-18669 1526;-18587 1310 1;-18502 1092;-18387 906;-18242 754 1;-18092 600;-17917 480;-17717 395 1;-17512 310;-17291 267;-17051 267 1;-16808 267;-16586 310;-16386 395 1;-16182 480;-16006 600;-15861 754 1;-15716 906;-15603 1092;-15523 1310 1;-15442 1526;-15401 1768;-15401 2033 1;-15401 2298;-15440 2540;-15517 2763 1;-15593 2980;-15703 3168;-15848 3324 1;-15993 3479;-16168 3598;-16373 3684 1;-16574 3769;-16800 3810;-17051 3810 18;-17051 2993 1;-16834 2993;-16668 2908;-16552 2736 1;-16433 2561;-16373 2326;-16373 2033 1;-16373 1738;-16433 1509;-16552 1342 1;-16668 1171;-16834 1085;-17051 1085 1;-17269 1085;-17437 1171;-17557 1342 1;-17675 1509;-17736 1738;-17736 2033 1;-17736 2326;-17675 2561;-17557 2736 1;-17437 2908;-17269 2993;-17051 2993 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="1794">17090 5390 1;16864 5390;16623 5362;16391 5321 1;16389 5320;16389 5320;16387 5320 1;16169 5284;15963 5240;15758 5170 1;15555 5102;15409 4847;15450 4637 1;15450 4635;15450 4634;15450 4632;15538 4221 1;15549 4165;15526 4109;15478 4079 1;15431 4049;15369 4052;15324 4088 1;15245 4152;15138 4191;15033 4191;14080 4191 1;13930 4193;13775 4107;13692 3983 1;13669 3944;13625 3921;13580 3921 1;13534 3921;13492 3944;13466 3983 1;13385 4107;13233 4191;13083 4191;12131 4191 1;12001 4191;11866 4131;11781 4032 1;11755 4004;11719 3987;11680 3987 1;11642 3987;11606 4004;11581 4032 1;11496 4131;11364 4191;11234 4191;10281 4191 1;10048 4193;9815 3957;9815 3724;9815 1796 1;9815 1758;9798 1721;9770 1697 1;9741 1670;9703 1658;9665 1663 1;9608 1670;9553 1668;9498 1655 1;9433 1638;9341 1618;9227 1597 1;9221 1595;9217 1593;9210 1592 1;9161 1582;9142 1582;9157 1584 1;9118 1578;9078 1590;9048 1615 1;9018 1640;9001 1678;9001 1716 1;9001 1716;9001 3724;9001 3724 1;9001 3957;8768 4193;8535 4191;7582 4191 1;7424 4191;7262 4099;7183 3962 1;7162 3926;7125 3900;7082 3894 1;7040 3889;6999 3902;6969 3932 1;6935 3966;6899 3996;6855 4016 1;6768 4059;6679 4092;6574 4124 1;6467 4157;6364 4178;6253 4195 1;6244 4197;6236 4199;6226 4202 1;6107 4227;5991 4240;5870 4254 1;5738 4267;5601 4279;5461 4279 1;5121 4279;4808 4231;4520 4120 1;4514 4118;4506 4114;4498 4110 1;4220 3998;3977 3840;3778 3636 1;3717 3566;3663 3494;3609 3412 1;3571 3361;3503 3344;3445 3371 1;3389 3396;3357 3459;3370 3521 1;3404 3711;3293 3930;3120 4016 1;3034 4060;2945 4092;2837 4124 1;2732 4157;2628 4178;2517 4195 1;2508 4197;2499 4199;2490 4202 1;2372 4227;2256 4240;2134 4254 1;2001 4267;1866 4279;1726 4279 1;1386 4279;1071 4231;785 4120 1;778 4118;771 4114;761 4110 1;562 4029;383 3917;218 3782 1;186 3757;145 3748;105 3757 1;64 3765;32 3793;13 3829 1;-35 3929;-124 4013;-229 4054 1;-362 4109;-512 4164;-678 4204 1;-871 4251;-1073 4266;-1303 4266 1;-1606 4266;-1876 4227;-2127 4126 1;-2355 4031;-2561 3892;-2717 3706 1;-2719 3701;-2721 3699;-2719 3702 1;-2716 3707;-2718 3706;-2721 3700 1;-2724 3694;-2734 3667;-2764 3624 1;-2799 3577;-2859 3558;-2915 3576 1;-2969 3594;-3007 3646;-3006 3704;-3006 3724 1;-3006 3957;-3239 4193;-3473 4191;-4427 4191 1;-4577 4193;-4730 4107;-4814 3983 1;-4838 3944;-4880 3921;-4927 3921 1;-4972 3921;-5013 3944;-5038 3983 1;-5122 4107;-5274 4191;-5421 4191;-6377 4191 1;-6533 4191;-6696 4099;-6777 3962 1;-6796 3926;-6833 3900;-6875 3894 1;-6916 3889;-6958 3902;-6988 3932 1;-7021 3966;-7059 3996;-7101 4016 1;-7101 4017;-7104 4016;-7104 4016 1;-7191 4059;-7278 4092;-7384 4124 1;-7489 4157;-7592 4178;-7704 4195 1;-7714 4197;-7722 4199;-7729 4199 1;-7731 4201;-7733 4202;-7735 4204 1;-7849 4227;-7966 4240;-8088 4254 1;-8221 4267;-8355 4279;-8496 4279 1;-8836 4279;-9151 4231;-9437 4120 1;-9444 4118;-9450 4114;-9461 4110 1;-9737 3998;-9980 3840;-10181 3635 1;-10185 3631;-10185 3628;-10186 3624 1;-10218 3591;-10250 3536;-10300 3470 1;-10333 3425;-10393 3404;-10450 3423 1;-10505 3440;-10541 3493;-10541 3549 1;-10541 3549;-10541 3724;-10541 3724 1;-10541 3957;-10774 4193;-11008 4191;-11961 4191 1;-12194 4193;-12427 3957;-12427 3724;-12427 1796 1;-12427 1758;-12444 1721;-12472 1697 1;-12501 1670;-12539 1658;-12577 1663 1;-12634 1670;-12689 1668;-12744 1655 1;-12809 1638;-12901 1618;-13015 1597 1;-13021 1595;-13026 1593;-13032 1592 1;-13081 1582;-13101 1582;-13086 1584 1;-13124 1578;-13164 1590;-13194 1615 1;-13224 1640;-13240 1678;-13240 1716;-13240 3724 1;-13240 3957;-13474 4193;-13707 4191;-14660 4191 1;-14893 4193;-15126 3957;-15126 3724;-15126 3532 1;-15126 3476;-15164 3423;-15218 3406 1;-15273 3387;-15335 3408;-15368 3455 1;-15420 3526;-15463 3591;-15511 3643 1;-15517 3651;-15517 3652;-15518 3656 1;-15703 3851;-15933 4002;-16189 4110 1;-16458 4224;-16748 4279;-17051 4279 1;-17346 4279;-17629 4225;-17889 4120 1;-17895 4118;-17902 4114;-17909 4112 1;-18160 4005;-18392 3849;-18580 3651 1;-18586 3643;-18587 3641;-18588 3637 1;-18776 3434;-18919 3196;-19017 2931 1;-19017 2931;-19017 2933;-19019 2927 1;-19122 2648;-19176 2350;-19176 2033 1;-19176 1718;-19123 1419;-19019 1142;-19019 1139 1;-18913 875;-18770 642;-18587 446 1;-18407 241;-18054 35;-17897 -33 1;-17894 -33;-17891 -35;-17889 -37 1;-17628 -143;-17344 -200;-17051 -200 1;-16755 -200;-16468 -143;-16206 -33 1;-15946 76;-15707 235;-15518 433 1;-15470 487;-15425 560;-15368 639 1;-15335 685;-15273 705;-15218 687 1;-15164 669;-15126 617;-15126 559;-15126 538 1;-15126 435;-15088 329;-15023 247 1;-14983 198;-14983 129;-15023 80 1;-15088 -1;-15126 -108;-15126 -211;-15126 -1586 1;-15126 -1644;-15164 -1696;-15218 -1714 1;-15273 -1733;-15335 -1712;-15368 -1666 1;-15420 -1594;-15463 -1529;-15506 -1483 1;-15508 -1478;-15511 -1474;-15517 -1465 1;-15701 -1271;-15928 -1115;-16189 -1005 1;-16463 -889;-16753 -841;-17051 -841 1;-17341 -841;-17624 -888;-17889 -995 1;-17895 -997;-17902 -1001;-17909 -1003 1;-18165 -1113;-18394 -1273;-18578 -1463 1;-18582 -1468;-18582 -1470;-18584 -1474 1;-18586 -1476;-18587 -1479;-18588 -1483 1;-18776 -1684;-18919 -1924;-19019 -2192 1;-19122 -2472;-19176 -2770;-19176 -3085 1;-19176 -3401;-19122 -3698;-19019 -3973 1;-18915 -4238;-18774 -4473;-18586 -4675 1;-18582 -4680;-18580 -4682;-18580 -4684 1;-18577 -4686;-18573 -4688;-18572 -4690 1;-18384 -4883;-18152 -5043;-17897 -5151 1;-17894 -5153;-17891 -5154;-17889 -5156 1;-17628 -5263;-17344 -5317;-17051 -5317 1;-16755 -5317;-16468 -5263;-16204 -5150 1;-15943 -5038;-15707 -4885;-15518 -4684 1;-15468 -4631;-15425 -4560;-15368 -4481 1;-15335 -4433;-15273 -4413;-15218 -4431 1;-15164 -4449;-15126 -4502;-15126 -4560 1;-15126 -4560;-15126 -4648;-15126 -4648 1;-15126 -4840;-14978 -5038;-14794 -5093 1;-14694 -5123;-14598 -5144;-14499 -5165 1;-14499 -5165;-14477 -5168;-14452 -5173 1;-14340 -5198;-14217 -5219;-14085 -5240 1;-13922 -5266;-13842 -5266;-13682 -5281 1;-13547 -5294;-13415 -5306;-13286 -5306 1;-12964 -5306;-12660 -5253;-12380 -5145 1;-12373 -5143;-12371 -5143;-12369 -5143 1;-12101 -5041;-11864 -4883;-11665 -4681 1;-11657 -4671;-11653 -4668;-11649 -4665 1;-11536 -4548;-11441 -4412;-11358 -4260 1;-11334 -4218;-11289 -4192;-11242 -4192 1;-11193 -4192;-11148 -4218;-11125 -4260 1;-11028 -4434;-10923 -4593;-10791 -4726 1;-10600 -4917;-10372 -5065;-10128 -5165 1;-10125 -5165;-10124 -5166;-10118 -5168 1;-9872 -5263;-9613 -5317;-9350 -5317 1;-8783 -5317;-8251 -5120;-7882 -4730 1;-7846 -4691;-7812 -4641;-7767 -4581 1;-7733 -4538;-7676 -4519;-7622 -4536 1;-7569 -4553;-7532 -4600;-7529 -4656 1;-7526 -4846;-7376 -5039;-7192 -5093 1;-6999 -5148;-6777 -5186;-6518 -5226 1;-6513 -5227;-6510 -5229;-6505 -5231 1;-6226 -5276;-5933 -5306;-5630 -5306 1;-5305 -5306;-5020 -5259;-4754 -5153 1;-4499 -5054;-4271 -4908;-4106 -4706 1;-3948 -4513;-3839 -4282;-3777 -4034 1;-3719 -3803;-3694 -3557;-3694 -3294;-3694 -1395 1;-3694 -1161;-3927 -927;-4160 -927;-5113 -927 1;-5263 -927;-5419 -1011;-5502 -1136 1;-5525 -1174;-5569 -1198;-5613 -1198 1;-5660 -1198;-5701 -1174;-5727 -1136 1;-5808 -1012;-5960 -927;-6110 -927;-7063 -927 1;-7220 -929;-7380 -1021;-7459 -1158 1;-7479 -1194;-7516 -1219;-7558 -1224 1;-7599 -1231;-7641 -1216;-7671 -1186 1;-7706 -1151;-7744 -1121;-7790 -1100 1;-7898 -1046;-7976 -1023;-8071 -995 1;-8178 -963;-8281 -942;-8392 -924 1;-8400 -923;-8409 -921;-8417 -920 1;-8419 -918;-8419 -916;-8421 -916 1;-8527 -894;-8644 -874;-8775 -861 1;-8917 -846;-9054 -841;-9183 -841 1;-9523 -841;-9837 -888;-10125 -999 1;-10132 -1003;-10138 -1004;-10148 -1010 1;-10205 -1033;-10261 -1066;-10333 -1102 1;-10380 -1126;-10438 -1119;-10478 -1085 1;-10520 -1051;-10537 -996;-10520 -944 1;-10481 -826;-10453 -709;-10453 -616 1;-10453 -441;-10525 -246;-10637 -67 1;-10667 -20;-10665 40;-10633 84 1;-10575 164;-10541 262;-10541 359;-10541 559 1;-10541 617;-10505 669;-10450 687 1;-10393 705;-10333 685;-10300 639 1;-10233 547;-10171 461;-10103 392 1;-9914 202;-9685 53;-9442 -45 1;-9439 -46;-9435 -48;-9433 -50 1;-9432 -50;-9431 -50;-9429 -50 1;-9183 -144;-8927 -200;-8662 -200 1;-8096 -200;-7562 -1;-7194 386;-7194 386 1;-7192 387;-7194 385;-7194 388 1;-7192 392;-7192 389;-7192 390;-7143 453;-7079 538 1;-7046 581;-6988 598;-6935 581 1;-6882 566;-6846 519;-6843 463 1;-6837 273;-6688 79;-6505 25 1;-6313 -30;-6091 -67;-5824 -110 1;-5540 -156;-5246 -186;-4944 -186 1;-4619 -186;-4332 -142;-4066 -35 1;-3813 64;-3584 211;-3419 414 1;-3404 432;-3387 477;-3347 534 1;-3315 585;-3254 609;-3195 590 1;-3139 574;-3101 519;-3103 459 1;-3103 459;-3103 -482;-3103 -482 1;-3103 -693;-2915 -908;-2706 -941;-1753 -1091 1;-1501 -1129;-1215 -886;-1215 -633;-1215 -241 1;-1215 -166;-1155 -108;-1082 -108;-537 -108 1;-323 -106;-109 82;-79 292 1;-70 342;-35 384;11 399 1;60 415;111 402;147 367 1;333 190;549 49;786 -47 1;1037 -144;1294 -200;1559 -200 1;2126 -200;2658 -1;3027 388 1;3144 513;3239 654;3317 805 1;3338 848;3383 875;3432 875 1;3481 876;3526 852;3550 808 1;3642 654;3737 510;3853 392 1;4045 202;4273 53;4521 -47;4521 -47 1;4521 -48;4520 -46;4522 -47 1;4529 -50;4527 -50;4527 -50 1;4773 -144;5031 -200;5295 -200 1;5861 -200;6394 -1;6763 388 1;6802 432;6839 480;6882 538 1;6914 581;6969 600;7022 585 1;7074 572;7112 529;7119 476 1;7140 310;7271 152;7427 97 1;7615 32;7831 -23;8080 -81 1;8085 -82;8083 -82;8083 -82 1;8360 -146;8654 -178;8965 -178 1;9028 -178;9099 -173;9168 -166 1;9182 -165;9190 -163;9205 -161 1;9278 -156;9347 -148;9415 -136 1;9437 -133;9445 -133;9447 -133 1;9507 -125;9570 -116;9635 -103 1;9681 -95;9728 -112;9758 -146 1;9788 -181;9800 -230;9785 -274 1;9745 -394;9718 -512;9718 -616 1;9718 -878;9838 -1186;10043 -1369 1;10048 -1372;10051 -1374;10058 -1380 1;10243 -1538;10508 -1644;10751 -1644 1;10994 -1644;11257 -1542;11452 -1373 1;11458 -1367;11460 -1365;11466 -1364 1;11671 -1177;11789 -869;11789 -616 1;11789 -441;11717 -246;11606 -67 1;11576 -18;11579 44;11619 94 1;11644 132;11678 151;11716 155 1;11753 159;11791 147;11817 122 1;11871 77;11935 44;12001 25 1;12194 -30;12416 -67;12682 -110 1;12967 -156;13260 -186;13564 -186 1;13889 -186;14173 -142;14439 -35 1;14695 64;14923 211;15088 414 1;15181 529;15253 669;15316 817 1;15337 863;15381 893;15431 897 1;15481 900;15529 874;15555 830 1;15641 673;15739 530;15862 404 1;16061 212;16299 65;16570 -35 1;16849 -140;17147 -186;17457 -186 1;17585 -186;17713 -174;17847 -161 1;17854 -161;17842 -163;17865 -161 1;17990 -153;18110 -138;18237 -120 1;18355 -103;18475 -82;18593 -58 1;18605 -52;18617 -50;18628 -50 1;18743 -26;18848 -1;18940 25 1;19124 80;19273 279;19273 472;19273 3299 1;19273 3915;19111 4466;18724 4844 1;18718 4850;18716 4852;18709 4858 1;18305 5243;17742 5390;17090 5390 18;-1305 3799 1;-1102 3799;-928 3780;-787 3748 1;-646 3712;-518 3673;-404 3626;-539 2884 1;-627 2918;-728 2946;-838 2966 1;-945 2984;-1050 2993;-1151 2993 1;-1365 2993;-1508 2933;-1581 2813 1;-1648 2694;-1683 2535;-1683 2333;-1683 1150;-539 1150;-539 357;-1683 357;-1683 -634;-2636 -481;-2636 2346 1;-2636 2565;-2618 2763;-2579 2941 1;-2536 3121;-2463 3274;-2361 3402 1;-2259 3526;-2123 3624;-1951 3696 1;-1781 3764;-1566 3799;-1305 3799 18;10752 -52 1;10906 -52;11038 -101;11149 -200 1;11264 -303;11323 -441;11323 -616 1;11323 -791;11264 -927;11149 -1026 1;11038 -1128;10906 -1179;10752 -1179 1;10600 -1179;10465 -1128;10350 -1026 1;10238 -927;10183 -791;10183 -616 1;10183 -441;10238 -303;10350 -200 1;10465 -101;10600 -52;10752 -52 18;10279 3722;11233 3722;11233 357;10279 357;10279 3722 18;-11963 3722;-11009 3722;-11009 357;-11963 357;-11963 3722 18;7581 3722;8534 3722;8534 1150 1;8575 1137;8637 1126;8718 1118 1;8804 1105;8877 1098;8937 1098 1;9069 1098;9191 1112;9306 1137 1;9424 1158;9523 1180;9608 1201;9768 414 1;9717 392;9655 375;9583 363 1;9510 345;9437 333;9365 325 1;9292 312;9220 303;9146 299 1;9075 290;9013 286;8962 286 1;8677 286;8415 314;8182 369 1;7950 420;7750 476;7581 536;7581 3722 18;12129 3722;13082 3722;13082 1125 1;13142 1115;13210 1110;13287 1105 1;13363 1097;13435 1092;13504 1092 1;13725 1092;13876 1156;13958 1285 1;14039 1411;14080 1630;14080 1937;14080 3722;15033 3722;15033 1821 1;15033 1592;15010 1381;14963 1195 1;14916 1007;14836 845;14726 709 1;14614 572;14463 467;14272 395 1;14083 318;13847 280;13562 280 1;13280 280;13012 301;12756 344 1;12499 382;12290 425;12129 472;12129 3722 18;15729 3616 1;15737 3607;15749 3596;15758 3588 1;15784 3562;15799 3528;15799 3491 1;15799 3491;15799 3489;15799 3487;15794 3440;15767 3400 1;15769 3404;15763 3384;15737 3354 1;15711 3321;15671 3303;15623 3306 1;15549 3318;15499 3374;15499 3441 1;15499 3441;15499 3524;15499 3524 1;15501 3579;15533 3628;15585 3648 1;15634 3667;15691 3656;15729 3616 18;-14662 3722;-13708 3722;-13708 1150 1;-13667 1137;-13605 1126;-13524 1118 1;-13439 1105;-13366 1098;-13306 1098 1;-13174 1098;-13051 1112;-12936 1137 1;-12819 1158;-12719 1180;-12634 1201;-12474 414 1;-12526 392;-12587 375;-12660 363 1;-12733 345;-12806 333;-12878 325 1;-12951 312;-13022 303;-13096 299 1;-13167 290;-13229 286;-13280 286 1;-13565 286;-13827 314;-14060 369 1;-14292 420;-14492 476;-14662 536;-14662 3722 18;-6378 3722;-5425 3722;-5425 1125 1;-5365 1115;-5297 1110;-5220 1105 1;-5143 1097;-5070 1092;-5002 1092 1;-4780 1092;-4628 1156;-4549 1285 1;-4467 1411;-4427 1630;-4427 1937;-4427 3722;-3474 3722;-3474 1821 1;-3474 1592;-3497 1381;-3544 1195 1;-3591 1007;-3669 845;-3781 709 1;-3890 572;-4042 467;-4235 395 1;-4422 318;-4658 280;-4945 280 1;-5227 280;-5495 301;-5751 344 1;-6007 382;-6217 425;-6378 472;-6378 3722 18;17092 4924 1;17677 4924;18107 4790;18385 4522 1;18665 4257;18806 3849;18806 3299;18806 472 1;18722 446;18624 422;18512 402 1;18405 375;18292 354;18173 337 1;18053 320;17931 307;17809 299 1;17689 286;17572 280;17457 280 1;17187 280;16947 320;16734 402 1;16521 478;16339 589;16189 733 1;16044 878;15934 1053;15857 1259 1;15781 1458;15743 1683;15743 1930 1;15743 2424;15866 2811;16113 3087 1;16361 3361;16717 3498;17182 3498 1;17309 3498;17427 3487;17533 3466 1;17644 3441;17750 3404;17854 3357;17854 3479 1;17854 3666;17796 3819;17680 3939 1;17570 4059;17377 4119;17105 4119 1;16896 4119;16707 4101;16543 4067 1;16379 4032;16224 3986;16074 3926;15908 4725 1;16083 4785;16272 4832;16477 4867 1;16682 4905;16887 4924;17092 4924 18;1726 3810 1;1846 3810;1965 3804;2084 3793 1;2204 3779;2314 3763;2417 3741 1;2524 3724;2619 3703;2705 3677 1;2790 3651;2859 3626;2910 3601;2782 2826 1;2675 2873;2538 2912;2365 2948 1;2199 2978;2029 2993;1854 2993 1;1581 2993;1364 2934;1201 2820 1;1039 2704;947 2550;926 2353;3088 2353 1;3094 2301;3097 2245;3102 2180 1;3105 2112;3109 2050;3109 1995 1;3109 1426;2968 998;2692 709 1;2416 414;2038 267;1559 267 1;1354 267;1154 305;958 382 1;766 459;596 572;446 722 1;298 870;177 1058;81 1285 1;-9 1507;-52 1766;-52 2065 1;-52 2311;-19 2542;49 2756 1;123 2969;231 3154;376 3312 1;524 3466;712 3588;933 3677 1;1159 3765;1422 3810;1726 3810 18;-8496 3810 1;-8376 3810;-8257 3804;-8137 3793 1;-8017 3779;-7908 3763;-7804 3741 1;-7697 3724;-7603 3703;-7516 3677 1;-7431 3651;-7363 3626;-7311 3601;-7440 2826 1;-7546 2873;-7684 2912;-7855 2948 1;-8022 2978;-8193 2993;-8368 2993 1;-8640 2993;-8857 2934;-9020 2820 1;-9182 2704;-9273 2550;-9296 2353;-7132 2353 1;-7128 2301;-7124 2245;-7119 2180 1;-7116 2112;-7113 2050;-7113 1995 1;-7113 1426;-7252 998;-7529 709 1;-7806 414;-8184 267;-8662 267 1;-8867 267;-9067 305;-9264 382 1;-9455 459;-9625 572;-9775 722 1;-9923 870;-10045 1058;-10140 1285 1;-10230 1507;-10273 1766;-10273 2065 1;-10273 2311;-10240 2542;-10171 2756 1;-10098 2969;-9990 3154;-9845 3312 1;-9696 3466;-9510 3588;-9288 3677 1;-9062 3765;-8798 3810;-8496 3810 18;-12484 -146 1;-12454 -181;-12442 -230;-12457 -274 1;-12497 -394;-12524 -512;-12524 -616 1;-12524 -619;-12502 -670;-12491 -753 1;-12484 -794;-12496 -836;-12524 -866 1;-12554 -896;-12594 -911;-12640 -905 1;-12765 -882;-12886 -866;-13002 -866 1;-13009 -866;-13043 -876;-13102 -878 1;-13139 -879;-13174 -866;-13199 -841 1;-13225 -814;-13240 -781;-13240 -745 1;-13240 -745;-13240 -300;-13240 -300 1;-13240 -230;-13188 -171;-13119 -166 1;-13079 -161;-13064 -165;-13074 -166;-13056 -164;-13037 -161 1;-12964 -156;-12895 -148;-12827 -136 1;-12806 -133;-12797 -133;-12795 -133;-12795 -132;-12793 -132;-12795 -133 1;-12735 -125;-12673 -116;-12607 -103 1;-12561 -95;-12514 -112;-12484 -146 18;-14662 -213;-13708 -213;-13708 -1479 1;-13602 -1432;-13492 -1395;-13377 -1371 1;-13261 -1346;-13137 -1333;-13006 -1333 1;-12765 -1333;-12556 -1376;-12373 -1461 1;-12189 -1546;-12034 -1666;-11911 -1819 1;-11788 -1972;-11694 -2156;-11629 -2368 1;-11566 -2582;-11535 -2819;-11535 -3078 1;-11535 -3348;-11574 -3591;-11657 -3808 1;-11732 -4027;-11846 -4210;-11995 -4358 1;-12144 -4513;-12328 -4630;-12544 -4711 1;-12763 -4796;-13009 -4838;-13287 -4838 1;-13402 -4838;-13524 -4833;-13652 -4819 1;-13776 -4811;-13898 -4798;-14022 -4781 1;-14142 -4765;-14257 -4743;-14369 -4716 1;-14478 -4697;-14576 -4673;-14662 -4646;-14662 -213 18;-17051 3810 1;-16800 3810;-16574 3769;-16373 3684 1;-16168 3598;-15993 3479;-15848 3324 1;-15703 3168;-15593 2980;-15517 2763 1;-15440 2540;-15401 2298;-15401 2033 1;-15401 1768;-15442 1526;-15523 1310 1;-15603 1092;-15716 906;-15861 754 1;-16006 600;-16182 480;-16386 395 1;-16586 310;-16808 267;-17051 267 1;-17291 267;-17512 310;-17717 395 1;-17917 480;-18092 600;-18242 754 1;-18387 906;-18502 1092;-18587 1310 1;-18669 1526;-18708 1768;-18708 2033 1;-18708 2298;-18669 2540;-18587 2763 1;-18505 2980;-18392 3168;-18247 3324 1;-18102 3479;-17931 3598;-17729 3684 1;-17525 3769;-17299 3810;-17051 3810 18;5463 3810 1;5581 3810;5701 3804;5821 3793 1;5939 3779;6051 3763;6152 3741 1;6259 3724;6356 3703;6441 3677 1;6526 3651;6594 3626;6646 3601;6518 2826 1;6411 2873;6272 2912;6103 2948 1;5936 2978;5765 2993;5590 2993 1;5318 2993;5100 2934;4938 2820 1;4775 2704;4683 2550;4663 2353;6826 2353 1;6829 2301;6834 2245;6837 2180 1;6843 2112;6844 2050;6844 1995 1;6844 1426;6706 998;6428 709 1;6151 414;5773 267;5297 267 1;5091 267;4891 305;4695 382 1;4503 459;4332 572;4183 722 1;4033 870;3911 1058;3819 1285 1;3729 1507;3684 1766;3684 2065 1;3684 2311;3719 2542;3787 2756 1;3858 2969;3967 3154;4112 3312 1;4262 3466;4446 3588;4668 3677 1;4895 3765;5160 3810;5463 3810 18;-1065 2521 1;-1018 2518;-969 2518;-911 2508 1;-910 2508;-909 2506;-907 2505 1;-830 2489;-762 2473;-704 2450 1;-702 2450;-700 2450;-698 2450 1;-670 2439;-642 2426;-612 2422 1;-545 2409;-500 2350;-503 2283 1;-509 2203;-520 2131;-520 2067 1;-520 1973;-502 1875;-490 1763 1;-487 1725;-500 1688;-525 1660 1;-550 1633;-586 1616;-623 1616;-1106 1616 1;-1170 1630;-1217 1687;-1215 1750;-1215 2333 1;-1215 2360;-1211 2386;-1206 2405 1;-1198 2474;-1136 2527;-1065 2521 18;-11490 -52 1;-11336 -52;-11204 -101;-11093 -200 1;-10978 -303;-10920 -441;-10920 -616 1;-10920 -791;-10978 -927;-11093 -1026 1;-11204 -1128;-11336 -1179;-11490 -1179 1;-11642 -1179;-11777 -1128;-11893 -1026 1;-12004 -927;-12059 -791;-12059 -616 1;-12059 -441;-12004 -303;-11893 -200 1;-11777 -101;-11642 -52;-11490 -52 18;-17051 -1307 1;-16800 -1307;-16574 -1349;-16373 -1434 1;-16168 -1521;-15993 -1639;-15848 -1794 1;-15703 -1951;-15593 -2139;-15517 -2355 1;-15440 -2579;-15401 -2820;-15401 -3085 1;-15401 -3350;-15442 -3591;-15523 -3808 1;-15603 -4027;-15716 -4211;-15861 -4365 1;-16006 -4518;-16182 -4638;-16386 -4723 1;-16586 -4808;-16808 -4851;-17051 -4851 1;-17291 -4851;-17512 -4808;-17717 -4723 1;-17917 -4638;-18092 -4518;-18242 -4365 1;-18387 -4211;-18502 -4027;-18587 -3808 1;-18669 -3591;-18708 -3350;-18708 -3085 1;-18708 -2820;-18669 -2579;-18587 -2355 1;-18505 -2139;-18392 -1951;-18247 -1794 1;-18102 -1639;-17931 -1521;-17729 -1434 1;-17525 -1349;-17299 -1307;-17051 -1307 18;-7064 -1395;-6112 -1395;-6112 -3993 1;-6052 -4004;-5983 -4008;-5907 -4013 1;-5830 -4021;-5759 -4027;-5690 -4027 1;-5468 -4027;-5317 -3961;-5235 -3833 1;-5155 -3707;-5113 -3488;-5113 -3182;-5113 -1395;-4160 -1395;-4160 -3296 1;-4160 -3527;-4183 -3737;-4230 -3923 1;-4277 -4111;-4357 -4273;-4467 -4410 1;-4579 -4547;-4730 -4652;-4921 -4723 1;-5110 -4800;-5347 -4838;-5631 -4838 1;-5913 -4838;-6181 -4818;-6438 -4774 1;-6694 -4736;-6903 -4693;-7064 -4646;-7064 -1395 18;-11099 -1644 1;-11068 -1689;-11067 -1748;-11095 -1794 1;-11120 -1834;-11128 -1842;-11120 -1827 1;-11143 -1872;-11189 -1899;-11242 -1899 1;-11246 -1897;-11251 -1895;-11258 -1894 1;-11298 -1887;-11332 -1862;-11353 -1827 1;-11358 -1822;-11364 -1814;-11375 -1799 1;-11394 -1761;-11396 -1718;-11379 -1679 1;-11362 -1639;-11328 -1611;-11287 -1602 1;-11257 -1596;-11240 -1594;-11242 -1594 1;-11188 -1581;-11133 -1601;-11099 -1644 18;-9182 -1307 1;-9063 -1307;-8944 -1314;-8824 -1326 1;-8706 -1339;-8594 -1356;-8492 -1378 1;-8385 -1395;-8289 -1416;-8204 -1440 1;-8119 -1468;-8051 -1493;-7999 -1517;-8127 -2292 1;-8234 -2246;-8372 -2205;-8542 -2171 1;-8708 -2141;-8881 -2126;-9055 -2126 1;-9327 -2126;-9545 -2184;-9707 -2299 1;-9870 -2413;-9961 -2569;-9982 -2766;-7819 -2766 1;-7816 -2817;-7810 -2873;-7808 -2939 1;-7803 -3007;-7801 -3069;-7801 -3123 1;-7801 -3692;-7939 -4120;-8217 -4410 1;-8494 -4705;-8872 -4851;-9349 -4851 1;-9553 -4851;-9754 -4813;-9950 -4736 1;-10141 -4660;-10314 -4547;-10462 -4396 1;-10611 -4248;-10733 -4060;-10827 -3833 1;-10917 -3612;-10962 -3352;-10962 -3054 1;-10962 -2807;-10926 -2575;-10858 -2362 1;-10787 -2149;-10678 -1964;-10533 -1806 1;-10383 -1652;-10198 -1530;-9976 -1440 1;-9750 -1352;-9485 -1307;-9182 -1307 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="8" min_area="0" patterns="0"/></symbol><object type="1"><coords count="572">16428 5964 1;15493 5816;15156 5633;14905 5136 1;14842 5010;14767 4893;14739 4875 1;14686 4843;13829 4769;13588 4777 1;13511 4779;12673 4786;11726 4791;10003 4801;9412 4491;8810 4801;8189 4815 1;7703 4826;7501 4814;7261 4759 1;6957 4690;6950 4690;6521 4785 1;6170 4863;5974 4881;5488 4880;5457 4880 1;4811 4880;4563 4831;4074 4600 1;3912 4524;3745 4461;3703 4461 1;3660 4461;3540 4504;3437 4556 1;2881 4838;1858 4973;1148 4859 1;1005 4835;741 4765;560 4703 1;206 4579;201 4579;-280 4737 1;-640 4854;-1173 4915;-1564 4883 1;-1876 4858;-2085 4806;-2522 4644 1;-2687 4583;-2700 4585;-2962 4691 1;-3221 4796;-3260 4801;-3912 4799 1;-4286 4797;-4700 4791;-4832 4785 1;-4964 4779;-5368 4786;-5729 4802 1;-6286 4827;-6433 4820;-6697 4760 1;-7003 4690;-7012 4690;-7420 4779 1;-8263 4964;-9117 4926;-9699 4679 1;-10091 4513;-10177 4511;-10482 4666;-10748 4801;-12238 4801;-12541 4645;-12844 4489;-13138 4645;-13432 4801;-14922 4801;-15208 4663 1;-15529 4507;-15467 4502;-16152 4744 1;-16831 4984;-17621 4945;-18238 4642 1;-19010 4261;-19482 3685;-19691 2865 1;-19908 2013;-19801 1156;-19391 468 1;-19227 194;-19067 14;-18762 -238 1;-18460 -488;-18462 -552;-18772 -793 1;-19030 -993;-19347 -1393;-19507 -1720 1;-19700 -2113;-19789 -2552;-19789 -3099 1;-19788 -3688;-19727 -3966;-19489 -4450 1;-19192 -5057;-18572 -5590;-17912 -5806 1;-17374 -5984;-16546 -5988;-15770 -5633;-15447 -5485;-15239 -5576 1;-14740 -5794;-14092 -5908;-13352 -5909 1;-12569 -5909;-12118 -5779;-11532 -5381 1;-11433 -5314;-11315 -5259;-11270 -5259 1;-11225 -5259;-11047 -5352;-10875 -5465 1;-10015 -6029;-9078 -6079;-8023 -5616;-7813 -5524;-7443 -5648 1;-6638 -5917;-5482 -5996;-4840 -5824 1;-4236 -5663;-3768 -5339;-3467 -4873 1;-3148 -4378;-3090 -4073;-3064 -2779 1;-3052 -2196;-3026 -1687;-3006 -1649 1;-2959 -1560;-2787 -1559;-2312 -1644 1;-2114 -1679;-1835 -1709;-1691 -1709 1;-1229 -1712;-888 -1486;-654 -1024 1;-541 -799;-528 -788;-245 -681 1;187 -519;243 -518;668 -662 1;965 -763;1135 -795;1448 -809 1;2091 -837;2566 -704;3131 -337 1;3264 -250;3400 -179;3432 -179 1;3464 -179;3619 -259;3777 -358 1;4137 -581;4287 -644;4688 -741 1;5298 -888;5896 -821;6519 -534;6870 -372;7177 -478 1;7625 -633;8076 -733;8550 -781 1;9020 -829;9105 -876;9182 -1133 1;9308 -1554;9694 -1943;10095 -2129 1;10456 -2299;11045 -2279;11428 -2095 1;11880 -1878;12170 -1593;12329 -1108 1;12441 -766;12455 -756;12815 -779 1;14010 -855;14639 -730;15238 -297 1;15327 -232;15435 -179;15479 -179 1;15522 -179;15686 -258;15843 -355 1;16603 -824;17454 -922;18651 -679 1;19204 -567;19417 -469;19628 -230 1;19900 79;19908 145;19908 1951;19908 2068 1;19908 3651;19886 3934;19718 4401 1;19503 5000;19140 5402;18544 5703 1;18007 5974;17155 6079;16428 5964 18;17928 5561 1;18700 5363;19232 4845;19456 4071 1;19512 3877;19525 3576;19538 2141 1;19550 942;19541 396;19509 289 1;19438 50;19214 -170;18973 -238 1;18265 -438;17233 -498;16751 -367 1;16348 -257;15993 -62;15706 208;15444 456;15306 271 1;15116 17;14791 -194;14388 -327 1;14080 -428;13997 -439;13508 -436 1;13048 -433;12442 -364;12083 -274 1;12000 -253;11998 -259;12035 -436 1;12080 -647;12030 -945;11908 -1199 1;11636 -1762;10897 -2045;10292 -1817 1;9806 -1635;9468 -1148;9468 -632;9468 -407;9216 -431 1;8866 -464;8256 -399;7783 -280 1;7323 -163;7201 -108;7046 57;6934 175;6772 37 1;5907 -704;4382 -591;3607 271;3424 474;3360 377 1;3119 21;2522 -336;2023 -420 1;1440 -518;756 -394;341 -114;129 29;28 -91 1;-139 -289;-354 -379;-661 -379;-932 -379;-932 -509 1;-933 -750;-1017 -955;-1187 -1124 1;-1437 -1374;-1550 -1391;-2246 -1283 1;-2569 -1232;-2887 -1163;-2953 -1129 1;-3248 -975;-3372 -718;-3372 -258;-3372 65;-3550 -58 1;-3801 -230;-4065 -337;-4405 -402 1;-4781 -475;-5094 -474;-5671 -398 1;-6502 -289;-6766 -202;-6943 24;-7040 149;-7232 3 1;-7499 -201;-7690 -292;-8042 -381 1;-8755 -564;-9576 -395;-10120 47 1;-10278 175;-10291 178;-10328 108 1;-10358 53;-10348 -23;-10289 -176 1;-10246 -291;-10206 -465;-10202 -563 1;-10196 -705;-10182 -736;-10133 -716 1;-9610 -509;-8452 -550;-7836 -799 1;-7626 -884;-7587 -889;-7532 -839 1;-7372 -694;-7184 -659;-6575 -659;-6548 -659 1;-5984 -659;-5837 -684;-5685 -810 1;-5627 -859;-5602 -854;-5492 -772 1;-5374 -686;-5322 -678;-4739 -666 1;-4055 -652;-3888 -680;-3692 -845 1;-3432 -1064;-3432 -1066;-3434 -2479 1;-3436 -3540;-3448 -3805;-3503 -4029 1;-3693 -4791;-4168 -5277;-4922 -5483 1;-5261 -5575;-6112 -5566;-6698 -5463 1;-7272 -5363;-7461 -5289;-7610 -5109;-7726 -4968;-7879 -5088 1;-8814 -5825;-10355 -5685;-11073 -4798;-11235 -4596;-11494 -4860 1;-11783 -5155;-12156 -5370;-12572 -5482 1;-13108 -5626;-14450 -5523;-14960 -5299 1;-15058 -5256;-15175 -5160;-15239 -5069;-15350 -4913;-15611 -5103 1;-16440 -5704;-17556 -5733;-18389 -5176 1;-18763 -4926;-18970 -4689;-19174 -4279 1;-19544 -3536;-19541 -2623;-19167 -1859 1;-18698 -903;-17669 -417;-16549 -623 1;-16267 -675;-15788 -888;-15574 -1057;-15421 -1179;-15405 -589 1;-15394 -169;-15373 26;-15332 89 1;-15235 239;-15319 237;-15504 86 1;-16274 -546;-17402 -634;-18285 -132 1;-19617 624;-19853 2734;-18732 3863 1;-17912 4689;-16505 4772;-15566 4050;-15379 3907;-15333 4019 1;-15270 4170;-15105 4323;-14923 4399 1;-14712 4487;-13672 4487;-13461 4399 1;-13264 4317;-13137 4195;-13048 4001 1;-12982 3860;-12974 3728;-12973 2871;-12973 2823 1;-12972 1843;-12978 1874;-12782 1926;-12692 1950 1;-12692 3973;-12680 4038;-12439 4250 1;-12222 4440;-12067 4471;-11387 4455 1;-10804 4441;-10780 4438;-10624 4329 1;-10492 4238;-10413 4134;-10306 3908 1;-10303 3901;-10213 3963;-10106 4044 1;-9632 4408;-9047 4566;-8312 4528 1;-7825 4503;-7365 4416;-7096 4297 1;-6933 4226;-6914 4225;-6848 4284 1;-6702 4417;-6483 4457;-5908 4459 1;-5355 4461;-5138 4426;-5010 4317 1;-4958 4272;-4918 4279;-4753 4362 1;-4571 4454;-4518 4461;-3955 4460 1;-3267 4459;-3106 4414;-2910 4168;-2797 4027;-2623 4147 1;-2311 4362;-2052 4456;-1635 4505 1;-1021 4577;-348 4454;37 4200;186 4101;437 4238 1;800 4435;1069 4503;1588 4529 1;1962 4547;2134 4535;2508 4464 1;3072 4358;3355 4230;3495 4017 1;3552 3931;3607 3861;3617 3861 1;3627 3861;3710 3925;3802 4004 1;4053 4219;4484 4414;4868 4487 1;5440 4594;6391 4505;6861 4299;7033 4223;7198 4332 1;7357 4438;7382 4441;8005 4453 1;8611 4465;8658 4460;8826 4373 1;8923 4323;9058 4212;9126 4127;9248 3974;9260 2937;9272 1901;9360 1902 1;9541 1903;9543 1914;9556 2969;9568 3974;9690 4127 1;9758 4212;9892 4322;9989 4371 1;10149 4453;10221 4461;10767 4460 1;11260 4459;11397 4446;11528 4387 1;11682 4317;11694 4317;11848 4387 1;11979 4446;12117 4459;12611 4460 1;13162 4461;13230 4453;13396 4369;13577 4278;13732 4359 1;13871 4432;13961 4441;14551 4441;15214 4441;15197 4626 1;15173 4869;15240 5059;15408 5233 1;15568 5397;15799 5483;16366 5586 1;16835 5672;17538 5661;17928 5561;17928 5561 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="31">-13184 -2139 1;-13282 -2139;-13381 -2152;-13479 -2177 1;-13572 -2202;-13648 -2234;-13708 -2274;-13708 -3993 1;-13662 -4004;-13602 -4008;-13530 -4013 1;-13457 -4021;-13379 -4027;-13293 -4027 1;-13032 -4027;-12837 -3936;-12704 -3756 1;-12572 -3582;-12506 -3348;-12506 -3054 1;-12506 -2443;-12733 -2139;-13184 -2139 18;-13248 -2631 1;-13034 -2631;-12976 -2876;-12976 -3090 1;-12976 -3284;-13054 -3505;-13248 -3506;-13248 -2631 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="2" min_area="0" patterns="0"/></symbol><object type="1"><coords count="31">17360 2730 1;16930 2730;16714 2463;16714 1930 1;16714 1675;16776 1464;16900 1297 1;17024 1130;17212 1047;17464 1047 1;17548 1047;17623 1052;17687 1060 1;17750 1065;17807 1072;17854 1080;17854 2603 1;17794 2636;17720 2666;17636 2691 1;17550 2718;17459 2730;17360 2730 18;17409 2232;17409 1571 1;17201 1492;17180 1713;17180 1926 1;17178 2120;17192 2338;17409 2232 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
</symbols>
<parts count="3" current="0">
<part name="Map"><objects count="4363">
<object type="1" symbol="111"><coords count="5">61856 99734 32;63500 98232 32;62139 96743 32;60495 98245 32;61856 99734 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">54869 90874 32;63157 91162 32;63200 89924 32;66484 90038 32;66319 94805 32;58567 94536 32;58549 95067 32;54728 94934 32;54869 90874 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">68204 75140 32;70579 75252 32;70681 73095 32;68306 72983 32;68204 75140 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">64279 74690 32;64704 71464 32;66066 71643 32;65641 74869 32;64279 74690 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">63586 65647 32;69726 66691 32;70222 63775 32;64082 62730 32;63586 65647 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">70380 63085 32;72307 63386 32;72526 61980 32;70599 61679 32;70380 63085 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="19">75286 57526 32;72411 57214 32;72366 57631 32;69314 57299 32;69333 57127 32;68714 57060 32;68643 57715 32;68836 57736 32;68661 59346 32;69687 59457 32;69649 59809 32;71999 60064 32;72037 59718 32;73324 59858 32;73296 60115 32;73858 60176 32;73895 59837 32;75021 59959 32;75286 57526 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">71263 54445 32;71413 53007 32;70539 52916 32;70389 54354 32;71263 54445 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">63012 54794 32;64362 45931 32;75005 47552 32;74599 50216 32;66676 49009 32;65732 55208 32;63012 54794 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">76768 42623 32;77093 39347 32;74878 39127 32;74653 41397 32;72694 41203 32;72538 42776 32;75635 43088 32;75692 42516 32;76768 42623 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">61912 37890 32;65430 38209 32;65471 37757 32;67532 37943 32;67293 40582 32;65189 40392 32;65124 41106 32;61650 40792 32;61912 37890 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">71456 31230 32;76607 32518 32;77194 30168 32;72043 28880 32;71456 31230 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">68419 35393 32;69069 31993 32;71512 32460 32;70850 35924 32;73371 36406 32;73072 37972 32;69565 37302 32;69877 35672 32;68419 35393 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">64007 28914 32;67045 29751 32;67763 27146 32;64725 26308 32;64007 28914 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">63907 25638 32;65482 26064 32;65900 24515 32;64325 24090 32;63907 25638 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">61782 25613 32;63382 26276 32;64028 24716 32;62428 24053 32;61782 25613 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="8">60019 21075 32;63119 22400 32;63771 20874 32;65074 21431 32;64025 23886 32;62216 23678;59417 22482 32;60019 21075 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="14">71588 22291;68939 19601;69439 19142;69524 18831;68197 18258 32;67751 19292 32;65464 18305 32;64918 19569 32;63421 18923 32;64882 15539 32;70062 17775 32;70189 17853;73032 20935;71588 22291 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">76923 18984 32;74908 18809 32;75055 17111;72954 16414 32;73427 14991 32;74813 15451 32;74629 16004 32;75136 16172;75156 15952 32;75409 15966 32;75573 14073 32;77092 14205 32;76824 17292 32;77068 17313 32;76923 18984 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">71199 11651 32;74237 12664 32;75100 10076 32;72062 9063 32;71199 11651 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">69561 4526 32;70361 4763 32;70524 4214 32;69724 3977 32;69561 4526 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="16">78862 8076 32;75037 7864 32;75047 7691;73124 7126 32;73424 6103;71286 5476 32;71474 4837 32;70875 4661 32;71098 3901 32;73405 4578 32;73228 5182 32;75181 5715 32;75106 5968 32;75354 6041;78964 6241 32;78862 8076 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">74401 4772;74464 2809;73438 2609;73401 4522;74401 4772 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">75964 2046 32;79177 2209 32;79287 35 32;76074 -128 32;75964 2046 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="21">73714 -417 32;70851 -1017 32;70669 -150 32;68902 -520 32;69084 -1387 32;66280 -1975 32;66098 -1108 32;65190 -1298 32;64948 -141 32;65859 50 32;65739 625 32;68546 1213 32;68665 646 32;70431 1016 32;70311 1587 32;73218 2196 32;73335 1637 32;74023 1781 32;74270 601 32;73533 447 32;73714 -417 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">75308 -1430 32;75368 -4193 32;76143 -4176 32;76165 -5187 32;74287 -5228 32;74259 -3929 32;73944 -3936 32;73897 -1773 32;75308 -1430 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">70145 -6834 32;79709 -6445 32;79833 -9490 32;70269 -9879 32;70145 -6834 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">77916 -13426 32;77368 -21576 32;74409 -21377 32;74957 -13227 32;77916 -13426 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">74045 -26455 32;64110 -25730 32;64327 -22757 32;74262 -23482 32;74045 -26455 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">60239 -20728 32;59973 -24653 32;58782 -24573 32;59047 -20647 32;60239 -20728 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">56809 -20516 32;56473 -25254 32;55010 -25150 32;55103 -23841 32;55374 -23860 32;55617 -20431 32;56809 -20516 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">55536 -17617 32;67275 -18395 32;67468 -15485 32;55729 -14707 32;55536 -17617 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">56934 -11039 32;61409 -9876 32;60903 -7933 32;58183 -8639 32;58084 -8257 32;57581 -8388 32;57680 -8770 32;56428 -9095 32;56934 -11039 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">59400 -5670 32;60700 -5320 32;60859 -5911 32;59559 -6261 32;59400 -5670 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">63501 -3481 32;65539 -2906 32;65796 -3816 32;63758 -4391 32;63501 -3481 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">59713 -2006 32;62438 -1256 32;63047 -3471 32;60003 -4309 32;59833 -3690 32;60152 -3602 32;59713 -2006 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">64251 1801 32;62026 1163 32;61814 1905 32;62157 2003 32;61822 3171 32;63704 3710 32;64251 1801 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">70239 7052 32;63288 4927 32;62845 6377 32;64465 6872 32;64274 7496 32;69605 9126 32;70239 7052 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">63401 4601 32;66063 5427 32;66320 4598 32;65010 4192 32;64931 4448 32;63578 4029 32;63401 4601 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">59235 13231 32;60331 13700 32;59962 14562 32;58866 14094 32;59235 13231 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">51251 -59310 32;51319 -62389 32;47991 -62463 32;47923 -59384 32;51251 -59310 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">51909 -51306 32;52007 -56722 32;49887 -56760 32;49876 -56136 32;49622 -56141 32;49608 -55374 32;49867 -55369 32;49794 -51344 32;51909 -51306 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">50967 -48176 32;52912 -48127 32;52946 -49463 32;51001 -49512 32;50967 -48176 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">51417 -42485 32;51466 -46836 32;52072 -46829 32;52077 -47305 32;53001 -47295 32;52996 -46826 32;54155 -46813 32;54136 -45115 32;53597 -45121 32;53567 -42461 32;51417 -42485 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">54777 -35256 32;54874 -39127 32;53794 -39154 32;53837 -40855 32;53518 -40863 32;53558 -42436 32;51653 -42484 32;51573 -39314 32;52067 -39302 32;51968 -35326 32;54777 -35256 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="25">62406 -35931;62386 -37163;62118 -37426;62115 -37717;62405 -38013;62394 -38967;61415 -38977 32;61403 -37703 32;60350 -37713 32;60337 -36363 32;56054 -36404 32;56077 -38810 32;60363 -38768 32;60372 -39653 32;61581 -39641 32;61592 -40801 32;62949 -40788 32;62934 -38914;65247 -38941;65258 -37981;65516 -37729;65520 -37362;65268 -37104;65280 -35960;62406 -35931 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">43003 -56988 32;42713 -60596 32;41283 -60481 32;41421 -58772 32;40482 -58696 32;40426 -59390 32;37774 -59177 32;37937 -57149 32;40339 -57342 32;40407 -56500 32;41227 -56566 32;41442 -56862 32;43003 -56988 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="19">32729 -58785 32;34850 -58941 32;34783 -59853 32;35721 -59922 32;35732 -59766 32;37027 -59861 32;37158 -58080 32;35964 -57992 32;35931 -58439 32;34901 -58363 32;35010 -56888 32;33997 -56813 32;33964 -57264 32;32424 -57150 32;32326 -58475 32;31896 -58443 32;31848 -59094 32;32702 -59157 32;32729 -58785 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">33591 -50014 32;41804 -50180 32;41811 -49847 32;43651 -49884 32;43709 -47017 32;41735 -46977 32;41729 -47263 32;37168 -47171 32;37268 -42219 32;35946 -42192 32;35915 -43722 32;35472 -43713 32;35404 -47097 32;33651 -47062 32;33591 -50014 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="25">30666 -49189 32;30617 -50264 32;31935 -50324 32;31874 -51675 32;30560 -51615 32;30522 -52445 32;29058 -52378 32;29040 -52768 32;28442 -52741 32;28478 -51958 32;27848 -51929 32;27864 -51579 32;26419 -51513 32;26471 -50373 32;26143 -50358 32;25734 -49664 32;26491 -49697 32;26556 -48274 32;27320 -48309 32;27304 -48669 32;28527 -48725 32;28498 -49352 32;29881 -49415 32;29893 -49154 32;30666 -49189 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">25504 -47722 32;26149 -48915 32;25011 -49530 32;24366 -48338 32;25504 -47722 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="21">15048 -52091 32;14965 -55713 32;14730 -55708 32;14689 -57477 32;15682 -57500 32;15688 -57246 32;17533 -57288 32;17572 -55602 32;17867 -55609 32;17947 -52119 32;18445 -52130 32;18485 -50390 32;19027 -50402 32;19065 -48760 32;18449 -48746 32;18456 -48455 32;16214 -48404 32;16168 -50419 32;15631 -50407 32;15592 -52103 32;15048 -52091 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">11157 -47883 32;4811 -47675 32;4769 -48975 32;11115 -49182 32;11157 -47883 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">4719 -50638 32;4677 -51938 32;6647 -52002;6557 -55527 32;6837 -55534 32;6788 -57466 32;8623 -57513 32;8630 -57244 32;9905 -57277 32;9944 -55737 32;9517 -55726 32;9609 -52099;10954 -52143 32;10996 -50844 32;4719 -50638 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="25">1498 -51399 32;1332 -54994 32;1801 -55016 32;1718 -56817 32;835 -56776 32;806 -57404 32;-27 -57366 32;1 -56756 32;-2187 -56655 32;-2099 -54759 32;-2679 -54732 32;-2663 -54381 32;-2401 -54393 32;-2343 -53131 32;-1476 -53171 32;-1394 -51402 32;-937 -51423 32;-850 -49531 32;-1270 -49512 32;-1192 -47826 32;2588 -48000 32;2512 -49647 32;2039 -49625 32;1956 -51420 32;1498 -51399 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="19">-6884 -50669 32;-7021 -54257 32;-6485 -54277 32;-6554 -56092 32;-8165 -56031 32;-8158 -55842 32;-10144 -55766 32;-10082 -54149 32;-10821 -54121 32;-10750 -52260 32;-10916 -52254 32;-10851 -50558 32;-9231 -50620 32;-9157 -48685 32;-7247 -48758 32;-7256 -48990 32;-6330 -49025 32;-6393 -50688 32;-6884 -50669 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-12206 -53469 32;-12245 -54476 32;-12638 -54461 32;-12599 -53454 32;-12206 -53469 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">-21216 -54315 32;-16474 -54296 32;-16472 -54794 32;-14987 -54788 32;-14998 -52066 32;-16631 -52073 32;-16633 -51558 32;-21227 -51577 32;-21216 -54315 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-18511 -50189 32;-17699 -50189 32;-17699 -49866 32;-18511 -49866 32;-18511 -50189 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-23641 -49534 32;-23612 -51499 32;-22603 -51484 32;-22613 -50815 32;-22221 -50809 32;-22240 -49513 32;-23641 -49534 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="25">-29262 -51167 32;-26202 -51196 32;-26206 -51587 32;-24569 -51603 32;-24595 -54334 32;-26114 -54319 32;-26110 -53945 32;-29320 -53914 32;-29324 -54296 32;-30933 -54281 32;-30937 -54746 32;-32411 -54732 32;-32397 -53278 32;-32937 -53263 32;-32918 -51318 32;-33495 -51312 32;-33483 -50013 32;-32829 -50019 32;-32841 -51264 32;-32292 -51269 32;-32299 -51997 32;-30826 -52011 32;-30822 -51586 32;-29266 -51601 32;-29262 -51167 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-29686 -49599 32;-28874 -49599 32;-28874 -49276 32;-29686 -49276 32;-29686 -49599 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="114"><coords count="1">-26374 -48998;</coords></object>
<object type="1" symbol="111"><coords count="5">-27300 -45487 32;-26809 -46006 32;-27211 -46387 32;-27702 -45868 32;-27300 -45487 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-34488 -50010 32;-34488 -51721 32;-34781 -51721 32;-34781 -51320 32;-35211 -51320 32;-35211 -50010 32;-34488 -50010 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="23">-43316 -54752 32;-43267 -51965 32;-41881 -51989 32;-41887 -52345 32;-40132 -52376 32;-40125 -51984 32;-38567 -52011 32;-38560 -51613 32;-37012 -51640 32;-37006 -51300 32;-35642 -51324 32;-35654 -51996 32;-35427 -52000 32;-35475 -54737 32;-37001 -54710 32;-36995 -54361 32;-38682 -54331 32;-38689 -54743 32;-40276 -54715 32;-40283 -55124 32;-41853 -55096 32;-41847 -54778 32;-43316 -54752 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-39032 -50290 32;-38220 -50290 32;-38220 -49967 32;-39032 -49967 32;-39032 -50290 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="21">-42926 -43887 32;-42955 -47133 32;-43131 -47131 32;-43145 -48697 32;-43551 -48693 32;-43558 -49421 32;-41851 -49436 32;-41843 -48579 32;-40473 -48591 32;-40458 -46957 32;-40208 -46959 32;-40181 -43945 32;-40717 -43940 32;-40703 -42344 32;-40999 -42341 32;-40987 -40964 32;-47598 -40904 32;-47610 -42223 32;-43434 -42261 32;-43449 -43882 32;-42926 -43887 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-46161 -43437 32;-46161 -44268 32;-46503 -44268 32;-46503 -43437 32;-46161 -43437 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="114" rotation="-0.259814"><coords count="1">-47217 -47660;</coords></object>
<object type="1" symbol="111"><coords count="5">-47671 -37842 32;-41714 -37851 32;-41716 -39191 32;-47673 -39182 32;-47671 -37842 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">-37699 -40257 32;-31201 -40288 32;-31203 -40813 32;-28892 -40824 32;-28894 -41324 32;-28104 -41328 32;-28110 -42528 32;-28920 -42524 32;-28925 -43537 32;-31077 -43527 32;-31075 -43095 32;-35626 -43074 32;-35622 -42265 32;-37708 -42255 32;-37699 -40257 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">-24270 -37857 32;-21504 -37857 32;-21504 -40144 32;-22139 -40144 32;-22139 -42403 32;-22755 -42403 32;-22755 -44671 32;-24231 -44671 32;-24231 -45385 32;-25502 -45385 32;-25502 -42481 32;-24857 -42481 32;-24857 -40193 32;-24270 -40193 32;-24270 -37857 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-48913 -28668;-41461 -28654;-41466 -25986;-46521 -25995;-47199 -23235;-50061 -23938;-48913 -28668 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">-34395 -31907 32;-34423 -35834 32;-35722 -35825 32;-35728 -36718 32;-37134 -36708 32;-37118 -34367 32;-36746 -34370 32;-36733 -32472 32;-35737 -32479 32;-35733 -31898 32;-34395 -31907 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">-29644 -36196 32;-23983 -36206 32;-23979 -33606 32;-26007 -33602 32;-26009 -34798 32;-27356 -34796 32;-27355 -34153 32;-29640 -34149 32;-29644 -36196 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="10">-23983 -37438 32;-22018 -37418 32;-22024 -36774 32;-22213 -36776 32;-22229 -35169 32;-23221 -35179 32;-23563 -35789 32;-23553 -36783 32;-23989 -36787 32;-23983 -37438 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">-33113 -29429 32;-28457 -29451 32;-28465 -31062 32;-26257 -31071 32;-26261 -32492 32;-28453 -32483 32;-28454 -31994 32;-33124 -31972 32;-33113 -29429 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">-14291 -20714 32;-19255 -20507 32;-19281 -21129 32;-23721 -20943 32;-23707 -20602 32;-24297 -20577 32;-24353 -21908 32;-24957 -21883 32;-25015 -23271 32;-19497 -23501 32;-19474 -22953 32;-14393 -23165 32;-14291 -20714 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="17">-14129 -15640 32;-21789 -15225 32;-21815 -15710 32;-26865 -15437 32;-26904 -16151 32;-32349 -15856 32;-32246 -13950 32;-33032 -13907 32;-32961 -12602 32;-32171 -12645 32;-32218 -13505 32;-26674 -13805 32;-26638 -13149 32;-21525 -13426 32;-21493 -12837 32;-13999 -13243 32;-14129 -15640 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-40106 2232 32;-40090 -4398 32;-41348 -4401 32;-41364 2229 32;-40106 2232 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-34919 1617 32;-34919 -4356 32;-37518 -4356 32;-37518 1617 32;-34919 1617 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">-42159 9067 32;-34430 9067 32;-34430 5984 32;-42200 5984 32;-42200 5652 32;-43334 5652 32;-43334 6377 32;-45505 6377;-45505 5984;-47122 5984 32;-47122 8362 32;-42159 8362 32;-42159 9067 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-25909 13095 32;-25909 1951 32;-29376 1951 32;-29376 3209 32;-28754 3209 32;-28754 13095 32;-25909 13095 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-17319 13127 32;-17306 2040 32;-20140 2037 32;-20154 13124 32;-17319 13127 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-8696 13160 32;-8683 2075 32;-11517 2072 32;-11531 13157 32;-8696 13160 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-54 13233 32;-41 2466 32;-2875 2463 32;-2889 13230 32;-54 13233 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-46315 56035 32;-45765 51235 32;-51193 50604 32;-51760 55404 32;-46315 56035 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-35856 65590 32;-35299 60791 32;-40738 60159 32;-41322 64957 32;-35856 65590 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="19">-69777 80432 32;-54506 82485 32;-53319 73658 32;-56328 73252;-56227 72562;-57631 72373;-57701 73026;-68242 71610;-68155 70959;-69164 70823 32;-69088 70256 32;-72172 69841 32;-73959 83131 32;-73070 83251;-72996 82722;-71638 82904 32;-71597 82600 32;-70096 82802 32;-69777 80432 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-50694 74014 32;-49414 74190 32;-49501 74821 32;-50781 74645 32;-50694 74014 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">-43501 80881 32;-43105 77503 32;-43395 77469 32;-43323 76852;-43031 76884;-42932 76080;-45033 75836;-45074 76158;-46198 76036;-46167 75705;-48388 75448 32;-48937 80251 32;-43501 80881 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-52033 84000 32;-44410 85003 32;-44238 83696 32;-51861 82693 32;-52033 84000 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-51240 85832 32;-44645 86676 32;-44813 87992 32;-51408 87149 32;-51240 85832 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="17">-30841 88944 32;-31145 92982 32;-31365 92965 32;-31652 96771 32;-28648 96997 32;-28506 95118 32;-28175 95143 32;-28128 94522 32;-28474 94496 32;-28368 93095 32;-28050 93119 32;-27924 91448 32;-27605 91472 32;-27559 90856 32;-27879 90832 32;-27754 89177 32;-30841 88944 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-23486 93024 32;-23223 89138 32;-20135 89347 32;-20398 93233 32;-23486 93024 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">-26154 97876 32;-21757 98153 32;-21570 95173 32;-23235 95068 32;-23215 94750 32;-24213 94687 32;-24232 94991 32;-25966 94882 32;-26154 97876 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-20034 97907 32;-19799 96027 32;-18750 96158 32;-18985 98038 32;-20034 97907 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="16">-13987 97476 1;-14309 97449;-14564 97216;-14634 96917;-17097 96722 32;-16793 92830 32;-13959 93052 32;-13941 92816 32;-13317 92865 32;-13336 93104 32;-10523 93324 32;-10826 97211 32;-13255 97022 1;-13367 97313;-13661 97504;-13987 97476 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">-836 91538 32;-4047 91196 32;-3961 90411 32;-6778 90108 32;-7080 92956 32;-4350 93246 32;-4435 94018 32;-1137 94373 32;-836 91538 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-1449 98595 32;-1338 97247 32;-811 97290 32;-922 98638 32;-1449 98595 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">1286 94347 32;4649 94523 32;4785 91926 32;4463 91909 32;4537 90492 32;3162 90420 32;3087 91856 32;1421 91769 32;1286 94347 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="27">1636 100765 32;10000 101470 32;9978 101731 32;14356 102100 32;14429 101238 32;17309 101481 32;17429 100063 32;17229 100046 32;17407 97938 32;14918 97728 32;14829 98784 32;12739 98608 32;12832 97506 32;11811 97420 32;11716 98542 32;10346 98426 32;10370 98136 32;8983 98020 32;9071 96973 32;8034 96886 32;7946 97929 32;5469 97720 32;5556 96683 32;4481 96592 32;4393 97635 32;1917 97426 32;1636 100765 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">14591 94335 32;14826 90659 32;12658 90521 32;12608 91300 32;11475 91228 32;11416 92156 32;11044 92570 32;11020 92944 32;11343 93366 32;11294 94129 32;12012 94175 32;11990 94520 32;13697 94629 32;13719 94279 32;14591 94335 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="59"><coords count="1">47565 108673;</coords></object>
<object type="1" symbol="111"><coords count="5">10807 81344 32;10848 80376 32;11859 80419 32;11818 81387 32;10807 81344 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-19444 85137 32;-10098 85773 32;-9868 82393 32;-19214 81757 32;-19444 85137 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">-33088 83812 32;-22774 84807 32;-22462 81578 32;-24724 81360 32;-24698 81093 32;-25288 81036 32;-25316 81325 32;-29885 80884 32;-29859 80616 32;-30440 80560 32;-30465 80824 32;-32778 80601 32;-33088 83812 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="6">-35454 97091;-34265 87247;-34569 87136;-37998 94823;-36297 97022;-35454 97091 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-23558 72896 32;-22576 65568 32;-27458 64914 32;-28440 72242 32;-23558 72896 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-27090 62286 32;-26768 59822 32;-25346 60008 32;-25668 62472 32;-27090 62286 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-20970 60848 32;-20657 58453 32;-19415 58615 32;-19728 61010 32;-20970 60848 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-11855 64598 32;-10856 64739 32;-10721 63788 32;-11720 63646 32;-11855 64598 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-10341 63847 32;-9432 63985 32;-9576 64935 32;-10485 64797 32;-10341 63847 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-11001 76228 32;-9593 66412 32;-1507 67572 32;-2915 77388 32;-11001 76228 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">-13465 62772 32;-12345 54186 32;-13995 53970;-14224 53662;-14555 53897;-15048 53833 32;-16168 62419 32;-15638 62488;-15405 62760;-15116 62556;-13465 62772 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">-5155 63847 32;-4035 55261 32;-5685 55045;-5914 54737;-6245 54972;-6738 54908 32;-7858 63494 32;-7328 63563;-7095 63835;-6806 63631;-5155 63847 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-3193 52256 32;4646 53293 32;5001 50607 32;-2838 49570 32;-3193 52256 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">5504 53514 32;5891 50555 32;8264 50865 32;7877 53824 32;5504 53514 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-3285 50099 32;-3177 49346 32;-4000 49228 32;-4108 49981 32;-3285 50099 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">6189 54714 32;6257 54167 32;5732 54101 32;5664 54648 32;6189 54714 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">2006 40097 32;8711 43803 32;9990 41488 32;2350 37267 32;2006 40097 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">2309 44818 32;2466 43782 32;3530 43943 32;3374 44979 32;2309 44818 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-94 49122 32;1468 37342 32;-1164 36993 32;-2726 48773 32;-94 49122 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">9694 39471 32;10164 38586 32;11070 39067 32;10600 39952 32;9694 39471 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">5698 37300 32;6168 36415 32;7074 36896 32;6604 37781 32;5698 37300 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">-14708 50601 32;-6855 51651 32;-6798 51223;-6487 50987;-6721 50646;-6487 48898 32;-8135 48677;-8366 48354;-8696 48602;-14340 47847 32;-14708 50601 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">-13812 47059 32;-12360 36344 32;-9608 36717 32;-10225 41270;-10003 41611;-10305 41858;-10761 45227;-10542 45539;-10833 45760;-11060 47432 32;-13812 47059 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">-9198 39546 32;-5297 40093 32;-5241 39695;-4962 39462;-5164 39146;-4908 37322 32;-6595 37085;-6813 36782;-7122 37011;-8809 36774 32;-9198 39546 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-14624 34546 32;-13631 34702 32;-13784 35682 32;-14777 35526 32;-14624 34546 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-14016 29426 32;-12917 29569 32;-13048 30580 32;-14147 30437 32;-14016 29426 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-12368 17497 32;-11172 17568 32;-11112 16550 32;-12308 16479 32;-12368 17497 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="23">-32743 -2599 32;-24228 -2540 32;-24218 -4037 32;-21508 -4018 32;-21518 -2525 32;-12780 -2465 32;-12779 -2679 32;-8850 -2652 32;-8858 -1420 32;-442 -1362 32;-422 -4270 32;-3541 -4291 32;-3543 -3992 32;-5772 -4007 32;-5770 -4293 32;-8847 -4315 32;-8849 -4025 32;-12771 -4052 32;-12763 -5250 32;-31947 -5382 32;-31956 -4005 32;-32733 -4010 32;-32743 -2599 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-6941 -23626 32;-10494 -23446 32;-10378 -21143 32;-9130 -21206 32;-9150 -21605 32;-6845 -21722 32;-6941 -23626 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-14433 -27965 32;-14671 -35372 32;-13424 -35412 32;-13186 -28005 32;-14433 -27965 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">20202 -13306 32;-2415 -12929 32;-2409 -12585 32;-3908 -12560 32;-3914 -12903 32;-11608 -12775 32;-11654 -15564 32;21497 -16117 32;21586 -10769 32;20245 -10747 32;20202 -13306 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">101 1035 32;92 -486 32;1537 -495 32;1546 1027 32;101 1035 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">-9811 -27565 32;-10032 -35985 32;-7050 -36063 32;-7004 -34309 32;-6577 -34320 32;-6560 -33662 32;-6980 -33651 32;-6885 -30054 32;-6453 -30065 32;-6435 -29392 32;-6867 -29381 32;-6821 -27644 32;-9811 -27565 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-5276 -30497 32;-5415 -35654 32;-4138 -35688 32;-4000 -30531 32;-5276 -30497 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="114" rotation="0.0554985"><coords count="1">-12626 -40671;</coords></object>
<object type="1" symbol="111"><coords count="23">-13646 -44401 32;-14155 -44384 32;-14209 -45979 32;-14721 -45962 32;-14783 -47803 32;-15847 -47767 32;-16027 -47899 32;-16342 -47543;-17659 -47499 32;-17607 -45971 32;-17113 -45988 32;-17057 -44322 32;-16553 -44339 32;-16480 -42159 32;-16717 -41850 32;-16700 -41358 32;-16451 -41054 32;-15360 -41091 32;-15351 -40830 32;-14468 -40860 32;-14477 -41118 32;-13536 -41150 32;-13646 -44401 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-9389 -40413 32;-9569 -45902 32;-11093 -45852 32;-11073 -45233 32;-10855 -45240 32;-10696 -40370 32;-9389 -40413 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">-7592 -40468 32;-7786 -45957 32;-6531 -46001 32;-6517 -45608 32;-4583 -45676 32;-4601 -46192 32;-3036 -46247 32;-2981 -44689 32;-2701 -44699 32;-2655 -43407 32;-4652 -43337 32;-4633 -42794 32;-6377 -42733 32;-6299 -40514 32;-7592 -40468 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">2336 -35864 32;-664 -35726 32;-642 -35257 32;-2333 -35180 32;-2208 -32457 32;-593 -32531 32;-613 -32967 32;2463 -33109 32;2336 -35864 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">4389 -35934 32;7319 -36043 32;7335 -35572 32;10400 -35684 32;10504 -32896 32;7529 -32786 32;7509 -33334 32;4491 -33223 32;4389 -35934 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">12817 -36513 32;14919 -36583 32;14938 -36010 32;16478 -36061 32;16457 -36709 32;17211 -36734 32;17232 -36085 32;17818 -36104 32;17871 -34504 32;15117 -34413 32;15099 -34964 32;12870 -34891 32;12817 -36513 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">11697 -28715 32;11614 -30388 32;13184 -30466 32;13267 -28793 32;11697 -28715 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">17158 -29047 32;20352 -29199 32;20273 -30861 32;18573 -30780 32;18526 -31767 32;17762 -31731 32;17810 -30726 32;17080 -30691 32;17158 -29047 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">21498 -28763 32;21443 -29966 32;22308 -30006 32;22363 -28803 32;21498 -28763 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">25081 -29517 32;25012 -31190 32;26607 -31256 32;26676 -29583 32;25081 -29517 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">19454 -36761 32;22150 -36844 32;22163 -36423 32;24621 -36499 32;24687 -34348 32;23338 -34306 32;23367 -33352 32;22396 -33322 32;22356 -34635 32;19522 -34548 32;19454 -36761 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">26823 -36983 32;28994 -37038 32;29005 -36608 32;31297 -36666 32;31340 -34970 32;29160 -34914 32;29150 -35326 32;26867 -35268 32;26823 -36983 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">33486 -31649 32;33555 -30007 32;31903 -29938 32;31835 -31580 32;33486 -31649 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">38294 -30288 32;40339 -30377 32;40266 -32050 32;38221 -31961 32;38294 -30288 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">33729 -37186 32;35851 -37270 32;35873 -36731 32;38083 -36817 32;38148 -35208 32;36015 -35124 32;35998 -35611 32;33795 -35525 32;33729 -37186 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">43768 -35344 32;43781 -35007 32;46004 -35092 32;45904 -37697 32;40648 -37495 32;40735 -35227 32;43768 -35344 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="29">24999 -40165 32;31276 -40411 32;31228 -41656 32;32183 -41694 32;32124 -43163 32;31157 -43125 32;31136 -43672 32;25182 -43440 32;25200 -42952 32;21230 -42795 32;21191 -43788 32;17894 -43659 32;17908 -43321 32;14583 -43191 32;14615 -42427 32;12682 -42350 32;12736 -41018 32;14656 -41094 32;14673 -40649 32;15432 -40679 32;15448 -40288 32;17934 -40385 32;17920 -40776 32;21308 -40907 32;21286 -41428 32;25253 -41585 32;25268 -41177 32;24959 -41165 32;24999 -40165 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="27">964 -21200 32;7739 -21462 32;7700 -22480 32;8470 -22510 32;8423 -23722 32;6977 -23666 32;6961 -24091 32;1557 -23881 32;1571 -23516 32;-942 -23419 32;-959 -23870 32;-4664 -23726 32;-4646 -23272 32;-5894 -23224 32;-5867 -22529 32;-6603 -22500 32;-6526 -20505 32;-6905 -20490 32;-6856 -19215 32;-5882 -19253 32;-5987 -21972 32;-4611 -22025 32;-4560 -20704 32;-859 -20848 32;-911 -22177 32;923 -22248 32;964 -21200 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">12782 -21492 32;15736 -21611 32;15751 -21276 32;16898 -21321 32;16826 -23101 32;15677 -23055 32;15617 -24482 32;12666 -24364 32;12782 -21492 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">17838 -21332 32;17926 -19122 32;17120 -19090 32;17032 -21300 32;17838 -21332 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">17911 -24589 32;21147 -24765 32;21332 -21367 32;20226 -21307 32;20189 -21979 32;18059 -21863 32;17911 -24589 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">21543 -21616 32;24388 -21772 32;24458 -20500 32;21613 -20344 32;21543 -21616 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">23225 -23102 32;23112 -24919 32;25240 -25051 32;25290 -24247 32;24868 -24221 32;24931 -23208 32;23225 -23102 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">28563 -22876 32;31594 -23052 32;31457 -25406 32;28426 -25230 32;28563 -22876 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">34299 -22755 32;38483 -22990 32;38435 -23839 32;40748 -23969 32;40653 -25655 32;39222 -25575 32;39253 -25023 32;38367 -24973 32;38322 -25779 32;34164 -25546 32;34210 -24724 32;33565 -24688 32;33630 -23537 32;34253 -23572 32;34299 -22755 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="17">40963 -25854 32;44434 -26030 32;44542 -23897 32;45508 -23946 32;45489 -24320 32;45952 -24343 32;45971 -23973 32;46552 -24002 32;46640 -22276 32;44627 -22174 32;44597 -22796 32;43804 -22757 32;43823 -22379 32;42011 -22287 32;41904 -24379 32;41039 -24334 32;40963 -25854 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">45452 -18019 32;45314 -20445 32;43119 -20320 32;43139 -19965 32;42109 -19906 32;42202 -18276 32;43233 -18335 32;43247 -18090 32;44052 -18136 32;44063 -17940 32;45452 -18019 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">38916 -20853 32;37734 -20798 32;37763 -20172 32;38945 -20227 32;38916 -20853 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">26237 -10777 32;26069 -17909 32;23524 -17849 32;23691 -10717 32;26237 -10777 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">30871 -10875 32;30704 -17958 32;28159 -17898 32;28325 -10815 32;30871 -10875 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">33094 -11769 32;32945 -17682 32;34404 -17719 32;34553 -11806 32;33094 -11769 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">33045 -17704 32;32967 -19884 32;34559 -19941 32;34584 -19252 32;35558 -19287 32;35539 -19815 32;36905 -19864 32;36920 -19449 32;38234 -19496 32;38271 -18477 32;34559 -18344 32;34580 -17759 32;33045 -17704 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">35512 -13688 32;40967 -13610 32;40925 -10659 32;35470 -10737 32;35512 -13688 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">49233 -10019 32;49917 -12893 32;50880 -12664 32;51156 -13824 32;48957 -14348 32;48670 -13143 32;47935 -13318 32;47261 -10488 32;49233 -10019 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">48451 -5521 32;51971 -4397 32;52630 -6461 32;50326 -7197 32;50544 -7879 32;49328 -8267 32;48451 -5521 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">45968 -4172 32;46457 -5570 32;45153 -6026 32;44664 -4628 32;45968 -4172 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">47982 -6264 32;48168 -6870 32;47530 -7065 32;47344 -6459 32;47982 -6264 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">50917 1387 32;54016 2424 32;54867 -121 32;54187 -348 32;54119 -146 32;51700 -955 32;50917 1387 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">46758 -2955 32;48362 -2388 32;48643 -3183 32;47039 -3750 32;46758 -2955 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">45937 -589 32;43904 -1322 32;44007 -1607;43536 -1833;43072 -866;41978 -1391;42818 -3141;44363 -2596;44553 -3123 32;46586 -2390 32;45937 -589 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">55077 3996 32;56378 4436 32;55967 5650 32;54666 5210 32;55077 3996 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="25">51261 5377 32;58050 8142 32;58162 7866 32;58879 8158 32;58763 8444 32;59728 8837 32;58664 11449 32;53556 9368 32;52362 12298 32;57513 14396 32;56879 15953 32;56985 15996 32;56637 16850 32;58215 17493 32;57536 19160 32;56469 18725 32;56338 19048 32;54698 18380 32;55322 16847 32;54409 16475 32;55013 14991 32;51017 13363 32;51455 12288 32;48874 11237 32;51261 5377 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">43264 5095 32;40409 3697 32;39272 6018 32;42127 7416 32;43264 5095 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">44682 8018 32;47204 9143 32;46423 10894 32;43901 9770 32;44682 8018 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">49657 14033 32;53653 15802 32;52669 18023 32;48674 16253 32;49657 14033 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">39076 12694 32;40220 9859 32;41164 10240 32;41485 9444 32;41096 9287 32;41647 7922 32;39790 7173 32;38861 9476 32;37763 9033 32;36677 11726 32;39076 12694 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">46593 12763 32;43846 11599 32;44239 10670 32;43394 10312 32;42671 12020 32;43565 12398 32;43084 13534 32;45043 14363 32;45327 13693 32;46067 14006 32;46593 12763 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">52547 23214 32;55118 24289 32;55875 22480 32;56270 22645 32;56541 21997 32;55126 21405 32;54965 21790 32;53545 21196 32;53158 22121 32;51595 21467 32;50692 23627 32;51720 24057 32;51943 23524 32;52347 23693 32;52547 23214 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">48362 23781 32;48734 22911 32;48248 22703 32;47876 23574 32;48362 23781 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">46661 20486 32;49046 21493 32;49429 20585 32;48871 20349 32;49244 19464 32;48313 19071 32;48449 18748 32;47617 18397 32;47418 18869 32;46966 18678 32;46673 19372 32;47062 19536 32;46661 20486 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">41245 18756 32;44315 20057 32;44455 19727 32;45618 20220 32;45200 21206 32;45818 21468 32;46238 20476 32;45526 20175 32;46098 18825 32;45030 18373 32;45256 17839 32;42184 16538 32;41245 18756 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">36660 17979 32;38117 14527 32;35396 13378 32;34938 14462 32;34651 14341 32;34307 15155 32;34588 15274 32;33937 16815 32;35789 17597 32;35422 18466 32;37099 19174 32;37461 18317 32;36660 17979 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">27501 -2558 32;33171 -2500 32;33143 181 32;27473 122 32;27501 -2558 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">28793 3765 32;28780 1111 32;27507 1118 32;27521 3772 32;28793 3765 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">25710 4636 32;31420 4664 32;31407 7346 32;25697 7318 32;25710 4636 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">27051 10968 32;27051 8355 32;25682 8355 32;25682 10968 32;27051 10968 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">22267 11950 32;27991 11978 32;27978 14622 32;22254 14594 32;22267 11950 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">4220 17026 32;4924 17105 32;4866 17630 32;4162 17552 32;4220 17026 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-1426 26520 32;-334 17934 32;-3095 17583 32;-4187 26169 32;-1426 26520 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">-10510 20644 32;-4358 20672 32;-4345 17867 32;-5540 17862;-5836 17583;-6106 17859;-8637 17848;-8912 17564;-9259 17845;-10497 17839 32;-10510 20644 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">-11768 28781;-1894 30081;-1781 29223;-1465 28981;-1420 28643;-1682 28300;-1558 27373;-6525 26709;-6746 26420;-7044 26648;-9529 26317;-9793 25972;-10122 26224;-11397 26055;-11768 28781 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">7989 27813 32;9316 17983 32;8323 17849;8413 17271;7733 17173;7645 17757;6704 17630 32;5377 27460 32;7989 27813 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">10173 20776 32;17418 20721 32;17398 18079 32;10153 18134 32;10173 20776 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">18704 18979 32;19630 18965 32;19616 18023 32;18690 18037 32;18704 18979 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">9869 24910 32;10809 25007 32;10902 24103 32;9962 24006 32;9869 24910 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">24982 18010 32;25666 18010 32;25666 18587 32;24982 18587 32;24982 18010 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">14854 37640 32;17840 32124 32;15498 30856 32;12512 36372 32;14854 37640 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">11798 35867 32;12185 35165 32;11706 34900 32;11319 35602 32;11798 35867 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="17">13983 31907;8175 28788 1;7902 28645;7444 28509;7139 28465;4899 28161;4744 29304;4387 29256;4330 29677;4690 29726;4541 30820;6374 31070 1;6850 31135;7091 31220;7512 31451;12683 34230;13983 31907 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="15">19071 31935 32;15857 30161 32;20276 22033 1;20728 21192;20813 20872;20813 20363;20799 18385;23536 18385;23536 21082 1;23536 21579;23463 21851;23218 22284;19453 29037 32;20386 29552 32;19071 31935 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="23">42757 27526;57250 33877;58010 30780;57153 30406;56995 30003;56578 30166;54392 29209;54205 28729;53735 28912;52246 28258;52074 27817;51651 27982;49455 27018;49306 26635;48879 26801;47393 26147;47223 25710;46806 25873;44747 24993;44592 24595;44178 24756;43012 24226;42757 27526 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="10">45351 39345;45890 33344;45614 33319;45667 32738;44659 32293;44673 32003;44079 32015;42870 31506;42198 39027;45351 39345 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">36914 36801 1;35494 35978;34698 35338;33823 33950;37643 31195;39285 32559;36914 36801 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">62294 59503 32;66144 59952 32;66300 58616 32;62450 58167 32;62294 59503 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">50218 106994 32;49208 106949 32;49178 107623 32;50188 107662 32;50218 106994 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">50081 105547;</coords></object>
<object type="1" symbol="64"><coords count="5">50533 105847 32;50229 105008 32;49606 105233 32;49918 106077 32;50533 105847 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">50535 105846 32;50223 105002 32;49608 105229 32;49919 106073 32;50535 105846 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">49396 103762;</coords></object>
<object type="1" symbol="132"><coords count="5">49850 104061 32;49538 103217 32;48923 103444 32;49234 104288 32;49850 104061 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">49848 104062 32;49544 103223 32;48921 103448 32;49233 104292 32;49848 104062 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">49163 102300 32;48859 101461 32;48236 101686 32;48548 102530 32;49163 102300 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">49165 102299 32;48853 101455 32;48238 101682 32;48549 102526 32;49165 102299 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">48711 102000;</coords></object>
<object type="1" symbol="64"><coords count="5">51183 107564 32;50879 106725 32;50256 106950 32;50568 107794 32;51183 107564 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">50731 107264;</coords></object>
<object type="1" symbol="132"><coords count="5">51185 107563 32;50873 106719 32;50258 106946 32;50569 107790 32;51185 107563 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">45126 105235 32;45160 104461 32;44522 104433 32;44488 105207 32;45126 105235 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="10">52567 106393;52056 106623;50928 104232;51636 102026;51535 101779;51787 101662;52432 103053;52309 103413;51608 103760;51541 104047;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="6">51509 101807;50697 102157;50478 101685 1;50379 101447;50358 101179;50593 101080 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="18">56290 106654;54435 107524;52848 107381;47927 110682;47562 111920;44832 114000 1;43496 115018;43059 115828;42197 117270 1;41634 118212;41247 119085;40150 119095 1;39570 119100;39066 119041;38713 118580 1;38540 118354;38363 118154;38222 117967;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">41264 112609;41163 112294;41652 112137;41753 112474;41264 112609 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">41028 114140;41478 115417;40000 115904;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">40408 116307 32;40700 117171 32;40011 117404 32;39719 116540 32;40408 116307 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="7">38990 115399;39365 115712;39338 116219;38877 116302;38507 115982;38512 115527;38990 115399 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">37915 115333;38104 115679;38509 115696;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">37014 115904;38371 117896;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">39175 116227;39275 116555;39574 116718;39762 116659;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">38693 113189;</coords></object>
<object type="0" symbol="84"><coords count="1">38143 113941;</coords></object>
<object type="0" symbol="84"><coords count="1">38536 114794;</coords></object>
<object type="0" symbol="84"><coords count="1">39120 114110;</coords></object>
<object type="0" symbol="84"><coords count="1">41094 115996;</coords></object>
<object type="0" symbol="84"><coords count="1">40625 114131;</coords></object>
<object type="0" symbol="84"><coords count="1">37782 115805;</coords></object>
<object type="0" symbol="84"><coords count="1">39108 117040;</coords></object>
<object type="0" symbol="84"><coords count="1">39466 115774;</coords></object>
<object type="1" symbol="105"><coords count="4">38295 115720;38295 116068;38803 116513;39319 116386;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">40970 115196;</coords></object>
<object type="1" symbol="120"><coords count="36">46673 112120;46864 112452;44832 114000 1;43496 115018;43059 115828;42197 117270 1;41634 118212;41247 119085;40150 119095 1;39570 119100;39066 119041;38713 118580 1;38540 118354;38363 118154;38222 117967;37110 115812;37323 115673;38022 115254;36561 112818;36518 112339;41181 112264;41310 112635;41737 113866;46673 112120 18;40669 117181 32;40411 116362 32;39733 116576 32;39991 117395 32;40669 117181 50;39339 116261;39367 115722;38991 115397;38486 115537;38486 116003;38890 116328;39339 116261 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="19">36880 115939;34037 111163 1;33956 110827;34074 110035;34487 109523;41143 109351;41456 110488;44543 109388;45634 109404;46618 112089;41737 113866;41310 112635;41776 112481;41649 112112;41181 112264;36518 112339;36561 112818;38022 115254;36880 115939 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">33983 111136 1;33673 110584;33528 110144;33435 109517;34467 109494;34165 110113;34014 110732;33983 111136 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">33983 111136 1;33673 110584;33528 110144;33435 109517;34467 109494;34165 110113;34014 110732;33983 111136 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">31942 105976 32;35283 106207 32;35252 106659 32;31918 106429 32;31942 105976 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">31912 106426 1;31656 106408;31481 106188;31502 105932;31867 101903;32327 101945;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">30679 100089;</coords></object>
<object type="0" symbol="84"><coords count="1">30763 99253;</coords></object>
<object type="0" symbol="83"><coords count="1">28224 106250;</coords></object>
<object type="1" symbol="132"><coords count="5">23724 105454 32;27242 105889 32;27287 105522 32;23769 105087 32;23724 105454 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="5">25514 105308 32;27287 105543 32;27242 105892 32;25474 105668 32;25514 105308 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">23781 105092 32;25543 105328 32;25522 105659 32;23738 105440 32;23781 105092 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">29698 106547 1;29715 106467;29725 106384;29728 106299 1;29758 105469;29109 104771;28279 104741 1;27706 104720;27196 105023;26926 105486 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">26780 105827 1;26746 105943;26727 106064;26722 106190 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="17">11442 73470 1;11595 74160;11724 74521;11990 75192 1;12427 76294;13019 76819;13903 77609 1;15030 78616;15596 79338;16198 80724 1;16620 81696;16768 82279;17055 83300;19244 91090;19971 91566;22745 103820;22258 103926 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">22430 103640;</coords></object>
<object type="0" symbol="84"><coords count="1">22217 102484;</coords></object>
<object type="1" symbol="67"><coords count="5">22251 103914;22717 103813;22307 101787;21898 102450;22251 103914 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">29957 103129;23814 102618;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">22997 97045;22933 97568;22156 98616;22775 101346;23267 101386;23357 100285;23545 100300;23684 98561;24183 98601 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">24175 98547;24677 98597;24544 100113;24056 100068;24175 98547 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="13">23680 98548 1;23712 98227;23722 97639;23402 97596;22950 97548;22156 98616;22775 101346;23267 101386;23357 100285;23545 100300;23655 98922;23664 98771;23680 98548 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="8">22981 97064;22934 97572;23489 97675;23593 97826;23640 98564;24172 98612;24299 97152;22981 97064 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="26">35205 107089;35245 106652;31935 106430;31959 105970;32316 101970;34181 102160;34189 101889;34222 101491 1;33971 101530;33731 101363;33681 101112 1;33633 100876;33766 100647;33984 100566;32725 99076;30538 98893;30223 102658;23915 102130;23744 105065;23895 105103;27287 105522 32;27242 105889 32;23724 105454 32;23697 105811;31872 106835;35205 107089 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="13">33969 100612 1;33737 100680;33604 100924;33672 101156 1;33740 101389;33984 101522;34216 101454 1;34449 101385;34582 101142;34514 100909 1;34445 100677;34202 100544;33969 100612 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">33655 101038;34561 101060;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">34104 101470;34104 100612;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">33485 101152 1;33425 100833;33597 100572;33900 100456;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="31">39209 98935;39055 99583;36787 96979;36423 97301;36135 96970;36203 96347;35537 95582;35155 95919;32517 92754;31765 93372;25143 92597;25031 93551;23179 94180;22930 97063;22378 97020;22644 93818;24567 93117;24681 92093;31665 92868;32688 92021;34649 94391;35095 94022;36254 95423;36596 95140;37832 96634;37519 96893;38100 97596;38339 97396;39205 98458;38983 98662;39209 98935 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">19064 87284;</coords></object>
<object type="1" symbol="132"><coords count="5">22497 95396;21453 95306;21218 94195;23261 92544;23182 93622;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">21566 94251;</coords></object>
<object type="1" symbol="119"><coords count="7">22660 93821;22527 95376;21465 95295;21230 94184;23273 92533;23194 93611;22660 93821 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">20672 92630;20414 91362;19707 90924;19583 90408;20784 90677;21137 92519;20672 92630 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">20724 91587;</coords></object>
<object type="1" symbol="67"><coords count="7">20672 92630;20414 91362;19707 90924;19583 90408;20784 90677;21137 92519;20672 92630 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">21778 91441;</coords></object>
<object type="1" symbol="132"><coords count="13">18036 82201 1;17721 82167;17304 82374;17382 82681 1;17516 83204;17599 83496;17749 84015;19209 89072;22228 89824 1;22415 89870;22556 89663;22571 89471;22695 87722 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">20398 88882;</coords></object>
<object type="1" symbol="132"><coords count="11">26761 92306 1;26776 92148;26784 92070;26799 91912 1;26843 91449;27240 91074;27703 91117 1;28133 91157;28494 91629;28432 92085;28377 92496;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">27868 91791;</coords></object>
<object type="1" symbol="119"><coords count="12">26761 92306 1;26776 92148;26784 92070;26799 91912 1;26843 91449;27240 91074;27703 91117 1;28133 91157;28494 91629;28432 92085;28377 92496;26761 92306 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">28456 89739 1;28831 89838;29215 89615;29314 89240 1;29414 88865;29190 88480;28815 88381 1;28440 88282;28055 88505;27956 88880 1;27857 89255;28081 89640;28456 89739 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">28624 89054;</coords></object>
<object type="1" symbol="68"><coords count="11">32458 92187;31773 91382;32136 91106 1;32561 90817;32732 90910;32949 91113 1;33237 90886;33760 90732;34088 91060;34483 91520;33174 92571;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">32862 91641;</coords></object>
<object type="1" symbol="62"><coords count="15">32458 92187;31842 91405;32276 91048 1;32440 90909;32793 90808;32909 91111 1;32918 91136;33001 91122;33020 91105 1;33308 90838;33882 90901;34091 91110;34451 91559;33174 92571;32458 92187 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">35087 94031 1;35249 93892;35330 93823;35492 93684 1;35661 93539;35903 93557;36048 93726 1;36184 93884;36166 94109;36008 94245;35571 94602;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="12">35087 94031 1;35249 93892;35330 93823;35492 93684 1;35661 93539;35903 93557;36048 93726 1;36184 93884;36166 94109;36008 94245;35571 94602;35087 94031 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="20">34669 95336;32223 97319;32124 99026;30538 98893;30223 102658;23915 102130;24090 100037;24090 100037;24536 100076;24663 98632;24211 98592;24341 97144;22933 97027;22933 97027;23179 94180;25031 93551;25143 92597;31765 93372;32517 92754;34669 95336 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="8">35006 95740;32822 97585;32725 99076;32124 99026;32124 99026;32222 97313;34669 95336;35006 95740 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="2">32156 99063;32708 99107;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">41129 109358;41084 109066;33928 109105;33725 109162 1;33520 109229;33409 109252;33435 109518;41129 109358 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="30">-45730 102340 1;-45095 100590;-44335 100382;-43065 100464;-33229 101315;-31707 102152;-20987 102981;-18485 104438;-7560 105479;-4626 104316;4505 105239;5369 106325;19118 107811;23563 108295;24372 108374 1;26057 108538;27132 108642;29033 108827 1;30281 108948;30912 109585;31588 110641 1;33510 113643;34321 115236;36169 118284 1;36805 119278;37205 119719;37931 120649 1;38345 121180;38663 121390;38916 122014 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">42487 121983 1;43779 118804;45475 116661;47615 114999 1;48642 114201;49116 113746;50202 113030 1;50789 112643;51361 112834;51948 113221;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="17">54473 111819;53870 110446;69549 103488;69308 102945 1;71358 101931;73151 99902;74558 97088;75152 96692;75688 96335 1;76312 93907;76420 92639;76669 90144;76636 88824;77079 85473 1;77113 85256;77273 85255;77461 85275 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">32923 90694;</coords></object>
<object type="1" symbol="132"><coords count="5">45150 108372 32;44261 108340 32;44231 108989 32;45119 109022 32;45150 108372 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">44701 108688;</coords></object>
<object type="1" symbol="64"><coords count="5">45152 108375 32;44270 108338 32;44233 108992 32;45124 109025 32;45152 108375 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="36">23729 105836;23744 105455;23800 105058;23903 102598;23927 102106;24126 99153;24173 98590;23697 98566;23562 100296;23348 100296;23260 101399;22760 101352;22158 98628;22952 97549;23007 97081;22380 97025;22515 95406;21459 95303;21221 94184;20673 92621;20451 91383;19713 90922;19586 90407;19007 90303;19072 90478;19244 91090;19971 91566;22745 103820;22258 103926;22300 104157;22337 104315 1;22510 105064;23030 105649;23592 105788;23596 105789;23729 105836 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">39484 106861 32;39537 105839 32;38647 105792 32;38593 106814 32;39484 106861 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">39657 104066;39440 102541 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">29943 103128 1;30181 103149;30354 102953;30375 102715;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="5">39240 102577;39211 102087;39318 102115;39599 102569;39240 102577 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">40256 102552;40225 103131;40851 103162;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">40335 102584;40866 102615;40858 103100;40303 103037;40335 102584 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">35331 104839;36496 104909;36637 102728;37629 101857;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">35324 104792;36426 104854;36621 102696;37568 101727;36864 100976;35527 102165;35324 104792 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">35370 105013 32;35298 105981 32;35703 106011 32;35775 105043 32;35370 105013 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">36636 103559;39615 103731;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-0.0590032"><coords count="1">38066 103668;</coords></object>
<object type="1" symbol="116"><coords count="6">38814 102120;39050 98729;39484 99247;39484 99247;39258 102148;38814 102120 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="29">38842 101730;38341 101712;38157 101505;37702 101875;36886 100948;35504 102165;35251 106160;31981 105953;32310 101985;34169 102139;34222 101491 1;34470 101429;34607 101177;34557 100926 1;34509 100690;34204 100518;33984 100566;32725 99076;32725 99076;32822 97585;35006 95740;35155 95919;35537 95582;36201 96345;36147 96983;36443 97324;36797 96990;38994 99538;38842 101730 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="8">37701 101964;38176 101549;38355 101728;38876 101747;38851 102102;38344 102066;38035 102338;37701 101964 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">38905 102099;38241 102064;38001 102281;37690 101920;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">39258 102474;38540 102433;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="2">38819 102122;39269 102148;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">38555 102262;38886 102283;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="23">35148 107060;41461 107440;41616 107392;41753 107302;41797 107158;44134 107266;44441 106967;40678 106750;40875 103246;40337 103101;40141 102584;39613 102543;39841 105272;39531 105872;39510 106864;38580 106843;38631 105799;36605 105045;35757 105024;35706 106006;35303 105996;35230 106678;35148 107060 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">36641 105091;38607 105800;39594 105830;39872 105332;39280 102145;38235 102094;37993 102277;37723 101992;36744 102759;36641 105091 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="13">28456 89739 1;28831 89838;29215 89615;29314 89240 1;29414 88865;29190 88480;28815 88381 1;28440 88282;28055 88505;27956 88880 1;27857 89255;28081 89640;28456 89739 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">41700 98861 32;41123 98177 32;40614 98607 32;41201 99292 32;41700 98861 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">41167 98740;</coords></object>
<object type="1" symbol="132"><coords count="5">41702 98859 32;41115 98173 32;40613 98602 32;41199 99288 32;41702 98859 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">41703 99306;</coords></object>
<object type="1" symbol="115"><coords count="4">40837 100828;39349 100738;39461 99184;40837 100828 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">39502 100736;39594 99543;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="4">39429 99567;39780 99582;39466 99201;39429 99567 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="24">34698 95370;32517 92754;31765 93372;25143 92597;25031 93551;23179 94180;22930 97063;22378 97020;22644 93818;24567 93117;24681 92093;31665 92868;32688 92021;34649 94391;35095 94022;36254 95423;36596 95140;37832 96634;37536 96879;38120 97580;38342 97389;39213 98460;39003 98638;39449 99174 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">38759 95852 1;38893 95736;39080 95772;39196 95906;40256 97174 32;39794 97560 32;39794 97560 32;38529 96047 32;38759 95852 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">39670 96938;</coords></object>
<object type="1" symbol="119"><coords count="9">38759 95852 1;38893 95736;39080 95772;39196 95906;40256 97174 32;39794 97560 32;39794 97560 32;38529 96047 32;38759 95852 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">38400 97459;39179 96807;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="17">42937 100904;42792 104329;44505 104403;44462 105239 32;45094 105271 32;45051 106109 32;44420 106077 32;44377 106910 32;44377 106910 32;40682 106720 32;40894 102582 32;39592 102501;39279 102091;39279 102091;39378 100723;39378 100723;42937 100904 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">44515 104426;42780 104351;42927 100881;44692 100971 32;44515 104426 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">44340 104423;44442 102530;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="118" rotation="-0.0508037"><coords count="1">44428 101199;</coords></object>
<object type="1" symbol="135"><coords count="2">43740 104043;43814 102493;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="135"><coords count="2">43265 104019;43339 102469;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">47760 100951;46912 98822;45506 98769;46302 100889;47760 100951 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">46105 99204;</coords></object>
<object type="1" symbol="64"><coords count="5">47760 100951;46912 98822;45506 98769;46302 100889;47760 100951 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">50782 99188;51410 100585;50581 100994;49919 99559 32;50782 99188 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">49962 98870;</coords></object>
<object type="1" symbol="119"><coords count="7">50712 101184;50422 101329;50696 102011;51477 101675;51363 101406;50893 101628;50712 101184 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="33">41023 109062;41043 109320;41147 109341;41436 110458;41672 110411;44543 109388;45634 109404;46618 112089;46843 112453;46942 112392;47562 111920;47927 110682;52848 107381;52848 107381;52601 106374;52421 106459;52056 106623;51540 105529;50554 105837;51185 107584;50585 107770;50285 107026;50182 107667;49169 107656;49210 106964;45065 106105;45147 108380;45116 109010;44227 109000;44269 108349;44082 108328;44036 109074;41023 109062 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="9">44082 108359;44279 108349;45178 108369;45085 106147;44424 106136;44382 106922;44136 107239;44103 107615;44082 108359 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">45064 106116;49199 106974;50254 106964;50884 106695;50605 105816;49923 106075;48228 101661;47762 100937;46284 100896;44692 100958;44517 104431;45163 104488;45064 106116 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="31">46906 98819;47761 100960;48229 101691;48853 101455 32;49165 102299 32;49165 102299 32;48549 102526 32;48919 103460;48922 103469;48977 103424;49538 103217 32;49850 104061 32;49850 104061 32;49234 104288 32;49567 105244;49697 105196;50223 105002 32;50535 105846 32;51540 105551;51477 105396;50928 104232;51636 102026;51592 101918;51351 101875;50697 102157;50478 101685 1;50379 101447;50358 101179;50593 101080;49919 99559 32;46906 98819 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="19">37631 91207;37014 90511;36615 90853 32;34899 88855 32;37546 86625;37527 84837;37336 84839;37311 82722;36938 82738;36928 80299;37908 79738;38069 84497;38288 84833;38302 86806;37798 87196;37694 87487;36359 88591;38194 90722;37631 91207 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="5">36618 90797 32;35427 89372 32;35795 89065 32;36986 90490 32;36618 90797 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">36816 90637;35612 89201;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">36943 82409;35765 82461;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">37315 84828 32;35868 84869 32;35856 84466 32;37303 84425 32;37315 84828 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">36137 84663;</coords></object>
<object type="1" symbol="119"><coords count="5">37315 84828 32;35868 84869 32;35856 84466 32;37303 84425 32;37315 84828 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">36475 87511;35979 86953 1;36265 86699;36604 86912;36920 87129;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="6">36475 87511;35979 86953 1;36265 86699;36604 86912;36920 87129;36475 87511 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">32713 80358 1;32242 80384;31881 80786;31906 81257 1;31932 81728;32335 82089;32806 82064 1;33277 82038;33638 81635;33612 81164 1;33586 80693;33184 80332;32713 80358 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="59"><coords count="1">32752 81212;</coords></object>
<object type="1" symbol="132"><coords count="20">31824 79542 1;32040 78991;32679 78768;33230 79005 1;33539 79138;33755 79397;33831 79702;34263 79635;34325 78250 1;34153 78231;33979 78143;33995 77971;34077 77010;32153 76846;32081 77822 1;32066 77999;31742 77996;31565 77981;31421 79336;31824 79542 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">32982 77847;</coords></object>
<object type="1" symbol="119"><coords count="20">31824 79542 1;32040 78991;32679 78768;33230 79005 1;33539 79138;33755 79397;33831 79702;34263 79635;34325 78250 1;34153 78231;33979 78143;33995 77971;34077 77010;32153 76846;32081 77822 1;32066 77999;31742 77996;31565 77981;31421 79336;31824 79542 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">35870 80815;</coords></object>
<object type="1" symbol="133"><coords count="5">36925 82180 32;36925 80351 32;37359 80333 32;37359 82180 32;36925 82180 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">37132 82170;37158 80258;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="11">45368 77872;43249 78430;42970 77944 1;42796 77640;42447 77481;42139 77657;40334 78666;40271 78545;39007 79271;38924 79118;36877 80295 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="13">38194 90722;38194 90722;37631 91207;37631 91207;37014 90511;36615 90853 32;34899 88855 32;37546 86625;37527 84837;37336 84839;37311 82722;36906 82739;36902 80299 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="34">37875 80260;39114 79561;39119 79558;39216 79738;40478 79008;40549 79151;41462 78628;42904 81548;43365 81298;42074 78637 1;41997 78510;41966 78313;42093 78237 1;42199 78173;42160 78196;42266 78132 1;42436 78030;42629 78170;42711 78350;43031 78926;45403 78274;45397 77869;45191 77919;43249 78430;42970 77944 1;42796 77640;42447 77481;42139 77657;40334 78666;40271 78545;39007 79271;38924 79118;37839 79742;37875 80260 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="4">42175 77899 1;42383 77765;42669 77854;42818 78130;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="6">42019 77639 1;42411 77401;42888 77505;43093 77915;43280 78249;45381 77696;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="6">36896 76899;36562 76983;36301 77420;35732 77080;35987 76653;35905 76329;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">45364 77612;45192 76892;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">44656 77779;44485 77062;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">44839 76989;44940 77400;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">44323 77129;43461 77104;43158 76730;41680 76911 1;41546 76992;41576 77215;41640 77323 1;41747 77501;41801 77593;41906 77768 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">42992 77091;</coords></object>
<object type="0" symbol="84"><coords count="1">44201 77489;</coords></object>
<object type="1" symbol="86"><coords count="10">41912 77779 1;41803 77597;41749 77505;41640 77323 1;41567 77200;41561 76951;41700 76917;42671 76794;42574 77380;41912 77779 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="9">42625 76801;42529 77374;42960 77682;43275 78126;44567 77804;44361 77136;43455 77110;43159 76730;42625 76801 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="6">39429 75155;39918 75232;40182 75065;40555 75116;40889 74879;39468 74647;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">39951 75580;</coords></object>
<object type="1" symbol="132"><coords count="5">41192 75462;41665 75953;44656 75553;45093 74633;45183 73570;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="41">37036 77338;36908 80269;37131 80149;38924 79118;39007 79271;40271 78545;40334 78666;41895 77793;41813 77614 1;41759 77522;41711 77441;41640 77323 1;41567 77200;41561 76951;41700 76917;42800 76774;43158 76730;43461 77104;44323 77129;44832 77695;45227 77595;45057 76968;44671 75563;41659 75956;41179 75441;40838 75371;40883 74869;40733 74990;40555 75116;40182 75065;39918 75232;39452 75159;39391 75392;39322 76210;39414 76222;39593 76883;38603 77151;38667 77387;37651 77663;37536 77240;37036 77338 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="18">33435 109534 1;33400 109294;33574 109106;33935 109111;44051 109082;44129 107271;41780 107154 1;41767 107340;41596 107446;41412 107437;35238 107077;31843 106829;23719 105812 1;23110 105736;22523 105120;22337 104315;21900 102429;22306 101777 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="69">38916 122014 1;38663 121390;38345 121180;37931 120649 1;37205 119719;36805 119278;36169 118284 1;34321 115236;33510 113643;31588 110641 1;30912 109585;30281 108948;29033 108827 1;26845 108614;25751 108508;23563 108295;23853 105829;31843 106829;35238 107077;41470 107443;41638 107388;41729 107293;41788 107152;44120 107270;44104 107633;44114 107634;44046 109038;33995 109112 1;33687 109108;33466 109238;33435 109372;33435 109517 1;33511 110027;33621 110414;33826 110838;34012 111158;36853 115904;38222 117967 1;38363 118154;38540 118354;38713 118580 1;39066 119041;39570 119100;40150 119095 1;41247 119085;41634 118212;42197 117270 1;42962 115991;43461 115045;44832 114000;47562 111920;47927 110682;52848 107381;54435 107524;55546 107031;56377 109332;53869 110459;54504 111840;51948 113221 1;51361 112834;50789 112643;50202 113030 1;49116 113746;48642 114201;47615 114999 1;45462 116671;43759 118830;42487 121983;38916 122014 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">39840 105352;39657 104066 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">56272 106659 1;56084 106262;55901 105888;56199 105566;57572 106078;56272 106659 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">56588 106071;</coords></object>
<object type="1" symbol="64"><coords count="6">56283 106659 1;56095 106262;55878 105888;56176 105566;57549 106066;56283 106659 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="4">55846 103910;56265 104650;56630 103493;55846 103910 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">57134 103225;57628 104132;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">57621 104009;58936 103387;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="3">59336 103200;60516 102640;59872 101534;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">56197 105564;60769 103289;62157 104000;63382 103359;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">63615 102794;</coords></object>
<object type="1" symbol="64"><coords count="6">63398 103358 1;63210 102961;62993 102587;63291 102265;64652 102718;63398 103358 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">63387 103358 1;63199 102961;63016 102587;63314 102265;64675 102742;63387 103358 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="9">61944 99769;61458 100163;62063 100909 1;63061 100215;63550 99767;64339 98845 1;65218 97817;65653 97093;66462 95984 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="21">63312 102262;67161 100291;68759 100664;68773 100662 1;71275 98947;72292 97285;73158 94328 1;73470 93265;73588 92794;73800 91706;73329 91268 1;73893 87726;73930 86419;74309 83045;74683 82841 1;74589 80982;74866 80057;75509 74442 1;75577 73861;75503 73535;75114 73098 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">60373 100268;</coords></object>
<object type="1" symbol="87"><coords count="3">60559 98355;60135 98708;60432 99032;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">61352 100023;60701 99310;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">59154 99762;58454 100147;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">58052 100141;59048 99562;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="9">60027 98593;59805 98362;52691 97383 1;52035 97288;51767 97439;51154 97686 1;50849 97809;50679 96888;50599 96568 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">57644 99681;57339 99162;52455 98600;51194 99138 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="32">52585 106350 32;51524 104037;51622 103743;52296 103433;52444 103052;51784 101620 32;51549 101728 32;51391 101385 32;50903 101610 32;50600 100952;51424 100573;51135 99916;52728 99179 32;53070 99920 32;52868 100013 32;53148 100620 32;53831 100305 32;54699 102188;56137 101405;55152 99594;55805 99258;57167 99410;57462 99848;57755 99675 32;58232 100496 32;59197 99971 32;59541 100603 32;59241 100766 32;59788 101772 32;55852 103912;56206 104681 32;52585 106350 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">49975 99665;51014 99203;51286 99814;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">51830 98667 1;51164 98710;50695 98766;50197 98321 1;50049 98380;49972 98404;49826 98469 1;49442 98639;49712 99140;49900 99516;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="11">51830 98667 1;51164 98710;50695 98766;50197 98321 1;50049 98380;49972 98404;49826 98469 1;49442 98639;49712 99140;49900 99516;51830 98667 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="23">42040 94433;43922 96689;46045 96234;46720 96677;48938 96328;49579 96771;50491 96595;50290 95588;51537 95339;51554 95798;52242 95848;52304 92548;49800 92439;49801 93299;45187 92994;43916 91498;44551 90982;43730 89972;41014 92180;41292 92522;40812 92912;42045 94429;42040 94433 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="18">50491 96595;49579 96771;48949 96328;46628 96666;46021 96235;43922 96689;42040 94433;41626 94770;43438 96910;43254 97398;43926 97651;44119 97138;46081 96743;46203 97329;49580 96803;49667 97236;50583 97053;50491 96595 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">52518 106392;52798 107383;54443 107500;56274 106660;56128 106338 1;56020 106060;55983 105800;56199 105566;56394 105466;60769 103289;62157 104000;63372 103364;63298 103167 1;63152 102842;63064 102535;63314 102265;63326 102269;62188 100992;59784 101787;56612 103513;56227 104691;52518 106392 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="21">51151 99259;51390 99820;51646 99679;52728 99179 32;53070 99920 32;52868 100013 32;53148 100620 32;53831 100305 32;54699 102188;56137 101405;55152 99594;55805 99258;57167 99410;57462 99848;57680 99719;57508 99449;57339 99162;52455 98600;51507 99004;51200 99127;51151 99259 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="31">59804 101809;62008 101115;61489 100135;61816 99709;60621 98374;60148 98695;59752 98339;52148 97369;50958 97766;50540 97065;49647 97246;49799 98459;49988 98402 1;50052 98377;50113 98355;50197 98321 1;50695 98766;51164 98710;51830 98667;52138 98735;52455 98600;57339 99162;57644 99681;57857 99851;58232 100496 32;59197 99971 32;59541 100603 32;59241 100766 32;59553 101340;59640 101518;59804 101809 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="20">56321 109344;55488 107035;57583 106086;57418 106021;56199 105566;56401 105462;60769 103289;62157 104000;62681 103726;64701 102738;64521 102674;63291 102265;63526 102153;67161 100291;68759 100664;69311 102928;69443 103248;69549 103488;58742 108284;56321 109344 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">43225 97382 1;42907 97272;42989 96918;42767 96665 1;42537 96403;42423 96272;42193 96010 1;42045 95841;42091 95680;42256 95527;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">43019 96650;</coords></object>
<object type="0" symbol="84"><coords count="1">42276 95764;</coords></object>
<object type="1" symbol="64"><coords count="12">43225 97382 1;42907 97272;42989 96918;42767 96665 1;42537 96403;42423 96272;42193 96010 1;42045 95841;42091 95680;42256 95527;43437 96921;43225 97382 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">41687 94010 32;41079 93278 32;40670 93618 32;41278 94350 32;41687 94010 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="45">44698 100989;46301 100909;45514 98774;46906 98840;49937 99590;49624 98927;49639 98621;49835 98475;49682 97222;49595 96806;46206 97324;46075 96734;44108 97142;43933 97644;43175 97361;43109 97320 1;42924 97171;42957 96881;42767 96665 1;42537 96403;42423 96272;42193 96010 1;42045 95841;42091 95680;42256 95527;41623 94774;42024 94439;41674 94023;41288 94344;40654 93608;41076 93265;40756 92901;38876 95780;38946 95782 1;39037 95783;39129 95828;39196 95906;40256 97174 32;39798 97557;40615 98601;41115 98173 32;41702 98859 32;41199 99288;40748 100765;44698 100989 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="11">39195 96816;38430 97479;38611 97720;39213 98460;39003 98638;39449 99174;40806 100773;41228 99322;40609 98572;39815 97559;39195 96816 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="3">38588 95974;37409 94568;36626 95215;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">40753 92916 1;40492 92595;40276 92088;40630 91875;41960 91000;43526 89710 1;43685 89579;43888 89591;44021 89748 1;44176 89930;44184 90120;44051 90319 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">41454 89927;41867 90009;42712 89340 1;42889 89200;42868 88981;42728 88804 1;42586 88625;42311 88612;42132 88754;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">41640 87206;</coords></object>
<object type="1" symbol="132"><coords count="11">45776 90741 1;45426 90145;44691 89413;43990 89040;43210 88585 1;43038 88447;42437 88012;42442 87826;42477 87058;42877 87074;42943 85799 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="16">40753 92916 1;40492 92595;40276 92088;40630 91875;41960 91000;43526 89710 1;43685 89579;43888 89591;44021 89748 1;44176 89930;44184 90120;44051 90319;43731 90008;41020 92209;41291 92492;40753 92916 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">41454 89927;41867 90009;42712 89340 1;42889 89200;42846 88910;42706 88733 1;42564 88554;42260 88634;42081 88776;42390 89126;41454 89927 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">44319 90607 1;44527 90491;44750 90495;44910 90671;45340 91287;45047 91529;44593 90982 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="8">44319 90607 1;44527 90491;44802 90495;44962 90671;45340 91287;45029 91512;44606 90984;44319 90607 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">45068 92862;45811 92166 1;46031 91979;46186 91941;46472 91963 1;46579 91969;46660 91979;46739 91985 1;47073 92010;47124 92200;47098 92534;47047 93182 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">53704 96232 1;54077 96212;54363 95893;54343 95520 1;54323 95148;54005 94862;53632 94882 1;53259 94901;52973 95220;52993 95593 1;53013 95965;53331 96252;53704 96232 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="13">53704 94676 1;54077 94656;54363 94337;54343 93964 1;54323 93592;54005 93306;53632 93326 1;53259 93345;52973 93664;52993 94037 1;53013 94409;53331 94696;53704 94676 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">52188 92563;52217 91892;51619 91308;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">50720 90645;50852 86753 32;50921 84730;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">51640 91359;50669 90469;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">47909 93167;47998 91767;47613 91745 1;47628 91519;47799 91276;48025 91286 1;49028 91331;49458 91356;50571 91405;51039 91878;51028 92470;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">49076 81752;47494 81556 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">47489 80619;47313 82174;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">43083 83816;</coords></object>
<object type="1" symbol="62"><coords count="9">42816 82682;42367 83002;42460 84578;43037 84867;44119 84269;44727 84114;44707 83795;43728 83311;42816 82682 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="19">43529 81648;42074 78637 1;41997 78510;41966 78313;42093 78237 1;42199 78173;42160 78196;42266 78132 1;42436 78030;42629 78170;42711 78350;43013 78894;45422 78270;45367 77548;48034 77421;47740 80620;45566 80921;44383 81175;43529 81648 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="2">42928 81543;43361 81311;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">43072 82602;43104 81942;43520 81706;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="7">42727 85843 1;42752 85254;43181 84761;43766 84447 1;44322 84148;45020 83978;45644 84071;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="86"><coords count="6">43842 83133;43565 81701;43113 81922;43082 82671;43503 82938;43842 83133 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="16">47170 81981 1;45774 82178;45086 82378;43744 82809 1;43466 82898;43221 82592;43221 82300 1;43221 81992;43450 81896;43650 81662 1;44341 80850;44891 80562;45943 80391 1;46564 80290;47321 80287;47482 80711 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">43744 82809;45442 82279;47206 81967;47482 80660;44303 81175;43497 81720;43744 82809 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">45255 83075;</coords></object>
<object type="1" symbol="62"><coords count="17">43724 83218;43703 82838;45315 82330;47378 81986;47517 82269;47433 82964 1;47269 83473;46983 83875;46396 84071 1;46036 84191;45823 84115;45448 84060 1;45123 84013;44761 83875;44416 83707;44042 83506;43724 83218 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="52">42773 89273;43348 89893;42835 90279;41960 91000;40630 91875 1;40276 92088;40492 92595;40753 92916;38923 95778;38728 95871;38543 96045;39097 96738;38316 97395;38127 97570;37672 97078;37519 96893;37832 96634;36596 95140;36254 95423;35583 94612;35707 94491;36008 94245 1;36166 94109;36184 93884;36048 93726 1;35903 93557;35661 93539;35492 93684 1;35330 93823;35249 93892;35087 94031;34658 94394;33192 92608;33324 92450;34483 91520;34088 91060 1;33760 90732;33237 90886;32949 91113 1;32819 90992;32706 90910;32545 90925;34901 88870;36594 90820;37015 90502;37631 91200;38185 90738;38832 90153;39746 91272;41419 89938;41871 90005;42773 89273 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="6">41370 87095;41304 87947;41813 88499;41844 87700;41359 87244;41370 87095 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="26">41597 88318;41286 87981;41335 87349;41641 82687;41223 82696;41217 82425;42887 81530;41903 79446;41462 78628;40549 79151;40478 79008;39216 79738;39119 79558;37925 80249;38069 84497;38288 84833;38302 86774;37794 87184;37661 87514;36359 88591;38174 90699;38806 90139;39732 91270;39732 91270;42407 89135;41597 88318 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">50672 90703 1;50599 90611;50437 90664;50320 90659 1;49362 90617;47818 90552;46860 90511;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">48055 88909;</coords></object>
<object type="1" symbol="122"><coords count="7">46635 90511 1;46679 89819;46716 89131;47077 88540 1;47301 88173;47527 88076;47822 87763 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">50528 84006 1;50463 83671;50140 83452;49807 83517 1;49472 83581;49253 83905;49317 84238 1;49382 84573;49705 84791;50039 84728 1;50374 84663;50593 84340;50528 84006 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="3">46389 84064;48062 84526;49467 84605;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">48360 82545;</coords></object>
<object type="1" symbol="122"><coords count="16">45448 84060 1;44515 83925;43283 83046;42997 82834 1;42742 82670;42345 82813;42351 83223 1;42357 83639;42326 84043;42333 84459 1;42336 84612;42525 84719;42663 84792 1;42851 84891;43114 84896;43310 84753 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="4">47664 81741 1;47523 82793;47146 83756;46139 84092 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">45250 84044;46472 84095;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">47324 84825;</coords></object>
<object type="1" symbol="38"><coords count="13">48591 88119 1;49368 88236;50092 87700;50208 86924 1;50324 86147;49789 85423;49012 85307 1;48236 85191;47512 85726;47396 86503 1;47279 87279;47815 88003;48591 88119 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">49383 84411 1;49361 84365;49327 84291;49317 84238 1;49253 83905;49472 83581;49807 83517 1;49921 83495;50034 83506;50205 83574 1;50367 83658;50490 83812;50528 84006 1;50567 84205;50510 84441;50296 84599 1;50005 85076;49894 85537;50101 86056 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">49084 82227 1;49455 82655;49424 82658;49844 83038 1;49982 83163;50130 83183;50162 83366;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">47101 89893;47674 89907;48729 89926 1;49202 89947;49724 89535;49849 88950;50006 87928;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="42">50553 90645;46827 90489;46866 89943;47091 89899;48750 89926 1;49223 89947;49724 89535;49849 88950;50016 87887;50075 87346 1;50140 87217;50185 87075;50208 86924 1;50251 86633;50204 86350;50086 86104;50076 85988 1;49904 85497;50018 85055;50296 84599;50377 84539 1;50505 84400;50567 84205;50528 84006 1;50490 83812;50367 83658;50205 83574;50162 83366 1;50130 83183;49982 83163;49844 83038 1;49424 82658;49455 82655;49084 82227;49079 81920;51152 82178 32;50836 84724 32;50860 84727;50910 85041;50852 86753 32;50744 89962;50553 90645 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">43696 88687;44624 89289;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="2">46241 89123;44629 88973;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="13">44538 89399 1;44636 89489;44696 89533;44767 89590 1;45212 89947;45423 90157;45747 90709;46418 90516;46428 90205;46454 90037;46538 89154;44321 88942;44538 89399 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">48798 86727;</coords></object>
<object type="1" symbol="122"><coords count="8">47104 88430;47176 86603 1;47202 85951;47529 85526;48120 85248 1;48392 85120;48361 84602;48069 84529;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">48268 85404;48412 85346 1;48601 85291;48805 85276;49012 85307 1;49483 85377;49866 85671;50067 86065;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="16">48134 85340;48325 85381;48412 85346 1;48601 85291;48805 85276;49012 85307 1;49465 85374;49836 85649;50043 86020;50070 85972 1;49907 85487;50021 85050;50296 84599;49418 84470;48376 84639;48134 85340 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="14">50044 86035;50088 86106 1;50204 86352;50251 86635;50208 86924 1;50092 87700;49368 88236;48591 88119 1;48356 88084;48144 87993;47964 87862 1;47615 87593;47408 87217;47383 86804 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">47252 88140;47724 87648;47651 87542 1;47498 87333;47377 87134;47356 86877;47337 86808;47252 88140 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="17">46733 83990;48094 84390;49454 84462;50224 83605;50190 83500;50162 83366 1;50130 83183;49982 83163;49844 83038 1;49424 82658;49455 82655;49084 82227;49079 81920;49099 81922;47811 81711;47370 83076;46733 83990 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="19">46797 89913;46881 89011;47208 88329;47890 87835;48067 87930 1;48223 88025;48399 88090;48591 88119 1;49207 88212;49805 87865;50078 87342;50061 87478;50016 87887;49849 88950 1;49724 89535;49202 90009;48729 89988;47091 89950;46797 89913 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">45861 87091;44670 87009;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="20">45831 86957 1;46006 86887;46171 86690;46077 86527 1;45804 86054;44724 85590;44301 86393 1;44081 86810;43757 87338;44003 87533 1;44290 87760;44706 87848;45071 87872 1;45415 87895;45629 87820;45953 87697 1;46200 87603;46034 87355;45841 87245;45831 86957 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="19">46036 86803 1;46101 86719;46129 86618;46077 86527 1;45804 86054;44724 85590;44301 86393 1;44081 86810;43757 87338;44003 87533 1;44290 87760;44675 87858;45040 87882 1;45384 87905;45598 87759;45953 87697 1;46127 87667;46106 87543;46012 87408 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="14">43209 88542;43572 88144 1;43634 87872;43593 87782;43470 87532 1;43320 87228;43364 87097;43026 87063;42476 87053;42435 87863 1;42430 88048;42875 88308;43039 88394;43209 88542 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">43177 88566;44151 89100;46625 89241;47032 88449;47170 85996;47591 85488;48150 85139;48252 84689;46597 84152;44847 84065;43483 84610;43069 85263;42960 85663;42874 87076;43200 87565;43177 88566 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">47973 92932;</coords></object>
<object type="0" symbol="84"><coords count="1">49503 92984;</coords></object>
<object type="0" symbol="84"><coords count="1">49667 92193;</coords></object>
<object type="1" symbol="64"><coords count="14">47909 93167;47998 91767;47613 91745 1;47628 91519;47799 91276;48025 91286 1;49028 91331;49458 91356;50571 91405;51039 91878;51028 92470;49828 92476;49806 93321;47909 93167 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">46146 92768;</coords></object>
<object type="1" symbol="64"><coords count="14">45068 92862;45811 92166 1;46031 91979;46186 91941;46472 91963 1;46579 91969;46660 91979;46739 91985 1;47073 92010;47124 92200;47098 92534;47047 93182;45201 92997;45068 92862 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">46441 90492;45751 90717;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="82">41564 84584;42102 84605;42205 84559;42282 84441;42662 84867;42939 85005;42852 85780;42939 85903;42886 87076;42478 87056;42446 87852 1;42441 88038;42831 88302;42996 88389;43215 88581;43990 89040 1;44325 89218;44416 89293;44705 89538 1;45212 89967;45415 90174;45754 90719;46432 90497;46884 90528;50373 90653;50584 90653;52057 91988;52021 92554;51019 92496;51030 92365;51039 91878;50571 91405 1;49458 91356;49028 91331;48025 91286 1;47799 91276;47628 91519;47613 91745;47998 91767;47910 93158;47048 93113;47066 92937;47098 92534 1;47124 92200;47073 92010;46739 91985 1;46660 91979;46579 91969;46472 91963 1;46186 91941;46031 91979;45811 92166;45068 92862;43912 91502;44572 90972;44698 91098;45029 91512;45340 91287;44947 90715 1;44787 90539;44527 90491;44319 90607;44072 90326;44093 90246 1;44173 90076;44128 89922;43992 89763 1;43859 89606;43685 89579;43526 89710;43262 89927;42725 89329 1;42882 89188;42849 88948;42713 88776 1;42571 88597;42274 88634;42095 88776;41818 88500;41849 87705;41357 87277;41564 84584 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="8">43386 88361;43572 88144 1;43634 87872;43593 87782;43470 87532 1;43330 87248;43359 87115;43087 87071;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="4">41616 82684;41565 82241;41216 82430;41223 82684;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="6">41637 82677;42007 82626;41964 84622;41586 84586;41695 82873;41637 82677 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="12">41971 84666;42000 82641;41644 82699;41579 82271;42958 81523;43364 81312;43510 81712;43089 81958;43038 82728;42493 82873;42327 84710;41971 84666 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">41568 84596;41960 84603;41993 82651;41622 82665;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">45900 85854;</coords></object>
<object type="1" symbol="119"><coords count="24">56325 97898;56673 95024;54728 94936;54873 90886;56746 90944;56891 88331;55555 88215;55410 89521;51911 89158;52100 87822;51592 87764;51897 84875;51011 84745;50837 90378;52231 91931;52318 92614;52274 95894;51548 95807;51519 95386;50358 95590;50488 96577;51011 97651;52201 97317;56325 97898 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">36958 76899;36712 75944;36421 75821;36566 75389;36312 74430 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">33723 73116;</coords></object>
<object type="1" symbol="132"><coords count="7">33363 72814;33002 72773;32961 73133 1;32951 73224;33011 73305;33102 73315;35378 73565;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="9">33363 72814;33002 72773;32961 73133 1;32951 73224;33011 73305;33102 73315;35327 73559;35205 73037;33363 72814 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">30423 72813;</coords></object>
<object type="0" symbol="84"><coords count="1">30227 75005;</coords></object>
<object type="1" symbol="132"><coords count="10">30460 75804;30702 73121;30917 72827;31040 71601 1;31069 71312;31026 71077;30719 71054 1;30587 71044;30396 71019;30184 71006;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="12">30460 75804;30702 73121;30917 72827;31040 71601 1;31069 71312;31026 71077;30719 71054 1;30587 71044;30396 71019;30184 71006;29703 75317;30460 75804 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">30597 71478;</coords></object>
<object type="1" symbol="64"><coords count="6">33567 69433;33048 68687;33172 67735;34268 67877;33992 69503;33567 69433 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">33624 69475;33049 68693;33172 67732;34220 67863 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">34276 67397;33229 67260;33327 66523;33952 65943;34451 66001 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="6">34284 67398;33229 67260;33333 66512;33953 65953;34432 66000;34284 67398 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">31015 66767;</coords></object>
<object type="0" symbol="84"><coords count="1">29991 67364;</coords></object>
<object type="1" symbol="132"><coords count="7">34698 63475;34238 63423;33890 62991;34021 61757;34411 61807;34510 60964;35215 61051 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="4">47457 65505;43155 64920;41882 66234;41597 69924;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">39533 65118 32;40149 64376 32;40492 64658 32;39872 65405 32;39533 65118 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">39624 67834;</coords></object>
<object type="1" symbol="123"><coords count="3">38743 65487;40334 66212;41131 65889;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">41328 71723;41365 71366;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">41567 71977 32;41641 71172 32;41150 71127 32;41076 71932 32;41567 71977 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">41016 71933;41092 71096;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">40675 71578;</coords></object>
<object type="1" symbol="132"><coords count="2">40058 71832;40971 70509 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">39142 70383 32;39210 69481 32;39640 69518 32;39573 70420 32;39142 70383 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">40058 71793 32;39246 71220 32;39482 70863 32;40304 71442 32;40058 71793 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">43555 63267 32;44499 63381 32;44447 63812 32;43495 63701 32;43555 63267 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">41061 67896;</coords></object>
<object type="1" symbol="124"><coords count="2">39598 69978;43879 70359;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">41435 71190;41651 70444;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">41673 69630;42065 70073;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">39474 70860;39785 70388;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">38571 71044;39104 71399;39782 70398;39577 70377;39566 70423;38637 70367;38571 71044 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">39509 70862;40312 71461;40982 70423;39867 70327;39509 70862 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="6">40048 71840;41120 71917;41244 71137;41413 70532;40961 70506;40048 71840 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="10">38330 69448;39634 69530;39634 69602;41317 69746;41543 66625;41554 66266;41061 65917;40383 66163;38741 65547;38330 69448 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">38889 65218;40352 65844;40573 65772;39993 65295;39875 65413;39218 64869;38889 65218 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">42948 71033;</coords></object>
<object type="1" symbol="125"><coords count="2">43969 63754;43823 64908;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="124"><coords count="2">40194 65063;41820 66431;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">39286 65144;</coords></object>
<object type="1" symbol="68"><coords count="2">38670 65966;40283 66695;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">36808 57918;</coords></object>
<object type="0" symbol="84"><coords count="1">36541 56353;</coords></object>
<object type="0" symbol="84"><coords count="1">37967 56993;</coords></object>
<object type="1" symbol="62"><coords count="32">36758 58849 1;36239 58811;35849 58358;35887 57838 1;35905 57590;36018 57371;36188 57215 1;35819 57076;35565 56696;35596 56272 1;35634 55753;36086 55363;36606 55401 1;37043 55433;37389 55758;37464 56172 1;37627 56062;37829 56005;38043 56021 1;38562 56059;38952 56511;38914 57032 1;38876 57551;38424 57941;37904 57903 1;37859 57900;37814 57893;37771 57884;37768 57978 1;37730 58497;37278 58887;36758 58849 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="32">36758 58849 1;36239 58811;35849 58358;35887 57838 1;35905 57590;36018 57371;36188 57215 1;35819 57076;35565 56696;35596 56272 1;35634 55753;36086 55363;36606 55401 1;37043 55433;37389 55758;37464 56172 1;37627 56062;37829 56005;38043 56021 1;38562 56059;38952 56511;38914 57032 1;38876 57551;38424 57941;37904 57903 1;37859 57900;37814 57893;37771 57884;37768 57978 1;37730 58497;37278 58887;36758 58849 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">35159 64468;35263 63544;35498 63357;35710 61495;35898 61282;37607 61461;41480 59445;41559 58404;41745 58237;42929 58338;43078 58522;43070 58741;49131 59240 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="40">35178 64894;34630 70154;34169 70112;33944 72251;35744 72469;36552 75395;36408 75836;36706 75949;36928 76862;37065 77368;37536 77240;37651 77663;38667 77387;38603 77151;39593 76883;39414 76222;39322 76210;39456 74619;40898 74842;40817 75367;41193 75425;41367 74298;42581 74490;42982 74939;43397 74605;43692 71386;41658 71200;41584 72012;40051 71872;39215 71295;39106 71440;38550 71056;38618 70309;39093 70352;39170 69506;38348 69431;38690 65693;38563 65678;38280 65301;35178 64894 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="7">33998 61998;35094 62132;35235 61065;34514 60980;34422 61807;34033 61758;33998 61998 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="6">34946 63497;34217 63434;33892 62981;34012 61977;35087 62104;34946 63497 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">40919 57388;39702 57280;39786 56337;41933 56531;41848 57470 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="6">40919 57388;39702 57280;39786 56337;41933 56531;41848 57470;40919 57388 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">43706 57872;44619 57943;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="5">43381 58077 32;44958 58216 32;44998 57761 32;43421 57622 32;43381 58077 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">43377 57600;43457 56700;45073 56845;45038 57240;45739 57302;45684 58078 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">44267 57230;</coords></object>
<object type="0" symbol="84"><coords count="1">47630 54288;</coords></object>
<object type="1" symbol="132"><coords count="7">47210 58414;47290 57493;47863 57543;47894 57185;49814 57350;49669 58840;49245 58799 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">49130 57848;</coords></object>
<object type="1" symbol="115"><coords count="7">51391 59890;49171 59452;49135 59911;50401 60159;50415 60025;51334 60201;51391 59890 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="55">36562 76978;36302 77420;35724 77079;35978 76639;35588 75205;35801 75147;35220 73016;33262 72804;33639 69445;34039 69492;34741 63053;35009 63081;35285 60584;37406 60814;40801 58973;40942 57387;43397 57601;43355 58068;44955 58209;44971 58028;46681 58176;46662 58396;49074 58592;49256 58782;49221 59240;43071 58730;43085 58525;42929 58341;41745 58239;41561 58409;41480 59441;37608 61462;35888 61287;35718 61432;35498 63352;35263 63537;35159 64451;38345 64872;38572 65142;38987 64661;39208 64851;38771 65350;38725 65697;38563 65678;38280 65301;35164 64892;34641 70153;34180 70131;33964 72232;35742 72463;36552 75395;36408 75836;36706 75949;36928 76862;36562 76978 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">53034 60078 32;53699 60205 32;53780 59778 32;53116 59649 32;53034 60078 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">54410 65753;55538 60701;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">53900 65677;55090 60304;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">62435 58058;56486 57195;62327 30198;44380 22387 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="21">63014 65111;62986 62820 1;62978 62160;62936 61826;62802 61179 1;62642 60408;61304 59309;60072 59057 1;58735 58784;58063 58739;56723 58480 1;56274 58393;56093 58025;56028 57573 1;55994 57334;56007 57206;56057 56969 1;56765 53607;57957 47962;58666 44600;59094 44345 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">56725 57412;56555 58452;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">54278 58287;</coords></object>
<object type="0" symbol="84"><coords count="1">54561 55714;</coords></object>
<object type="0" symbol="84"><coords count="1">54872 54073;</coords></object>
<object type="1" symbol="132"><coords count="4">54782 59186;53250 58594;53442 57869;54510 57994 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">50692 54408;50641 54883;51769 55000;51717 55504 1;51705 55619;51765 55732;51880 55744;53523 55915;53631 54734;50692 54408 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">52150 55364;</coords></object>
<object type="1" symbol="64"><coords count="10">50681 54407;50641 54883;51769 55000;51717 55504 1;51705 55619;51765 55732;51880 55744;53523 55915;53631 54734;50681 54407 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">47179 53825 32;48173 53929 32;48087 54751 32;47093 54647 32;47179 53825 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">47179 53825 32;48173 53929 32;48087 54751 32;47093 54647 32;47179 53825 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">44661 54956;45084 54996 1;45216 55008;45379 54768;45391 54636;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">45723 53668 32;44536 53563 32;44470 54189 32;45656 54312 32;45723 53668 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">45717 53685 32;44532 53551 32;44470 54189 32;45656 54312 32;45717 53685 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">53422 53887;43294 52835;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">40196 53916 32;40116 54679 32;40872 54758 32;40948 53995 32;40196 53916 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">40196 53916 32;40116 54679 32;40872 54758 32;40948 53995 32;40196 53916 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="9">43377 57600;43457 56700;45073 56845;45038 57240;45739 57302;45684 58078;45014 58033;45006 57745;43377 57600 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">43381 58077 32;44958 58216 32;44998 57761 32;43421 57622 32;43381 58077 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="9">47210 58414;47290 57493;47863 57543;47894 57185;49814 57350;49669 58840;49245 58799;49079 58596;47210 58414 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="6">54740 59174;53250 58594;53442 57869;54510 57994;54575 58522;54740 59174 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">42411 54134;41396 54035;41318 54786 32;42332 54892 32;42411 54134 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="13">53443 54681 32;50696 54391 32;50712 54186 32;43906 53470;43824 54264 32;42411 54122;41398 54005;40192 53879 32;40277 53135;43151 53406;43264 52840;53516 53891;53443 54681 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="31">35171 60566;35568 56305;35598 56435 1;35633 56791;35867 57094;36188 57215 1;36018 57371;35905 57590;35887 57838 1;35849 58358;36239 58811;36758 58849 1;37278 58887;37730 58497;37768 57978;37771 57884 1;37814 57893;37859 57900;37904 57903 1;38424 57941;38876 57551;38914 57032 1;38937 56712;38799 56418;38568 56230;39776 56324;39683 57290;40935 57399;40809 58969;37416 60808;35171 60566 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="84">40116 54657;39771 56356;39869 56344;41933 56531;41848 57470;42016 57481;43367 57598;43398 57363;43457 56700;45073 56845;45038 57240;45739 57302;45684 58078;45826 58102;46681 58176;46662 58396;47228 58442;47231 58174;47290 57493;47863 57543;47894 57185;49814 57350;49669 58840;49253 58800;49247 58898;49221 59240;49200 59455;49328 59483;51391 59890;51387 59912;51458 59782;53039 60094;53066 59912;53116 59649 32;53780 59778 32;53699 60203;53863 60257;54692 60421;54725 60254;55060 60320;55244 59924 1;55054 59742;54896 59476;54774 59177;54605 59122;53250 58594;53442 57869;54457 57988;54484 57885 1;54474 57709;54480 57547;54501 57408;54769 56047;51801 55738;51726 55606 1;51716 55574;51713 55539;51717 55504;51769 55000;50641 54883;50690 54429;50704 54283;50712 54186 32;48158 53917;48161 54041;48087 54751 32;47093 54647 32;47179 53825 32;47074 53803;45723 53661;45699 53900;45656 54312 32;44470 54189 32;44532 53604;44484 53531;43906 53470;43824 54264 32;42419 54125;42332 54892 32;41318 54786 32;41396 54035;40947 53968;40872 54758 32;40116 54657 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">56732 44030;54206 56000;54759 56058 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">50641 55187 1;50629 55320;50800 55569;50936 55585;51306 55628 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="4">40476 51377;40401 52092;40058 51666;40476 51377 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">40827 47149;42351 47310;42415 46703;40891 46570;40827 47149 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="10">41147 43850;40873 46572;47621 47111;47849 46957;48142 43402;43999 43043;43671 43163;43359 43549;43213 43998;41147 43850 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="17">43278 47378 1;43413 47166;43579 46982;43818 47058 1;44010 47118;43998 47318;44178 47408 1;44410 47524;44560 47486;44818 47508 1;44929 47517;44975 47378;44958 47268;44909 46898;42982 46743;42968 47358;43278 47378 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="17">43278 47378 1;43413 47166;43579 46982;43818 47058 1;44010 47118;43998 47318;44178 47408 1;44410 47524;44560 47486;44818 47508 1;44929 47517;44975 47378;44958 47268;44909 46898;42982 46743;42968 47358;43278 47378 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="24">47868 47768;48048 47632;48134 47438;48120 47178;47990 47000;47818 46968;47789 47101;46313 47012;44920 46899;44915 46941;44958 47268 1;44975 47378;44929 47517;44818 47508 1;44560 47486;44410 47524;44178 47408 1;43998 47318;44010 47118;43818 47058 1;43579 46982;43413 47166;43278 47378;47868 47768 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">48179 43249;45649 43037;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="11">41189 43832;43209 44007 1;43250 43511;43620 43006;44116 43047;45600 43170;45753 41308;44270 41197 1;42669 41066;41321 42226;41189 43832 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">47710 47043;47767 46268;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">47802 45601;47982 43421;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="43">50738 47202;50671 47826;51702 47941;51345 51221;50677 51147;50698 50900;46421 50447 32;46491 49775 32;42648 49374 32;42763 48273 32;40846 48073 32;40318 53139;43202 53411;43264 52840;53483 53888;53649 52266 32;53400 52240 32;53582 50497 32;53833 50523 32;53987 49043 32;54196 49065 32;54284 48226 32;53987 48195 32;54058 47511 32;53817 47486 32;53934 46364 32;53632 46332 32;53710 45585 32;53256 45538 32;53281 45298 32;52386 45205 32;52418 44896 32;51479 44798 32;51308 44563 32;51043 44535 32;50794 44736 32;49957 44649 32;49887 45323 32;50091 45344 32;49973 46473 32;49768 46452 32;49702 47085 32;50738 47202 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="86"><coords count="5">50841 47901;50640 49751;51141 49811;51341 47961;50841 47901 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">48994 41295;</coords></object>
<object type="1" symbol="74"><coords count="4">45796 41243;47476 41354;47585 39723;49312 39867 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">51390 41859;45780 41369;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">50382 40266 32;50874 40300 32;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">50075 40497 32;51164 40581 32;51203 40077 32;50108 39993 32;50075 40497 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">50064 40496 32;51164 40581 32;51203 40077 32;50108 39993 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">50113 39928;50064 40556 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">50199 40552;50126 41507;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="9">47525 41516;50095 41746;50250 40013;50359 40002;50420 39062;49830 39035;49764 39583;47686 39482;47525 41516 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="14">46528 49723 1;46896 49760;47081 49778;47449 49815 1;47835 49854;48346 49230;48368 48843;48571 49079;48695 49327;48804 49848;48691 50300;48005 50190;46487 50040;46528 49723 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="20">42648 49382;46498 49792;46632 49733 1;46934 49764;47117 49782;47449 49815 1;47834 49854;48344 49232;48368 48845;48274 48746 1;48086 48581;47871 48476;47671 48458;44490 48178 1;44320 48160;44201 48329;44183 48499;44140 48918;42708 48768;42648 49382 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">51131 49820;51494 49854;51702 47941;51329 47901;51131 49820 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">66274 98308 32;66917 97682 32;66455 97205 32;65815 97849 32;66274 98308 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">66378 97770;</coords></object>
<object type="1" symbol="132"><coords count="5">66277 98312 32;66919 97671 32;66460 97209 32;65817 97849 32;66277 98312 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">65184 99618 32;65827 98992 32;65365 98515 32;64725 99159 32;65184 99618 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">65288 99080;</coords></object>
<object type="1" symbol="132"><coords count="5">65187 99622 32;65829 98981 32;65370 98519 32;64727 99159 32;65187 99622 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">69283 98928 32;69150 98133 32;68443 98262 32;68590 99053 32;69283 98928 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">68879 98600;</coords></object>
<object type="1" symbol="132"><coords count="5">69287 98927 32;69143 98138 32;68451 98260 32;68594 99052 32;69287 98927 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">69031 97510 32;68885 96714 32;68187 96838 32;68331 97636 32;69031 97510 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">69026 97511 32;68892 96709 32;68180 96839 32;68328 97637 32;69026 97511 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">68619 97180;</coords></object>
<object type="1" symbol="132"><coords count="5">68752 96103 32;68610 95324 32;67926 95445 32;68067 96226 32;68752 96103 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">68748 96104 32;68616 95319 32;67919 95446 32;68064 96227 32;68748 96104 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">68348 95780;</coords></object>
<object type="0" symbol="143"><coords count="1">67052 96144;</coords></object>
<object type="1" symbol="105"><coords count="3">66692 95394;66997 94189;67630 93534;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="23">56093 97806;56533 94986;57033 95014;58549 95067 32;58567 94536 32;66319 94805 32;66347 93994;66980 94258;66694 95386;66877 95430;66601 96095;65024 98011;63172 100097;62097 100860;61546 100182;61899 99687;61999 99603;63500 98232 32;62139 96743 32;60495 98245 32;60174 98626;59792 98329;56093 97806 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">67590 94118;</coords></object>
<object type="1" symbol="132"><coords count="5">69742 92663 32;69600 91884 32;68986 92085 32;69057 92786 32;69742 92663 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">69738 92664 32;69606 91879 32;68979 92076 32;69054 92787 32;69738 92664 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">69328 92340;</coords></object>
<object type="1" symbol="109"><coords count="6">72954 88624;72752 88847 32;71200 90554;70676 90530 32;69575 91615 32;67616 93545 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="4">73091 88759;73197 88610;72869 88596;73091 88759 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="24">69291 102956;68740 100686;68887 100583 1;71306 98896;72305 97240;73158 94328 1;73470 93265;73588 92794;73800 91706;73329 91268 1;73489 90261;73611 89403;73711 88613;76636 88824;76669 90144 1;76420 92639;76312 93907;75688 96335;75152 96692;74558 97088 1;73151 99902;71358 101931;69308 102945;69291 102956 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="41">62066 101079;63286 102279;63507 102162;67161 100291;68759 100664;68773 100662 1;71275 98947;72292 97285;73158 94328 1;73470 93265;73588 92794;73800 91706;73329 91268 1;73490 90254;73612 89391;73713 88597;72898 88686;72752 88847 32;71200 90554;70676 90530 32;69575 91615;69603 91900;69742 92663 32;69057 92786 32;69012 92344;67038 94225;66878 95415;66578 96125;68063 96224;67919 95446 32;68616 95319 32;68748 96104 32;69288 98935;68588 99055;66938 97665;66278 98325;65848 98975;65188 99625;64448 98875;62978 100325;62066 101079 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="25">64408 98938;64705 99164;64797 99086;65365 98515 32;65827 98992;65915 98980;66325 98351;66236 98270;65815 97849 32;66455 97205 32;66917 97682;68588 99079;68569 98940;68443 98262 32;69150 98133;69040 97509;68961 97523;68328 97637 32;68180 96839 32;68892 96709;68757 96102;68043 96208;66495 96102;65342 97616;64408 98938 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="33">56828 88325;56668 90965;63148 91162;63157 91162 32;63200 89924 32;66484 90038 32;66341 94159;66963 94324;66980 94258;67616 93545;67616 93545;67823 93341;69575 91615 32;70676 90530 32;71200 90554;72752 88847 32;72954 88624;72648 88546;68674 88528 32;68698 83097;67586 82959 32;67745 81676 32;54474 80027 32;53842 85117 32;55080 85268 32;55165 84423 32;57154 84622 32;57126 84905 32;57509 84943 32;57444 85591 32;57186 85565 32;56918 88295;56828 88325 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">73418 82744;</coords></object>
<object type="1" symbol="132"><coords count="9">77574 84016 1;77376 83992;77268 83804;77292 83606;78012 77623;80255 54163 1;80294 53756;80564 53595;80912 53380 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="21">73713 88669;76627 88881;76650 88717;77079 85473 1;77113 85256;77273 85255;77461 85275;77574 84016 1;77376 83992;77268 83804;77292 83606;78012 77623;75166 77303 1;74770 80466;74608 81355;74683 82841;74309 83045 1;74118 84749;74013 85926;73884 87130;73713 88669 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="38">69224 80491;69169 80884;68519 80800;68404 81740;69049 81819;69661 81895 32;69544 82832;73150 82848 32;73125 88548 32;68674 88528 32;68698 83097;67586 82959 32;67745 81676 32;54474 80027 32;53842 85117 32;55080 85268 32;55165 84423 32;57154 84622 32;57126 84905 32;57509 84943 32;57444 85591 32;57186 85565 32;56910 88325 32;55556 88190 32;55425 89496 32;51925 89146 32;52057 87823 32;51593 87777 32;51886 84855;50836 84724 32;51152 82178 32;49061 81918 32;49837 75672 32;72607 78500 32;72647 78181 32;74427 78574 32;74113 81099 32;69224 80491 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">69080 81840;68410 81758;68528 80795;69201 80870 32;69080 81840 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">69031 80922;68975 81400;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="8">74308 78498;74926 73093 1;74575 72633;74169 72606;73596 72527 1;72341 72355;69826 71999;68571 71826 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="27">73051 88741;73674 88685;74296 83028;74385 83004;74683 82841 1;74589 80982;74866 80057;75509 74442 1;75577 73861;75503 73535;75114 73098;74911 73223;74308 78498;74401 78568;74427 78574 32;74113 81099 32;69224 80491;69169 80884;69084 81807;69080 81840;69170 81834;69661 81895 32;69544 82832;73150 82848 32;73147 83469;73156 88548;73051 88741 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">71182 70642;</coords></object>
<object type="0" symbol="84"><coords count="1">70182 70492;</coords></object>
<object type="1" symbol="132"><coords count="4">71582 70502;71182 70812;69972 70642;69802 70202;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">71582 70502;71182 70812;69972 70642;69802 70202;71582 70502 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">74141 69908;</coords></object>
<object type="0" symbol="84"><coords count="1">76149 65965;</coords></object>
<object type="0" symbol="84"><coords count="1">76008 67196;</coords></object>
<object type="1" symbol="132"><coords count="7">75363 69996 1;75779 69667;76078 69448;76135 68921;76602 64840;76015 64767;75363 69996 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">75372 69926 1;75788 69597;76078 69448;76135 68921;76601 64848;76015 64768;75372 69926 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">74790 70452;75671 63922;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="17">72501 70642 1;73409 70751;73938 70868;74781 70512 1;75054 70324;75124 70174;75391 69982;76031 64642;75651 63922;75121 63872;74945 64220;74444 65157;74911 66459;74048 67548 32;74614 68821 32;72721 70332;72501 70642 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">72511 70652 1;73670 70801;74575 70836;75361 69972;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">73486 69688;72479 70462;67572 69655;66052 69405;65835 69102;66330 66111 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="12">75006 47682;77066 47992;77354 48395 32;75952 63927;75145 63847 32;74782 64526 32;74444 65157;74911 66459;74692 66735 32;74048 67548;74614 68821;74009 69286 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">76598 64844;79858 30295;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="32">77993 77671;75143 77381;75190 77114 1;75283 76360;75390 75481;75509 74442 1;75577 73861;75503 73535;75114 73098;74529 72638;69140 71874;69367 70036;69777 70121;69835 70287;69972 70642;71182 70812;71582 70502;71672 70404;72563 70644;72709 70676 1;73774 70802;74620 70786;75361 69972;75493 69893 1;75841 69616;76084 69391;76135 68921;76599 64862;77319 57364;79923 57632;78074 76920;77993 77671 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="28">66328 65877;65893 69242;68131 69747;72479 70462;73331 69807;73595 69845;74140 69435;74536 68749;74090 67568;74882 66437;74696 65859;74444 65157;74945 64220;75121 63872;75651 63922;75872 63903;77314 48459;77060 47978;74967 47695;74627 50241;66679 49025;65746 55219;66312 58642;66199 60000;65715 61191;64574 62027;64391 62952;66328 65877 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">81158 49716 1;80878 49448;80667 49243;80709 48858;81638 38822;81492 34640;81746 32306 1;82795 22667;83060 17821;83874 8159 1;84432 1532;84924 -1770;85166 -8416 1;85333 -13021;85368 -15325;85515 -19931 1;85579 -21919;85390 -26429;89498 -28983;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">84659 -24816 1;85467 -26779;85931 -28158;87782 -29353;84677 -29143;84659 -24816 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">89377 -32625;87929 -32521 1;86487 -32418;85481 -33659;85399 -35103;85275 -40155;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="6">84659 -24816 1;85467 -26779;85931 -28158;87782 -29353;84677 -29143;84659 -24816 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="5">75454 43228;77852 43527 32;77525 46740 32;71924 45955;71750 47054 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">78453 39506;77077 39370;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="15">72915 21155;73270 21151 1;73740 21614;74558 22440;75352 23299 1;76087 24093;76333 24600;76860 25545 1;77597 26868;77965 27530;78702 28853;78553 30114;79190 30190;78407 38509;73115 37868 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">73078 38015;72806 41161;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="22">76847 39312 1;76733 40669;76081 41473;74767 41834 1;74153 42003;73774 42013;73175 41797 1;72892 41695;72781 41443;72805 41143 1;72896 40008;72810 39423;73027 38305 1;73182 37506;73187 36947;73815 36430 1;74874 35558;76509 36141;76796 37482 1;76938 38143;76904 38638;76847 39312 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="3.08505"><coords count="1">75098 36035;</coords></object>
<object type="0" symbol="3" rotation="0.768451"><coords count="1">76066 41112;</coords></object>
<object type="1" symbol="120"><coords count="23">75675 64072;76024 64779;76591 64831;79072 38619;73193 37956;72861 41218;73122 41245;74653 41397 32;74878 39127 32;77093 39347 32;76768 42623 32;75692 42516 32;75635 43088 32;75580 43082;75740 43382;77834 43556;77503 46784;71885 45964;71798 47046;77102 47866;77381 48390;75932 63882;75675 64072 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="24">77292 57419;79907 57691;79933 57530;80255 54163 1;80294 53756;80564 53595;80912 53380;81158 49716 1;80878 49448;80667 49243;80709 48858;81302 42448;81362 41801;81638 38822;81492 34640;81746 32306 1;81836 31479;81920 30688;81999 29926;79924 29592;79751 29721;79861 30227;78317 46624;77292 57419 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="74">81083 12362 1;81251 8771;81389 6759;81485 3166 1;81643 -2754;81646 -6074;81746 -11995 1;81786 -14393;81782 -15738;81833 -18136 1;81847 -18803;81692 -19212;81320 -19766 1;81041 -20182;81001 -20513;81021 -21013 1;81109 -23234;81158 -24479;81246 -26700 1;81288 -27760;80691 -28839;79631 -28883;74795 -29081;56271 -27721;53558 -27544 1;52501 -27475;51704 -26569;51761 -25511 1;51792 -24936;51772 -24612;51752 -24037 1;51723 -23194;51665 -22703;51378 -21909 1;50372 -19123;49815 -19400;50302 -18151 1;50526 -17575;51629 -17167;52264 -16864 1;52558 -16724;52721 -16459;52766 -16136 1;53190 -13105;53697 -11640;54394 -8660 1;54716 -7282;54936 -6595;55517 -5304 1;56581 -2940;57150 -1775;58230 581 1;59005 2270;59409 3109;60302 4739 1;61395 6734;62053 7680;63448 9476 1;64989 11460;65967 12298;67877 13930 1;69399 15230;70213 15822;71665 17200 1;72909 18380;73519 18990;74624 20301 1;76392 22398;77328 23443;78879 25705 1;79245 26239;80131 26133;80151 25816;81083 12362 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">77477 26061;76601 24444;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">76630 19911 32;77599 21080 32;76949 21618 32;75988 20458 32;76630 19911 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">74322 19337;74872 18795;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">74976 19398;</coords></object>
<object type="1" symbol="133"><coords count="2">76921 21637;76555 21943;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">76903 21593;76537 21899;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">76460 21114;</coords></object>
<object type="1" symbol="62"><coords count="6">76874 21583;76542 21871;74344 19350;74902 18766;74929 19114;76874 21583 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="4">76527 21928 1;75827 21093;75093 20261;74280 19338 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="4">76603 24460 1;76235 23853;75888 23421;75440 22932;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">79083 22526;</coords></object>
<object type="0" symbol="84"><coords count="1">78577 23617;</coords></object>
<object type="1" symbol="107"><coords count="11">79864 22084;79645 25372 1;79635 25536;79355 25655;79263 25520 1;78616 24572;77994 23739;77358 22943 33;77085 22600;76809 22263;76527 21928 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">79782 22184;79607 25394;79380 25586;79180 25429;77452 23091;78241 22317;78757 21846;79076 21736;79330 21807;79782 22184 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="4">72925 21362;72636 21364;72939 21082;72925 21362 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="6">73520 21172;73678 21022;72641 20002;72342 20300;72927 21033;73520 21172 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="11">73066 16488;72819 17121 1;72786 17219;72679 17265;72558 17267 1;72444 17270;72317 17233;72248 17165 1;71412 16337;69872 15035;69003 14241;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">66872 12360;69003 14241 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">64888 15337;65733 15703;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="2">72204 19779;70294 17703;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">70379 17615 1;69585 16849;69120 16489;68109 16048;65148 14765;64970 15177;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">65990 15810;66915 16194;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="3">65807 15521;67317 16158;67169 16510;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">65755 15573;67290 16184;67160 16498;65650 15861;65755 15573 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="12">64976 15140;67349 16160;67183 16509;70219 17801;70411 17652;70320 17558 1;69561 16831;69095 16478;68109 16048;65148 14765;65063 14961;64976 15140 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">64048 14710;63291 16448;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">64030 17496 32;64474 16432 32;62943 15793 32;62499 16856 32;64030 17496 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="6">64430 16426 32;65164 14763 32;64290 14416;64248 14669 32;63646 16095 32;64430 16426 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">79857 30306 1;79902 29824;79256 28510;79044 28178 1;78699 27638;78273 26985;77537 25995;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">79376 30024;78870 28785;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="4">78730 29971;79385 30032;78861 28811;78730 29971 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="20">78537 38647;79055 38734;79870 30221;79737 29684 1;79548 29114;79191 28409;79044 28178 1;78699 27638;78273 26985;77537 25995;77304 26097;78410 28328 1;78501 28492;78598 28666;78702 28853;78553 30114;79190 30190;78565 36830;78420 38537;78537 38647 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="60">79973 29651;80146 25876;79925 26037 1;79633 26137;79132 26074;78879 25705 1;77328 23443;76392 22398;74624 20301 1;73519 18990;72909 18380;71665 17200 1;70213 15822;69399 15230;67877 13930 1;67231 13378;66692 12918;66202 12473;63863 12274;63562 12697;63116 13003;62974 14238;64265 14433;65148 14765;68109 16048 1;69120 16489;69585 16849;70379 17615;72284 19691;72108 19860;72438 20206;72454 20206;72636 20015;73336 20693;73669 21023;73540 21152;75355 23018;75532 22856;75574 22897 1;75881 23246;76037 23420;76311 23795 1;76478 24023;76552 24144;76701 24384 1;77008 24880;77117 25155;77399 25666 1;77468 25792;77500 25856;77567 25983;77750 26284 1;78358 27115;78734 27692;79044 28178 1;79195 28415;79567 29150;79751 29727;79839 29766;79973 29651 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="57">79900 22185;80425 22203;80151 25816 1;80131 26133;79245 26239;78879 25705 1;77328 23443;76392 22398;74624 20301 1;73519 18990;72909 18380;71665 17200 1;71422 16969;71196 16760;70983 16567;70613 16236 1;69728 15456;68993 14883;67877 13930 1;67477 13588;67118 13281;66786 12991;67090 12543;68892 14143;69264 14477 1;70155 15275;71490 16415;72248 17165 1;72317 17233;72444 17270;72558 17267 1;72679 17265;72786 17219;72819 17121;73066 16488;73478 16588;75055 17111;74908 18809;74791 18874;74322 19337;74431 19509 1;75184 20364;75870 21145;76527 21928;76820 22280 1;77001 22499;77180 22720;77358 22943 33;77994 23739;78616 24572;79263 25520 1;79355 25655;79635 25536;79645 25372;79801 23032;79813 22779;79900 22185 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="22">72946 37863;69294 34508;60066 21233;62632 16841;64704 16643;69837 18568;72946 21332;73370 21249 1;73850 21725;74612 22498;75352 23299 1;76087 24093;76333 24600;76860 25545 1;77597 26868;77965 27530;78702 28853;78553 30114;79190 30190;78407 38509;73985 37973;72946 37863 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">63668 12097 1;63909 12442;63448 12803;63075 12997;62853 14354;64272 14614;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">66872 12360;65783 11399;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">65783 11399 1;63904 9741;61457 6223;60162 3633 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">63668 12097 1;62844 10917;60642 8243;59368 5883 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">57930 3294 1;58442 4331;58819 4865;59368 5883;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="8">48535 -15189;51425 -14576 33;52072 -11748;52648 -7364;55832 -704 1;56353 385;56709 950;57288 2023 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="12">60162 3633 1;59460 2229;59158 1399;58497 -25 1;57553 -2059;57023 -3198;56079 -5232;55389 -6719;53893 -12696;68840 -8861 32;69084 -9814;70271 -9747 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="37">66789 13026;67061 12669;65728 11558;63779 9313;63147 8405 1;61991 6853;60893 5095;60162 3633;59955 3212 1;59393 2050;59089 1251;58497 -25 1;57553 -2059;57023 -3198;56079 -5232;55389 -6719;53866 -12803;53405 -12686 1;53690 -11461;54014 -10286;54394 -8660 1;54716 -7282;54936 -6595;55517 -5304 1;56581 -2940;57150 -1775;58230 581 1;59005 2270;59409 3109;60302 4739 1;61395 6734;62053 7680;63448 9476 1;64504 10836;65296 11658;66305 12565;66789 13026 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="33">63867 12324;66260 12533;65915 12208 1;65082 11431;64364 10656;63448 9476 1;62053 7680;61395 6734;60302 4739 1;59409 3109;59005 2270;58230 581 1;57150 -1775;56581 -2940;55517 -5304 1;54936 -6595;54716 -7282;54394 -8660 1;54014 -10286;53690 -11461;53405 -12686;51897 -12351 1;52479 -9594;53386 -5821;55832 -704 1;56353 385;56709 950;57288 2023;57447 1925;58101 3238;59358 5854;61431 9185;63867 12324 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">54605 -14221;</coords></object>
<object type="0" symbol="84"><coords count="1">53970 -15455;</coords></object>
<object type="0" symbol="84"><coords count="1">55357 -15833;</coords></object>
<object type="1" symbol="133"><coords count="4">55082 -17040;55135 -16152 32;55627 -16182 32;55576 -17034 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">55382 -16595;55348 -17062;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">55627 -16182 32;55577 -17010 32;55085 -16980 32;55135 -16152 32;55627 -16182 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">53578 -17356 32;53645 -16339 32;54505 -16396 32;54438 -17413 32;53578 -17356 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="6">53770 -12844;53105 -16521 1;53057 -16789;52811 -17053;52560 -17159;51753 -17500;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">51054 -17752;67373 -18852;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">51185 -19306;</coords></object>
<object type="1" symbol="132"><coords count="9">51746 -18315;51665 -19528;50687 -19459 1;50582 -19207;50537 -19052;50537 -18783 1;50537 -18491;50668 -18303;50826 -18058 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">54018 -17373;53995 -17721;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">54676 -17429;</coords></object>
<object type="1" symbol="122"><coords count="2">55330 -16966;55277 -17776;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">55276 -17922 32;67398 -18725 32;67381 -18464 32;55297 -17601 32;55276 -17922 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">67256 -19739;</coords></object>
<object type="1" symbol="122"><coords count="2">57915 -20579;58055 -18472;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">57279 -20218;</coords></object>
<object type="1" symbol="74"><coords count="2">55670 -20396;55811 -18411;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">55600 -20344;</coords></object>
<object type="1" symbol="132"><coords count="2">56852 -20484;57737 -20537 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">58101 -20559;58999 -20613 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">59010 -20618 32;58740 -24631 32;56548 -24483 32;56818 -20470 32;59010 -20618 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="7">58155 -20084;61271 -20290 1;61451 -20302;61505 -20580;61493 -20760;58129 -20546;58155 -20084 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">55913 -18381;57838 -18517;57702 -20540;55765 -20404;55913 -18381 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">55151 -18426;50801 -18133;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">51914 -21690;</coords></object>
<object type="1" symbol="68"><coords count="2">55438 -22789;52172 -22558;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="12">55524 -25250 1;55512 -25369;55506 -25436;55494 -25555 1;55483 -25664;55527 -25741;55612 -25808 1;55916 -26049;56032 -26128;56368 -26303;56467 -25311;55524 -25250 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">56493 -25285;56299 -27389;53571 -27186 1;53309 -27166;53030 -27039;52855 -26898 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">55054 -25197;54930 -26932;52833 -26788;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">55499 -25506 1;55491 -25677;55534 -25747;55612 -25808 1;55843 -25991;55965 -26080;56157 -26189;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">52392 -25433;52350 -26259;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="4">52359 -26212 1;52368 -26443;52703 -26777;52864 -26789;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">55177 -25175;56489 -25285;56285 -27376;53460 -27173;53108 -27050;52854 -26908;55041 -27046;55177 -25175 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">52609 -22712;52547 -23585;52090 -23568 1;51962 -22653;51799 -22143;51500 -21251;52286 -21303;52211 -22444 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">52322 -23113;</coords></object>
<object type="1" symbol="64"><coords count="9">52609 -22712;52547 -23585;52090 -23568 1;51962 -22653;51799 -22143;51500 -21251;52286 -21303;52211 -22444;52609 -22712 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">51744 -18315;51665 -19528;50687 -19459 1;50582 -19207;50537 -19052;50537 -18783 1;50537 -18491;50650 -18331;50808 -18086;50809 -18243;51744 -18315 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="11">50677 -19476;51689 -19520;51753 -18297;55119 -18531;55133 -18255;55697 -18311;55446 -22678;52197 -22443;52282 -21308;51436 -21247;50677 -19476 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="11">64363 45872;71796 47076;72005 46011;77553 46762;77850 43447;75582 43080;72738 41196;73052 37864;68655 34461;65445 37759;64363 45872 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">29894 88243 1;29547 86998;30558 86212;31485 86443 1;31824 86528;32027 86292;32374 86245 1;32933 86169;33417 86525;33558 87071 1;33699 87617;33332 88100;32806 88305 1;32576 88395;32339 88421;32201 88626 1;31608 89507;30199 89340;29894 88243 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">32472 87293;</coords></object>
<object type="0" symbol="83"><coords count="1">31115 87848;</coords></object>
<object type="1" symbol="2"><coords count="19">30215 88168 1;29941 87186;30801 86529;31532 86711 1;31800 86778;31985 86555;32258 86518 1;32699 86458;33204 86652;33315 87082 1;33427 87513;32964 87968;32549 88130 1;32368 88201;32157 88259;32048 88421 1;31580 89116;30456 89033;30215 88168 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-1.25931"><coords count="1">30216 88095;</coords></object>
<object type="0" symbol="3" rotation="1.90553"><coords count="1">33312 87034;</coords></object>
<object type="1" symbol="62"><coords count="19">29894 88243 1;29547 86998;30558 86212;31485 86443 1;31824 86528;32027 86292;32374 86245 1;32933 86169;33417 86525;33558 87071 1;33699 87617;33332 88100;32806 88305 1;32576 88395;32339 88421;32201 88626 1;31608 89507;30199 89340;29894 88243 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">30428 81724;29873 81650;29244 81884;29540 82378;29441 83587;30195 83661;30428 81724 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">30146 84297;29992 85795;29367 86239 1;28927 86526;28295 86639;28023 86190;27742 85726;29286 84791;29367 84215;30146 84297 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">29873 82131;</coords></object>
<object type="0" symbol="84"><coords count="1">29700 84623;</coords></object>
<object type="0" symbol="84"><coords count="1">28479 85894;</coords></object>
<object type="1" symbol="119"><coords count="10">30146 84297;29992 85795;29367 86239 1;28927 86526;28295 86639;28023 86190;27742 85726;29286 84791;29367 84215;30146 84297 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">30428 81724;29873 81650;29244 81884;29540 82378;29441 83587;30195 83661;30428 81724 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">29253 81896;29528 82371;29303 84772;27753 85697;27571 85391;28990 84541;29178 82496;28941 82020;29253 81896 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="14">27928 81153;27566 80724;25543 80564;25059 80975;25290 81280;24860 81712;24543 81413;24075 81810;23803 85215;24097 85391;24164 85431;24454 82057;25768 80967;27928 81153 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">24543 85672;25320 86207;25345 85475;24235 84759;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">24173 85438;24223 84759;25345 85487;25321 86189;24173 85438 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">25309 86202;25250 87249;25543 87436;25465 88631;25264 88818;25051 88810;24771 89070;24347 88842;24384 88286;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">25272 87251;24507 86868;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="5">24433 86819;25272 87250;25309 86202;24532 85708;24433 86819 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">25038 88336;</coords></object>
<object type="1" symbol="119"><coords count="11">24483 86843;25248 87263;25507 87413;25543 87436;25465 88631;25264 88818;25051 88810;24771 89070;24347 88842;24383 88298;24483 86843 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="2">24347 88842;22417 87550;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="7">22398 87546;24360 88842;24372 88250;22460 86843;22238 87164;22386 87324;22398 87546 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="16">22309 89828;22228 89809;22228 89824;19209 89072;18560 86877;18793 86839;18993 86955;19251 87126;19238 87468;22262 89570;22447 87608;22694 87741;22571 89471 1;22558 89634;22455 89808;22309 89828 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="71">21191 94198;23267 92541;23197 93614;23350 93561;24567 93117;24681 92093;26760 92324;26780 92108 1;26786 92049;26792 91991;26799 91912 1;26843 91449;27240 91074;27703 91117 1;28133 91157;28494 91629;28432 92085;28377 92496;28560 92523;31665 92868;32437 92229;32224 91912;31773 91382;32136 91106 1;32433 90904;32606 90889;32757 90967;34894 88903;33447 87792 1;33309 88018;33079 88199;32806 88305 1;32576 88395;32339 88421;32201 88626 1;31608 89507;30199 89340;29894 88243 1;29891 88231;29887 88218;29884 88206;29219 88670 1;29327 88832;29368 89037;29314 89240 1;29215 89615;28831 89838;28456 89739 1;28081 89640;27857 89255;27956 88880;25485 88323;25465 88631;25264 88818;25051 88810;24771 89070;24347 88842;24188 88736;22729 87759;22680 87927;22571 89471 1;22556 89663;22415 89870;22228 89824;19209 89072;19619 90416;20784 90677;21137 92519;20672 92630;20640 92759;21191 94198 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="70">33427 87819;34849 88918;34892 88857;35028 88746;36460 87540;36380 87404;35979 86953 1;36265 86699;36604 86912;36920 87129;36993 87091;37546 86625;37527 84837;37336 84839;37336 84809;37168 84832;35868 84869 32;35856 84466 32;37303 84425 32;37304 84452;37330 84364;37311 82722;36938 82738;36936 82209;36934 80264;37073 77394;36934 76897;36547 77008;36301 77420;35732 77080;34077 77010;33995 77971 1;33979 78143;34153 78231;34325 78250;34263 79635;33831 79702 1;33755 79397;33539 79138;33230 79005 1;32679 78768;32040 78991;31824 79542;31421 79336;29954 80965;29052 81294;29252 81881;29873 81650;30428 81724;30195 83661;29441 83587;29364 84233;29367 84215;30146 84297;29992 85795;29367 86239;30264 86741 1;30587 86453;31046 86333;31485 86443 1;31824 86528;32027 86292;32374 86245 1;32933 86169;33417 86525;33558 87071 1;33624 87328;33578 87571;33456 87777;33427 87819 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="47">29283 81872;29100 81288;28867 81362;28283 81575;27910 81131;27674 81131;25768 80967;24454 82057;24222 84755;24329 84827;25345 85487;25321 86189;25301 86351;25250 87246;25323 87306;25507 87413;25543 87436;25482 88373;27943 88939 1;27947 88919;27951 88900;27956 88880 1;28055 88505;28440 88282;28815 88381 1;29009 88432;29163 88560;29252 88724;29908 88291 1;29903 88275;29899 88259;29894 88243 1;29705 87564;29920 87021;30305 86706;29426 86197;29367 86239 1;28927 86526;28295 86639;28023 86190;27742 85726;29286 84791;29367 84215;29424 83486;29528 82371;29253 81896;29283 81872 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="12">14815 90792;16045 90896 32;16431 90928;19047 101772 1;19210 102446;19162 103096;18590 103487 1;18118 103809;17720 103979;17154 103897;15241 103685 32;14272 101994;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="80">14937 83031 1;16201 87001;16684 89316;17695 93348 1;18525 96658;19009 98510;19768 101837 1;20006 102881;19606 103868;18644 104339 1;18101 104604;17751 104826;17152 104746;14622 104408;14179 103580;13926 103536;13968 103187;13746 102772;10255 102476;10155 103656;9673 103615;9773 102439;5083 102040;5000 103020;3805 102919;3893 101875;1982 101714;1904 102646;-10566 101461;-21513 100284;-21425 99305;-21733 98925;-26115 98594;-26204 99767;-28371 99603;-28290 98530;-30258 98381;-30338 99432;-35511 99038 1;-36732 98945;-37243 98055;-38465 97989 1;-39872 97913;-40660 97870;-42067 97794 1;-42863 97751;-43557 96881;-43264 96139;-42113 93224;-40476 92684;-39217 89588;-35699 81278 1;-34938 79479;-32648 78178;-31558 78105;-31712 79529;-27639 79900;-27519 78801;-27239 78832;-27277 79178;-22806 80075;-22700 79545 1;-21289 79842;-20491 80013;-19053 80127 1;-13258 80585;-10012 80910;-4206 81191 1;-2212 81288;-405 81608;1528 81109 1;5080 80193;6464 79714;9961 78609 1;11121 78242;12141 78442;12996 79307 1;14092 80415;14523 81520;14937 83031 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">14619 104410;13816 104303;13917 103542;14197 103579;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">14165 103992;</coords></object>
<object type="1" symbol="64"><coords count="5">14619 104410;13816 104303;13917 103542;14197 103579;14619 104410 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">13051 101987 32;13688 102041 32;13656 102414 32;13019 102360 32;13051 101987 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">10483 101768 32;11120 101822 32;11088 102195 32;10451 102141 32;10483 101768 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="11">12436 101961;11781 101896 1;11762 102076;11893 102238;12074 102258 1;12254 102277;12416 102146;12436 101965 1;12436 101964;12436 101963;12436 101961 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">2118 100835 32;2755 100889 32;2723 101262 32;2086 101208 32;2118 100835 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="11">4071 101028;3416 100963 1;3397 101143;3528 101305;3709 101325 1;3889 101344;4051 101213;4071 101032 1;4071 101031;4071 101030;4071 101028 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">4686 101054 32;5323 101108 32;5291 101481 32;4654 101427 32;4686 101054 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">8818 101406 32;9455 101460 32;9423 101833 32;8786 101779 32;8818 101406 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">6469 101205 32;8051 101340 32;8019 101713 32;6437 101578 32;6469 101205 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10197 103083;9717 103042;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">9936 103353;</coords></object>
<object type="0" symbol="84"><coords count="1">4780 102769;</coords></object>
<object type="1" symbol="132"><coords count="3">5041 102577;4561 102536;4524 102973 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="6">138 101692;443 98377;844 97941;262 97406;-447 98122;-763 101589;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="7">138 101692;443 98377;844 97941;285 97427;-396 98168;-741 101581;33 101658;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">-621 100522;223 100605;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">-499 99283;315 99363;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-0.0964738"><coords count="1">-212 100540;</coords></object>
<object type="0" symbol="3" rotation="-0.091487"><coords count="1">-107 99318;</coords></object>
<object type="0" symbol="84"><coords count="1">1657 102368;</coords></object>
<object type="1" symbol="132"><coords count="3">1918 102176;1438 102135;1401 102572 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">66 97095 32;1087 97173 32;1166 96139 32;145 96061 32;66 97095 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">913 97915;965 97156;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">1035 96127;1086 95447;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">305 101676;759 101449;1073 97924;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="86"><coords count="5">305 101676;759 101449;1073 97924;572 98350;305 101676 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">881 95272;5320 95577;5364 94942;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">1885 97375 1;1944 96757;2541 96368;3159 96424;3059 97525;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="6">1885 97375 1;1944 96757;2541 96368;3159 96424;3059 97525;1885 97375 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">5584 96651 32;6880 96759 32;6790 97833 32;5494 97725 32;5584 96651 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">5584 96651 32;6880 96759 32;6790 97833 32;5494 97725 32;5584 96651 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">9100 96938 32;10730 97075 32;10640 98149 32;9010 98012 32;9100 96938 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">9100 96938 32;10730 97075 32;10640 98149 32;9010 98012 32;9100 96938 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">11944 97401;12138 95103 32;6398 94618;6689 90147;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">4398 90453;4435 89852;6891 89980;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="3">5684 95826;5950 91742;4507 91648;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">5149 91566;5194 90877;4534 90834;4489 91530;5149 91566 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">5154 91497;5194 90877;4534 90834 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">5707 93136 32;5677 93607 32;5277 93581 32;5307 93110 32;5707 93136 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">5646 93605;5277 93581 32;5307 93110 32;5677 93134 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">10456 95590;</coords></object>
<object type="0" symbol="143"><coords count="1">7372 95504;</coords></object>
<object type="1" symbol="132"><coords count="5">5885 95806;11118 96204 1;11648 96240;11715 96847;11825 97367;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">5188 94955;4669 94567;4805 91869;5712 91936;5638 93127;5540 93125;5307 93110 32;5277 93581 32;5607 93602;5545 94984;5188 94955 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">4530 90834;4583 89979;6633 90057;6675 90354;6398 94618;12138 95103;11946 97375;11755 97027 1;11665 96613;11534 96232;11118 96204;5885 95806;6170 91549;5141 91479;5184 90877;4530 90834 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="32">10373 98121;10355 98426;11734 98548;11812 97205;11742 96967 1;11652 96577;11514 96231;11118 96204;5885 95806;5479 95757;1274 95469;995 98923;821 100720;1614 100799;1876 97388;1906 97246 1;2029 96704;2585 96372;3159 96424;3059 97525;4406 97597;4476 96568;6884 96760;6796 97798;7965 97929;8035 96873;9108 96934;9432 96966;10730 97075 32;10640 98149 32;10500 98137;10373 98121 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="156"><coords count="3">-3945 99805;-4094 100952;-904 101367;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="5">-4001 100902;-930 101277;-852 100230;-3818 99838;-4001 100902 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-10579 101443 32;-6725 101809 32;-6681 101342 32;-10535 100976 32;-10579 101443 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-6941 101539;</coords></object>
<object type="0" symbol="84"><coords count="1">-8581 101400;</coords></object>
<object type="0" symbol="84"><coords count="1">-10326 101216;</coords></object>
<object type="1" symbol="62"><coords count="5">-10579 101443 32;-6725 101809 32;-6681 101342 32;-10535 100976 32;-10579 101443 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-5316 97173;-5586 99370;-9071 98908 32;-8703 96147 32;-5252 96607 32;-5327 97172 32;-5316 97173 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-4400 97253;-4731 99711;-5613 99600 32;-5327 97130;-4400 97253 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">-4740 99668;-4420 97292;-1842 97636 32;-2043 99148;-1166 99261 32;-1273 100119 32;-4740 99668 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-5650 99376;-5856 100933;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-6526 99281;-6730 100818;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-6574 100641;-10156 100165;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">-10217 100346;-9819 97143;-10772 97072;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="6">-9854 95983;-9573 93874;-4719 94521;-4132 95128;-3059 95251;-3195 96438;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-8746 96254;-10067 96078;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-8136 94466;</coords></object>
<object type="1" symbol="132"><coords count="3">-7734 94309;-7799 94793;-8443 94706;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="13">-7795 96263 1;-7795 95905;-7972 95724;-8171 95426 1;-8337 95177;-8468 94998;-8424 94702;-8330 94721;-7799 94793;-7734 94309;-9462 94030;-9732 95949;-7795 96263 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">-3006 96438;-3111 97450;-4463 97250;-5283 97127;-5240 96621;-7796 96281;-7797 96201 1;-7816 95883;-7984 95706;-8171 95426 1;-8337 95177;-8468 94998;-8424 94702;-8326 94722;-7799 94793;-7734 94309;-7494 94151;-4719 94521;-4132 95128;-3059 95251;-3132 95889;-3006 96438 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">-5796 100352;-6500 100259;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-0.136756"><coords count="1">-6224 100283;</coords></object>
<object type="1" symbol="119"><coords count="19">-3998 99769;-4129 100982;-787 101427;-456 98147;259 97379;870 97841;1123 95163;-2855 95085;-3003 96463;-3016 96533;-3111 97450;-3142 97445;-2939 97490;-1842 97636 32;-2043 99148;-1166 99261 32;-1273 100119 32;-3804 99790;-3998 99769 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-11706 101329 32;-14033 101079 32;-13980 100589 32;-11653 100839 32;-11706 101329 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-15320 100940 32;-17941 100658 32;-17888 100168 32;-15267 100450 32;-15320 100940 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-19196 100522 32;-19738 100465 32;-19685 99975 32;-19143 100032 32;-19196 100522 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-19452 100247;</coords></object>
<object type="0" symbol="84"><coords count="1">-17655 100448;</coords></object>
<object type="0" symbol="84"><coords count="1">-15571 100657;</coords></object>
<object type="0" symbol="84"><coords count="1">-13678 100875;</coords></object>
<object type="0" symbol="84"><coords count="1">-11968 101058;</coords></object>
<object type="1" symbol="62"><coords count="5">-15320 100940 32;-17941 100658 32;-17888 100168 32;-15267 100450 32;-15320 100940 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-19196 100522 32;-19738 100465 32;-19685 99975 32;-19143 100032 32;-19196 100522 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-11706 101329 32;-14033 101079 32;-13980 100589 32;-11653 100839 32;-11706 101329 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="4">-17154 97527;-17242 98648;-15159 98811;-15075 97732;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-14962 97754 1;-14455 98172;-13670 98310;-13069 97877;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">-11630 98042;-12951 97939;-13085 99651;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">-14116 98845;</coords></object>
<object type="0" symbol="84"><coords count="1">-15338 99604;</coords></object>
<object type="1" symbol="67"><coords count="10">-13601 99600 1;-13776 99594;-13935 99718;-13951 99892;-13968 100067;-11613 100310 1;-11664 100050;-11766 99775;-12029 99750;-13601 99600 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-17353 98759;-17429 99633;-12240 100245;-11613 100310 1;-11664 100050;-11766 99775;-12029 99750;-12960 99661;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-11412 98182;-11386 97894;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-10921 97254;-10997 98230;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-12315 99240;</coords></object>
<object type="1" symbol="120"><coords count="85">16507 90767;17051 90832 1;17254 91606;17465 92431;17695 93348 1;18525 96658;19009 98510;19768 101837 1;20006 102881;19606 103868;18644 104339 1;18101 104604;17751 104826;17152 104746;14622 104408;14179 103580;13926 103536;13968 103187;13746 102772;10255 102476;10202 103105;9727 103043;9717 103042;9771 102467;9773 102439;5083 102040;5037 102586;4880 102563;4561 102536;4524 102973;4309 102962;3805 102919;3893 101875;4089 100972;4686 101022;4680 101121;4654 101427 32;5291 101481 32;5323 101108 32;5321 101108;6469 101205 32;6437 101578 32;8019 101713 32;8051 101340;8791 101368;8812 101476;8786 101779 32;9423 101833 32;9455 101460;9900 101462;10000 101470 32;9978 101731 32;10475 101773;10473 101886;10451 102141 32;11088 102195 32;11120 101822;11799 101898;11795 102030 1;11833 102150;11940 102243;12074 102258 1;12254 102277;12416 102146;12436 101965 1;12436 101964;12436 101963;12436 101961;13070 101996;13042 102094;13019 102360 32;13656 102414 32;13688 102041;14378 102120;14610 102585;15241 103685 32;17154 103897 1;17720 103979;18118 103809;18590 103487 1;19162 103096;19210 102446;19047 101772;18109 97883;16507 90767 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="43">3907 101907;4129 101006;4029 101160 1;3966 101271;3843 101339;3709 101325 1;3528 101305;3397 101143;3416 100963;3437 100965;2747 100883;2748 100975;2723 101262 32;2086 101208 32;2118 100835 32;1637 100784;835 100667;766 101367;759 101449;305 101676;-861 101565;-1249 101365;-4129 100982;-3998 99769;-4797 99726;-5611 99603;-5747 99381;-6426 99294;-6697 100627;-10385 100219;-10535 100976 32;-6681 101342 32;-6725 101809;-6212 101875;1347 102593;1397 102565;1412 102443;1438 102135;1918 102176;1954 102048;1982 101714;3558 101847;3907 101907 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-3115 97417;-3015 96457;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="42">-10379 100368;-9969 97297;-13249 97018;-13282 97084 1;-13410 97340;-13685 97502;-13987 97476 1;-14309 97449;-14564 97216;-14634 96917;-17097 96722 32;-17275 97523;-17034 97543;-17109 98535;-15270 98678;-15193 97730;-14944 97745;-14929 97781 1;-14421 98178;-13657 98301;-13069 97877;-12957 98011;-13085 99651;-12917 99665;-12029 99750 1;-11773 99774;-11670 100035;-11617 100289;-17424 99632;-17899 100162;-17689 100189;-15267 100450 32;-15320 100940 32;-14031 101094;-14018 100938;-13980 100589 32;-11653 100839 32;-11706 101329 32;-11723 101327;-10583 101464;-10515 100964;-10379 100368 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="17">-17353 98711;-17421 99612;-13967 100043;-13956 99946;-13951 99892 1;-13935 99718;-13776 99594;-13601 99600;-13155 99643;-13004 97847;-13161 97938 1;-13749 98295;-14481 98151;-14962 97754;-15089 97916;-15159 98811;-17353 98711 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-18848 96611;-17817 96692;-17508 92754;-17910 92722;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="5">-17825 92651 32;-17915 93785 32;-18471 93741 32;-18381 92607 32;-17825 92651 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-18130 92930;-18171 93439;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-18337 92177;-17442 92247;-17382 89877;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-16859 89920;-16907 91827;-16518 91857;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-17829 89844 32;-16608 89948 32;-16495 88629 32;-17716 88525 32;-17829 89844 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-18921 96112;-18034 88400;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-20118 88302 32;-20160 88919 32;-20900 88869 32;-20858 88252 32;-20118 88302 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-20156 88438;-17715 88604;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-18292 96124;</coords></object>
<object type="0" symbol="84"><coords count="1">-17934 93990;</coords></object>
<object type="1" symbol="62"><coords count="7">-18848 96611;-17817 96692;-17508 92754;-17910 92722;-17912 93801;-18525 93737;-18848 96611 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="5">-17825 92651 32;-17915 93785 32;-18471 93741 32;-18381 92607 32;-17825 92651 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-17786 91004;</coords></object>
<object type="1" symbol="105"><coords count="2">-19082 98024;-19225 99172;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-19933 97949;-20067 99023;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="37">-20259 98947;-20383 100405;-19752 100473;-19724 100340;-19685 99975 32;-19143 100032 32;-19196 100522 32;-19104 100543;-17973 100665;-17930 100552;-17893 100217;-17397 99638;-17418 99502;-17353 98764;-17372 98758;-17276 97523;-17256 97508;-17054 96741;-16825 92825;-16650 92816;-16518 91857;-16907 91827;-16859 89927;-17357 89928;-17388 90103;-17442 92247;-18362 92174;-18381 92607;-17825 92651 32;-17831 92727;-17663 92742;-17508 92754;-17817 96692;-18777 96617;-18962 98050;-19844 97963;-20259 98947 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">-18376 92163;-17443 92250;-17373 89921;-17800 89851;-17748 88795;-18053 88761;-18376 92163 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="13">-10558 93579;-9657 93690;-9867 96071;-8720 96293;-8800 96878;-9071 98908 32;-6462 99254;-6524 99775;-6697 100627;-10302 100228;-9830 97194;-10780 97033;-10558 93579 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-19813 96006 32;-19722 95278 32;-18960 95373 32;-19051 96101 32;-19813 96006 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-19394 95701;</coords></object>
<object type="1" symbol="62"><coords count="5">-19813 96006 32;-19722 95278 32;-18960 95373 32;-19051 96101 32;-19813 96006 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-20258 91601 32;-19806 91631 32;-19919 93306 32;-20371 93276 32;-20258 91601 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-20144 93014;</coords></object>
<object type="0" symbol="84"><coords count="1">-20048 91871;</coords></object>
<object type="1" symbol="62"><coords count="5">-20258 91601 32;-19806 91631 32;-19919 93306 32;-20371 93276 32;-20258 91601 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-20066 90930;-19987 89755;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-20362 93458;-21169 93404;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="5">-21148 93398;-21695 93361;-21737 93989;-25406 93744;-25024 88018;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-24829 87867;-28988 87589;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-29095 87387;-29210 89104;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="114" rotation="-0.0688565"><coords count="1">-25850 91199;</coords></object>
<object type="0" symbol="84"><coords count="1">-25885 91713;</coords></object>
<object type="1" symbol="132"><coords count="4">-25579 93903;-26702 93828;-26396 89242;-25293 89316;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-26067 92901;</coords></object>
<object type="0" symbol="84"><coords count="1">-26504 93546;</coords></object>
<object type="0" symbol="84"><coords count="1">-25692 93590;</coords></object>
<object type="1" symbol="62"><coords count="5">-25579 93903;-26702 93828;-26396 89242;-25293 89316;-25579 93903 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-21383 95126;-21577 98228;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-21549 95125;-21526 94765;-23530 94636;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">-23190 94668;-21531 94761;-21550 95162;-23215 95057;-23190 94668 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-24600 94527;-25740 94456;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-26546 96871;</coords></object>
<object type="0" symbol="84"><coords count="1">-26472 95785;</coords></object>
<object type="0" symbol="84"><coords count="1">-26385 94762;</coords></object>
<object type="1" symbol="132"><coords count="5">-26199 97908 32;-25971 94286 32;-26737 94238 32;-26965 97860 32;-26199 97908 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-26199 97908 32;-25971 94286 32;-26737 94238 32;-26965 97860 32;-26199 97908 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-27556 91123;-27268 91144;-27207 90310 1;-27170 89812;-27381 89508;-27716 89137;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="9">-27556 91123;-27268 91144;-27207 90310 1;-27170 89812;-27381 89508;-27716 89137;-27852 90802;-27550 90824;-27556 91123 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-27642 92060;</coords></object>
<object type="1" symbol="105"><coords count="2">-27655 92912;-27720 93780;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-27975 95749;-28039 96584;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-27988 92936;-27649 92962;-27771 94547;-28085 94523;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-28629 97057;-28677 97685;-27979 97738;-27851 96057;-28531 95404;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-28358 96292;</coords></object>
<object type="0" symbol="84"><coords count="1">-28444 97303;</coords></object>
<object type="1" symbol="62"><coords count="6">-28629 97057;-28678 97694;-27980 97747;-27851 96057;-28531 95404;-28629 97057 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">-27988 92936;-27649 92962;-27771 94547;-28455 94500;-28360 93112;-28037 93121;-27988 92936 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="4">-21373 100270;-21268 99240;-21650 98771;-26147 98443;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-26499 99438;</coords></object>
<object type="0" symbol="84"><coords count="1">-28122 99325;</coords></object>
<object type="0" symbol="84"><coords count="1">-30573 99106;</coords></object>
<object type="1" symbol="74"><coords count="4">-28226 99186;-28166 98398;-30377 98230;-30435 99009;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="9">-26155 99060 1;-26313 98855;-26606 98828;-26837 98959 1;-27077 99095;-27069 99459;-26947 99706;-26208 99762 32;-26155 99060 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">-26947 99706 1;-27069 99459;-27056 99160;-26824 99011 1;-26593 98863;-26313 98855;-26155 99060;-26099 98326 32;-27025 98256 32;-27134 99692 32;-26947 99706 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">-28796 97000;-28824 97506;-29968 97420 32;-30512 97379;-31887 98233;-32201 98207 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-34660 98208;-34563 97037;-35422 96967 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-32148 98211;-34643 98007 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="38">-21276 100315;-20342 100403;-20203 98941;-20050 97873;-19799 95991;-19712 95262;-18931 95362;-18150 88724;-20081 88582;-20111 88946;-20136 89334;-20272 91592;-19803 91641;-19920 93294;-20401 93263;-21111 93455;-21677 93422;-21738 94076;-25600 93903;-26702 93828;-26724 94239;-25971 94286 32;-26006 94841;-25871 94888;-24232 94991 32;-24213 94687 32;-23491 94733;-23494 94638;-21526 94765;-21549 95125;-21739 98184;-26994 97851;-27026 98263;-26089 98337;-21650 98771;-21268 99240;-21303 99587;-21276 100315 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="50">-26402 89252;-25261 89332;-25175 87962;-29024 87685;-29092 89067;-27722 89159;-27635 89229 1;-27347 89560;-27173 89854;-27207 90310;-27268 91144;-27556 91123;-27594 91329;-27605 91472 32;-27924 91448 32;-28035 92923;-27741 92953;-27708 93771;-27721 93894;-27771 94547;-28085 94523;-28139 94667;-28175 95143 32;-28506 95118 32;-28530 95433;-28473 95460;-28125 95794;-27891 96606;-27907 96788;-27979 97738;-28677 97685;-30552 97504;-31852 98350;-31913 99336;-31746 99325;-30349 99423;-30289 98706;-30377 98230;-28166 98398;-28301 99127;-28354 99379;-28371 99603;-27098 99699;-27001 98298;-26961 97802;-26737 94238;-26715 94163;-26684 93824;-26437 89488;-26402 89252 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-27106 99677;-27002 98296;-26120 98351;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-32704 98325 32;-34101 98211 32;-34145 98747 32;-32748 98861 32;-32704 98325 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">-32761 98894;-32714 98323;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">-34163 98778;-34119 98238;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-42143 97594;</coords></object>
<object type="0" symbol="84"><coords count="1">-40428 97729;</coords></object>
<object type="0" symbol="84"><coords count="1">-40021 96348;</coords></object>
<object type="0" symbol="84"><coords count="1">-39984 94843;</coords></object>
<object type="0" symbol="84"><coords count="1">-41983 96237;</coords></object>
<object type="0" symbol="84"><coords count="1">-41810 94522;</coords></object>
<object type="0" symbol="84"><coords count="1">-40934 93128;</coords></object>
<object type="0" symbol="84"><coords count="1">-38639 97816;</coords></object>
<object type="0" symbol="84"><coords count="1">-36937 98260;</coords></object>
<object type="1" symbol="132"><coords count="10">-42032 98827;-42081 99506;-42723 99444 1;-42908 99426;-43025 99247;-43007 99062 1;-42990 98891;-42832 98773;-42661 98790;-42032 98827 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-40663 98963;-40700 99592;-39960 99654 1;-39807 99667;-39689 99535;-39676 99382 1;-39659 99185;-39812 99017;-40009 99000;-40663 98963 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-42802 94909;-41470 95008;-40470 92664;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-40285 92219;-39686 92462;-39296 93385;-38146 93852;-37582 92464;-37062 92675;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="39">-31802 98336;-31871 99313;-32094 99298;-35511 99038 1;-36732 98945;-37243 98055;-38465 97989 1;-39872 97913;-40660 97870;-42067 97794 1;-42863 97751;-43557 96881;-43264 96139;-42777 94905;-42702 94916;-41470 95008;-40470 92664;-40309 92219;-40174 92264;-39686 92462;-39296 93385;-38146 93852;-37582 92464;-37062 92675;-37182 92993;-37998 94823;-36297 97022;-35454 97091;-35159 96988;-34563 97037;-34658 98179;-34104 98153;-34106 98277;-34145 98747 32;-34006 98758;-32748 98861 32;-32744 98808;-32685 98314;-31802 98336 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">-42032 98827;-42081 99506;-42723 99444 1;-42908 99426;-43025 99247;-43007 99062 1;-42990 98891;-42832 98773;-42661 98790;-42032 98827 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">-40663 98963;-40700 99592;-39960 99654 1;-39807 99667;-39689 99535;-39676 99382 1;-39659 99185;-39812 99017;-40009 99000;-40663 98963 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-42797 94895;-41488 95008;-40476 92714;-42125 93228;-42797 94895 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-37727 87650 32;-36682 85308 32;-34257 86390 32;-35301 88731 32;-37727 87650 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-35732 86451;</coords></object>
<object type="0" symbol="143"><coords count="1">-36239 87586;</coords></object>
<object type="0" symbol="143"><coords count="1">-34212 86107;</coords></object>
<object type="1" symbol="105"><coords count="2">-34188 87303;-34107 86632;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">-33745 86114;-33236 86175;-32955 83838;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="24">-27219 87728;-27079 84378;-32977 83855;-33256 86158;-33736 85922;-34303 86611;-34268 87283;-35397 96941;-34977 97003;-34563 97037;-34648 98059;-31908 98250;-31484 98110;-30552 97504;-28828 97670;-28785 96976;-29257 96951;-31652 96771 32;-31365 92965 32;-31145 92982 32;-30841 88944 32;-29226 89066;-29029 87520;-27219 87728 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-33740 80722;</coords></object>
<object type="1" symbol="132"><coords count="7">-33231 81999;-35113 81326 1;-34796 80579;-34463 80270;-33842 79747;-32744 79870;-32806 80561;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-34928 81301;</coords></object>
<object type="0" symbol="143"><coords count="1">-33830 81708;</coords></object>
<object type="1" symbol="62"><coords count="8">-32941 82103;-35113 81326 1;-34796 80579;-34463 80270;-33842 79747;-32744 79870;-32806 80561;-32941 82103 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-32942 80529;-33527 85984;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="33">-40294 92224;-39683 92468;-39265 93402;-38166 93864;-37572 92468;-37101 92669;-35304 88726;-35541 88624;-37727 87650 32;-36682 85308 32;-34257 86390 32;-34584 87123;-34347 87204;-34290 86619;-34281 86584;-33736 85922;-33681 85949;-33649 85943;-33518 85533;-33131 82009;-33339 81960;-35113 81326 1;-34796 80579;-34463 80270;-33842 79747;-32744 79870;-31712 79530;-31561 78096 1;-32575 78186;-34906 79405;-35699 81278;-37062 84497;-40294 92224 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-39682 92442;-37710 87644;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-36686 85324;-35082 81364;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">-27081 79615;</coords></object>
<object type="1" symbol="105"><coords count="2">-22231 84883;-21844 80883;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-21108 84992;-20728 81064;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-20907 81209;-19157 81350;-19196 81757;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">-18689 81255;</coords></object>
<object type="1" symbol="105"><coords count="2">-22785 84682;-20903 84864;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="124"><coords count="2">-11227 82322;-11157 81303;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-9843 82384;-9780 81451;-10791 81383;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-11541 81325;-20858 80618;-20896 81098 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-16772 80938 32;-12847 81236 32;-12885 81733 32;-16810 81435 32;-16772 80938 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-17942 80849 32;-17086 80913 32;-17124 81410 32;-17980 81346 32;-17942 80849 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="6">-11578 82061 1;-11971 81926;-12240 81685;-12294 81272;-11566 81321;-11578 82061 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-12146 81753;</coords></object>
<object type="1" symbol="62"><coords count="22">-19104 81765;-11615 82259;-11591 82061;-11652 82034 1;-12004 81895;-12243 81659;-12294 81272;-12861 81222;-12855 81345;-12885 81733 32;-16810 81435 32;-16772 80938 32;-17093 80914;-17093 81000;-17124 81410 32;-17980 81346 32;-17942 80849 32;-17923 80850;-20880 80630;-20893 81099;-19129 81309;-19104 81765 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-10302 81879;</coords></object>
<object type="1" symbol="64"><coords count="5">-10843 82324 32;-9840 82392 32;-9777 81458 32;-10780 81390 32;-10843 82324 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-6827 81748;</coords></object>
<object type="1" symbol="74"><coords count="2">-8303 81622;-6333 81756;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-7563 86371 32;-6703 86430 32;-6658 85768 32;-7518 85709 32;-7563 86371 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">-7588 86260;-10257 86079;-10237 85780;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-4840 83882;</coords></object>
<object type="0" symbol="84"><coords count="1">-4975 85942;</coords></object>
<object type="0" symbol="84"><coords count="1">-4876 84597;</coords></object>
<object type="1" symbol="109"><coords count="6">-6690 86325;-4576 86468;-4529 85765 32;-4403 83905 32;-4364 83324;-3759 83365;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-5321 82426;</coords></object>
<object type="1" symbol="132"><coords count="4">-3764 83206;-3671 81835;-6354 81652;-6641 85745 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-3764 83206;-3671 81835;-6354 81652;-6641 85745;-6678 86273;-4602 86401;-4390 83307;-3764 83206 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="22">7779 87400;7770 86135;-3890 85295 32;-3760 83242 32;-1236 83401;-1208 83017;6065 83542;6106 82674;6727 82671;6728 82865;10420 82837;11395 83100;11388 83425;11726 83432;11719 83796;12026 83802;12228 84012;12218 84536;12010 84736;11747 84731;11692 87386;7779 87400 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-2081 81944;-1228 82006;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-2118 83289;-2069 82522;-808 82603;-367 83105;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">-2118 83289;-2069 82522;-808 82603;-367 83105;-1206 83033;-1258 83422;-2118 83289 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-1254 82166;-659 82204;-859 81870;-1242 81845;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-1254 82166;-659 82204;-871 81858;-1242 81845;-1254 82166 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="5">7636 80945;7661 80340;8043 79958;10301 80019;10906 80500;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">10819 79810;</coords></object>
<object type="1" symbol="132"><coords count="14">-358 81894 1;504 81947;1007 81859;1838 81623 1;1939 81940;1722 82357;1394 82412 1;885 82497;589 82411;74 82388 1;-147 82378;-216 82167;-321 81972;-358 81894 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">1432 82015;</coords></object>
<object type="0" symbol="84"><coords count="1">124 82128;</coords></object>
<object type="1" symbol="62"><coords count="14">-358 81894 1;504 81947;1007 81859;1838 81623 1;1939 81940;1722 82357;1394 82412 1;885 82497;589 82411;74 82388 1;-147 82378;-216 82167;-321 81972;-358 81894 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">2485 81446;6321 80360;6050 82038;3225 81890 1;2935 81875;2683 81820;2559 81557;2485 81446 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">2077 83247 1;2099 82889;2399 82604;2756 82630;6074 82872;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">5823 83308;5836 83022;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">5614 82829;6067 82873;6041 83536;5579 83510;5614 82829 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">4463 82760;4414 83426;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">4445 82760;5649 82847;5597 83519;4410 83458;4445 82760 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="9">2064 83248;4428 83431;4454 82786;4308 82743;2756 82630 1;2422 82606;2137 82854;2084 83180;2064 83248 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">3154 81574;</coords></object>
<object type="0" symbol="84"><coords count="1">5614 81268;</coords></object>
<object type="1" symbol="105"><coords count="3">5886 82053;6127 80734;6875 80751;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">6782 81189;</coords></object>
<object type="0" symbol="84"><coords count="1">7838 81617;</coords></object>
<object type="1" symbol="68"><coords count="4">8532 81253;8558 80608;10024 80667;9996 81366;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="2">8567 80791;9998 80843;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">7733 80936 32;8073 80950 32;8093 80474 32;7753 80460 32;7733 80936 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">10464 81398 32;10804 81412 32;10824 80936 32;10484 80922 32;10464 81398 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">8065 80927;8426 80942;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">8097 80502;8440 80516;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10118 81342;10473 81356;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10485 80953;10129 80939;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">2485 81446;6321 80360;6050 82038;3225 81890 1;2935 81875;2683 81820;2559 81557;2485 81446 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">5588 83485;5618 82851;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">12945 81400;</coords></object>
<object type="0" symbol="84"><coords count="1">14213 84549;</coords></object>
<object type="1" symbol="115"><coords count="5">10831 81392 32;11337 81413 32;11267 83070 32;10765 82962 32;10831 81392 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="21">11315 82040 1;11308 82182;11436 82248;11568 82301 1;12497 82676;13020 82884;13950 83257 1;14184 83351;14481 83049;14412 82807;14061 81895 1;13513 80896;13297 80185;12377 79513 1;11723 79035;11130 78831;10353 79059 1;9259 79380;8631 79511;7544 79853;7492 80263 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">11760 83436;11766 83157;14857 84413 1;15297 85599;15398 86314;15664 87551;14936 87501;14997 86021;12408 85830;12325 86952;12026 86929;11895 88676;11348 88635 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">-9780 81441;-8279 81519;-6360 81667;-6657 85733;-7538 85689;-7555 86116;-10103 86021;-9780 81441 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="62">-3677 81831;-3773 83245;-2116 83349;-2113 83209;-2069 82522;-808 82603;-424 83040;-328 83081;2089 83271;2098 83117 1;2175 82823;2444 82607;2756 82630;6067 82871;6093 82686;6756 82704;6756 82887;10394 82826;10795 82948;10839 81395;10737 81400;10467 81386;10118 81366;9874 81358;9888 80962;8667 80917;8654 81255;8407 81245;8421 80973;8065 80949;7832 80938;7442 80924;7485 80257;7520 79864;6307 80344;6290 80606;6054 81068;5889 82036;3018 81871;2882 81836 1;2743 81790;2630 81708;2559 81557;2485 81446;2520 81436;1838 81623 1;1939 81940;1722 82357;1394 82412 1;885 82497;589 82411;74 82388 1;-147 82378;-216 82167;-321 81972;-358 81894;-859 81870;-659 82204;-1254 82166;-2032 82088;-2058 81774;-3677 81831 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="26">11315 82040 1;11308 82182;11436 82248;11568 82301 1;12497 82676;13020 82884;13950 83257 1;14184 83351;14481 83049;14412 82807;14061 81895 1;13513 80896;13297 80185;12377 79513 1;11723 79035;11130 78831;10353 79059 1;9259 79380;8631 79511;7544 79853;7492 80263;8059 79971;10246 80020;10935 80509;11356 81354;11315 82040 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="15">10116 81343;10468 81328;10489 80927;10759 80933;10779 80625;10239 80186;8115 80143;7836 80414;7849 80471;8090 80475;8070 80896;8426 80914;8443 80485;10149 80550;10116 81343 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">11284 87427;11037 90536 32;12591 90647;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">15306 87143;</coords></object>
<object type="1" symbol="132"><coords count="7">16588 90820;16342 89611;16058 89290;16021 90179;12061 89895;12115 89142;11280 89082;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">11687 89425;</coords></object>
<object type="1" symbol="62"><coords count="5">12034 89930 32;11260 89875 32;11316 89081 32;12090 89136 32;12034 89930 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="9">11188 90442;16553 90791;16561 90686;16342 89611;16058 89290;16021 90179;12059 89920;11238 89861;11188 90442 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">12386 85823;11776 85291;11697 87376;11435 87402;11322 88632;11889 88676;11895 88676;12026 86929;12325 86952;12394 86023;12386 85823 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="45">11331 88637;11305 89082;12099 89152;12064 89893;16025 90181;16042 89283;16348 89606;16601 90836;17063 90862;17041 90698 1;16408 88111;15898 86049;14937 83031 1;14897 82887;14858 82746;14817 82609;14369 82696;14412 82807 1;14481 83049;14184 83351;13950 83257 1;13020 82884;12497 82676;11568 82301 1;11484 82267;11401 82228;11354 82167;11281 83043;11398 83086;11435 83431;11768 83438;11762 83160;11852 83192;14857 84413 1;15297 85599;15398 86314;15664 87551;14936 87501;14997 86021;12408 85830;12325 86952;12026 86929;12015 87077;11910 88690;11331 88637 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="18">11771 85323;12382 85835;15003 86026;14929 87488;15663 87556;15643 87452 1;15392 86275;15285 85567;14857 84413;11766 83157;11760 83436;11765 83793;12036 83806;12234 84009;12240 84534;12049 84750;11783 84768;11771 85323 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="76">14385 102117;15298 103733;15751 103741;17154 103897 1;17720 103979;18118 103809;18590 103487 1;19162 103096;19210 102446;19047 101772;16431 90928;16045 90896 32;14815 90792;14797 91112;14591 94335 32;13719 94279 32;13697 94629 32;11990 94520 32;12012 94175 32;11294 94129 32;11343 93366 32;11020 92944 32;11044 92570 32;11416 92156 32;11475 91228 32;12608 91300 32;12649 90659;11052 90516;11209 87410;7772 87393;7754 86102;-3901 85282;-3796 83467;-4354 83450;-4564 86381;-6650 86311;-6827 90096 32;-3961 90411 32;-4047 91196 32;-836 91538 32;-1137 94373 32;-4435 94018 32;-4350 93246 32;-7080 92956;-7217 94188;-4719 94521;-4132 95128;-3064 95250;1054 95262;5277 95524;5207 94957;5155 94930;4669 94567;4669 94562;1307 94372;1412 91773;3104 91834;3174 90429;4291 90464;4430 89819;6716 89958;6471 94643;12229 95149;12037 97452;12315 97462;12832 97506 32;12739 98608 32;14829 98784 32;14918 97728 32;17407 97938 32;17229 100046 32;17429 100063 32;17309 101481 32;14429 101238 32;14402 101553;14385 102117 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="42">-27161 84391;-27296 87661;-24977 87895;-25310 93632;-21781 93891;-21769 93151;-22160 93114;-23486 93024 32;-23223 89138 32;-20135 89347 32;-20110 88956;-20251 88913;-20900 88869 32;-20858 88252 32;-20118 88302 32;-16509 88647;-16588 89982;-16850 89947;-16902 91823;-16518 91866;-16684 92826;-16064 92887;-13959 93052 32;-13941 92816 32;-13317 92865 32;-13336 93104 32;-10523 93324 32;-10554 93718;-9656 93765;-7143 94080;-7056 92945;-6751 90041;-6547 86458;-7969 86362;-10342 85969;-10403 85777;-19462 85127;-19200 81454;-20744 81350;-21111 84962;-22838 84822;-27161 84391 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-21733 80911 32;-20887 80993 32;-21251 84740 32;-22097 84658 32;-21733 80911 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">-21890 81800;-20842 81902;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">-22048 83228;-20980 83331;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="3.03605"><coords count="1">-21379 81843;</coords></object>
<object type="0" symbol="3" rotation="3.05001"><coords count="1">-21516 83280;</coords></object>
<object type="1" symbol="120"><coords count="46">-32776 79781;-32784 80601;-30518 80819;-30465 80824 32;-30440 80560 32;-29859 80616 32;-29885 80884 32;-25316 81325 32;-25288 81036 32;-24698 81093 32;-24724 81360 32;-24545 81377;-22456 81587;-22761 84579;-22316 84649;-21741 80933;-20877 80994;-20860 80610;-20582 80639;-11585 81295;-10630 81369;-9779 81477;-8279 81534;-6349 81644;-3653 81848;-2049 81786;-833 81877;-865 81371 1;-1759 81408;-2585 81300;-3612 81227;-4610 81171 1;-10166 80895;-13394 80574;-19053 80127 1;-20491 80013;-21289 79842;-22700 79545;-22806 80075;-27277 79178;-27239 78832;-27519 78801;-27639 79900;-28018 79865;-32345 79469;-32776 79781 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="51">-893 81869;-369 81913;-160 81895;376 81902 1;856 81876;1271 81784;1838 81623 1;1842 81636;1846 81649;1849 81663;2534 81519;2485 81446;6321 80360;6318 80378;7535 79924;7544 79853 1;8631 79511;9259 79380;10353 79059 1;11130 78831;11723 79035;12377 79513 1;12420 79544;12461 79576;12501 79607;12779 79849 1;13377 80427;13603 81060;14061 81895;14412 82807 1;14413 82810;14414 82813;14414 82816;14830 82653 1;14445 81331;13998 80320;12996 79307 1;12141 78442;11121 78242;9961 78609 1;9405 78785;8887 78944;8394 79093;7883 79245 1;5531 79938;4031 80466;1242 81185 1;567 81359;-353 81353;-911 81373;-893 81869 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="72">29981 80952;31421 79408;31555 78074;31565 77981 1;31742 77996;32066 77999;32081 77822;32153 76846;34077 77010;34071 77079;35730 77114;35770 77016;35987 76653;35905 76329;35582 75177;35800 75150;35355 73563;33922 73405;33102 73315 1;33011 73305;32951 73224;32961 73133;33002 72773;33273 72804;33629 69476;33537 69356;33049 68693;33172 67732;34207 67861;34258 67403;33951 67355;33229 67260;33327 66523;33952 65943;34424 65998;34703 63492;34592 63466;34217 63434;33892 62981;34012 61977;34013 61830;34021 61757;34411 61807;34510 60964;35215 61051;35294 60543;32284 60260;31445 65824;29658 65562;29488 66888;30086 66933;30000 67036;30391 67442;30322 68432;29499 68355;29237 70660;29817 71375;30175 70993;30300 71014 1;30465 71028;30611 71046;30719 71054 1;31026 71077;31069 71312;31040 71601;30917 72827;30804 72982;30725 73090;30702 73121;30460 75804;30076 79555;29981 80952 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="12">28566 66791;28480 67577;29038 68031;28777 70709;29117 71128;28899 71302;29291 71764;29852 71311;29263 70589;29594 67380;30088 66945;28566 66791 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">30016 67036;30391 67438;30310 68440;29499 68361;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">29919 68197;</coords></object>
<object type="1" symbol="119"><coords count="6">30016 67036;30391 67438;30310 68440;29499 68361;29615 67387;30016 67036 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">28553 66779 32;29489 66895 32;29652 65549 32;28721 65427 32;28553 66779 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="10">28739 59676;28985 60258;29614 60145;31838 60546;31115 65284;28454 64865;28381 65366;31441 65828 32;32267 60199 32;28739 59676 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="10">28386 65333;28454 64865;31115 65284;31794 60537;29570 60171;28976 60284;28712 59715;26556 60343 32;25860 64952 32;28386 65333 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">28726 59657 32;29177 59724 32;29376 58388 32;28925 58321 32;28726 59657 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">28836 58943 1;27385 59106;26543 59282;25098 59067 1;24344 58955;23920 58895;23173 58746 1;22009 58513;21200 58135;20518 57046 1;20514 57041;20496 57001;20493 56996;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">20379 60151;21469 58721 1;21043 58497;20795 58373;20431 58058 1;20415 58831;20399 59292;20379 60151 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="8">20379 60151;21469 58721 1;21043 58497;20795 58373;20431 58058 1;20415 58831;20399 59292;20379 60151 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="69"><coords count="8">20379 60151;21469 58721 1;21043 58497;20795 58373;20431 58058 1;20415 58831;20399 59292;20379 60151 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="21">23270 58752 1;23792 58689;24074 58394;24590 58493 1;24957 58563;25161 58615;25527 58690 1;25976 58782;26245 58578;26699 58641 1;27128 58701;27446 58714;27736 59036;27610 59088 1;26796 59178;26089 59214;25098 59067 1;24549 58985;24175 58931;23723 58850;23270 58752 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">26823 58888;</coords></object>
<object type="1" symbol="64"><coords count="11">23479 59345 1;23192 59734;22927 60023;22443 60023 1;22091 60023;21899 59900;21592 59727 1;21828 59419;21984 59262;22295 59036;23479 59345 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">25120 61676;</coords></object>
<object type="0" symbol="84"><coords count="1">25429 61022;</coords></object>
<object type="1" symbol="74"><coords count="2">26562 60392;24255 60043;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">20497 56997;20580 56483;19518 56311;19421 56828;20497 56997 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">19322 58478;18250 58309;17802 58635;18886 58806;19322 58478 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">13099 57896;17605 58644;15796 60146;12796 59674 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">14827 54670;14045 54547;13597 56214;19415 57121;19463 56813;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">13981 55987;</coords></object>
<object type="1" symbol="119"><coords count="7">14827 54670;14045 54547;13597 56214;19415 57121;19463 56813;14660 56035;14827 54670 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">13197 57791 32;14292 57972 32;14430 57138 32;13335 56957 32;13197 57791 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">14328 57978 32;16089 58269 32;16232 57407 32;14471 57116 32;14328 57978 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">17512 58471;18484 57764;16238 57398;16108 58244;17512 58471 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">14270 59874;14533 58203;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-1.72051"><coords count="1">14393 59035;</coords></object>
<object type="1" symbol="64"><coords count="21">12664 60405 1;13634 60674;14227 60730;15227 60841 1;15768 60901;16105 60693;16535 60360 1;17001 60000;17236 59764;17707 59410 1;17961 59220;18172 59117;18484 59175;19804 59410;19817 57966;18484 57764;17546 58441;17432 58725;15801 60157;12796 59654;12664 60405 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="21">12651 60409 1;13621 60678;14227 60730;15227 60841 1;15768 60901;16105 60693;16535 60360 1;17001 60000;17236 59764;17707 59410 1;17961 59220;18172 59117;18484 59175;19804 59410;19817 57966;18484 57764;17546 58441;17432 58725;15801 60157;12796 59654;12651 60409 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">22481 59725;</coords></object>
<object type="0" symbol="84"><coords count="1">17089 60465;</coords></object>
<object type="0" symbol="84"><coords count="1">14696 61477;</coords></object>
<object type="0" symbol="84"><coords count="1">22073 63340;</coords></object>
<object type="0" symbol="84"><coords count="1">22160 65376;</coords></object>
<object type="0" symbol="84"><coords count="1">19211 60404;</coords></object>
<object type="0" symbol="84"><coords count="1">20926 61317;</coords></object>
<object type="1" symbol="87"><coords count="5">25922 65129;23553 64771;23541 63229;24737 62575;26144 62809;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="6">25922 65129;23553 64771;23541 63229;24737 62575;26144 62809;25922 65129 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="95"><coords count="2">18570 63558;19873 61458;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">19943 62166 1;21248 63039;21554 64400;21143 65801;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">19211 61721 1;17734 60720;15873 61384;14901 62787;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="5">21316 66303 1;22431 66128;23790 65744;24914 65844;28628 66238;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">18871 69286;</coords></object>
<object type="0" symbol="84"><coords count="1">15934 69349;</coords></object>
<object type="0" symbol="84"><coords count="1">13973 67264;</coords></object>
<object type="0" symbol="84"><coords count="1">13220 65253;</coords></object>
<object type="0" symbol="84"><coords count="1">13553 63316;</coords></object>
<object type="1" symbol="132"><coords count="4">14145 64057 1;14540 64166;14974 64026;15120 63644;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">16637 68421 1;16796 68095;16713 67727;16388 67565;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">15860 67251 1;15540 66991;15218 67109;15019 67392;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">21321 66215;17834 64908;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">17809 64760;14417 62872;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="4">14294 62859 1;13389 62298;12867 61929;12147 61144;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">17081 65758;12973 72901;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">16111 62863;</coords></object>
<object type="0" symbol="84"><coords count="1">17149 62324;</coords></object>
<object type="0" symbol="84"><coords count="1">20291 64897;</coords></object>
<object type="0" symbol="84"><coords count="1">20175 63947;</coords></object>
<object type="0" symbol="84"><coords count="1">19641 63197;</coords></object>
<object type="1" symbol="122"><coords count="4">19022 62074 1;17720 61192;16064 61799;15207 63035;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="4">19689 62479 1;20841 63250;21111 64451;20748 65688;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="4">19689 62479 1;20841 63250;21111 64451;20748 65688;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">17225 66056 1;17724 66324;18550 66145;18777 65561 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">16507 64349 1;16256 64788;16335 65505;16752 65767 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">18254 63673 1;17734 63334;17055 63416;16784 63887 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">18990 65061 1;19165 64572;18976 64098;18603 63882 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">16877 66100 1;17539 66555;18445 66387;18900 65724 1;19355 65061;19186 64156;18524 63701 1;17861 63246;16955 63414;16501 64077 1;16046 64740;16214 65646;16877 66100 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">17877 65443;</coords></object>
<object type="0" symbol="84"><coords count="1">18338 64623;</coords></object>
<object type="0" symbol="84"><coords count="1">17483 64152;</coords></object>
<object type="0" symbol="84"><coords count="1">20322 68711;</coords></object>
<object type="0" symbol="84"><coords count="1">21494 67588;</coords></object>
<object type="1" symbol="122"><coords count="16">15556 68149 1;13818 66975;13288 64686;14396 62905 1;14938 62033;15772 61404;16690 61112 1;17726 60781;18870 60879;19825 61537 1;21391 62616;22145 64381;21417 66138 1;20508 68333;17792 69442;15717 68285;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">17889 61174;19376 61797;18225 63682;18613 63909;19817 61994;20584 62809;20824 62277;20440 61754;19298 61043;17889 61174 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">16635 60901 1;17735 60508;18535 60486;19627 60901 1;19918 60376;19824 60001;19811 59401 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">21700 63605 1;21395 62652;21081 62041;20378 61329 1;21043 60365;21416 59798;22293 59017 1;23634 59436;24431 59528;25826 59659 1;26973 59767;27623 59547;28762 59375 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="28">16582 61093;16693 60880 1;17763 60507;18554 60493;19627 60901 1;19918 60376;19824 60001;19811 59401;19819 57962;20431 58058 1;20415 58831;20399 59292;20379 60151;21469 58721;22293 59017 1;21416 59798;21043 60365;20378 61329 1;21081 62041;21373 62583;21678 63536 1;21705 63619;21509 63691;21468 63614;20386 61844;19295 61181;17463 60945;16582 61093 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">21139 67064 1;21365 66753;21793 66529;22171 66461;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="7">21049 66954;21234 66947;21517 66707;21751 66577;22079 66420;21326 66435;21049 66954 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">20661 67045 1;20303 66908;20254 66532;20425 66208;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">20415 66213;21043 66440;20642 67029;20552 66990 1;20305 66830;20275 66521;20408 66242;20415 66213 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">16020 68222;16639 68453;16662 68361 1;16804 68043;16705 67723;16388 67565;16020 68222 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="9">15025 67427;15352 67746;15509 67868;15871 67266;15791 67201 1;15525 67029;15264 67108;15080 67315;15025 67427 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">14424 63246;14223 63721;14127 64057;14215 64074 1;14590 64149;14983 64003;15120 63644;14424 63246 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">12521 61096 1;12617 60465;12683 60113;12804 59486;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">19804 59410;19817 57966;16230 57423 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="25">28909 58282;28830 58919;28699 58959 1;28345 59000;28026 59041;27725 59075;27680 58978 1;27405 58712;27100 58697;26699 58641 1;26245 58578;25976 58782;25527 58690 1;25161 58615;24957 58563;24590 58493 1;24074 58394;23792 58689;23270 58752;23024 58715 1;21934 58478;21163 58084;20508 57031;20534 56982;28909 58282 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="69"><coords count="25">28909 58282;28830 58919;28699 58959 1;28345 59000;28026 59041;27725 59075;27680 58978 1;27405 58712;27100 58697;26699 58641 1;26245 58578;25976 58782;25527 58690 1;25161 58615;24957 58563;24590 58493 1;24074 58394;23792 58689;23270 58752;23024 58715 1;21934 58478;21163 58084;20508 57031;20534 56982;28909 58282 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="41">28761 59381;28734 59686;27982 59928;26556 60343 32;26204 62673;25841 62759;24737 62575;23541 63229;23553 64771;25740 65102;26015 64975;28386 65333;28734 65426;28692 65915;28325 65906;24565 65514;23998 65531;23440 65610;22943 65697;22419 65802;21695 65924;21783 65697;21844 64694;21111 62740;20265 61309;21477 59669;21642 59756 1;21921 59913;22111 60023;22443 60023 1;22927 60023;23192 59734;23479 59345;23619 59367 1;24307 59510;24948 59577;25826 59659 1;26861 59756;27492 59587;28442 59426;28761 59381 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="43">28764 59373;28832 58948;28386 58996 1;27196 59139;26387 59259;25098 59067 1;24344 58955;23920 58895;23173 58746 1;22009 58513;21200 58135;20518 57046 1;20514 57041;20496 57001;20493 56996;19447 56846;19410 57105;13582 56215;13277 56930;16234 57410;18513 57786;19817 57978;20436 58069;20520 58133 1;20838 58394;21078 58516;21469 58721;21444 58754;22261 59046 1;22271 59036;22282 59027;22293 59017 1;22970 59228;23508 59357;24054 59448;24314 59490 1;24769 59557;25246 59605;25826 59659 1;26769 59747;27376 59615;28195 59469;28764 59373 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="5">13071 58077;12775 59508;15718 60002;17309 58719;13071 58077 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="32">19629 60887;19740 60714;19833 60467;19858 60159;19821 59400;19529 59361;18484 59175 1;18172 59117;17961 59220;17707 59410 1;17236 59764;17001 60000;16535 60360 1;16105 60693;15768 60901;15227 60841 1;14227 60730;13656 60678;12686 60409;12635 60391;12524 61082;12901 61497;13420 61907;14162 62430;14397 62557;14697 62163;15437 61496;16461 60954;17368 60695;18231 60627;19040 60707;19629 60887 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">19101 65065;20613 65632;20884 64602;20452 63214;19552 62524;18700 63745;19034 64417;19101 65065 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">16696 63782;17448 63406;18367 63548;19058 62326;18633 62042;17510 61746;16548 61987;15740 62573;15419 63073;16696 63782 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="17">15133 63638;16379 64310;16607 65914;15849 67277;15779 67193 1;15487 67012;15201 67133;15019 67392;14658 66969;14152 66210;13937 64872;14066 64051;14228 64077 1;14538 64134;14857 64042;15033 63804;15133 63638 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="18">16402 67553;17149 66239;18944 65641;20418 66227;20374 66324 1;20274 66605;20339 66899;20624 67029;20215 67751;18845 68583;17291 68713;16618 68479;16659 68372;16662 68361 1;16787 68080;16725 67798;16490 67627;16402 67553 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">12453 66111;13983 66043;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">24592 66129;24311 68912;22502 70401;22498 71162;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">24156 67263 1;23755 67315;23346 67513;23353 67917 1;23360 68315;23538 68560;23850 68807;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="12">24452 67280;24156 67263 1;23755 67315;23346 67513;23353 67917 1;23360 68315;23538 68560;23850 68807;24176 69023;24311 68912;24432 67716;24452 67280 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="7">22996 70735;24688 69487;24906 67228;25220 67263;25072 69592;23423 70813;22996 70735 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">24802 66434;24831 66144;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">22503 71180;23066 70700;24679 69487;24915 67245;24740 67228;24793 66434;24798 66180;24814 66069;24637 66091;24615 66187;24302 68911;22492 70417;22503 71180 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">18985 70625;21658 70945;22093 71488;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="135"><coords count="2">18966 70947;19752 71027;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="135"><coords count="2">20335 71080;21116 71166;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="80"><coords count="9">19042 70479 1;19850 70091;20571 69845;21407 69448 1;21630 69342;21823 69287;22036 69411;22215 69516;22135 70583;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">22555 71151;21943 70388;21134 70299;21078 70811;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">21219 70838;21699 70881;22187 71498;22477 71226;21947 70418;21243 70388;21219 70838 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">21818 69795;</coords></object>
<object type="0" symbol="84"><coords count="1">20188 70384;</coords></object>
<object type="1" symbol="64"><coords count="15">19087 70516;20942 70702;20998 70115;22003 70227;22120 70387;22159 70258;22215 69516;22036 69411 1;21823 69287;21632 69346;21407 69448 1;20583 69821;19915 70069;19121 70460;19087 70516 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">22589 69888;</coords></object>
<object type="1" symbol="123"><coords count="2">18626 71270;17894 68708;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">19022 70471;18688 70431;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="6">18646 70453;19034 70496;18960 71353;18368 71285;18436 70681;18646 70453 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="6">18940 71358;21906 71681;22007 71624;21562 71036;19001 70787;18940 71358 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="32">18076 68820;18608 70478;19044 70521;19271 70387 1;20000 70037;20635 69797;21407 69448 1;21632 69346;21823 69287;22036 69411;22215 69516;22159 70258;22120 70387;22525 70896;22500 70722;22502 70401;24188 69013;24042 68934;23850 68807 1;23538 68560;23360 68315;23353 67917 1;23346 67513;23755 67315;24156 67263;24452 67280;24636 66072;22857 66160;21339 66578;20484 67651;18983 68585;18076 68820 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="9">13209 71829;15329 68218;13880 66325;12467 66412;12485 66534 1;12610 67976;12828 69385;13101 71112;13209 71829 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="9">12431 65794;13783 65759;14098 63055;12423 61833;12413 61974 1;12354 63228;12354 64307;12403 65326;12431 65794 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="7">21191 65327 1;20829 65279;20512 65207;20179 65082 1;19555 64848;20065 63831;19211 63277;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="7">15328 62465 1;15701 62701;15848 62948;16279 63041 1;16914 63179;17358 62303;18495 62901;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-0.184543"><coords count="1">17910 62799;</coords></object>
<object type="0" symbol="3" rotation="-1.02638"><coords count="1">19572 63766;</coords></object>
<object type="1" symbol="132"><coords count="13">29708 52233 1;29487 52197;29278 52347;29241 52568 1;29204 52789;29354 52999;29576 53035 1;29797 53072;30006 52922;30043 52701 1;30080 52479;29930 52270;29708 52233 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">29640 52634;</coords></object>
<object type="0" symbol="84"><coords count="1">27802 52372;</coords></object>
<object type="0" symbol="84"><coords count="1">25964 52110;</coords></object>
<object type="0" symbol="84"><coords count="1">24125 51848;</coords></object>
<object type="0" symbol="84"><coords count="1">22287 51586;</coords></object>
<object type="1" symbol="132"><coords count="13">27867 51967 1;27646 51931;27437 52081;27400 52302 1;27363 52523;27513 52733;27735 52769 1;27956 52806;28165 52656;28202 52435 1;28239 52213;28089 52004;27867 51967 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">26029 51705 1;25808 51669;25599 51819;25562 52040 1;25525 52261;25675 52471;25897 52507 1;26118 52544;26327 52394;26364 52173 1;26401 51951;26251 51742;26029 51705 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">24191 51446 1;23970 51410;23761 51560;23724 51781 1;23687 52002;23837 52212;24059 52248 1;24280 52285;24489 52135;24526 51914 1;24563 51692;24413 51483;24191 51446 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">22353 51187 1;22132 51151;21923 51301;21886 51522 1;21849 51743;21999 51953;22221 51989 1;22442 52026;22651 51876;22688 51655 1;22725 51433;22575 51224;22353 51187 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">18636 50480 1;18415 50444;18206 50594;18169 50815 1;18132 51036;18282 51246;18504 51282 1;18725 51319;18934 51169;18971 50948 1;19008 50726;18858 50517;18636 50480 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">18570 50879;</coords></object>
<object type="0" symbol="84"><coords count="1">16648 50555;</coords></object>
<object type="1" symbol="132"><coords count="13">16714 50156 1;16493 50120;16284 50270;16247 50491 1;16210 50712;16360 50922;16582 50958 1;16803 50995;17012 50845;17049 50624 1;17086 50402;16936 50193;16714 50156 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">15642 48243;</coords></object>
<object type="0" symbol="84"><coords count="1">16740 45874;</coords></object>
<object type="0" symbol="84"><coords count="1">17776 43703;</coords></object>
<object type="1" symbol="132"><coords count="2">21328 49367;22212 49389;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="13">21642 48941 1;21410 49009;21277 49253;21345 49485 1;21413 49718;21657 49851;21889 49783 1;22122 49714;22255 49471;22187 49238 1;22118 49006;21875 48873;21642 48941 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">21777 49799;21777 48941;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="8">31053 56194;29745 56008;29647 56655;30959 56855;31202 56893 32;31305 56236 32;31053 56196 32;31053 56194 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="21">15269 51817;14966 53695;15968 53853;16207 52514;29511 54595;29352 55593;29204 55603;29154 55895;29299 55928;29197 56571;29068 56557;28994 56829;29149 56870;28919 58319;30685 58597 32;30959 56855;29647 56655;29745 56008;31053 56194;31343 54350 32;15269 51817 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="21">28924 58287;29151 56857;29001 56834;29040 56552;29197 56570;29301 55916;29156 55891;29202 55596;29348 55619;29511 54595;16212 52492 32;15996 53860 32;14756 53664 32;14655 54306 32;14890 54343 32;14624 56035 32;19428 56792;19518 56311;20573 56477;20504 56961;28924 58287 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">13110 51834;13893 49891;14880 50114;18409 42613;17750 42303;19088 40077 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">14438 50028;18014 42428;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">12413 57281;13437 53630;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="21">11809 57794 1;11580 57740;11459 57715;11243 57668 1;11052 57627;10940 57420;10995 57232 1;11375 55932;11629 55215;12080 53938 1;12351 53173;12558 52729;12907 51996 1;12957 51891;13036 51791;13141 51841 1;13229 51883;13194 51992;13178 52088;12876 54013;11809 57794 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">12753 52887;</coords></object>
<object type="0" symbol="84"><coords count="1">12235 54750;</coords></object>
<object type="0" symbol="84"><coords count="1">11643 56811;</coords></object>
<object type="1" symbol="64"><coords count="21">11809 57794 1;11580 57740;11459 57715;11243 57668 1;11052 57627;10940 57420;10995 57232 1;11375 55932;11629 55215;12080 53938 1;12351 53173;12558 52729;12907 51996 1;12957 51891;13036 51791;13141 51841 1;13229 51883;13194 51992;13178 52088;12876 54013;11809 57794 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="21">11809 57794 1;11580 57740;11459 57715;11243 57668 1;11052 57627;10940 57420;10995 57232 1;11375 55932;11629 55215;12080 53938 1;12351 53173;12558 52729;12907 51996 1;12957 51891;13036 51791;13141 51841 1;13229 51883;13194 51992;13178 52088;12876 54013;11809 57794 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">12469 57270;13228 57411;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">12598 56999;13276 57122;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="36">11811 57821;13085 58082;13320 56931;13617 56207;14053 54549;14847 54697;14890 54392;14655 54305;14760 53668;14986 53668;15283 51819;31398 54369;32013 51363;22204 49339 1;22214 49538;22088 49724;21889 49783 1;21657 49851;21413 49718;21345 49485 1;21317 49390;21323 49292;21356 49206;18409 42613;17980 42411;17941 42583;14438 50028;13881 49895;13123 51844;13191 51895 1;13210 51948;13189 52021;13178 52088;12876 54013;11892 57500;11811 57821 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">11740 59432 1;11467 59390;11313 59368;11040 59326 1;10772 59285;10542 59496;10501 59764;11640 59938;11740 59432 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">10214 62912 32;11304 62956 32;11326 62405 32;10236 62361 32;10214 62912 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">10273 66023 32;11399 65935 32;11355 65366 32;10229 65454 32;10273 66023 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">10371 67283 32;11497 67195 32;11453 66626 32;10327 66714 32;10371 67283 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">7595 67542 32;8721 67454 32;8677 66885 32;7551 66973 32;7595 67542 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">7497 66282 32;8623 66194 32;8579 65625 32;7453 65713 32;7497 66282 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">7418 64121 32;8469 64112 32;8464 63520 32;7413 63529 32;7418 64121 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">8015 58374;8558 58466 1;8829 58512;8942 58766;8965 59040;7947 58876;8015 58374 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">8350 56931 1;8546 56971;8644 56991;8832 57031 1;9117 57091;9406 56926;9467 56641;9546 56273;8546 56058;8350 56931 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">8890 54923 1;9345 55042;9939 55121;10120 54687;11193 51931;10042 51747 1;9536 52924;9219 53592;8890 54923 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">9529 54297;</coords></object>
<object type="1" symbol="64"><coords count="9">8890 54923 1;9345 55042;9939 55121;10120 54687;11193 51931;10042 51747 1;9536 52924;9219 53592;8890 54923 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="9">8890 54923 1;9345 55042;9939 55121;10120 54687;11193 51931;10042 51747 1;9536 52924;9219 53592;8890 54923 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">10801 50399 1;11121 50440;11473 50483;11793 50529;11885 50353 1;11945 50238;11841 50114;11721 50065;11054 49789;10801 50399 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">12301 47242 32;13121 47643 32;13354 47166 32;12534 46765 32;12301 47242 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">13630 44523 32;14450 44924 32;14683 44447 32;13863 44046 32;13630 44523 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">15149 41439;15978 41884 1;16088 41650;16024 41369;15795 41247;15364 41018;15149 41439 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">16117 39536;16335 39100;17113 39489 1;16997 39720;16715 39808;16484 39693;16117 39536 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">7544 61667 32;8531 61753 32;8578 61217 32;7591 61131 32;7544 61667 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">10799 70408 32;11909 70235 32;11817 69640 32;10706 69813 32;10799 70408 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">8150 71012 32;9198 70876 32;9123 70291 32;8075 70427 32;8150 71012 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">11256 72888 32;12379 72666 32;12494 73250 32;11371 73472 32;11256 72888 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">8900 74578;9862 73925;9763 73456;8727 73715;8900 74578 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">9973 74800 1;10090 75579;9880 76125;9369 76725;9122 75442;9973 74800 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">8234 77021;8172 76738;7691 76540;6951 77095;7173 77317;8234 77021 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">8234 77021;8172 76738;7691 76540;6951 77095;7173 77317;8234 77021 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">9591 75602;</coords></object>
<object type="0" symbol="84"><coords count="1">9270 73900;</coords></object>
<object type="0" symbol="84"><coords count="1">11874 73110;</coords></object>
<object type="0" symbol="84"><coords count="1">11269 70026;</coords></object>
<object type="0" symbol="84"><coords count="1">8629 70667;</coords></object>
<object type="0" symbol="84"><coords count="1">8123 67226;</coords></object>
<object type="0" symbol="84"><coords count="1">7975 65943;</coords></object>
<object type="0" symbol="84"><coords count="1">10788 65671;</coords></object>
<object type="0" symbol="84"><coords count="1">10899 66967;</coords></object>
<object type="0" symbol="84"><coords count="1">7939 63833;</coords></object>
<object type="0" symbol="84"><coords count="1">10764 62661;</coords></object>
<object type="0" symbol="84"><coords count="1">8037 61465;</coords></object>
<object type="0" symbol="84"><coords count="1">11171 59639;</coords></object>
<object type="0" symbol="84"><coords count="1">8420 58677;</coords></object>
<object type="0" symbol="84"><coords count="1">8938 56641;</coords></object>
<object type="1" symbol="64"><coords count="5">10214 62912 32;11304 62956 32;11326 62405 32;10236 62361 32;10214 62912 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">8015 58374;8558 58466 1;8829 58512;8942 58766;8965 59040;7947 58876;8015 58374 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">7595 67542 32;8721 67454 32;8677 66885 32;7551 66973 32;7595 67542 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">8150 71012 32;9198 70876 32;9123 70291 32;8075 70427 32;8150 71012 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="9">11740 59432 1;11467 59390;11313 59368;11040 59326 1;10772 59285;10542 59496;10501 59764;11640 59938;11740 59432 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">7544 61667 32;8531 61753 32;8578 61217 32;7591 61131 32;7544 61667 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">8900 74578;9862 73925;9763 73456;8727 73715;8900 74578 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">7418 64121 32;8469 64112 32;8464 63520 32;7413 63529 32;7418 64121 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">10273 66023 32;11399 65935 32;11355 65366 32;10229 65454 32;10273 66023 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="10">8350 56931 1;8546 56971;8644 56991;8832 57031 1;9117 57091;9406 56926;9467 56641;9546 56273;8546 56058;8350 56931 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">11256 72888 32;12379 72666 32;12494 73250 32;11371 73472 32;11256 72888 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">9973 74800 1;10090 75579;9880 76125;9369 76725;9122 75442;9973 74800 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">10799 70408 32;11909 70235 32;11817 69640 32;10706 69813 32;10799 70408 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">10371 67283 32;11497 67195 32;11453 66626 32;10327 66714 32;10371 67283 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">7497 66282 32;8623 66194 32;8579 65625 32;7453 65713 32;7497 66282 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">12251 72681 1;12080 71734;11963 71206;11814 70255;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">11709 69653 1;11576 68704;11505 68171;11395 67219;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">11231 65374 1;11148 64425;11059 63880;11107 62932;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">11156 62377 1;11215 61403;11277 60855;11464 59897;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">7700 61117 1;7761 60241;7908 59762;8058 58896;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">7626 61660 1;7586 62378;7494 62779;7503 63498;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">7491 64115 1;7508 64727;7516 65071;7552 65682;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">7676 67521 1;7809 68655;7860 69302;8145 70408;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">8243 70987 1;8419 72049;8559 72637;8724 73701;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="10">6977 51467 1;8839 52036;9988 52514;11165 54066 33;11801 54905;12147 55481;12543 56456;12595 56648;12543 56980;13346 57119;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="10">14619 60103 1;14761 60546;15167 60696;15631 60731 1;16399 60789;16971 60276;17741 60276 1;18239 60276;18378 60760;18440 61254;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="2.70814"><coords count="1">11182 54066;</coords></object>
<object type="0" symbol="3" rotation="1.51117"><coords count="1">18392 60856;</coords></object>
<object type="1" symbol="105"><coords count="4">6008 56653;3143 56295 32;2976 57631 32;5841 57989 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="5">6200 58320;6915 58407 1;6553 60578;6524 61895;6469 64095;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">5404 56575;5245 57848;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">4201 56506;4050 57712;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="1.45081"><coords count="1">5413 57271;</coords></object>
<object type="0" symbol="3" rotation="1.45081"><coords count="1">4236 57114;</coords></object>
<object type="1" symbol="115"><coords count="5">5961 56653 32;5794 57990 32;3005 57641 32;3172 56304 32;5961 56653 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">6502 65933;6600 67450;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">6695 54827 32;7583 54938 32;7658 54335 32;6770 54224 32;6695 54827 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">7890 53848 32;8282 50848 32;8916 50931 32;8524 53931 32;7890 53848 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">3806 70539;</coords></object>
<object type="0" symbol="84"><coords count="1">3143 69580;</coords></object>
<object type="0" symbol="84"><coords count="1">2340 72302;</coords></object>
<object type="0" symbol="84"><coords count="1">6056 72511;</coords></object>
<object type="0" symbol="84"><coords count="1">6999 71517;</coords></object>
<object type="1" symbol="67"><coords count="13">910 70906 1;664 70737;328 70800;160 71046 1;-9 71291;54 71627;299 71796 1;545 71964;881 71902;1050 71656 1;1218 71410;1156 71075;910 70906 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="13">910 70906 1;664 70737;328 70800;160 71046 1;-9 71291;54 71627;299 71796 1;545 71964;881 71902;1050 71656 1;1218 71410;1156 71075;910 70906 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">6705 67411 1;6879 69327;7415 71897;7964 74690;6991 74534;7136 73632;5649 73393;5381 75064;4675 74950 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">6038 76435 32;6576 76525 32;6662 76013 32;6124 75923 32;6038 76435 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">3570 75319 32;4546 75483 32;4633 74964 32;3657 74800 32;3570 75319 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">2793 75982 32;3331 76072 32;3417 75560 32;2879 75470 32;2793 75982 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">3648 77317 32;4186 77407 32;4272 76895 32;3734 76805 32;3648 77317 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">4075 76541 32;4613 76631 32;4699 76119 32;4161 76029 32;4075 76541 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">5061 76026 32;5599 76116 32;5685 75604 32;5147 75514 32;5061 76026 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">1615 74944 32;2153 75034 32;2239 74522 32;1701 74432 32;1615 74944 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="33"><coords count="1">2021 76714;</coords></object>
<object type="0" symbol="32"><coords count="1">1898 77566;</coords></object>
<object type="0" symbol="84"><coords count="1">5151 74718;</coords></object>
<object type="0" symbol="84"><coords count="1">5377 75817;</coords></object>
<object type="0" symbol="84"><coords count="1">6346 76218;</coords></object>
<object type="0" symbol="84"><coords count="1">4392 76314;</coords></object>
<object type="0" symbol="84"><coords count="1">3964 77117;</coords></object>
<object type="0" symbol="84"><coords count="1">3092 75765;</coords></object>
<object type="0" symbol="84"><coords count="1">1932 74735;</coords></object>
<object type="1" symbol="132"><coords count="2">-2415 73726;3648 74755;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-165 74110;</coords></object>
<object type="0" symbol="143"><coords count="1">-993 77896;</coords></object>
<object type="1" symbol="71"><coords count="2">3940 72946;7714 73587;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="6">7157 73590;6996 74540;7940 74688;7841 74004;7730 73498;7157 73590 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="14">2247 74505 1;2331 74119;1994 73722;1602 73668 1;1192 73612;906 73788;494 73755 1;-295 73692;-702 73600;-1487 73502 1;-1703 73475;-1882 73595;-1958 73799;2247 74505 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="22">2237 74251 1;2178 73959;1906 73710;1602 73668 1;1225 73616;952 73761;590 73759 33;559 73759;527 73758;494 73755 1;227 73734;4 73709;-205 73682 33;-440 73651;-736 73609;-978 73573 33;-1155 73547;-1267 73529;-1487 73502 1;-1587 73490;-1696 73525;-1773 73569;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-2696 76398 32;-2458 74740 32;-1872 74824 32;-2110 76482 32;-2696 76398 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-6564 77359;</coords></object>
<object type="1" symbol="107"><coords count="2">-2381 78104;-2147 76472;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-2905 77403;-3002 78073;-14342 77354;-14835 77761;-16032 77675;-16427 77182;-16253 75527;-11011 76256;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-14343 77328 1;-13803 77017;-13459 76749;-12838 76797 1;-12453 76827;-12237 76843;-11852 76873 1;-11430 76906;-11039 76670;-10962 76254;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="14">-14861 77735;-14602 75724;-10950 76230;-11030 76456 1;-11178 76745;-11504 76900;-11852 76873 1;-12237 76843;-12453 76827;-12838 76797 1;-13459 76749;-13803 77017;-14343 77328;-14861 77735 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="9">-16266 75489;-14574 75733;-14618 75850;-14859 77721;-14941 77753;-16032 77675;-16427 77182;-16274 75731;-16266 75489 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-16035 77669 1;-16444 77640;-16792 77299;-16741 76892;-16569 75438;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="4">-16308 77096;-15916 77549;-14887 77611;-14389 77210;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="16">-14375 77341;-3025 78069;-2902 77415;-10982 76243;-11003 76380;-11030 76456 1;-11178 76745;-11504 76900;-11852 76873 1;-12237 76843;-12453 76827;-12838 76797 1;-13438 76751;-13779 76999;-14288 77296;-14375 77341 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="16">-14375 77341;-3025 78069;-2902 77415;-10982 76243;-11003 76380;-11030 76456 1;-11178 76745;-11504 76900;-11852 76873 1;-12237 76843;-12453 76827;-12838 76797 1;-13438 76751;-13779 76999;-14288 77296;-14375 77341 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="23">-29859 60374;-31107 69630;-31354 71627 1;-31512 72856;-30780 74572;-29347 75500 1;-27197 76892;-25507 76772;-22997 77280 1;-20895 77706;-19710 78030;-17568 78145;-17028 78174;-14771 78297;-14302 77878;-3064 78621 1;-100 78818;1815 78174;4814 77529;5031 77735;5240 77689;5327 77421;6958 77113 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">8235 77011;9364 76746;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="36">-2993 78060;-3055 78622 1;-142 78814;1775 78192;4813 77546;5045 77730;5264 77702;5327 77421;6951 77095;7691 76540;8172 76738;8234 77021;8456 76959;9364 76746;9346 76603;9122 75442;9995 74778;9869 73896;8900 74578;8732 73741;7723 73469 1;7802 73870;7883 74278;7964 74690;6991 74534;7136 73632;5649 73393;5381 75064;4675 74950;-2388 73717;-2536 74753;-2316 74760;-1872 74824 32;-2110 76482 32;-2696 76398 32;-2993 78060 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10060 54782;9528 56283;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="128">13101 58090;11793 57819;11569 57739 1;11466 57716;11371 57696;11243 57668 1;11052 57627;10940 57420;10995 57232 1;11375 55932;11629 55215;12080 53938 1;12321 53257;12512 52831;12797 52228;11182 51960;10120 54687 1;10101 54733;10077 54773;10049 54808;10006 54935;9528 56283;9515 56416;9467 56641 1;9406 56926;9117 57091;8832 57031 1;8644 56991;8546 56971;8350 56931;7410 56793;6003 56522;5793 58181;6242 58210;7026 58303;8026 58373;8280 58419;8558 58466 1;8829 58512;8942 58766;8965 59040;8813 59016;8054 58893;8037 59012 1;7895 59807;7758 60281;7700 61117;7722 61142;8578 61217 32;8531 61753 32;7634 61675;7619 61781 1;7576 62425;7495 62820;7503 63498;7555 63528;8464 63520 32;8469 64112 32;7502 64120;7495 64258 1;7509 64784;7519 65120;7552 65682;7625 65700;8579 65625 32;8623 66194;8679 66914;8721 67454 32;7699 67534;7683 67583 1;7811 68679;7865 69322;8145 70408;8273 70401;9123 70291 32;9198 70876 32;8253 70999;8268 71138 1;8433 72107;8567 72689;8724 73701;8822 73691;9763 73456;9862 73925;11377 73500;11256 72888 32;12237 72694;12229 72560 1;12070 71687;11957 71165;11814 70255;11587 70285;10799 70408 32;10706 69813 32;11714 69656;11698 69574 1;11572 68674;11502 68144;11395 67219;11306 67210;10371 67283 32;10301 66705;10258 66024;10229 65454 32;11236 65375;11207 65114 1;11133 64321;11064 63793;11107 62941;10976 62943;10214 62912 32;10236 62361 32;11157 62398;11162 62283 1;11219 61367;11283 60824;11464 59897;11328 59890;10501 59764 1;10542 59496;10772 59285;11040 59326 1;11313 59368;11467 59390;11740 59432;11739 59436;12832 59508;13101 58090 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="66">12802 59496;11747 59410;11719 59538;11640 59938;11450 59909;11437 60036 1;11277 60880;11216 61414;11162 62283;11157 62398;11217 62401;11326 62405 32;11304 62956 32;11099 62948;11101 63073 1;11071 63849;11137 64363;11207 65114;11236 65375;11229 65376;11253 65374;11355 65366 32;11399 65935 32;10242 66036 32;10292 66713;10396 66709;11453 66626 32;11497 67195 32;11410 67202;11429 67507 1;11521 68288;11590 68804;11709 69653;11781 69646;11817 69640 32;11909 70235 32;11809 70251;11827 70340 1;11970 71238;12085 71763;12251 72681;12320 72678;12379 72666 32;12493 73247;13379 72894;13221 71947;13187 71815;13139 71347 1;12803 69232;12562 67591;12448 65832 1;12447 65822;12432 65823;12431 65813 1;12417 65598;12405 65380;12396 65159;12375 64491 1;12358 63691;12339 62838;12386 61885;12493 61087 1;12570 60581;12656 60263;12738 59830;12802 59496 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">13219 71853 1;12881 69722;12612 68074;12472 66385 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">12432 65830 1;12355 64639;12343 63387;12417 61885 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="11">-16256 75510;-16562 75458;-16584 75565;-16741 76892 1;-16791 77295;-16451 77633;-16047 77668;-16137 77544;-16427 77182;-16263 75621;-16256 75510 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="12">-16056 77665;-16065 78215;-15933 78234;-14771 78297;-14302 77878;-11554 78060;-3004 78636;-2930 78056;-3113 78066;-14342 77354;-14835 77761;-16056 77665 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="34">17578 104752;23132 105569 1;22763 105305;22461 104852;22337 104315;21900 102429;22306 101777;22215 101478;19971 91566;19244 91090;19172 90835;19114 90628;19072 90478;19007 90303;18914 89917;17055 83300;15158 83734 1;16261 87288;16745 89560;17695 93348 1;17716 93431;17737 93514;17757 93595;18069 94834 1;18687 97287;19130 99041;19768 101837 1;20006 102881;19606 103868;18644 104339 1;18333 104491;18085 104628;17818 104703;17578 104752 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="27">29148 59749;32254 60211;32245 60333;35272 60595;35586 56469;35595 56286 1;35595 56282;35596 56277;35596 56272 1;35634 55753;36086 55363;36606 55401 1;36651 55404;36695 55411;36738 55420;37314 52002;31951 51351;31336 54369;31326 54367;31050 56180;31303 56233;31224 56861;30980 56878;30926 57064;30685 58597 32;29369 58390;29148 59749 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">19018 90371;19607 90436;19672 90397;19236 89084;18573 86942;18102 87008;18835 89669;19018 90371 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="4">-18490 76733;-18558 77210;-20271 76966;-20203 76485;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">-18099 75226 32;-18391 77262 32;-20425 76970 32;-20133 74934 32;-18099 75226 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-18341 76763;-18126 75261;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-20356 76475;-20141 74973;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-20453 77083;-21518 76942;-19777 63792;-19685 61052 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-20053 67087;-19871 65710;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-20135 74957;-20425 77091;-21548 76950;-19773 63763;-19694 61032;-19363 58599;-18042 58800;-20135 74957 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-23707 74049;-24683 73918;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-30771 73235;-29833 72809;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-30071 72681;-29814 70681;-30825 70570 1;-30928 71507;-31000 72251;-30769 73000 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="20">-30619 73392 1;-30539 73567;-30441 73744;-30320 73926 1;-29067 75811;-26827 76167;-24805 76418 1;-24665 76435;-24587 76446;-24447 76467 1;-24099 76520;-23710 76383;-23657 76035 1;-23563 75418;-23510 75072;-23416 74455 1;-23367 74131;-23529 73859;-23855 73827;-29796 73026 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-29955 73637;</coords></object>
<object type="1" symbol="62"><coords count="8">-30084 72699;-29813 70688;-30837 70583;-30912 71523 1;-30940 72047;-30916 72523;-30769 73000;-30084 72699 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="22">-29794 73007;-29679 73040;-23864 73819 1;-23538 73851;-23367 74131;-23416 74455 1;-23510 75072;-23563 75418;-23657 76035 1;-23710 76383;-24099 76520;-24447 76467 1;-24587 76446;-24665 76435;-24805 76418 1;-26827 76167;-29067 75811;-30320 73926 1;-30441 73744;-30539 73567;-30619 73392;-29794 73007 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-29590 69164 32;-29443 68070 32;-30453 67935 32;-30600 69029 32;-29590 69164 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-29270 66586 32;-29018 64702 32;-29991 64572 32;-30243 66456 32;-29270 66586 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-29554 65019;</coords></object>
<object type="0" symbol="84"><coords count="1">-29813 68585;</coords></object>
<object type="1" symbol="62"><coords count="5">-29270 66586 32;-29018 64702 32;-29991 64572 32;-30243 66456 32;-29270 66586 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-29590 69164 32;-29443 68070 32;-30453 67935 32;-30600 69029 32;-29590 69164 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-26371 72507 32;-25529 72620 32;-25566 72898 32;-26408 72785 32;-26371 72507 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-25353 64906 32;-24511 65019 32;-24548 65297 32;-25390 65184 32;-25353 64906 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="63">-16042 78236;-16024 77674;-16182 77645 1;-16523 77556;-16786 77249;-16741 76892;-16569 75438;-18127 75219;-18135 75324;-18341 76763;-18460 77323;-20434 77076;-20662 77061;-21548 76950;-19773 63763;-19694 61032;-20366 60927;-20970 60848 32;-22576 65568 32;-23558 72896 32;-25577 72626;-25543 72726;-25566 72898 32;-26408 72785 32;-26371 72507 32;-26620 72486;-28440 72242 32;-27462 64943;-29018 64702 32;-29270 66586 32;-30243 66456;-30453 67935 32;-29443 68070 32;-29590 69164 32;-30631 69023;-30862 70564;-29814 70681;-30012 72225;-30029 72629;-30026 72704;-29791 72995;-29721 73010;-29595 73051;-23864 73819 1;-23538 73851;-23367 74131;-23416 74455 1;-23510 75072;-23563 75418;-23657 76035 1;-23708 76373;-24077 76512;-24417 76471;-24666 76995 1;-24145 77074;-23594 77159;-22997 77280 1;-20895 77706;-19710 78030;-17568 78145;-17028 78174;-16521 78202;-16042 78236 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="34">-24609 77011;-24369 76468;-25449 76334 1;-27287 76075;-29199 75613;-30320 73926 1;-30388 73823;-30450 73722;-30504 73621;-30633 73445;-30677 73347;-30792 73057;-30808 72974;-30815 72836 1;-30921 72414;-30937 71987;-30912 71523;-30837 70583;-30581 69031;-30600 69029 32;-30453 67935;-30224 66458;-30232 66371;-29991 64572;-30421 64544;-31107 69630;-31354 71627 1;-31512 72856;-30780 74572;-29347 75500 1;-27853 76468;-26580 76705;-25100 76930;-24609 77011 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="41">-22404 57890 32;-25224 57517 32;-22878 39763 32;-20057 40136 32;-20080 40309;-19762 40351 32;-19889 41318 32;-20208 41276;-20347 42328;-20028 42370 32;-20230 43908 32;-20550 43866;-20693 44944;-20372 44986 32;-20499 45953 32;-20820 45911;-20854 46166;-20533 46208 32;-20660 47175 32;-20982 47132;-21121 48184;-20799 48227 32;-21001 49765 32;-21324 49722;-21467 50800;-21143 50843 32;-21270 51810 32;-21595 51767;-21632 52050;-21307 52093 32;-21434 53060 32;-21760 53017;-21899 54069;-21573 54112 32;-21775 55650 32;-22102 55607;-22245 56685;-21917 56728 32;-22044 57695 32;-22372 57652;-22404 57890 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-22369 57928;-22056 57971;-19663 40159;-20032 40108;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">-22369 57928;-22057 57971;-19664 40159;-20032 40108;-22369 57928 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">-18024 53979;</coords></object>
<object type="0" symbol="83"><coords count="1">-16698 43249;</coords></object>
<object type="0" symbol="83"><coords count="1">-16035 38172;</coords></object>
<object type="1" symbol="67"><coords count="11">-18127 58615 1;-18489 58524;-18527 58095;-18476 57725 1;-18364 56907;-18157 56471;-18075 55649 1;-18050 55403;-17921 55160;-17674 55160;-18127 58615 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="10">-18383 58436 1;-18504 58255;-18511 57976;-18476 57725 1;-18364 56907;-18157 56471;-18075 55649 1;-18064 55541;-18033 55434;-17981 55348;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="9">-17871 53214 1;-17901 53083;-17908 52944;-17897 52801;-15146 32013;-15122 31907 1;-15080 31777;-14998 31666;-14891 31594 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-21403 39907;-20932 36424;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-20710 58407;-22087 58225;-22048 57931;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-22027 57678;-22079 58210;-18188 58812;-13656 25400;-19175 24563;-21306 40001;-19678 40174;-22027 57678 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-27131 62305 32;-27303 63618 32;-26420 63733 32;-26248 62420 32;-27131 62305 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-26985 62329;-27158 63655;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-27349 60849;</coords></object>
<object type="1" symbol="123"><coords count="2">-27065 62039;-29628 61705;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">-29496 61423;-29409 60652;-26794 59850;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">-27318 63569;-29736 63230;-29582 62039;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-27281 63538;-26794 59899;-29379 60682;-29724 63224;-27281 63538 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-27304 63634;-29816 63298 32;-29641 61993 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-29565 61428;-29453 60588 32;-26799 59785 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-24888 54877;-27359 54551;-27852 58284;-25220 57529;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-25769 55802;</coords></object>
<object type="1" symbol="120"><coords count="29">-30419 64563;-29992 64563;-28988 64720;-27453 64964;-27399 64922;-25368 65194;-25369 65028;-25353 64906 32;-24511 65019 32;-24548 65297 32;-24296 65338;-22576 65568;-22498 65549;-20963 60882;-20614 58422;-22088 58212;-22045 57986;-25246 57549;-27863 58300;-29469 60620;-26756 59809;-25334 59992;-25648 62469;-26258 62391;-26263 62537;-26420 63733 32;-27203 63631;-30228 63185;-30419 64563 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">-30243 63224;-29828 63272;-29662 61994;-29580 61392;-29370 60585;-29322 60450;-29867 60393;-30243 63224 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="48">-54524 27770 1;-54957 29584;-55234 30593;-55659 32409 1;-56302 35157;-56421 36759;-56596 39576 1;-56752 42092;-56777 43536;-56399 46029 1;-56053 48311;-55710 49581;-54931 51753 1;-54115 54030;-53583 55289;-52480 57442 1;-51705 58956;-51171 59758;-50194 61150 1;-49246 62502;-48590 63177;-47411 64333 1;-45909 65805;-44928 66490;-43197 67684 1;-42685 68037;-42192 68186;-42055 68792;-41758 70109;-37274 72978 1;-36934 73188;-36758 73484;-36793 73883 1;-36863 74068;-36910 74266;-36929 74473 1;-37045 75711;-36135 76808;-34897 76924 1;-33658 77040;-32561 76130;-32445 74891 1;-32377 74152;-32673 73464;-33186 73004 1;-33205 72986;-33311 72859;-33331 72842 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-33370 76491 1;-33602 76164;-33807 75853;-33623 75497 1;-33408 75082;-32956 75105;-32489 75113;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="45">-32480 74336 1;-32887 74404;-33331 74389;-33483 74005 1;-33622 73654;-33636 73367;-33548 73044 1;-33522 72948;-33323 72896;-33305 72747;-32241 64765;-33327 63371;-28007 24759;-26550 23363;-25869 18111 1;-25715 16920;-26491 15603;-27691 15634;-29681 15685;-30421 16871;-34757 16869 1;-36651 16868;-37714 16868;-39608 16867 1;-42037 16866;-43386 16497;-45775 16058;-46045 14671;-49421 13825 1;-50599 13530;-51909 14034;-52204 15212 1;-52799 17588;-53270 18883;-53905 21249 1;-54012 21648;-53906 21931;-53696 22287 1;-53564 22511;-53555 22525;-53423 22748 1;-53131 23242;-53431 23757;-53582 24311;-54524 27770 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">-34941 73552 1;-35461 73581;-35859 74026;-35830 74546 1;-35802 75067;-35356 75465;-34836 75436 1;-34316 75407;-33917 74962;-33946 74442 1;-33975 73921;-34420 73523;-34941 73552 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-34217 76867 1;-34368 76435;-34637 76157;-35089 76082 1;-35558 76004;-35862 76064;-36293 76265;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-36877 75192 1;-36569 75024;-36417 74757;-36441 74407 1;-36458 74155;-36561 73998;-36764 73848;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-33076 73647;</coords></object>
<object type="0" symbol="84"><coords count="1">-33187 75683;</coords></object>
<object type="0" symbol="84"><coords count="1">-35173 76436;</coords></object>
<object type="0" symbol="84"><coords count="1">-36703 74499;</coords></object>
<object type="0" symbol="84"><coords count="1">-34956 74851;</coords></object>
<object type="0" symbol="84"><coords count="1">-35756 71942;</coords></object>
<object type="0" symbol="84"><coords count="1">-38124 71375;</coords></object>
<object type="0" symbol="84"><coords count="1">-41480 67682;</coords></object>
<object type="0" symbol="84"><coords count="1">-42340 69427;</coords></object>
<object type="0" symbol="84"><coords count="1">-33535 66983;</coords></object>
<object type="1" symbol="122"><coords count="2">-39813 65383;-41418 65197;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="3">-38275 65550;-35642 65855;-35404 63803;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="14">-38289 65716;-38443 67013;-37411 67135;-37722 69758;-38650 69648;-38847 71314;-36367 72843 1;-35318 73489;-33726 72632;-33555 71412;-32757 65717;-33457 65619;-33379 65059;-35298 64792 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-40755 69887;-40587 68228;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-40005 70288;-39820 68457;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-41165 69250;</coords></object>
<object type="0" symbol="84"><coords count="1">-40415 67968;</coords></object>
<object type="1" symbol="120"><coords count="18">-39804 65187;-38233 65366;-38290 65763;-38310 65889;-38443 67013;-37411 67135;-37722 69758;-38650 69648;-38847 71314;-40939 70046;-40945 69982;-40770 68246;-39554 67941;-39352 65949;-39857 65898;-39825 65575;-39856 65562;-39804 65187 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-33093 65381;</coords></object>
<object type="1" symbol="62"><coords count="19">-32458 74330;-32587 74352 1;-32962 74399;-33344 74356;-33483 74005 1;-33622 73654;-33636 73367;-33548 73044 1;-33526 72963;-33380 72913;-33325 72809;-33302 72872 1;-33263 72916;-33200 72991;-33186 73004 1;-32836 73318;-32586 73739;-32485 74209;-32458 74330 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="13">-32484 75124;-32597 75111 1;-33025 75104;-33425 75114;-33623 75497 1;-33807 75853;-33602 76164;-33370 76491;-33264 76427 1;-32913 76141;-32649 75750;-32520 75296;-32484 75124 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="18">-34953 75446;-34909 75437 1;-34885 75438;-34861 75437;-34836 75436 1;-34316 75407;-33917 74962;-33946 74442 1;-33975 73921;-34420 73523;-34941 73552 1;-35461 73581;-35859 74026;-35830 74546 1;-35807 74969;-35509 75311;-35118 75409;-34953 75446 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-34220 76886;-34238 76809 1;-34393 76410;-34658 76154;-35089 76082 1;-35558 76004;-35862 76064;-36293 76265;-36216 76336 1;-35865 76660;-35409 76876;-34897 76924 1;-34700 76942;-34507 76935;-34321 76904;-34220 76886 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-36898 75185;-36790 75139 1;-36541 74970;-36419 74722;-36441 74407 1;-36458 74155;-36561 73998;-36764 73848;-36825 73973 1;-36877 74132;-36913 74299;-36929 74473 1;-36949 74682;-36939 74887;-36903 75084;-36898 75185 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="77">-34231 76865;-34251 76778 1;-34407 76397;-34669 76152;-35089 76082 1;-35528 76009;-35822 76057;-36211 76228;-36298 76255 1;-36551 75996;-36740 75678;-36846 75326;-36877 75192 1;-36569 75024;-36417 74757;-36441 74407 1;-36456 74184;-36538 74036;-36697 73901;-36790 73841 1;-36775 73555;-36873 73323;-37063 73139;-36698 72639;-36367 72843 1;-35342 73474;-33799 72671;-33569 71496;-33551 71421;-33132 71482;-33325 72809 1;-33380 72913;-33526 72963;-33548 73044 1;-33636 73367;-33622 73654;-33483 74005 1;-33344 74356;-32962 74399;-32587 74352;-32461 74339 1;-32434 74518;-32428 74703;-32445 74890 1;-32448 74926;-32452 74960;-32457 74994;-32489 75113 1;-32956 75105;-33408 75082;-33623 75497 1;-33790 75820;-33636 76106;-33433 76401;-33357 76500 1;-33578 76661;-33828 76783;-34097 76856;-34231 76865 18;-34953 75446;-34909 75437 1;-34885 75438;-34861 75437;-34836 75436 1;-34316 75407;-33917 74962;-33946 74442 1;-33975 73921;-34420 73523;-34941 73552 1;-35461 73581;-35859 74026;-35830 74546 1;-35807 74969;-35509 75311;-35118 75409;-34953 75446 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="31">-37030 73167;-36646 72670;-36878 72528;-38847 71314;-38835 71210;-40937 69898;-40949 70018;-41418 69722;-41554 68932 1;-41649 68394;-41867 68067;-42319 67760 1;-43741 66794;-44548 66256;-45859 65144 1;-46306 64765;-46679 64432;-47020 64106;-47324 64418 1;-45870 65832;-44894 66513;-43197 67684 1;-42685 68037;-42192 68186;-42055 68792;-41758 70109;-37274 72978 1;-37252 72991;-37231 73005;-37211 73020;-37030 73167 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="8">-41397 85580 1;-40377 83183;-39817 81832;-38920 79386 1;-38666 78694;-38754 78071;-38864 77342;-39934 77512;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-41338 77712;-42053 77782;-42803 77677;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-39933 77348;-41382 77566;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-42762 77507;-43052 77483;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-43071 77470 32;-43001 76869 32;-43289 76835 32;-43359 77437 32;-43071 77470 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="5">-41208 85517;-41919 85424 32;-41827 84720 32;-41751 84145;-44228 83819;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-44228 85084;-44087 84009;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="15">-41988 86947 1;-42603 88438;-42948 89275;-43563 90766 1;-44027 91892;-45115 92188;-46333 92198 1;-47315 92206;-47892 91962;-48740 91466 1;-49196 91199;-49322 90871;-49595 90419;-52166 86162;-51896 83888;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-52055 89948;</coords></object>
<object type="0" symbol="84"><coords count="1">-50241 92757;</coords></object>
<object type="0" symbol="84"><coords count="1">-56853 94519;</coords></object>
<object type="0" symbol="84"><coords count="1">-59340 91022;</coords></object>
<object type="0" symbol="84"><coords count="1">-60848 90814;</coords></object>
<object type="0" symbol="84"><coords count="1">-68413 89168;</coords></object>
<object type="0" symbol="84"><coords count="1">-69904 88924;</coords></object>
<object type="0" symbol="84"><coords count="1">-68648 85062;</coords></object>
<object type="0" symbol="84"><coords count="1">-68909 86877;</coords></object>
<object type="0" symbol="84"><coords count="1">-64286 87540;</coords></object>
<object type="0" symbol="84"><coords count="1">-59732 88046;</coords></object>
<object type="0" symbol="84"><coords count="1">-59400 85691;</coords></object>
<object type="0" symbol="84"><coords count="1">-63920 85019;</coords></object>
<object type="1" symbol="132"><coords count="25">-64876 94038 32;-65034 93892 1;-65152 93955;-65288 93986;-65431 93976 1;-65847 93949;-66162 93590;-66134 93174 1;-66128 93088;-66109 93007;-66077 92931;-66640 92410 32;-66313 92055 32;-65759 92566 1;-65632 92498;-65486 92461;-65332 92471 1;-64917 92498;-64602 92858;-64629 93273 1;-64635 93369;-64659 93460;-64698 93543;-64549 93683 32;-64876 94038 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-60472 84361;-57931 84768;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-65080 83623;-62539 84030;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-69867 84536;-67326 84943;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-70435 88842;-67894 89249;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-65920 89952;-63379 90359;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-61405 90717;-58864 91124;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-69011 89056 32;-68382 84775 32;-68825 84710 32;-69454 88991 32;-69011 89056 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-64467 90187 32;-63539 83868 32;-63982 83803 32;-64910 90122 32;-64467 90187 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-59913 90946 32;-58982 84609 32;-59425 84544 32;-60356 90881 32;-59913 90946 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-65406 93173;</coords></object>
<object type="1" symbol="120"><coords count="25">-64876 94038 32;-65034 93892 1;-65152 93955;-65288 93986;-65431 93976 1;-65847 93949;-66162 93590;-66134 93174 1;-66128 93088;-66109 93007;-66077 92931;-66640 92410 32;-66313 92055 32;-65759 92566 1;-65632 92498;-65486 92461;-65332 92471 1;-64917 92498;-64602 92858;-64629 93273 1;-64635 93369;-64659 93460;-64698 93543;-64549 93683 32;-64876 94038 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-62736 94494;</coords></object>
<object type="0" symbol="84"><coords count="1">-64550 94383;</coords></object>
<object type="0" symbol="84"><coords count="1">-51644 86198;</coords></object>
<object type="1" symbol="132"><coords count="2">-51252 85805;-51943 85717;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-51386 87114;-51232 85794;-52003 85713;-52015 86170;-51386 87114 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="5">-44846 87871;-43077 88096;-43002 87509 32;-42931 86948;-41874 87082;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">-52025 85715;-44610 86649;-44802 87870;-43136 88070;-42909 86875;-41845 87067;-41252 85654;-42080 85532;-41897 84171;-44244 83935;-44436 85026;-51833 84066;-52025 85715 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="19">-51445 87154;-43056 88215;-42871 86956;-42057 87166;-42228 87529 1;-42703 88681;-43033 89480;-43563 90766 1;-44027 91892;-45115 92188;-46333 92198 1;-47315 92206;-47892 91962;-48740 91466 1;-49196 91199;-49322 90871;-49595 90419;-51420 87398;-51445 87154 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-51741 82708;-50658 74656;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="6">-50572 74021;-49934 69287 1;-48724 70263;-48067 70794;-46821 71724;-46917 72440 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="20">-51542 66781 1;-49716 68611;-47958 70192;-45671 71828;-44781 72403;-42915 71985 1;-41690 72790;-40863 73069;-39800 74079 1;-38827 75003;-38423 75775;-38139 77086 1;-37953 77952;-37779 78530;-38104 79354;-44786 95616 1;-45261 96773;-46178 97514;-47426 97429;-49444 97291 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="156"><coords count="10">-42749 92268;-43712 92225;-44445 92941;-46155 93255;-47673 93133;-49138 92557;-50307 92348;-51563 92488;-53081 93238;-53780 97739;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="14">-53780 97739;-46923 98280;-44690 97286;-42764 92267;-43712 92225;-44445 92941;-46155 93255;-47673 93133;-49138 92557;-50307 92348;-51563 92488;-53081 93238;-53735 97450;-53780 97739 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-49444 97291;-60008 96439;-66307 95408 1;-66912 95289;-67263 94521;-67197 93908;-66919 91718;-66532 91789 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-54925 94297 1;-55057 94915;-54927 95736;-54297 95789 1;-53950 95818;-53755 95835;-53408 95864;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-57127 96661 1;-56415 96728;-56063 96149;-55351 96217 1;-54650 96284;-54256 96322;-53555 96389;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="10"><coords count="3">-69872 93675;-70822 94132;-73499 93836;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-69959 92984;</coords></object>
<object type="0" symbol="84"><coords count="1">-73290 92479;</coords></object>
<object type="1" symbol="105"><coords count="2">-92629 96005;-89125 83520;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="101"><coords count="2">-91750 91081;-92750 90790;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="101"><coords count="2">-92646 94157;-93646 93866;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-69596 94589;-80305 93899 1;-81343 93832;-81937 93808;-82946 93553;-84661 93072;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-91089 91196;-85766 92749;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="44">-91301 91599;-86350 93034 1;-85856 92967;-85478 92618;-85426 92109;-85377 91529;-85908 91159;-85735 88951;-85118 88729 1;-84789 87113;-84507 86216;-83872 84694;-83150 82923;-82346 83216 1;-82993 84795;-82987 84420;-83527 86039 1;-83872 87075;-84070 87669;-84206 88753 1;-84382 90151;-84508 90931;-84662 92331 1;-84719 92847;-84729 93300;-84303 93628 1;-82566 94135;-81470 94340;-79599 94445 1;-76055 94643;-74055 94818;-70511 95015 1;-69832 95053;-69341 94446;-69243 93774;-68922 91578 1;-68892 91372;-69099 91238;-69305 91208;-69459 92265;-73842 91626;-73636 90214;-74087 90148;-73211 83927 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">-91259 91601;-91128 91164;-91031 91213;-85766 92749;-85885 92867 1;-86020 92953;-86178 93011;-86350 93034;-91130 91648;-91259 91601 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="21">-84679 93076;-84650 93109 1;-84600 93304;-84497 93479;-84303 93628 1;-82566 94135;-81470 94340;-79599 94445 1;-76055 94643;-74055 94818;-70511 95015 1;-70144 95036;-69833 94868;-69608 94604;-69729 94580;-80305 93899 1;-81343 93832;-81937 93808;-82946 93553;-84557 93101;-84679 93076 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-53213 93155 1;-53579 93222;-53791 93247;-54163 93229;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-53978 92526 1;-53096 92338;-52636 92096;-51794 91773 1;-51087 91502;-50620 91423;-49870 91526 1;-49330 91600;-49006 91593;-48500 91798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-54257 87639;</coords></object>
<object type="1" symbol="132"><coords count="10">-55664 92833;-55125 92951;-54408 90147 1;-54043 88559;-53438 87764;-53212 86150 1;-53068 85119;-53520 83686;-54549 83524;-55664 92833 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">-55664 92833;-55125 92951;-54408 90147 1;-54043 88559;-53438 87764;-53212 86150 1;-53068 85119;-53494 83677;-54523 83515;-55664 92833 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="14">-66609 91774;-64191 92243;-64352 93279;-57394 94870;-57110 93772;-55499 94157 1;-55692 94932;-56029 95757;-56813 95694;-59989 95440;-59938 94803;-61501 94677;-61556 95361;-67017 94803 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-54937 94276;-54465 94386;-54157 93205 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="49">-38719 77164;-38135 77102 1;-37951 77959;-37781 78535;-38104 79354;-38964 81447;-39164 81933;-43376 92184;-43711 92225;-43712 92225;-44445 92941;-46155 93255;-47673 93133;-49138 92557;-50307 92348;-51563 92488;-53077 93236;-53344 93178 1;-53635 93228;-53838 93245;-54163 93229;-53952 92520 1;-53087 92333;-52628 92093;-51794 91773 1;-51087 91502;-50620 91423;-49870 91526 1;-49350 91597;-49030 91593;-48554 91776;-47989 91864 1;-47483 92092;-47002 92203;-46333 92198 1;-45115 92188;-44027 91892;-43563 90766 1;-42972 89332;-42630 88503;-42058 87116;-41179 85066 1;-40293 82978;-39751 81652;-38920 79386 1;-38745 78908;-38732 78463;-38778 77994;-38719 77164 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-48598 91751;-49357 90904;-52306 86167;-52350 86283;-53981 92530;-53880 92504 1;-53061 92320;-52605 92084;-51794 91773 1;-51087 91502;-50620 91423;-49870 91526 1;-49436 91585;-49141 91592;-48778 91700;-48598 91751 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="17">-53565 95853;-53146 93140;-53361 93181 1;-53643 93228;-53844 93244;-54163 93229;-54228 93479;-54465 94386;-54937 94276;-54948 94423 1;-55038 95021;-54885 95740;-54297 95789 1;-54093 95806;-53941 95819;-53780 95833;-53565 95853 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">-56906 96699;-56730 96703;-53718 96946;-53683 96377 1;-54307 96317;-54694 96280;-55351 96217 1;-55943 96161;-56286 96551;-56793 96646;-56906 96699 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="24">-55683 94106;-55685 94113;-55499 94157 1;-55692 94932;-56029 95757;-56813 95694;-59989 95440;-59938 94803;-61501 94677;-61556 95361;-67017 94803;-67139 94512 1;-67197 94312;-67218 94102;-67197 93908;-66919 91718;-66532 91789;-66250 91844;-64191 92243;-64352 93279;-57394 94870;-57110 93772;-56385 93945;-55683 94106 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="35">-67028 94797;-67002 94845 1;-66847 95128;-66609 95349;-66307 95408;-60008 96439;-56998 96682;-56750 96637 1;-56266 96529;-55926 96163;-55351 96217 1;-54694 96280;-54307 96317;-53683 96377;-53683 96382;-53582 95851;-53780 95833 1;-53941 95819;-54093 95806;-54297 95789 1;-54885 95740;-55038 95021;-54948 94423;-54937 94276;-55499 94157 1;-55692 94932;-56029 95757;-56813 95694;-59989 95440;-59938 94803;-61501 94677;-61556 95361;-61690 95347;-66856 94815;-67028 94797 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-76008 91985;</coords></object>
<object type="1" symbol="66"><coords count="28">-75228 93291 1;-77983 93042;-79508 92722;-82259 92437 1;-82707 92391;-82900 92125;-83236 91826 1;-83621 91483;-83864 91305;-84161 90884 1;-84286 90706;-83965 90330;-83794 90465 1;-83324 90835;-83144 91143;-82660 91494 1;-82119 91885;-81664 91821;-81003 91913 1;-78781 92222;-77521 92289;-75298 92594 1;-75092 92622;-74883 92736;-74896 92943 1;-74908 93130;-75041 93308;-75228 93291 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">-83550 87168;</coords></object>
<object type="0" symbol="83"><coords count="1">-82084 87011;</coords></object>
<object type="0" symbol="84"><coords count="1">-84034 76532;</coords></object>
<object type="0" symbol="84"><coords count="1">-86146 83421;</coords></object>
<object type="1" symbol="105"><coords count="2">-89235 84099;-87498 84587;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="11">-87668 85103;-80421 61579;-76374 47910;-71316 30194;-65172 8505;-59447 -11679;-54759 -28605;-49800 -48418;-48147 -55326;-47228 -58797;-46252 -61219;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-45691 -63260;-44075 -71981;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">-89524 91166;-89436 90850 32;-88781 91033 32;-88869 91349 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-87309 91382;</coords></object>
<object type="1" symbol="105"><coords count="2">-91382 91752;-88956 92433;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-91820 93629;-88652 94518;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="5">-77361 51461;-72728 52857 32;-66987 62087 32;-76551 73000 32;-83003 70224;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="25">-73679 61705 1;-72733 62257;-72446 62426;-71500 62978 1;-71121 63199;-70664 63226;-70381 62891 1;-70030 62476;-69834 62243;-69483 61828 1;-69153 61437;-69266 60969;-69509 60519 1;-70151 59329;-70512 58663;-71154 57473 1;-71522 56791;-72953 56747;-73138 57500 1;-73450 58770;-73625 59481;-73937 60751 1;-74013 61060;-73954 61545;-73679 61705 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="22">-73749 63973 1;-74330 63689;-75223 63675;-75371 64304 1;-75547 65051;-75645 65469;-75821 66216 1;-75973 66862;-75818 67499;-75232 67811 1;-74678 68106;-74170 68178;-73627 67864 1;-72699 67328;-72322 66809;-71585 66032 1;-71290 65721;-71596 65214;-71969 65002 1;-72667 64605;-73028 64326;-73749 63973 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-0.509438"><coords count="1">-72423 62350;</coords></object>
<object type="0" symbol="3" rotation="2.61409"><coords count="1">-70381 58826;</coords></object>
<object type="0" symbol="3" rotation="2.62764"><coords count="1">-73138 64217;</coords></object>
<object type="0" symbol="3" rotation="-0.531724"><coords count="1">-75214 67794;</coords></object>
<object type="1" symbol="119"><coords count="6">-77361 51461;-72728 52857 32;-66987 62087 32;-76551 73000 32;-83003 70224;-77361 51461 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-72175 69963;-73717 69756;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">-83163 82922;-78743 72220;-76535 73231 1;-78128 75477;-79286 76599;-80458 79091;-82328 83203;-83163 82922 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-90079 88255;-89703 86917;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-90079 88255;-89703 86917;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="26">-88051 84594 1;-88146 84922;-88093 85321;-87767 85420 1;-87472 85510;-87140 85382;-87051 85087 1;-85960 81467;-85242 79471;-84130 75857;-76711 51895 1;-76127 49978;-75343 48702;-73440 48088 1;-72567 47806;-71873 48673;-71417 49469 1;-70364 51308;-69639 52258;-68542 54071 1;-67722 55426;-67248 56178;-66387 57508 1;-64778 59994;-63890 61403;-62113 63772 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="20">-88582 84391 1;-88626 85039;-88509 85871;-87881 86035 1;-87435 86152;-86698 85916;-86492 85504;-75934 52024 1;-75535 50760;-74867 50033;-73560 49687 1;-72236 49336;-71651 50921;-70891 52060 1;-69371 54340;-68622 55622;-67158 57939 1;-65593 60416;-64703 61832;-62936 64151 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="20">-89594 85560 1;-88921 85805;-88640 86606;-87954 86812 1;-87269 87017;-86197 86495;-85931 85831;-75105 52329 1;-74917 51748;-74414 51220;-73931 50938 1;-72629 50178;-71668 51968;-71085 52927 1;-69643 55302;-68950 56703;-67471 59055 1;-66102 61233;-65312 62453;-63685 64446 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="11">-90286 88098 1;-89148 88430;-88463 88559;-87322 88882 1;-86567 89096;-85929 88658;-85540 87976 1;-84303 85808;-84142 84329;-83316 81974;-73359 52712 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="7">-89951 86854 1;-89611 86949;-89413 86978;-89078 87090 1;-88542 87269;-87299 87760;-86442 87043;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="31">-90957 90399 1;-90070 90648;-89571 90781;-88687 91040 1;-87875 91278;-87409 91373;-86590 91583 1;-85333 91905;-83972 91508;-83530 90288 1;-83261 89544;-83213 89093;-83073 88314 1;-82961 87693;-82236 87484;-81618 87611 1;-80736 87792;-80256 87959;-79372 88129 1;-78850 88229;-78956 88932;-79056 89454 1;-79311 90784;-79449 91785;-79597 92840 1;-79704 93605;-79273 94424;-79437 95393 1;-79607 96396;-80316 97000;-80974 97776;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="1.44887"><coords count="1">-79461 95405;</coords></object>
<object type="0" symbol="3" rotation="2.92459"><coords count="1">-80729 87797;</coords></object>
<object type="1" symbol="92"><coords count="2">-76733 81155;-78879 79575;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="22">-78619 78786;-78718 78763 1;-79068 78598;-79173 78168;-79070 77778 1;-78889 77094;-78851 76584;-78302 76138 1;-78009 75900;-77815 75663;-77458 75664;-77522 75782 1;-77827 76138;-78000 76485;-78268 77045 1;-78511 77552;-78538 77936;-78600 78459 1;-78605 78504;-78610 78549;-78614 78592;-78619 78786 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="8">-76744 81032 1;-77115 80647;-77413 80327;-77336 79798 1;-77243 79158;-77119 78552;-76337 78601;-76744 81032 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="66">-76914 89342;-76937 89326 1;-77062 85543;-80322 84664;-81651 84424 1;-82231 84319;-82633 84072;-82371 83322;-82262 83085 1;-81990 82816;-81640 82809;-81391 82471 1;-80918 81829;-80883 81311;-80361 80709 1;-79927 80208;-79515 80114;-79000 79697 1;-78605 79377;-78660 78964;-78600 78459 1;-78538 77936;-78511 77552;-78268 77045 1;-77908 76293;-77720 75925;-77152 75405 1;-76935 75206;-76718 75166;-76426 75202 1;-76055 75247;-75697 75534;-75772 75900;-76357 78600 1;-77121 78563;-77244 79164;-77336 79798 1;-77413 80327;-77115 80647;-76744 81032;-76749 81081;-76767 81142 1;-76805 81483;-76862 81672;-76862 82015 1;-76862 82279;-76719 82415;-76539 82608 1;-76153 83020;-76020 83323;-75641 83742 1;-75370 84042;-75423 84361;-75467 84763 1;-75654 86483;-75658 87491;-75729 89220 1;-75735 89358;-75992 89465;-76130 89465 1;-76375 89465;-76513 89465;-76758 89465 1;-76836 89465;-76911 89420;-76914 89342 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">-73788 82631;-73926 83656;-73152 83760;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-73030 83284 32;-71684 83464 32;-71609 82901 32;-72954 82721 32;-73030 83284 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-71762 82901;-72199 86143;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="27">-84331 89762 1;-84220 89970;-84106 90113;-83875 90157 1;-83692 90192;-83479 90164;-83430 89984;-83314 89584 1;-83216 89186;-83164 88819;-83073 88314 1;-83038 88120;-82943 87966;-82810 87850 1;-82775 87820;-82832 87769;-82875 87751 1;-83280 87580;-83836 87408;-84059 87787 1;-84155 88231;-84160 88384;-84206 88753 1;-84247 89078;-84285 89370;-84322 89644;-84331 89762 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="42">-78965 88982 1;-78773 89336;-78812 89758;-78422 89858 1;-78194 89916;-77978 89673;-77990 89438 1;-78002 89205;-78013 89071;-78077 88846;-78129 88666 1;-78320 87576;-78215 87613;-79039 86692 1;-79751 85897;-82597 84618;-83464 85784;-83497 85950 1;-83507 85979;-83517 86009;-83527 86039 1;-83758 86731;-83922 87226;-84047 87802;-83923 87641 1;-83656 87465;-83213 87608;-82875 87751 1;-82855 87759;-82832 87775;-82817 87792;-82696 87765 1;-82403 87580;-81991 87534;-81618 87611 1;-80736 87792;-80256 87959;-79372 88129 1;-79032 88194;-78958 88515;-78976 88875;-78965 88982 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="13">-79324 90777 1;-79259 90404;-79414 90066;-79669 90021 1;-79925 89977;-80184 90244;-80249 90617 1;-80314 90990;-80159 91328;-79903 91372 1;-79648 91416;-79388 91150;-79324 90777 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="16">-73619 84308 1;-74312 85219;-75022 85695;-75102 86837 1;-75245 88878;-75236 90027;-75294 92072 1;-75304 92425;-75640 92669;-75992 92647 1;-76995 92584;-77209 92532;-78208 92421 1;-78751 92361;-78993 91913;-78905 91374;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-1.61363"><coords count="1">-75219 89202;</coords></object>
<object type="1" symbol="64"><coords count="97">-75582 86052;-74958 86150 1;-75033 86354;-75084 86578;-75102 86837 1;-75245 88878;-75236 90027;-75294 92072 1;-75300 92279;-75418 92449;-75586 92549;-75704 92540 1;-77682 92280;-78920 92203;-81003 91913 1;-81186 91888;-81353 91874;-81511 91860;-81812 91826 1;-82100 91784;-82367 91705;-82660 91494 1;-83144 91143;-83324 90835;-83794 90465 1;-83917 90368;-84118 90535;-84174 90703;-84294 89829 1;-84193 90001;-84080 90118;-83875 90157 1;-83692 90192;-83479 90164;-83430 89984;-83314 89584 1;-83216 89186;-83164 88819;-83073 88314 1;-83038 88120;-82943 87966;-82810 87850 1;-82806 87846;-82803 87842;-82801 87838;-82585 87704 1;-82305 87571;-81946 87544;-81618 87611 1;-80736 87792;-80256 87959;-79372 88129 1;-78953 88209;-78939 88679;-79001 89131;-78859 89240 1;-78767 89518;-78719 89782;-78422 89858 1;-78194 89916;-77978 89673;-77990 89438 1;-78002 89205;-78013 89071;-78077 88846;-78129 88666 1;-78320 87576;-78215 87613;-79039 86692 1;-79751 85897;-82597 84618;-83464 85784;-83378 85604 1;-83020 84585;-82941 84616;-82501 83586;-82449 83661 1;-82492 84151;-82133 84337;-81651 84424 1;-80322 84664;-77062 85543;-76937 89326;-76914 89342 1;-76911 89420;-76836 89465;-76758 89465 1;-76513 89465;-76375 89465;-76130 89465 1;-75992 89465;-75735 89358;-75729 89220 1;-75685 88154;-75667 87362;-75615 86508;-75582 86052 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="16">-83104 70145;-79773 71601;-79893 71914;-83316 81974 1;-84142 84329;-84303 85808;-85540 87976 1;-85929 88658;-86567 89096;-87322 88882 1;-88463 88559;-89148 88430;-90286 88098;-89347 84135;-87496 84604;-83104 70145 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">-84821 85878;-84320 84432;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="29">-91150 91176;-85746 92767;-85648 92656 1;-85527 92508;-85448 92322;-85426 92109;-85377 91529;-85908 91159;-85735 88951;-85118 88729 1;-84789 87113;-84507 86216;-83872 84694;-83150 82923;-83043 82631;-78743 72220;-79761 71720;-79974 72151;-83316 81974 1;-84142 84329;-84303 85808;-85540 87976 1;-85929 88658;-86567 89096;-87322 88882 1;-88463 88559;-89148 88430;-90286 88098;-91150 91176 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="28">-85762 92773;-84637 93096;-84683 92920 1;-84700 92737;-84685 92539;-84662 92331 1;-84508 90931;-84382 90151;-84206 88753 1;-84070 87669;-83872 87075;-83527 86039 1;-82987 84420;-82993 84795;-82346 83216;-83150 82923;-83872 84694 1;-84507 86216;-84789 87113;-85118 88729;-85735 88951;-85908 91159;-85377 91529;-85426 92109 1;-85448 92329;-85532 92519;-85659 92669;-85762 92773 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="84">-73972 83139;-74052 83731;-73213 83873;-73235 84099;-74087 90148;-73636 90214;-73842 91626;-69459 92265;-69305 91208 1;-69099 91238;-68892 91372;-68922 91578;-69243 93774 1;-69289 94092;-69424 94396;-69625 94623;-69779 94577;-80305 93899 1;-81343 93832;-81937 93808;-82946 93553;-84557 93101;-84679 93076;-84687 92633 1;-84683 92535;-84673 92434;-84662 92331 1;-84550 91316;-84453 90627;-84342 89793;-84288 89874;-84174 90703;-84131 90926 1;-83847 91317;-83608 91495;-83236 91826 1;-82900 92125;-82707 92391;-82259 92437 1;-79508 92722;-77983 93042;-75228 93291 1;-75041 93308;-74908 93130;-74896 92943 1;-74883 92736;-75092 92622;-75298 92594 1;-75400 92580;-75501 92566;-75599 92553;-75482 92472 1;-75371 92371;-75299 92233;-75294 92072 1;-75236 90027;-75245 88878;-75102 86837 1;-75084 86578;-75033 86354;-74958 86150;-75021 86140;-75203 86112;-75582 86052;-75582 86057;-75573 85887 1;-75545 85540;-75511 85171;-75467 84763 1;-75423 84361;-75370 84042;-75641 83742 1;-76020 83323;-76153 83020;-76539 82608 1;-76719 82415;-76862 82279;-76862 82015 1;-76862 81672;-76805 81483;-76767 81142;-76752 81090;-73754 81570;-73972 83139 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="47">-73746 81653;-72228 70085;-73781 69859;-76572 73069;-76581 73296 1;-78150 75499;-79297 76623;-80458 79091;-82328 83203;-81998 82896 1;-81787 82781;-81564 82706;-81391 82471 1;-80918 81829;-80883 81311;-80361 80709 1;-79927 80208;-79515 80114;-79000 79697 1;-78686 79443;-78656 79130;-78627 78759;-78769 78736 1;-79078 78555;-79168 78148;-79070 77778 1;-78889 77094;-78851 76584;-78302 76138 1;-78009 75900;-77815 75663;-77458 75664;-77275 75521 1;-77236 75483;-77195 75444;-77152 75405 1;-76935 75206;-76718 75166;-76426 75202 1;-76055 75247;-75697 75534;-75772 75900;-76339 78518;-76360 78740;-76744 81032;-76642 81252;-73746 81653 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-69771 80469 32;-54436 82530 32;-54571 83532 32;-69906 81471 32;-69771 80469 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="46">-69625 94594;-67022 94804;-67093 94649 1;-67185 94410;-67223 94147;-67197 93908;-66919 91718;-66532 91789;-66164 91860;-64191 92243;-64352 93279;-62001 93816;-57411 94866;-57078 93755;-55499 94138;-55116 92953;-55258 92922;-55664 92833;-54549 83524;-55038 83469;-69906 81471 32;-69970 81863;-70096 82802 32;-71597 82600 32;-71638 82904 32;-71714 82894;-71997 83422;-73030 83284 32;-73728 83166;-73850 83602;-73204 83689;-73224 83986;-73235 84099;-74087 90148;-73636 90214;-73842 91626;-69459 92265;-69305 91208 1;-69099 91238;-68892 91372;-68922 91578;-69243 93774 1;-69281 94034;-69378 94285;-69522 94492;-69625 94594 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="23">-37968 77915;-35909 78543;-34761 79913;-35085 80277 1;-35333 80584;-35547 80919;-35699 81278;-39217 89588;-40476 92684;-42113 93224;-43264 96139 1;-43483 96694;-43150 97321;-42635 97620;-46526 97336 1;-45733 97103;-45138 96474;-44786 95616;-38104 79354 1;-37935 78925;-37901 78562;-37933 78191;-37968 77915 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="17">-47343 102112 1;-46920 101139;-47696 99845;-48756 99791 1;-50544 99700;-51541 99468;-53275 99023 1;-54372 98742;-55023 98742;-56154 98674 1;-63131 98255;-67030 97834;-74001 97320 1;-77287 97077;-79185 96668;-82375 96036;-88705 94683;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="52">23987 105832;23679 108312;22769 108209;19118 107811;5369 106325;4505 105239;-4626 104316;-7560 105479;-18485 104438;-20987 102981;-31707 102152;-33229 101315;-35903 101084;-35754 99008 1;-35676 99021;-35595 99032;-35511 99038;-30338 99432;-30258 98381;-28290 98530;-28371 99603;-26204 99767;-26115 98594;-21733 98925;-21425 99305;-21513 100284;-10566 101461;1904 102646;1982 101714;3893 101875;3805 102919;5000 103020;5083 102040;9773 102439;9673 103615;10155 103656;10255 102476;13746 102772;13968 103187;13926 103536;13818 104312;14879 104442;17152 104746 1;17432 104783;17657 104755;17874 104687;22927 105396 1;23161 105627;23438 105777;23719 105812;23758 105817;23987 105832 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="21">-35693 99020;-35865 101081;-36284 101051;-40739 100665;-40700 99592;-39960 99654 1;-39807 99667;-39689 99535;-39676 99382 1;-39659 99185;-39812 99017;-40009 99000;-40663 98963;-40632 97872 1;-39952 97908;-39324 97943;-38465 97989 1;-37430 98045;-36905 98692;-36028 98945;-35693 99020 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="31">-40703 100659;-40624 99598;-40700 99592;-40663 98963;-40591 98967;-40562 97876 1;-40585 97874;-40609 97873;-40632 97872;-40779 97864 1;-41168 97843;-41581 97820;-42067 97794 1;-42323 97780;-42569 97681;-42774 97527;-43241 97492;-42901 98862;-42847 98827 1;-42792 98797;-42728 98783;-42661 98790;-42032 98827;-42081 99506;-42723 99444 1;-42802 99436;-42869 99399;-42918 99345;-43241 100458;-42683 100511;-40703 100659 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="72">-43206 100449;-42877 99383 1;-42892 99371;-42906 99359;-42918 99345;-42954 99468;-42976 99255 1;-43002 99196;-43014 99130;-43007 99062 1;-42997 98962;-42939 98880;-42858 98833;-43197 97544;-46364 97265;-46657 97371 1;-46897 97427;-47153 97448;-47426 97429;-49444 97291;-49896 97255;-60008 96439;-66307 95408 1;-66623 95346;-66870 95107;-67024 94805;-67041 94779;-69570 94557;-69664 94665 1;-69883 94894;-70173 95034;-70511 95015 1;-74055 94818;-76055 94643;-79599 94445 1;-81470 94340;-82566 94135;-84303 93628 1;-84497 93479;-84600 93304;-84650 93109;-84679 93076;-85743 92767;-85807 92811 1;-85957 92929;-86144 93006;-86350 93034;-91301 91599;-91837 93674;-88714 94686;-88290 94772;-82375 96036 1;-79185 96668;-77287 97077;-74001 97320 1;-67030 97834;-63131 98255;-56154 98674 1;-55023 98742;-54372 98742;-53275 99023 1;-51541 99468;-50544 99700;-48756 99791 1;-47696 99845;-46920 101139;-47343 102112;-45730 102340 1;-45162 100774;-44493 100443;-43448 100449;-43206 100449 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-53950 78577;-52735 78740;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-52478 69067;</coords></object>
<object type="1" symbol="105"><coords count="2">-53501 73660;-53404 72940;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-67425 71694;-67268 70524;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-61445 72498;-61286 71315;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="9">-68212 71605 32;-57696 73018;-57612 72368;-56239 72566;-56313 73203;-53655 73561 32;-53492 72351 32;-68049 70395 32;-68212 71605 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-57239 68824;</coords></object>
<object type="0" symbol="84"><coords count="1">-60641 68336;</coords></object>
<object type="0" symbol="84"><coords count="1">-54325 69147;</coords></object>
<object type="0" symbol="84"><coords count="1">-64139 67880;</coords></object>
<object type="0" symbol="84"><coords count="1">-68039 67202;</coords></object>
<object type="0" symbol="84"><coords count="1">-68929 67045;</coords></object>
<object type="0" symbol="84"><coords count="1">-68562 64515;</coords></object>
<object type="1" symbol="111"><coords count="7">-57198 68609 32;-60223 68203 32;-60018 66678 32;-57582 67005 32;-57688 67795 32;-57099 67874 32;-57198 68609 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-57072 67841 32;-56967 67056 32;-57564 66976 32;-57669 67761 32;-57072 67841 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">-55538 68587 32;-55204 66103 32;-54291 66226 32;-54215 65665 32;-53747 65728 32;-53881 66723 32;-54340 66661 32;-54616 68711 32;-55538 68587 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-55238 66083 32;-54295 66210 32;-54217 65628 32;-55160 65501 32;-55238 66083 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">-55435 68615;-55639 70132;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-57165 68657;-57333 69899;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-60644 68186;-60812 69428;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-64118 67690;-64286 68932;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">-60261 68225;-67646 67233;-67976 69689;-68977 69555;-68710 67561;-70606 67307;-70793 68706;-72084 68533;-72258 69832;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-69077 70234;-68044 70392;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-69066 70237;-68048 70403;-68128 70934;-69128 70810;-69066 70237 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="12">-73531 69688;-72285 69848;-72237 69677;-72084 68533;-70793 68706;-70606 67307;-68710 67561;-68977 69555;-67976 69689;-67646 67233;-69522 65136;-73531 69688 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">-53707 65691;-53669 65424 1;-53744 65342;-53823 65258;-53904 65171 1;-53982 65087;-54174 65131;-54188 65245;-54244 65702 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="15">-54562 68746;-54759 70219;-54254 70287;-54115 69249;-52707 69438;-52931 71139 1;-52262 71218;-51414 71074;-51320 70411;-51029 68038 1;-51925 67140;-52538 66588;-53303 65803;-53438 66816;-53893 66755 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="18">-54345 63308 1;-53348 64789;-52754 65481;-51537 66788;-51188 66421;-51842 65654 1;-52518 64862;-51741 63837;-52427 63054 1;-52823 62602;-53415 62459;-53936 62758 1;-54132 62871;-54246 62969;-54337 63176 1;-54351 63207;-54364 63280;-54345 63308 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-49251 62400 1;-51626 63855;-48989 66545;-47305 64476;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-45315 65029;</coords></object>
<object type="0" symbol="84"><coords count="1">-47478 62517;</coords></object>
<object type="0" symbol="84"><coords count="1">-44216 58644;</coords></object>
<object type="0" symbol="84"><coords count="1">-44026 57688;</coords></object>
<object type="0" symbol="84"><coords count="1">-48352 64315;</coords></object>
<object type="0" symbol="84"><coords count="1">-49438 64377;</coords></object>
<object type="0" symbol="84"><coords count="1">-49327 63316;</coords></object>
<object type="0" symbol="84"><coords count="1">-53805 63341;</coords></object>
<object type="0" symbol="84"><coords count="1">-51634 66265;</coords></object>
<object type="1" symbol="132"><coords count="2">-52100 66165;-51708 65810;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">-52676 65310;-53234 64115;-52159 63613;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="21">-52842 65344;-52734 65185;-53234 64115;-52159 63613;-52230 63365 1;-52276 63258;-52339 63154;-52427 63054 1;-52823 62602;-53415 62459;-53936 62758 1;-54132 62871;-54246 62969;-54337 63176 1;-54351 63207;-54364 63280;-54345 63308 1;-53932 63921;-53589 64399;-53241 64841;-52842 65344 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="9">-52092 66173;-51734 65815;-51587 65953;-51188 66421;-51537 66788 1;-51676 66639;-51807 66497;-51931 66362;-52092 66173 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-52499 57456 1;-54787 58435;-53164 60979;-51327 59517;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-53042 58986;</coords></object>
<object type="0" symbol="84"><coords count="1">-52684 58123;</coords></object>
<object type="1" symbol="132"><coords count="14">-54459 53030;-55545 53375 1;-55319 52873;-55179 52509;-55335 51981 1;-55600 51084;-55808 50482;-56556 49921 1;-57061 49542;-57268 49036;-57148 48416 1;-57019 47753;-56892 47179;-56272 46910;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-56981 67045;-56523 63621 1;-56455 63108;-56111 62735;-55688 62436 1;-57338 59635;-58390 58036;-59328 54911 1;-59640 53872;-60293 53471;-61169 52832 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="26">-54475 82533;-54335 82560 1;-54064 82599;-53880 82653;-53591 82591 1;-53333 82536;-53369 82212;-53382 81949 1;-53422 81133;-53331 80658;-53092 79876 1;-52857 79105;-52741 78540;-52592 77913;-52479 77452 1;-52426 77246;-52366 77029;-52296 76792 1;-51929 75560;-51867 74830;-51686 73557 1;-51565 72704;-52164 71879;-53021 71786;-53272 73640;-54475 82533 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="23">-52098 84775;-52209 84738;-52223 84577 1;-52263 84207;-52365 83872;-52444 83413 1;-52647 82228;-52688 81508;-52427 80334 1;-52022 78510;-51669 77514;-51337 75675 1;-51252 75201;-51176 74765;-51107 74352;-51046 73986 1;-50787 72395;-50559 70501;-50338 68666;-50002 68979;-50651 73869;-51900 82727;-52098 84775 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="66">-55549 94151;-54975 94286;-54907 94286;-54476 94379;-54130 93256;-53933 92534;-53957 92504;-53843 92002;-52350 86283;-52306 86167;-52240 85323;-52234 85280 1;-52137 84553;-52320 84136;-52444 83413 1;-52647 82228;-52688 81508;-52427 80334 1;-52056 78664;-51729 77689;-51422 76125;-51267 75284 1;-50867 73021;-50684 71588;-50406 69293;-51176 69238;-51320 70411 1;-51414 71074;-52262 71218;-52931 71139;-53021 71786 1;-52164 71879;-51565 72704;-51686 73557 1;-51867 74830;-51929 75560;-52296 76792 1;-52650 77984;-52729 78686;-53092 79876 1;-53099 79900;-53107 79924;-53114 79947;-53231 80366 1;-53365 80890;-53413 81317;-53382 81949 1;-53369 82212;-53333 82536;-53591 82591 1;-53912 82660;-54104 82586;-54430 82547;-54545 83496;-54372 83566 1;-53468 83855;-53077 85180;-53212 86150 1;-53438 87764;-54043 88559;-54408 90147;-54683 91221;-54792 91648;-55125 92951;-55264 92921;-55549 94151 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">-54430 82547 1;-54104 82586;-53912 82660;-53591 82591 1;-53333 82536;-53369 82212;-53382 81949 1;-53422 81133;-53331 80658;-53092 79876 1;-52983 79518;-52899 79204;-52826 78908 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-52744 78564 1;-52614 78011;-52501 77484;-52296 76792 1;-51929 75560;-51867 74830;-51686 73557 1;-51565 72704;-52164 71879;-53021 71786;-53272 73640 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-49251 62400 1;-51626 63855;-48989 66545;-47305 64476;-49251 62400 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-52499 57456 1;-54787 58435;-53164 60979;-51327 59517;-52499 57456 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-48422 75407;-50543 75164;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="7">-39496 75272 1;-40002 74714;-40302 74409;-40823 73978;-43056 72559;-44611 72954;-44835 75171;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-42772 73904;</coords></object>
<object type="0" symbol="84"><coords count="1">-43784 73842;</coords></object>
<object type="0" symbol="84"><coords count="1">-43870 74681;</coords></object>
<object type="0" symbol="84"><coords count="1">-40695 74940;</coords></object>
<object type="1" symbol="132"><coords count="7">-39509 75323;-42405 75445;-42754 75403;-42735 75119;-44281 74968;-44306 75215;-44708 75166;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="14">-42466 75445 1;-42520 75330;-42545 75158;-42423 75123 1;-42078 75025;-41871 75030;-41524 74939 1;-41391 74904;-41262 74969;-41210 75096 1;-41166 75202;-41139 75263;-41123 75376;-42466 75445 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-44822 75140;-44333 75212;-44306 75215;-44281 74968;-42735 75119;-42754 75403;-42405 75445;-39509 75323;-39483 75225 1;-39947 74708;-40216 74365;-40823 73978;-43056 72559;-44611 72954;-44809 74914;-44822 75140 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-46124 75668 32;-45041 75801 32;-45087 76173 32;-46170 76040 32;-46124 75668 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-50380 73830;-47086 74211;-47038 73798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-46908 73795 32;-46753 72457 32;-47961 72317 32;-48116 73655 32;-46908 73795 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-46913 74410;-46248 74487;-46147 73620;-46848 73539;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="24">-46760 72826;-46113 72901;-46014 72050 1;-46808 71504;-47472 70982;-48409 70244 1;-49165 69648;-49622 69311;-50331 68668 1;-50650 71311;-50866 73064;-51337 75675 1;-51669 77514;-52022 78510;-52427 80334 1;-52688 81508;-52647 82228;-52444 83413 1;-52320 84136;-52137 84553;-52234 85280;-52339 86073;-52332 86213;-53981 92530 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-46725 72433;-46630 71613;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-46411 74075;</coords></object>
<object type="1" symbol="119"><coords count="9">-46769 72827;-46633 71618;-46537 71681 1;-46366 71805;-46193 71927;-46014 72050;-46113 72901;-46608 72844;-46769 72827 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">-46855 73543;-46929 74400;-46844 74418;-46248 74487;-46147 73620;-46735 73552;-46855 73543 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-50459 73748;-47118 74150;-46891 71733;-49927 69352;-50459 73748 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="22">-50577 75156;-48344 75403;-48414 75675;-48937 80251 32;-43501 80881 32;-43105 77503 32;-41978 77649;-41349 77561;-39933 77348;-38783 77476;-38760 78239 1;-38742 78620;-38775 78992;-38920 79386 1;-39802 81791;-40358 83138;-41346 85461;-41879 85371;-41768 84113;-44236 83693;-51700 82707;-50577 75156 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="35">-46007 72056;-44664 72928;-44786 75161;-44306 75205;-44288 74979;-42736 75109;-42753 75388;-42754 75403;-42405 75445;-39522 75324;-38644 77204;-39927 77334;-40537 77439;-41349 77561;-41478 77579;-42169 77614;-42762 77509;-43059 77491;-42910 76096;-45030 75808;-48406 75416;-50552 75163;-50491 74692;-49470 74796;-49357 74072;-46914 74386;-46243 74482;-46167 73792;-46147 73620;-46848 73539;-46775 72825;-46653 72838;-46113 72901;-46045 72314;-46007 72056 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="13">-42511 75212 1;-42510 75147;-42486 75141;-42423 75123 1;-42078 75025;-41871 75030;-41524 74939 1;-41391 74904;-41262 74969;-41210 75096 1;-41201 75117;-41193 75136;-41186 75155;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="61">-76625 89465;-76477 89465 1;-76370 89465;-76267 89465;-76130 89465 1;-75992 89465;-75735 89358;-75729 89220 1;-75658 87491;-75654 86483;-75467 84763 1;-75423 84361;-75370 84042;-75641 83742 1;-76020 83323;-76153 83020;-76539 82608 1;-76719 82415;-76862 82279;-76862 82015 1;-76862 81672;-76805 81483;-76767 81142;-76749 81081;-76744 81032;-76702 80779;-76360 78740;-76339 78518;-75772 75900 1;-75697 75534;-76055 75247;-76426 75202 1;-76718 75166;-76935 75206;-77152 75405 1;-77195 75444;-77236 75483;-77275 75521;-77458 75664 1;-77460 75664;-77463 75664;-77465 75664;-77599 75876 1;-77858 76200;-78023 76534;-78268 77045 1;-78511 77552;-78538 77936;-78600 78459 1;-78660 78964;-78605 79377;-79000 79697 1;-79515 80114;-79927 80208;-80361 80709 1;-80883 81311;-80918 81829;-81391 82471 1;-81552 82690;-81756 82770;-81954 82873;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="28">-75228 93291 1;-77983 93042;-79508 92722;-82259 92437 1;-82707 92391;-82900 92125;-83236 91826 1;-83621 91483;-83864 91305;-84161 90884 1;-84286 90706;-83965 90330;-83794 90465 1;-83324 90835;-83144 91143;-82660 91494 1;-82119 91885;-81664 91821;-81003 91913 1;-78781 92222;-77521 92289;-75298 92594 1;-75092 92622;-74883 92736;-74896 92943 1;-74908 93130;-75041 93308;-75228 93291 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-41845 69753;-42167 70267;-42883 69797 1;-43065 69671;-42974 69412;-42848 69230;-42250 68366;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">-42246 68366;-42115 68514;-41836 69744;-41895 69834;-42167 70267;-42883 69797 1;-43065 69671;-42974 69412;-42848 69230;-42313 68457;-42246 68366 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="44">-39564 75313;-38700 77232;-38114 77164;-38147 77051 1;-38430 75761;-38836 74995;-39800 74079 1;-40438 73473;-40990 73130;-41595 72779;-42005 72542 1;-42288 72378;-42587 72200;-42915 71985;-44781 72403;-45052 72228;-45240 72107;-45671 71828 1;-47695 70380;-49305 68975;-50915 67402;-51189 69300;-50413 69370;-50345 68727 1;-50343 68707;-50340 68686;-50338 68666;-50002 68979;-49701 69217 1;-49294 69557;-48919 69842;-48409 70244 1;-47472 70982;-46808 71504;-46014 72050;-46019 72090;-44699 72973;-44525 72932;-43056 72559;-40823 73978 1;-40377 74347;-40093 74624;-39702 75046;-39564 75313 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="20">-53752 66764;-54310 66685;-54607 68727;-54563 68805;-54584 68908;-54759 70219;-54254 70287;-54115 69249;-52707 69438;-52931 71139 1;-52262 71218;-51414 71074;-51320 70411;-51029 68038 1;-51925 67140;-52538 66588;-53303 65803;-53438 66816;-53673 66785;-53752 66764 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="12">-54206 65639;-53717 65717;-53691 65578;-53669 65424 1;-53744 65342;-53823 65258;-53904 65171 1;-53982 65087;-54174 65131;-54188 65245;-54223 65531;-54206 65639 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="25">-54079 65127;-53591 64394;-53518 64481 1;-53425 64605;-53333 64724;-53241 64841;-52842 65344;-52748 65444 1;-52399 65854;-52016 66273;-51537 66788;-51479 66844 1;-51272 67051;-51066 67255;-50860 67455;-50965 68110;-51102 67965 1;-51959 67110;-52559 66567;-53303 65803;-53438 66816;-53858 66760;-53652 65423;-53966 65135;-54079 65127 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="12">-52805 65387;-52102 66164;-51707 65813;-51789 65716;-51842 65654 1;-52360 65047;-52025 64304;-52148 63637;-52334 63695;-53234 64115;-52762 65126;-52805 65387 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="68">-37973 78034;-35993 78610;-35434 76804;-35617 76733 1;-36468 76348;-37021 75455;-36929 74473 1;-36910 74266;-36863 74068;-36793 73883 1;-36758 73484;-36934 73188;-37274 72978;-39551 71521;-39832 71341;-41758 70109;-41841 69742;-41941 69907;-42167 70267;-42883 69797 1;-43065 69671;-42974 69412;-42848 69230;-42250 68366;-42414 68201 1;-42630 68015;-42910 67882;-43197 67684 1;-44887 66518;-45862 65838;-47305 64436;-47388 64574 1;-48913 66278;-51116 64291;-49792 62837;-52221 63397;-52163 63598;-52135 63717 1;-52050 64363;-52339 65071;-51842 65654;-51789 65716;-51707 65813;-51648 65881;-51188 66421;-51537 66788;-51458 66865 1;-51258 67065;-51059 67262;-50860 67455;-50780 67533 1;-49215 69053;-47639 70420;-45671 71828;-44781 72403;-42915 71985 1;-41690 72790;-40863 73069;-39800 74079 1;-39713 74162;-39630 74243;-39552 74324;-39386 74501 1;-38712 75248;-38386 75963;-38147 77051;-38114 77164;-37973 78034 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="18"><coords count="2">-61374 63787;-57765 64596 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="18"><coords count="2">-65145 65119;-62250 63877 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="20"><coords count="3">-62250 63877;-61813 63689 32;-61374 63787 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="22"><coords count="2">-59649 64555;-59780 65141;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="22"><coords count="2">-60389 64270;-60606 65237;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="22"><coords count="2">-61147 64067;-61405 65221;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="22"><coords count="2">-62408 64295;-61975 65304;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="22"><coords count="2">-63202 64570;-62828 65441;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="22"><coords count="2">-63973 64919;-63691 65577;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="49">-53565 72972;-53181 73015;-53170 72885;-53021 71786;-52902 71157;-52916 71024;-52707 69438;-54115 69249;-54254 70287;-54759 70219;-54562 68746;-54724 68696;-55296 68620;-55528 68592;-55159 65493;-54246 65628;-54216 65470;-54188 65245 1;-54177 65155;-54056 65109;-53966 65134;-53539 64452 1;-53790 64115;-54050 63746;-54345 63308 1;-54356 63292;-54356 63260;-54352 63230;-54458 63134 1;-54730 62767;-54961 62436;-55171 62116;-55688 62436 1;-56111 62735;-56455 63108;-56523 63621;-56981 67045;-57157 68639;-67643 67220;-67963 69695;-68984 69564;-68696 67583;-70598 67296;-70798 68691;-72098 68526;-72255 69817;-69071 70236;-53485 72350;-53565 72972 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-58087 52559;</coords></object>
<object type="0" symbol="84"><coords count="1">-58645 51355;</coords></object>
<object type="0" symbol="84"><coords count="1">-59256 52350;</coords></object>
<object type="0" symbol="84"><coords count="1">-56761 48738;</coords></object>
<object type="0" symbol="84"><coords count="1">-56150 49314;</coords></object>
<object type="0" symbol="84"><coords count="1">-54964 52786;</coords></object>
<object type="0" symbol="84"><coords count="1">-55438 46826;</coords></object>
<object type="0" symbol="84"><coords count="1">-54812 44938;</coords></object>
<object type="0" symbol="84"><coords count="1">-54180 50848;</coords></object>
<object type="0" symbol="84"><coords count="1">-53020 52846;</coords></object>
<object type="0" symbol="84"><coords count="1">-52149 56105;</coords></object>
<object type="1" symbol="64"><coords count="13">-71477 54718;-72454 53148;-72425 53130;-72541 52816 1;-72336 52248;-71887 52120;-71372 51804 1;-70855 51488;-70419 51673;-69857 51537;-66749 49606;-65685 51420;-71477 54718 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-61307 53454;</coords></object>
<object type="0" symbol="84"><coords count="1">-63034 49185;</coords></object>
<object type="0" symbol="84"><coords count="1">-61973 48889;</coords></object>
<object type="0" symbol="84"><coords count="1">-61652 50567;</coords></object>
<object type="0" symbol="84"><coords count="1">-65674 46118;</coords></object>
<object type="0" symbol="84"><coords count="1">-66390 44415;</coords></object>
<object type="0" symbol="84"><coords count="1">-65650 43601;</coords></object>
<object type="0" symbol="84"><coords count="1">-67007 42713;</coords></object>
<object type="0" symbol="143"><coords count="1">-66654 40247;</coords></object>
<object type="1" symbol="132"><coords count="13">-66637 39332 1;-67141 39325;-67555 39729;-67562 40233 1;-67569 40737;-67166 41151;-66662 41158 1;-66157 41165;-65743 40762;-65736 40258 1;-65730 39753;-66133 39339;-66637 39332 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">-66637 39332 1;-67141 39325;-67555 39729;-67562 40233 1;-67569 40737;-67166 41151;-66662 41158 1;-66157 41165;-65743 40762;-65736 40258 1;-65730 39753;-66133 39339;-66637 39332 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="140"><coords count="1">-70099 50778;</coords></object>
<object type="1" symbol="93"><coords count="2">-70370 50037;-72652 44621;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">-69654 51431;-68581 53171;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-73255 44770;</coords></object>
<object type="1" symbol="132"><coords count="4">-61221 38886 1;-59063 38913;-59067 36089;-61011 36042;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-60365 37542;</coords></object>
<object type="1" symbol="64"><coords count="4">-74741 42648;-72420 43311;-72978 36419;-74741 42648 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="4">-74741 42648;-72420 43311;-72978 36541;-74741 42648 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">-75770 46312 1;-75218 46312;-74740 45910;-74571 45384;-73873 42802;-74706 42543;-75770 46312 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">-76416 51599;-75875 49802 1;-75720 49317;-75960 48768;-76451 48633;-77323 51390;-76416 51599 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="25">-74496 52210 1;-74276 51804;-74066 51527;-74165 51076 1;-74347 50246;-74447 49773;-74758 48982 1;-74825 48813;-74707 48702;-74653 48528 1;-74651 48521;-74170 47754;-73870 48515 1;-73450 49584;-73378 49818;-73118 50936 1;-72994 51470;-72797 52060;-72490 52192 1;-71990 52407;-71687 52044;-72281 52768;-72682 52873;-73101 52751;-74496 52210 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="20">-76494 51633;-76478 51499;-75875 49802 1;-75829 49659;-75818 49511;-75837 49369 1;-75875 49086;-75632 48863;-75349 48825 1;-75126 48795;-74862 48714;-74781 48924;-74671 49210 1;-74426 49871;-74329 50329;-74165 51076 1;-74066 51527;-74276 51804;-74496 52210;-76494 51633 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="25">-74419 44793 1;-73959 44868;-73846 45333;-73766 45792 1;-73604 46718;-73444 47307;-73741 48198 1;-73775 48301;-73861 48302;-73963 48339;-74088 48210 1;-74359 48056;-74651 48523;-74653 48528 1;-74700 48680;-74796 48784;-74775 48921;-74867 48819 1;-74985 48750;-75179 48802;-75349 48825 1;-75448 48838;-75542 48874;-75621 48928;-74419 44793 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="16">-76433 48651;-76341 48672 1;-76066 48792;-75888 49052;-75841 49344;-75828 49208 1;-75800 49098;-75729 49004;-75633 48936;-75599 48852;-74629 45514;-74696 45663 1;-74920 46046;-75321 46312;-75770 46312;-76433 48651 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="35">-73831 45475;-72465 45064;-70398 49970;-69672 51422;-69857 51537 1;-70419 51673;-70855 51488;-71372 51804 1;-71663 51982;-71932 52101;-72149 52272;-72239 52262 1;-72313 52251;-72398 52232;-72490 52192 1;-72797 52060;-72994 51470;-73118 50936 1;-73378 49818;-73450 49584;-73870 48515 1;-73896 48449;-73924 48394;-73952 48349;-73836 48297 1;-73793 48279;-73759 48254;-73741 48198 1;-73444 47307;-73604 46718;-73766 45792 1;-73784 45691;-73803 45589;-73827 45491;-73831 45475 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="31">-66749 49606 1;-67917 47531;-68574 46272;-68955 43922 1;-69483 40668;-69604 38753;-69177 35484 1;-68924 33547;-68454 32521;-67894 30649 1;-66131 24755;-65023 21484;-63404 15548;-66858 14734;-73026 36373;-72949 36783;-72505 42263;-72472 42670;-72420 43311;-73895 42891;-73950 43086;-74419 44820;-74243 44847 1;-74023 44954;-73911 45181;-73840 45442;-73649 45420;-72465 45064;-70398 49970;-69672 51422;-66749 49606 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="7">-65685 51420;-65142 52336 1;-65698 53536;-66230 54364;-67468 54831;-68614 53088;-65685 51420 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">-66809 62094 1;-66292 61633;-66108 61079;-66267 60404 1;-66391 59878;-66356 59411;-65946 59059;-65156 58368;-68605 53094;-71460 54680;-66809 62094 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="11">-60669 58982 1;-61410 58916;-61917 58748;-62396 58179 1;-63115 57326;-63425 56724;-63722 55649 1;-63885 55060;-64020 54702;-63931 54097;-60669 58982 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="42">-65142 52336;-63931 54097 1;-64020 54702;-63885 55060;-63722 55649 1;-63425 56724;-63115 57326;-62396 58179 1;-61917 58748;-61410 58916;-60669 58982;-60633 59058;-60423 59305 1;-59556 60569;-58930 61200;-58252 62575 1;-57933 63222;-57817 63633;-57746 64351;-58248 64488;-61374 63787;-61891 63672;-62503 63985;-65033 65071;-65222 64925 1;-65835 63819;-66183 63202;-66784 62089;-66722 62013 1;-66272 61568;-66117 61040;-66267 60404 1;-66391 59878;-66356 59411;-65946 59059;-65156 58368;-67471 54827;-67395 54795 1;-66247 54345;-65734 53586;-65212 52485;-65142 52336 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-59598 56986;</coords></object>
<object type="1" symbol="124"><coords count="10">-60928 52527 1;-63596 50546;-65251 49304;-66788 46358 1;-67958 44116;-68231 42604;-68367 40079 1;-68444 38639;-68307 37826;-68158 36391;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-64859 50536;</coords></object>
<object type="0" symbol="84"><coords count="1">-64341 41431;</coords></object>
<object type="1" symbol="0"><coords count="19">-63477 47206 1;-63377 47624;-63092 47956;-62663 47946 1;-62247 47936;-61877 47594;-61923 47181 1;-62180 44896;-62422 43625;-62613 41333 1;-62665 40714;-62634 39877;-63255 39877 1;-63688 39877;-63816 40383;-63847 40815 1;-64025 43309;-64059 44775;-63477 47206 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="19">-63477 47206 1;-63377 47624;-63092 47956;-62663 47946 1;-62247 47936;-61877 47594;-61923 47181 1;-62180 44896;-62422 43625;-62613 41333 1;-62665 40714;-62634 39877;-63255 39877 1;-63688 39877;-63816 40383;-63847 40815 1;-64025 43309;-64059 44775;-63477 47206 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="19">-63477 47206 1;-63377 47624;-63092 47956;-62663 47946 1;-62247 47936;-61877 47594;-61923 47181 1;-62180 44896;-62422 43625;-62613 41333 1;-62665 40714;-62634 39877;-63255 39877 1;-63688 39877;-63816 40383;-63847 40815 1;-64025 43309;-64059 44775;-63477 47206 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="2">-76422 51243;-75867 49602;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="4">-74683 45630;-73893 42916;-72388 43310;-72870 37290;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="2">-67266 49928;-69306 51195;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="4">-71178 54524;-71178 54524;-68359 52939 32;-66167 51707;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="10">-68410 53393;-68410 53393;-65156 58368 32;-65946 59059 1;-66356 59411;-66391 59878;-66267 60404 1;-66135 60963;-66239 61438;-66571 61847;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="22">-61258 63608 1;-62680 60985;-63900 59663;-65456 57117 1;-67179 54297;-68868 52119;-69843 49890 1;-71121 46969;-71775 45194;-72064 42019 1;-72358 38790;-72824 37306;-71793 33802;-66340 14977;-61634 -1325;-59401 -9263;-56335 -20161;-50257 -43932;-46400 -59172 1;-46186 -60019;-45749 -60376;-45092 -60952 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-67670 67288;-69582 65240;-66855 62057;-66740 62170 1;-66166 63233;-65820 63846;-65222 64925;-64956 65595;-57868 65009;-57794 64590;-56690 64698;-56998 67054;-60070 66659;-60218 68238;-65474 67535;-67670 67288 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">-65061 65296;-65038 65388;-64956 65595;-57868 65009;-57823 64755;-61825 63883;-65061 65296 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="25">-57842 64628;-56673 64785;-56651 64580;-56523 63621 1;-56455 63108;-56111 62735;-55688 62436 1;-56105 61729;-56481 61098;-56826 60500;-57199 59842 1;-58022 58361;-58662 56987;-59268 54987;-62539 56182;-60669 58982;-60470 59250;-60423 59305 1;-59556 60569;-58930 61200;-58252 62575 1;-57933 63222;-57817 63633;-57746 64351;-57842 64628 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-60858 52106 1;-60722 52204;-60562 51747;-60597 51583 1;-61076 49363;-61493 48379;-61661 46114 1;-61842 43674;-61989 42299;-61908 39853;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="15">-59159 53844;-59316 53403 1;-59711 53209;-59984 53003;-60093 52576 1;-60190 52197;-60060 51931;-59991 51546;-60389 50149 1;-60659 48926;-60843 48252;-61019 47024 1;-61413 44284;-61345 42708;-61280 39941 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-54361 63265 1;-55398 61882;-55847 61012;-56726 59523 1;-57953 57445;-58373 56125;-59159 53844 1;-58197 53531;-57139 52999;-57333 52006 1;-57454 51388;-57771 50969;-58369 50772 1;-59039 50551;-59462 50764;-60111 51041 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="21">-59156 53823;-58999 53790 1;-58084 53471;-57150 52944;-57333 52006 1;-57454 51388;-57771 50969;-58369 50772 1;-59039 50551;-59462 50764;-60111 51041;-60127 51067;-59991 51546 1;-60060 51931;-60190 52197;-60093 52576 1;-59984 53003;-59711 53209;-59316 53403;-59208 53708;-59156 53823 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="32">-62522 56275;-59265 55090;-59351 54838 1;-59671 53853;-60314 53456;-61169 52832;-63397 50562;-66050 47836;-67444 44974;-68283 42346;-68357 40360;-68308 36375;-69275 36300 1;-69580 39093;-69438 40948;-68955 43922 1;-68909 44204;-68859 44471;-68805 44725;-68712 45135 1;-68311 46770;-67699 47918;-66749 49606;-66718 49660;-65685 51420;-65611 51545;-65142 52336;-65063 52451;-63931 54097;-63844 54228;-62536 56186;-62522 56275 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="18">-68028 39317;-61897 39848;-61913 39998 1;-61983 42354;-61838 43723;-61661 46114 1;-61493 48379;-61076 49363;-60597 51583 1;-60564 51737;-60703 52148;-60832 52118;-61798 51778;-64969 49384;-67054 46337;-68066 42439;-68436 39762;-68028 39317 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="2.91279"><coords count="1">-72505 48179;</coords></object>
<object type="0" symbol="3" rotation="2.90194"><coords count="1">-73054 50750;</coords></object>
<object type="1" symbol="105"><coords count="2">-50138 58884;-49934 57130;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-50138 58884;-49934 57130;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-50866 58588;-50662 56834;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-50866 58588;-50662 56834;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-50066 56050;-49623 56101;-49682 56620;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">-50755 56869;-50726 56614;-49660 56735;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-51139 57898;</coords></object>
<object type="1" symbol="120"><coords count="18">-51065 58937;-49390 61493;-49353 61369;-49129 59445;-47920 59585;-47614 56939;-48665 56817;-48544 55776;-50009 55622;-50035 55784;-50066 56054;-49623 56105;-49696 56738;-49951 56702;-50726 56614;-50755 56869;-50995 58239;-51065 58937 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">-35637 63787 32;-35487 62495 32;-35027 62548 32;-35177 63841 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-35382 63815;-35332 63388;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">-35637 63787 32;-35487 62495 32;-35027 62548 32;-35177 63841 32;-35637 63787 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">-46074 54312 32;-45924 53020 32;-45464 53073 32;-45614 54366 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">-46074 54312 32;-45924 53020 32;-45464 53073 32;-45614 54366 32;-46074 54312 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-45819 54340;-45769 53913;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-50031 55845;-53029 55498;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-42414 49532 32;-42007 46176 32;-38874 46555 32;-39281 49911 32;-42414 49532 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-42280 50301 32;-42501 52107 32;-40154 52394 32;-39933 50588 32;-42280 50301 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-38459 44665;</coords></object>
<object type="0" symbol="84"><coords count="1">-42420 44159;</coords></object>
<object type="0" symbol="84"><coords count="1">-44706 47230;</coords></object>
<object type="0" symbol="143"><coords count="1">-41373 47073;</coords></object>
<object type="0" symbol="143"><coords count="1">-40100 48696;</coords></object>
<object type="1" symbol="132"><coords count="5">-38634 52588 32;-38494 51450 32;-39387 51341 32;-39527 52479 32;-38634 52588 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-38695 51012 32;-38623 50417 32;-39570 50302 32;-39642 50897 32;-38695 51012 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-39149 50648;</coords></object>
<object type="0" symbol="143"><coords count="1">-39007 51973;</coords></object>
<object type="1" symbol="38"><coords count="5">-38634 52588 32;-38494 51450 32;-39387 51341 32;-39527 52479 32;-38634 52588 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">-42414 49532 32;-42007 46176 32;-38874 46555 32;-39281 49911 32;-42414 49532 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">-42280 50301 32;-42501 52107 32;-40154 52394 32;-39933 50588 32;-42280 50301 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">-38237 53080 32;-43107 52489 32;-42289 45747 32;-38429 46215 32;-38881 49941 32;-37871 50064 32;-38237 53080 50;-38634 52588 32;-38494 51450 32;-39387 51341 32;-39527 52479 32;-38634 52588 50;-40154 52394 32;-39933 50588 32;-42280 50301 32;-42501 52107 32;-40154 52394 50;-39281 49911 32;-38874 46555 32;-42007 46176 32;-42414 49532 32;-39281 49911 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-34468 51263;</coords></object>
<object type="0" symbol="84"><coords count="1">-34939 52519;</coords></object>
<object type="0" symbol="84"><coords count="1">-42529 53321;</coords></object>
<object type="1" symbol="66"><coords count="20">-40901 52742 1;-41219 52935;-41304 52848;-41345 53220 1;-41374 53485;-41073 53714;-40697 53758 1;-38887 53970;-37873 54088;-36064 54300 1;-35721 54340;-35480 54252;-35440 53909 1;-35401 53577;-35646 53362;-35978 53323 1;-36867 53219;-37369 53170;-38258 53069;-40901 52742 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-51905 49085;</coords></object>
<object type="0" symbol="84"><coords count="1">-52410 47550;</coords></object>
<object type="0" symbol="84"><coords count="1">-31833 46621;</coords></object>
<object type="1" symbol="132"><coords count="25">-31361 45665;-34519 46331 1;-35077 46449;-35407 46513;-35975 46454;-38428 46213;-42289 45747 32;-43107 52489 1;-44109 55092;-44604 56577;-45518 59212 1;-46160 61063;-46522 62061;-47215 63917 1;-47797 63344;-48302 62769;-48956 61973 1;-49101 61797;-49237 61627;-49364 61465;-49129 59445;-47920 59585;-47614 56939;-48665 56817;-48544 55776 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="17">-31377 46421;-31361 45665;-34519 46331 1;-35077 46449;-35407 46513;-35975 46454;-38427 46211;-38511 46278;-38542 46588;-38415 46613;-36164 46865 1;-35015 46994;-34346 46830;-33216 46581;-32007 46347;-31759 46376;-31377 46421 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-33989 61628;</coords></object>
<object type="1" symbol="132"><coords count="4">-35231 64254;-32936 64556;-33853 63455;-31445 46409;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">-34473 64360;-33776 63546;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="21">-33550 71448;-33138 71522;-33118 71342;-32241 64765;-33327 63371;-33070 61506;-32895 60233;-30992 46420;-31456 46487;-33853 63455;-32936 64556;-35210 64289;-35313 64276;-35361 64755;-35260 64766;-33383 65067;-33453 65612;-32763 65726;-32817 66146;-33527 71210;-33550 71448 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-33667 65606;</coords></object>
<object type="0" symbol="84"><coords count="1">-34705 65275;</coords></object>
<object type="1" symbol="62"><coords count="21">-38806 71339;-38763 71366;-36367 72843 1;-35318 73489;-33726 72632;-33555 71412;-32757 65717;-33457 65619;-33379 65059;-35290 64793;-35298 64792;-35276 64795;-35431 66096;-38293 65751;-38320 65977;-38443 67013;-37411 67135;-37722 69758;-38650 69648;-38802 70933;-38806 71339 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="41">-47307 64464;-46775 64355;-46726 64229 1;-45346 60699;-44779 58632;-43525 55013 1;-43187 54038;-42917 53520;-42594 52545;-43101 52442;-43107 52489;-43242 52840 1;-44155 55230;-44646 56698;-45518 59212 1;-46160 61063;-46522 62061;-47215 63917 1;-47263 63869;-47311 63822;-47358 63774;-47555 63574 1;-48004 63107;-48432 62611;-48956 61973 1;-49101 61797;-49237 61627;-49364 61465;-51077 58849;-51365 59425;-51266 59574 1;-50954 60059;-50615 60550;-50194 61150 1;-49246 62502;-48590 63177;-47411 64333 1;-47392 64352;-47373 64370;-47354 64389;-47307 64464 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="33">-39825 65575;-39857 65898;-39352 65949;-39554 67941;-40770 68246;-40949 70018;-41418 69722;-41554 68932 1;-41649 68394;-41867 68067;-42319 67760 1;-43741 66794;-44548 66256;-45859 65144 1;-46200 64854;-46499 64592;-46771 64343 1;-45358 60743;-44792 58671;-43525 55013 1;-43187 54038;-42917 53520;-42594 52545;-38237 53080 32;-37871 50064 32;-38881 49941 32;-38479 46606;-36164 46865 1;-35015 46994;-34346 46830;-33216 46581;-32007 46347;-31408 46417 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="65">-35245 64256;-32924 64570;-33840 63471;-33825 63254;-31456 46487;-31787 46373;-32007 46347;-33216 46581 1;-34346 46830;-35015 46994;-36164 46865;-38479 46606;-38881 49941 32;-37871 50064 32;-38237 53080;-38057 53092 1;-37288 53178;-36798 53227;-35978 53323 1;-35646 53362;-35401 53577;-35440 53909 1;-35480 54252;-35721 54340;-36064 54300 1;-37873 54088;-38887 53970;-40697 53758 1;-41073 53714;-41374 53485;-41345 53220 1;-41304 52848;-41219 52935;-40901 52742;-40870 52746;-41245 52711;-42594 52545 1;-42917 53520;-43187 54038;-43525 55013 1;-44792 58671;-45358 60743;-46771 64343 1;-46499 64592;-46200 64854;-45859 65144 1;-44548 66256;-43741 66794;-42319 67760 1;-41867 68067;-41649 68394;-41554 68932;-41418 69722;-40949 70018;-40770 68246;-39554 67941;-39352 65949;-39857 65898;-39828 65602;-41348 65409;-40729 60192;-35277 60785;-35460 62478;-35032 62547;-35245 64256 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="89"><coords count="2">-33423 46296;-56291 43387;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="32">-51335 59480;-51047 58887;-51356 58383 1;-51545 58047;-51745 57690;-51966 57298 1;-53207 55101;-53659 53736;-54520 51364 1;-55031 49957;-55288 49150;-55606 47687 1;-55926 46212;-56090 45370;-56173 43863 1;-56264 42212;-56222 41053;-56137 39713;-56603 39688 1;-56753 42136;-56771 43573;-56399 46029 1;-56053 48311;-55710 49581;-54931 51753 1;-54115 54030;-53583 55289;-52480 57442 1;-52144 58099;-51853 58622;-51551 59117;-51335 59480 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-52800 55710 1;-52562 56205;-52291 56723;-51966 57298 1;-51631 57891;-51346 58406;-51069 58885;-51029 58537 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="15">-54459 53030;-55545 53375 1;-55319 52873;-55179 52509;-55335 51981 1;-55600 51084;-55808 50482;-56556 49921 1;-57061 49542;-57268 49036;-57148 48416 1;-57019 47753;-56892 47179;-56272 46910;-54459 53030 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">-56182 43692 1;-56179 43748;-56176 43805;-56173 43863 1;-56090 45370;-55926 46212;-55606 47687 1;-55288 49150;-55031 49957;-54520 51364 1;-53943 52955;-53549 54093;-52978 55332 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="22">-49479 61538;-47086 64277;-45593 60131;-42830 52458;-42559 49472;-42188 45944;-35329 46684;-31382 45971;-31265 44864;-31614 44824;-32195 44235;-43027 41206;-54969 39997;-56326 40021;-56474 42958;-56376 44783;-55784 48312;-54772 51199;-53612 54505;-52083 57762;-50553 60130;-49479 61538 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="56">-55704 62465;-55163 62159;-55303 61913 1;-55779 61172;-56165 60474;-56726 59523 1;-57953 57445;-58373 56125;-59159 53844;-59272 53526;-59316 53403 1;-59711 53209;-59984 53003;-60093 52576 1;-60190 52197;-60060 51931;-59991 51546;-60127 51067;-60111 51041;-60272 50561;-60389 50149 1;-60659 48926;-60843 48252;-61019 47024 1;-61413 44284;-61345 42708;-61280 39941;-61898 39855;-61913 39998 1;-61983 42354;-61838 43723;-61661 46114 1;-61493 48379;-61076 49363;-60597 51583 1;-60573 51693;-60638 51935;-60724 52053 1;-60742 52078;-60727 52111;-60754 52125 1;-60794 52145;-60823 52146;-60867 52138;-61142 52796;-61131 52864;-60912 53018 1;-60185 53544;-59638 53954;-59351 54838;-59265 55090;-59190 55356 1;-58348 58002;-57396 59552;-55999 61909;-55704 62465 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="85">-52203 63420;-49839 62905;-49727 62769 1;-49598 62640;-49440 62516;-49251 62400;-49333 62295 1;-49608 61959;-49885 61590;-50194 61150 1;-50629 60531;-50976 60028;-51295 59528;-51455 59613 1;-53238 60861;-54734 58412;-52499 57456;-52546 57313 1;-53391 55657;-53897 54524;-54473 53001;-54577 53067;-55545 53375 1;-55319 52873;-55179 52509;-55335 51981 1;-55600 51084;-55808 50482;-56556 49921 1;-57061 49542;-57268 49036;-57148 48416 1;-57019 47753;-56892 47179;-56272 46910;-56267 46850 1;-56312 46590;-56355 46317;-56399 46029 1;-56756 43672;-56754 42253;-56620 39979;-61280 39942 1;-61345 42708;-61413 44284;-61019 47024 1;-60843 48252;-60659 48926;-60389 50149;-60131 51055;-59986 50987 1;-59406 50738;-58995 50565;-58369 50772 1;-57927 50918;-57638 51185;-57469 51565;-57366 51861 1;-57354 51908;-57343 51956;-57333 52006 1;-57139 52999;-58197 53531;-59159 53844 1;-58373 56125;-57953 57445;-56726 59523 1;-56291 60259;-55962 60844;-55615 61414;-55359 61826 1;-55079 62266;-54770 62718;-54377 63244;-54310 63119 1;-54223 62950;-54113 62860;-53936 62758 1;-53415 62459;-52823 62602;-52427 63054 1;-52340 63153;-52277 63255;-52231 63361;-52203 63420 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="53">-33371 76509;-32449 78301 1;-32303 78241;-31627 78101;-31561 78096;-31717 79529;-27639 79900;-27519 78801;-27239 78832;-27277 79178;-22806 80075;-22700 79545 1;-21289 79842;-20491 80013;-19053 80127 1;-18230 80192;-17459 80254;-16724 80314;-16258 80351;-15999 78229;-16424 78209;-16521 78202;-17028 78174;-17568 78145 1;-19710 78030;-20895 77706;-22997 77280 1;-23594 77159;-24145 77074;-24666 76995;-25022 76943;-25100 76930 1;-26580 76705;-27853 76468;-29347 75500 1;-30751 74591;-31482 72925;-31363 71702;-33138 71521;-33325 72809 1;-33329 72817;-33334 72824;-33339 72831;-33225 72961 1;-33207 72982;-33192 72998;-33186 73004 1;-32673 73464;-32377 74152;-32445 74891 1;-32508 75565;-32862 76142;-33371 76509 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="13">-33309 78752;-34194 76880 1;-34418 76930;-34655 76947;-34897 76924 1;-35107 76904;-35308 76856;-35496 76784;-36120 78709;-34846 80001 1;-34367 79483;-33804 79059;-33309 78752 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="9">-34194 76880;-33309 78752 1;-32975 78546;-32673 78393;-32449 78301;-33371 76509 1;-33615 76685;-33894 76813;-34194 76880 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-39308 35432;</coords></object>
<object type="0" symbol="84"><coords count="1">-45153 33513;</coords></object>
<object type="0" symbol="84"><coords count="1">-51033 32641;</coords></object>
<object type="0" symbol="84"><coords count="1">-33566 36219;</coords></object>
<object type="0" symbol="84"><coords count="1">-33467 37995;</coords></object>
<object type="0" symbol="84"><coords count="1">-55791 39557;</coords></object>
<object type="0" symbol="84"><coords count="1">-55442 36155;</coords></object>
<object type="0" symbol="84"><coords count="1">-55250 38057;</coords></object>
<object type="1" symbol="132"><coords count="13">-55591 32080 1;-55918 32040;-56100 32018;-56427 31978 1;-56982 31911;-57425 31160;-57092 30711 1;-56636 30097;-56426 29812;-55970 29198 1;-55719 28860;-55264 28995;-54850 29071;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-55893 31394;</coords></object>
<object type="0" symbol="84"><coords count="1">-56608 30925;</coords></object>
<object type="0" symbol="84"><coords count="1">-55733 30024;</coords></object>
<object type="1" symbol="132"><coords count="13">-59767 29679 1;-59363 29725;-59025 29625;-58804 29284 1;-58444 28730;-58238 28416;-57793 27927 1;-57483 27586;-57307 27336;-57250 26878 1;-57159 26141;-57976 25636;-58718 25669;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-58755 27557;</coords></object>
<object type="0" symbol="84"><coords count="1">-57928 26804;</coords></object>
<object type="1" symbol="156"><coords count="13">-57964 22739;-57510 20995;-56586 20467;-55135 14784;-63153 14710;-69225 35585;-69269 36294;-69389 39172;-61419 39863;-61000 35224;-60185 30511;-59346 27081;-57964 22739 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-61221 38886 1;-59063 38913;-59067 36089;-61011 36042;-61221 38886 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="15">-59767 29679 1;-59363 29725;-59025 29625;-58804 29284 1;-58444 28730;-58238 28416;-57793 27927 1;-57483 27586;-57307 27336;-57250 26878 1;-57159 26141;-57976 25636;-58718 25669;-59269 27158;-59767 29679 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="14">-55591 32080 1;-55918 32040;-56100 32018;-56427 31978 1;-56982 31911;-57425 31160;-57092 30711 1;-56636 30097;-56426 29812;-55970 29198 1;-55719 28860;-55264 28995;-54850 29071;-55591 32080 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-55015 33534;</coords></object>
<object type="1" symbol="105"><coords count="2">-54129 35123;-55705 34905;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-54016 34309;-55592 34091;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-51446 37789 32;-52104 37693 32;-52150 38010 32;-51492 38106 32;-51446 37789 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-45480 38614 32;-46138 38518 32;-46184 38835 32;-45526 38931 32;-45480 38614 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-39774 40470 32;-40432 40374 32;-40478 40691 32;-39820 40787 32;-39774 40470 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-33633 41318 32;-34291 41222 32;-34337 41539 32;-33679 41635 32;-33633 41318 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="65">-31614 44789 32;-32608 44652 32;-32580 44452 32;-36395 43925;-36422 44122 32;-38458 43842 32;-38431 43644;-42273 43114;-42300 43313 32;-43365 43167 32;-43211 42100 32;-44333 41945 32;-44305 41741 32;-48010 41231;-48034 41408 32;-50070 41128 32;-50046 40951;-53936 40416;-53960 40592 32;-55025 40446 32;-54573 37176 32;-53883 37271;-53912 37486;-52110 37734;-52149 38011 32;-51489 38102 32;-51451 37825;-49597 38081;-49568 37864 32;-48886 37958 32;-48915 38175;-48526 38228;-48496 38011 32;-47814 38105 32;-47844 38322;-46144 38556;-46184 38835 32;-45526 38931 32;-45485 38647;-43558 38913;-43528 38693 32;-42846 38787 32;-42992 39834 32;-42194 39944 32;-42224 40163;-40437 40409;-40478 40691 32;-39820 40787 32;-39778 40500;-37915 40757;-37885 40535 32;-37203 40629 32;-37233 40851;-36843 40904;-36813 40682 32;-36131 40776 32;-36161 40998;-34296 41255;-34337 41539 32;-33679 41635 32;-33637 41346;-31876 41589;-31845 41364 32;-31163 41458 32;-31614 44789 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-55835 35844 1;-55907 36399;-55954 36948;-56000 37669 1;-56138 39820;-56273 41136;-56207 43105 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-40430 40395;-40255 39127 32;-41963 38891 32;-42917 37632 32;-44715 37384 32;-44895 38689 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-46134 38506;-45956 37213 32;-50645 36566 32;-50825 37871 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-34293 41234;-34119 39973 32;-39078 39290 32;-39254 40564 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-52100 37696;-51920 36390 32;-55835 35844 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-39146 31003;-38971 29735 32;-40679 29499 32;-41633 28240 32;-43431 27992 32;-43611 29297 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-44850 29114;-44672 27821 32;-49361 27174 32;-49541 28479 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-33009 31842;-32835 30581 32;-37794 29898 32;-37970 31172 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-50816 28304;-50636 26998 32;-53749 26564 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-48832 37243;</coords></object>
<object type="0" symbol="84"><coords count="1">-54554 31014;</coords></object>
<object type="0" symbol="84"><coords count="1">-42377 39441;</coords></object>
<object type="0" symbol="84"><coords count="1">-34613 40540;</coords></object>
<object type="0" symbol="84"><coords count="1">-30983 41115;</coords></object>
<object type="0" symbol="84"><coords count="1">-30617 38045;</coords></object>
<object type="0" symbol="84"><coords count="1">-30440 35637;</coords></object>
<object type="0" symbol="84"><coords count="1">-31751 35612;</coords></object>
<object type="0" symbol="83"><coords count="1">-41423 37615;</coords></object>
<object type="1" symbol="132"><coords count="3">-30608 40457;-32946 40135 32;-33122 41409 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">-31174 41491;-30720 41553;-30568 40438;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">-29951 35210;-29374 31033;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-50162 28403 32;-50820 28307 32;-50866 28624 32;-50208 28720 32;-50162 28403 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-44196 29228 32;-44854 29132 32;-44900 29449 32;-44242 29545 32;-44196 29228 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="65">-30330 35403 32;-31324 35266 32;-31296 35066 32;-35111 34539;-35138 34736 32;-37174 34456 32;-37147 34258;-40989 33728;-41016 33927 32;-42081 33781 32;-41927 32714 32;-43049 32559 32;-43021 32355 32;-46726 31845;-46750 32022 32;-48786 31742 32;-48762 31565;-52652 31030;-52676 31206 32;-53741 31060 32;-53289 27790 32;-52599 27885;-52628 28100;-50826 28348;-50865 28625 32;-50205 28716 32;-50167 28439;-48313 28695;-48284 28478 32;-47602 28572 32;-47631 28789;-47242 28842;-47212 28625 32;-46530 28719 32;-46560 28936;-44860 29170;-44900 29449 32;-44242 29545 32;-44201 29261;-42274 29527;-42244 29307 32;-41562 29401 32;-41708 30448 32;-40910 30558 32;-40940 30777;-39153 31023;-39194 31305 32;-38536 31401 32;-38494 31114;-36631 31371;-36601 31149 32;-35919 31243 32;-35949 31465;-35559 31518;-35529 31296 32;-34847 31390 32;-34877 31612;-33012 31869;-33053 32153 32;-32395 32249 32;-32353 31960;-30592 32203;-30561 31978 32;-29879 32072 32;-30330 35403 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-32349 31932 32;-33007 31836 32;-33053 32153 32;-32395 32249 32;-32349 31932 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-38490 31084 32;-39148 30988 32;-39194 31305 32;-38536 31401 32;-38490 31084 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-48923 19010 32;-49581 18914 32;-49627 19231 32;-48969 19327 32;-48923 19010 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-37251 21691 32;-37909 21595 32;-37955 21912 32;-37297 22008 32;-37251 21691 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-31110 22539 32;-31768 22443 32;-31814 22760 32;-31156 22856 32;-31110 22539 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-42957 19835 32;-43615 19739 32;-43661 20056 32;-43003 20152 32;-42957 19835 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="65">-29091 26010 32;-30085 25873 32;-30057 25673 32;-33872 25146;-33899 25343 32;-35935 25063 32;-35908 24865;-39750 24335;-39777 24534 32;-40842 24388 32;-40688 23321 32;-41810 23166 32;-41782 22962 32;-45487 22452;-45511 22629 32;-47547 22349 32;-47523 22172;-51413 21637;-51437 21813 32;-52502 21667 32;-52050 18397 32;-51360 18492;-51389 18707;-49587 18955;-49626 19232 32;-48966 19323 32;-48928 19046;-47074 19302;-47045 19085 32;-46363 19179 32;-46392 19396;-46003 19449;-45973 19232 32;-45291 19326 32;-45321 19543;-43621 19777;-43661 20056 32;-43003 20152 32;-42962 19868;-41035 20134;-41005 19914 32;-40323 20008 32;-40469 21055 32;-39671 21165 32;-39701 21384;-37914 21630;-37955 21912 32;-37297 22008 32;-37255 21721;-35392 21978;-35362 21756 32;-34680 21850 32;-34710 22072;-34320 22125;-34290 21903 32;-33608 21997 32;-33638 22219;-31773 22476;-31814 22760 32;-31156 22856 32;-31114 22567;-29353 22810;-29322 22585 32;-28640 22679 32;-29091 26010 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-31596 44818;-31261 44864;-31375 45692;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="17">-31425 46505;-31403 46341;-31369 45718;-31345 45657;-31252 44864;-31604 44821;-31160 41501;-30733 41571;-30637 40480;-30384 38369;-29939 35201;-30262 35159;-29905 32332;-29076 32436;-29122 32851;-31016 46601;-31425 46505 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="35">-30580 40475;-30361 38381;-30769 38404;-32290 38194 32;-32459 39404 32;-41855 38108 32;-42809 36849 32;-53709 35346 32;-53552 34210 32;-55492 33937;-55835 35844;-55674 35867;-51920 36390 32;-52099 37686;-50834 37885;-50806 37731;-50645 36566 32;-45956 37213 32;-46134 38506;-44895 38689 32;-44715 37384 32;-42917 37632 32;-41963 38891 32;-40255 39127 32;-40430 40395;-39225 40557;-39238 40446;-39078 39290 32;-34119 39973 32;-34293 41234;-33118 41409;-33094 41206;-32946 40135 32;-30811 40429;-30580 40475 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-30511 39452;-32087 39234;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-30398 38638;-31974 38420;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="24">-56602 39755;-56140 39763;-56130 39605 1;-56092 39016;-56046 38389;-56000 37669 1;-55954 36948;-55907 36399;-55835 35844;-55790 35834;-55450 33984;-55500 33903;-55488 33863 1;-55183 32378;-54927 31328;-54607 30009;-55067 29978 1;-55253 30721;-55435 31454;-55659 32409 1;-56301 35152;-56421 36754;-56595 39562;-56602 39755 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">-56412 40193;-34289 42496;-30555 42252;-29334 32865;-41617 31818;-53481 30318;-55121 30597;-55888 34331;-56377 38274;-56412 40193 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-51750 27283;</coords></object>
<object type="0" symbol="84"><coords count="1">-53179 27436;</coords></object>
<object type="1" symbol="74"><coords count="3">-54575 30466;-53652 26731;-52920 26833;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-50961 28271;-50787 27007;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-49389 28487;-49215 27223;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-45007 29101;-44833 27837;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-43459 29314;-43285 28050;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-39301 30979;-39127 29715;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-37821 31195;-37647 29931;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-33168 31836;-32994 30572;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-31681 32041;-31507 30777;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-29949 31275;</coords></object>
<object type="0" symbol="84"><coords count="1">-30899 31509;</coords></object>
<object type="0" symbol="84"><coords count="1">-35636 30732;</coords></object>
<object type="0" symbol="84"><coords count="1">-39091 28302;</coords></object>
<object type="0" symbol="84"><coords count="1">-35945 28771;</coords></object>
<object type="0" symbol="84"><coords count="1">-33860 28894;</coords></object>
<object type="0" symbol="84"><coords count="1">-29455 26957;</coords></object>
<object type="1" symbol="73"><coords count="13">-32811 26807 1;-33107 26726;-33414 26900;-33496 27196 1;-33578 27492;-33404 27799;-33107 27881 1;-32811 27963;-32504 27789;-32422 27492 1;-32341 27196;-32515 26889;-32811 26807 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="13">-32811 26807 1;-33107 26726;-33414 26900;-33496 27196 1;-33578 27492;-33404 27799;-33107 27881 1;-32811 27963;-32504 27789;-32422 27492 1;-32341 27196;-32515 26889;-32811 26807 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-32021 27980;</coords></object>
<object type="1" symbol="111"><coords count="5">-31160 29989 32;-29238 30254 32;-29072 29051 32;-30994 28786 32;-31160 29989 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">-31649 28654 1;-31669 28447;-31632 28243;-31439 28166 1;-31146 28049;-30934 27974;-30637 28079 1;-30177 28241;-29724 28412;-29695 28899;-31649 28654 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="11">-29766 28631;-29766 28631 1;-29915 28340;-30274 28207;-30637 28079 1;-30934 27974;-31146 28049;-31439 28166 1;-31535 28204;-31593 28274;-31623 28360;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-53206 24684;-50941 25001 32;-51098 26137 32;-41525 27457 32;-40571 28716 32;-31899 29912 32;-31724 28641 32;-29041 29011 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-29324 31065;-31662 30743 32;-31838 32017 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-30282 35135;-29939 35182;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-29896 32315;-29553 32362;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-41323 23741;</coords></object>
<object type="0" symbol="84"><coords count="1">-42310 23877;</coords></object>
<object type="0" symbol="84"><coords count="1">-40065 25518;</coords></object>
<object type="0" symbol="84"><coords count="1">-42853 26593;</coords></object>
<object type="0" symbol="84"><coords count="1">-42101 28814;</coords></object>
<object type="0" symbol="84"><coords count="1">-47309 28053;</coords></object>
<object type="1" symbol="63"><coords count="19">-47019 26218 1;-46574 26420;-46335 26576;-45859 26687 1;-45564 26756;-45158 26509;-45242 26218 1;-45398 25680;-45538 25382;-45859 24923 1;-45991 24734;-46276 24649;-46439 24812 1;-46716 25089;-46850 25265;-47130 25539 1;-47322 25727;-47264 26107;-47019 26218 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="15">-53742 26539 1;-53915 27173;-54093 27866;-54286 28675 1;-54778 30741;-55095 31944;-55503 33935;-53552 34210 32;-53709 35346 32;-42809 36849 32;-41855 38108 32;-32459 39404 32;-32291 38183 32;-30396 38444;-29556 32347 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-50965 25033 32;-52951 24758 32;-53099 25828 32;-51113 26102 32;-50965 25033 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-53300 25852;-53137 24670;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="37">-49991 26256 1;-49764 25620;-49440 25352;-48997 24842 1;-48656 24450;-48355 24329;-47880 24118 1;-47632 24008;-47505 23749;-47584 23490 1;-47708 23081;-48211 23186;-48639 23194 1;-49360 23207;-49680 22644;-50401 22644 1;-51187 22644;-51642 22368;-52268 21894 1;-52623 21625;-52962 21723;-53402 21789;-53321 21930 1;-53189 22166;-53101 22324;-52957 22582 1;-52791 22879;-52757 23120;-52852 23446 1;-52982 23891;-53112 24335;-53223 24713;-53045 24707;-50941 25001 32;-51098 26137 32;-51001 26150;-49991 26256 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-53079 21754;</coords></object>
<object type="1" symbol="120"><coords count="70">-55101 30062;-54607 30099;-54563 29827 1;-54476 29469;-54385 29089;-54286 28675 1;-54093 27866;-53915 27173;-53742 26539;-53628 26581;-50636 26998 32;-50816 28304;-49540 28481;-49361 27174 32;-44672 27821 32;-44850 29114;-43609 29284;-43431 27992 32;-41633 28240 32;-40679 29499 32;-38971 29735 32;-39143 30978;-37961 31110;-37794 29898 32;-35797 30173;-35586 30202;-32835 30581 32;-33009 31842;-31834 31987;-31662 30743 32;-29324 31065;-29205 30260;-31142 29976;-31006 28767;-31216 28711;-31724 28641 32;-31899 29912 32;-40571 28716 32;-41525 27457 32;-51098 26137;-53318 25816;-53204 24674;-53139 24427 1;-53049 24119;-52950 23783;-52852 23446 1;-52757 23120;-52791 22879;-52957 22582 1;-53119 22292;-53210 22129;-53372 21839 1;-53518 21577;-53452 21358;-53378 21078;-53872 21126 1;-53883 21166;-53894 21208;-53905 21249 1;-54012 21648;-53906 21931;-53696 22287 1;-53564 22511;-53555 22525;-53423 22748 1;-53131 23242;-53431 23757;-53582 24311;-54524 27770;-55101 30062 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">-55185 30938;-29991 35195;-29363 30728;-40773 29123;-41645 27832;-53928 26262;-55185 30938 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-29044 25776;-28589 25837;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="39">-29029 29056;-28581 25840;-30049 25655;-40817 24146;-40625 23065;-45510 22437;-46069 24757 1;-45987 24790;-45911 24849;-45859 24923 1;-45538 25382;-45398 25680;-45242 26218 1;-45158 26509;-45564 26756;-45859 26687 1;-46335 26576;-46574 26420;-47019 26218 1;-47195 26138;-47275 25919;-47234 25732;-47793 24070 1;-47820 24088;-47849 24104;-47880 24118 1;-48355 24329;-48656 24450;-48997 24842 1;-49440 25352;-49764 25620;-49991 26256;-50051 26250;-49617 26341;-41525 27457 32;-40571 28716 32;-31899 29912 32;-31724 28641 32;-29029 29056 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="48">-45508 22628;-45986 24801 1;-46012 24783;-46040 24769;-46069 24757;-46142 24735 1;-46248 24712;-46359 24732;-46439 24812 1;-46716 25089;-46850 25265;-47130 25539 1;-47198 25606;-47235 25697;-47243 25791;-47889 24121;-47743 24032 1;-47588 23901;-47521 23696;-47584 23490 1;-47708 23081;-48211 23186;-48639 23194 1;-49360 23207;-49680 22644;-50401 22644 1;-51187 22644;-51642 22368;-52268 21894 1;-52623 21625;-52962 21723;-53402 21789;-53444 21654 1;-53485 21467;-53434 21290;-53378 21078;-53331 20896 1;-53082 19919;-52855 19067;-52643 18296;-52047 18372;-52502 21667 32;-51437 21813 32;-51413 21637;-47523 22172;-47547 22349 32;-46078 22551;-45508 22628 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-53130 18623 1;-53505 18525;-53814 18159;-53679 17795 1;-53410 17071;-53295 16642;-52912 15971 1;-52770 15723;-52631 15759;-52345 15753;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">-54528 14403 1;-54263 14379;-54250 14382;-53986 14353 1;-53497 14299;-53364 13389;-53171 12368 1;-53101 11999;-53328 11753;-53701 11566 1;-53905 11464;-54075 11739;-54133 11960 1;-54345 12767;-54505 13209;-54700 14021 1;-54738 14180;-54691 14418;-54528 14403 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-54235 13920;</coords></object>
<object type="0" symbol="84"><coords count="1">-53594 12883;</coords></object>
<object type="0" symbol="84"><coords count="1">-53754 11995;</coords></object>
<object type="1" symbol="132"><coords count="13">-52390 6808 1;-51975 6954;-51519 6736;-51372 6320 1;-51226 5905;-51444 5449;-51860 5303 1;-52275 5156;-52731 5374;-52877 5790 1;-53024 6206;-52806 6661;-52390 6808 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="13">-52390 6808 1;-51975 6954;-51519 6736;-51372 6320 1;-51226 5905;-51444 5449;-51860 5303 1;-52275 5156;-52731 5374;-52877 5790 1;-53024 6206;-52806 6661;-52390 6808 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-49148 7144;</coords></object>
<object type="0" symbol="84"><coords count="1">-41499 13180;</coords></object>
<object type="0" symbol="84"><coords count="1">-45354 12657;</coords></object>
<object type="0" symbol="84"><coords count="1">-28931 17317;</coords></object>
<object type="0" symbol="84"><coords count="1">-30344 18800;</coords></object>
<object type="0" symbol="84"><coords count="1">-34200 18608;</coords></object>
<object type="0" symbol="84"><coords count="1">-36486 18329;</coords></object>
<object type="0" symbol="84"><coords count="1">-35561 17858;</coords></object>
<object type="0" symbol="84"><coords count="1">-39469 17806;</coords></object>
<object type="0" symbol="84"><coords count="1">-43684 17526;</coords></object>
<object type="0" symbol="84"><coords count="1">-44320 18897;</coords></object>
<object type="0" symbol="84"><coords count="1">-43841 18390;</coords></object>
<object type="0" symbol="84"><coords count="1">-47478 16392;</coords></object>
<object type="0" symbol="84"><coords count="1">-50462 15363;</coords></object>
<object type="0" symbol="84"><coords count="1">-49816 17932;</coords></object>
<object type="0" symbol="84"><coords count="1">-49940 18804;</coords></object>
<object type="1" symbol="105"><coords count="2">-49627 16178;-49357 14222;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-49698 16140;-49802 16891;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="4">-51624 15258 1;-51257 14451;-50426 14154;-49556 14322;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-53170 17456;</coords></object>
<object type="1" symbol="62"><coords count="19">-54528 14403 1;-54263 14379;-54250 14382;-53986 14353 1;-53497 14299;-53364 13389;-53171 12368 1;-53101 11999;-53328 11753;-53701 11566 1;-53905 11464;-54075 11739;-54133 11960 1;-54345 12767;-54505 13209;-54700 14021 1;-54738 14180;-54691 14418;-54528 14403 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">-53130 18623 1;-53505 18525;-53814 18159;-53679 17795 1;-53410 17071;-53295 16642;-52912 15971 1;-52770 15723;-52631 15759;-52345 15753;-53130 18623 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-48958 19015;-48337 14517;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">-48501 19077;-48258 17315;-48584 16884;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-52672 18069;-49466 18511;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-52632 18257 1;-52863 19091;-53086 19935;-53360 21010 1;-53440 21324;-53530 21556;-53372 21839 1;-53210 22129;-53119 22292;-52957 22582 1;-52791 22879;-52757 23120;-52852 23446 1;-52982 23891;-53112 24335;-53223 24713 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-49579 18937;-49544 18686 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-49493 18318;-49303 16939;-49701 16884;-49602 16167 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">-49561 18911;-48951 18998;-48322 14445;-49308 14174;-49622 16172;-49692 16879;-49308 16957;-49451 18269;-49522 18754;-49561 18911 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-49175 14276;-49362 14224 1;-50375 13940;-51511 14350;-51805 15360 1;-52090 16341;-52318 17129;-52533 17899 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-51336 18469;-49553 18697;-49572 18926;-51348 18691;-51336 18469 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="20">-52539 17877;-49473 18297;-49360 17431;-49308 16957;-49692 16879;-49622 16172;-49611 16104;-49467 14312;-49716 14296 1;-50453 14202;-51143 14448;-51521 15063;-51729 15151 1;-51758 15218;-51784 15287;-51805 15360 1;-51973 15937;-52121 16448;-52258 16928;-52539 17877 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="7">-48976 19008;-48510 19073;-48484 18957;-48258 17315;-48538 16944;-48662 16962;-48976 19008 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-44032 19679;-43895 18696;-43489 18745;-43252 17024;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-42587 19880;-42475 19069;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-42648 19068;-42383 17149;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">-42570 19903;-42204 17085;-43242 16928;-43268 17139;-43489 18745;-43895 18696;-44032 19679;-42570 19903 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-43225 17022 1;-44107 16876;-45008 16675;-46118 16432;-46375 15061;-48366 14503 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-37914 21593;-37610 19384;-38700 19234;-38433 17291;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-36709 21768;-36509 20316;-37053 20241;-36647 17296;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-38525 19252;-38254 17282;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">-37916 21608;-36721 21783;-36690 21630;-36509 20316;-37053 20241;-36647 17296;-36633 17220;-38117 17220;-38396 19262;-38240 19297;-37610 19384;-37892 21435;-37916 21608 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-31835 19229;-31569 17300;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-31810 22459;-31367 19248;-31702 19202;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">-29034 29018;-28400 24579;-26907 23160;-26178 17897 1;-26033 16924;-26852 16010;-27836 16001 1;-28454 15995;-28801 16027;-29419 16035;-30187 17282;-30528 17289 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-30688 21939;-30583 21181;-31026 21120;-30498 17283 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-28057 24240 1;-28294 23530;-28235 22999;-28146 22256;-30712 21905 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="21">-29028 25768;-28590 25842;-28386 24565;-28043 24245;-28090 24135 1;-28288 23476;-28231 22962;-28146 22256;-30681 21909;-30583 21181;-31026 21120;-30498 17283;-31445 17301;-31698 19194;-31518 19227;-31367 19248;-31807 22435;-29334 22815;-29325 22614;-28627 22736;-29028 25768 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="37">-28052 24216;-27912 24115;-26907 23160;-26178 17897 1;-26033 16924;-26852 16010;-27836 16001 1;-28454 15995;-28801 16027;-29419 16035;-30187 17282;-30528 17289;-31961 17319;-32042 17321 1;-35005 17299;-36666 17281;-39629 17296 1;-40765 17302;-41701 17237;-42586 17118;-43514 16972 1;-44305 16832;-45129 16649;-46118 16432;-46375 15061;-48366 14503;-48373 14812;-48670 16961;-48591 16952;-48538 16944;-48258 17315;-48484 18957;-48509 19068;-43827 20292;-38767 22211;-30636 23258;-28052 24216 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-31374 17307;-32042 17321 1;-33879 17307;-35216 17295;-36672 17292 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-38059 17291 1;-38547 17291;-39064 17293;-39629 17296 1;-40765 17302;-41701 17237;-42586 17118 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="77">-53902 21169;-53390 21113;-52678 18318;-52545 17834;-52467 17633;-52258 16928 1;-52121 16448;-51973 15937;-51805 15360 1;-51791 15311;-51775 15264;-51757 15218;-51682 15054 1;-51270 14275;-50280 13975;-49382 14219;-48244 14537;-46375 15061;-46118 16432 1;-45052 16665;-44179 16860;-43330 17004;-42087 17179 1;-41346 17259;-40554 17301;-39629 17296 1;-39150 17294;-38706 17292;-38284 17291;-36576 17292 1;-35157 17296;-33839 17307;-32042 17321;-31484 17309;-30435 17287;-30187 17282;-29419 16035 1;-28801 16027;-28454 15995;-27836 16001 1;-26852 16010;-26033 16924;-26178 17897;-26702 21682;-26714 21765;-26907 23160;-28400 24579;-28580 25837;-28159 25860;-28007 24759;-26550 23363;-26252 21066;-26237 20947;-25869 18111 1;-25715 16920;-26491 15603;-27691 15634;-29681 15685;-30421 16871;-30784 16871;-31750 16870;-34757 16869 1;-36651 16868;-37714 16868;-39608 16867 1;-42037 16866;-43386 16497;-45775 16058;-46045 14671;-49421 13825 1;-50599 13530;-51909 14034;-52204 15212 1;-52707 17219;-53121 18455;-53620 20217;-53902 21169 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="12">-29530 32450;-29061 32499;-29045 32290;-28152 25808;-28583 25799;-28590 25842;-28593 25841;-28627 26165;-29034 29018;-29236 30294;-29375 31166;-29530 32450 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-24683 53659 32;-27196 53327 32;-26565 48547 32;-24052 48879 32;-24683 53659 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-23918 47614 32;-26410 47285 32;-25795 42631 32;-23303 42960 32;-23918 47614 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-23140 41717 32;-25632 41388 32;-24540 33118 32;-23253 33288 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-23052 32327 32;-24404 32144 32;-23762 27392 32;-22410 27575 32;-23052 32327 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-22312 26392;-23599 26219;-23452 25129;-24502 23752;-24145 21100;-21622 21440;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">-25230 57467;-27761 58204;-27290 54531;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">-27132 53341;-26499 48553;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">-26338 47287;-25724 42633;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="4">-21968 24107 32;-24428 23775 32;-24080 21197 32;-21620 21529 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">-23542 21897;</coords></object>
<object type="1" symbol="70"><coords count="13">-22415 22663 1;-22194 22699;-22137 22913;-22084 23131 1;-21998 23484;-21937 23996;-22298 24038 1;-22494 24060;-22697 23866;-22685 23670 1;-22670 23411;-22763 22605;-22415 22663 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">-22685 23668 1;-22671 23406;-22762 22605;-22415 22663 1;-22196 22699;-22138 22909;-22085 23125;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-26230 52054;</coords></object>
<object type="0" symbol="84"><coords count="1">-26082 49253;</coords></object>
<object type="0" symbol="84"><coords count="1">-25774 46786;</coords></object>
<object type="0" symbol="84"><coords count="1">-24737 45035;</coords></object>
<object type="0" symbol="84"><coords count="1">-25083 41075;</coords></object>
<object type="0" symbol="84"><coords count="1">-22290 38408;</coords></object>
<object type="0" symbol="84"><coords count="1">-22611 37643;</coords></object>
<object type="0" symbol="84"><coords count="1">-24096 35868;</coords></object>
<object type="0" symbol="84"><coords count="1">-23404 30045;</coords></object>
<object type="0" symbol="84"><coords count="1">-22189 17432;</coords></object>
<object type="0" symbol="84"><coords count="1">-21066 17012;</coords></object>
<object type="1" symbol="107"><coords count="2">-25571 41398;-25165 38321 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">-25013 37168;-24478 33119 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-25056 38262 32;-23560 38459 32;-23427 37451 32;-24923 37254 32;-25056 38262 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="5">-25056 38262 32;-23560 38459 32;-23427 37451 32;-24923 37254 32;-25056 38262 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-26783 53227;-25985 53332;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-25982 47143;-25184 47248;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">-27751 58202;-25172 57449;-24827 54883;-25123 54846;-27292 54560;-27751 58202 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">-27129 53324;-24711 53657;-24094 48883;-24266 48851;-26462 48561;-27129 53324 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">-26326 47289;-23910 47603;-23291 42971;-23560 42926;-25709 42642;-26326 47289 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">-25558 41410;-23141 41724;-22871 39744;-21536 39910;-21046 36376;-21291 36337;-23590 36025 32;-23221 33290;-23460 33261;-24481 33126;-25558 41410 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-24339 32146;-23074 32321;-22454 27558;-23711 27410;-24339 32146 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">-23600 26222;-22298 26401;-21983 24130;-24426 23810;-24401 23902;-23451 25142;-23600 26222 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-24394 23748;-21964 24062;-21655 21558;-24055 21249;-24394 23748 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="13">-23888 20067;-21463 20363;-21176 18265;-20606 18346;-20533 17928;-19923 18013;-19657 16199;-21226 16160 1;-22327 16155;-23453 16672;-23601 17763;-23689 18415;-23888 20067 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-10916 15685;-21530 15665 1;-22702 15721;-23869 16448;-24030 17610;-24898 23872;-23850 25224;-28204 57568;-29623 58604;-29859 60374;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="51">-29866 60446;-29325 60490;-27808 58300;-27275 54554;-24876 54894;-24710 53647;-27127 53350;-26448 48566;-24102 48880;-23953 47615;-26326 47309;-25697 42623;-23316 42955;-23167 41716;-25540 41402;-24462 33120;-23241 33299;-23081 32312;-24339 32145;-23696 27390;-22469 27575;-22308 26397;-23597 26218;-23468 25127;-24430 23823;-24055 21180;-21630 21468;-21499 20395;-23898 20063;-23851 19760;-23689 18415;-23601 17763 1;-23453 16672;-22327 16155;-21226 16160;-21183 16160;-21133 16169;-20134 16113;-20172 15636;-21565 15664 1;-22737 15720;-23862 16395;-24023 17557;-24659 22145;-24806 23210;-24898 23872;-23850 25224;-28204 57568;-29623 58604;-29811 60014;-29866 60446 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="24">-33150 71560;-31379 71752;-31267 70927;-31107 69630;-29859 60374;-29745 59518;-29623 58604;-28204 57568;-23850 25224;-24898 23872;-24030 17610 1;-23908 16726;-23204 16094;-22358 15818;-27064 15749 1;-26233 16092;-25744 17143;-25869 18111;-26550 23363;-28007 24759;-33327 63371;-32241 64765;-33056 70876;-33150 71560 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="13">-57964 22739;-57475 20862;-56586 20467;-55138 14795;-63156 14721;-69225 35585;-69269 36294;-69389 39172;-61419 39863;-61000 35224;-60185 30511;-59346 27081;-57964 22739 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="83">-61292 39998;-56641 40097;-56603 39688 1;-56604 39704;-56605 39719;-56606 39735;-56591 39504 1;-56419 36732;-56297 35133;-55659 32409 1;-55633 32298;-55607 32189;-55582 32083;-55839 32050 1;-56032 32026;-56192 32007;-56427 31978 1;-56982 31911;-57425 31160;-57092 30711 1;-56636 30097;-56426 29812;-55970 29198 1;-55719 28860;-55264 28995;-54850 29071;-54815 28925;-54524 27770;-53582 24311 1;-53431 23757;-53131 23242;-53423 22748 1;-53555 22525;-53564 22511;-53696 22287 1;-53906 21931;-54012 21648;-53905 21249 1;-53894 21208;-53883 21166;-53872 21126;-53811 20903 1;-53571 20024;-53353 19291;-53141 18577;-53251 18581 1;-53568 18444;-53799 18119;-53679 17795 1;-53410 17071;-53295 16642;-52912 15971 1;-52770 15723;-52631 15759;-52345 15753;-52297 15545;-54740 15595;-56245 20999;-57697 21763;-58885 25711;-58588 25669 1;-57884 25696;-57164 26184;-57250 26878 1;-57307 27336;-57483 27586;-57793 27927 1;-58238 28416;-58444 28730;-58804 29284 1;-59025 29625;-59363 29725;-59767 29679;-59946 29684;-60909 35013;-61007 36074;-60776 36062 1;-59070 36321;-59154 38912;-61221 38886;-61378 39232;-61353 39800;-61292 39998 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-57678 21794;-56247 21029;-54742 15588;-54394 14400 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-42375 10646;</coords></object>
<object type="0" symbol="84"><coords count="1">-46806 8710;</coords></object>
<object type="0" symbol="84"><coords count="1">-45044 8675;</coords></object>
<object type="0" symbol="84"><coords count="1">-43387 8692;</coords></object>
<object type="0" symbol="84"><coords count="1">-41119 9425;</coords></object>
<object type="0" symbol="84"><coords count="1">-38345 9442;</coords></object>
<object type="0" symbol="84"><coords count="1">-36094 9442;</coords></object>
<object type="0" symbol="84"><coords count="1">-34367 9407;</coords></object>
<object type="0" symbol="84"><coords count="1">-34070 6302;</coords></object>
<object type="0" symbol="84"><coords count="1">-44644 5639;</coords></object>
<object type="0" symbol="84"><coords count="1">-44644 4679;</coords></object>
<object type="0" symbol="84"><coords count="1">-47871 4819;</coords></object>
<object type="1" symbol="124"><coords count="2">-33477 3842;-48412 3825;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">-36513 4033;-36513 6007;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">-40374 4021;-40374 6193;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">-39798 1566;-39800 3553;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="47">2190 -4523;2195 53;2212 12685 1;2213 13560;1238 14411;363 14412;-20139 14209;-36427 14189 1;-39657 14185;-41498 14096;-44668 13473 1;-46567 13100;-47611 12793;-49490 12332 1;-50688 12038;-50976 10566;-50624 9383 1;-49635 6061;-48887 4237;-47322 1144 1;-46482 -517;-45905 -1401;-44805 -2902 1;-43220 -5066;-42173 -6172;-40500 -8269 1;-39636 -9352;-38684 -10157;-37342 -9811 1;-34300 -9027;-32598 -8569;-29530 -7891 1;-27431 -7427;-26235 -7221;-24096 -7006 1;-20512 -6646;-18476 -6639;-14876 -6766 1;-10303 -6928;-7742 -7097;-3169 -7272 1;-2052 -7315;-1679 -7356;-561 -7383 1;1139 -7424;2190 -6333;2190 -4523 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="22">-48242 4219 1;-48963 6244;-49423 7361;-50084 9406 1;-50120 9518;-50141 9582;-50177 9694 1;-50489 10660;-49968 11750;-48985 12005 1;-46697 12599;-45419 12993;-43079 13331 1;-41171 13607;-40086 13729;-38159 13724;-33768 13713;-33730 6230 1;-33729 6052;-33905 5942;-34083 5941;-34423 5939;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-35399 12739 32;-34709 12742 32;-34706 12049 32;-35396 12046 32;-35399 12739 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">-35399 12739 32;-34709 12742 32;-34706 12049 32;-35396 12046 32;-35399 12739 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-35685 11756;</coords></object>
<object type="1" symbol="82"><coords count="13">-37711 13447 1;-37685 12918;-37597 12558;-37483 11980 1;-37408 11596;-37160 11127;-36769 11124 1;-36471 11122;-36203 11120;-35949 11118 33;-35313 11113;-34769 11108;-34069 11107;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">-16624 12666;-16623 13633;-23966 13561;-23870 1907;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-32640 3154;-32631 2046;-29373 2072;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">-26007 13147;-26005 13579;-29630 13592;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-25882 1919 32;-24983 1919 32;-24989 13737 32;-25888 13737 32;-25882 1919 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-25882 1919 32;-24983 1919 32;-24989 13737 32;-25888 13737 32;-25882 1919 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="14">-32597 2016;-29369 2051;-29376 2434;-29376 3209 32;-28754 3209 32;-28754 13095 32;-26054 13095;-26006 13286;-26005 13579;-29630 13592;-30102 13587;-32725 13561;-32659 5475;-32597 2016 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-29630 13592;-32725 13561;-32640 3154;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-23686 2118;-20141 2146;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-25809 914;-22913 914;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-29058 907;-32617 907;-32617 -2565;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-25786 907;-29058 907;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-15369 907;-22951 907;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-15381 914;-12019 914;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-40197 5746;-33489 5746;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="125"><coords count="2">-43822 6028;-43822 4104;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-43387 5392;-40612 5392;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-42751 3537;-42749 1575;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-41368 65008;-41417 65415;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-47312 2989;</coords></object>
<object type="1" symbol="132"><coords count="10">-47841 3430 1;-46664 1149;-46054 -174;-44591 -2282 1;-43534 -3806;-42867 -4609;-41678 -6033;-41569 -6163;-40038 -5377;-40050 -4390 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-35210 2086;</coords></object>
<object type="0" symbol="84"><coords count="1">-33779 3135;</coords></object>
<object type="0" symbol="84"><coords count="1">-34507 3209;</coords></object>
<object type="0" symbol="84"><coords count="1">-38899 3110;</coords></object>
<object type="0" symbol="84"><coords count="1">-42057 3011;</coords></object>
<object type="0" symbol="84"><coords count="1">-44660 3011;</coords></object>
<object type="0" symbol="84"><coords count="1">-46252 1642;</coords></object>
<object type="0" symbol="84"><coords count="1">-42785 -2726;</coords></object>
<object type="0" symbol="84"><coords count="1">-41660 -3608;</coords></object>
<object type="0" symbol="84"><coords count="1">-45280 -2748;</coords></object>
<object type="0" symbol="84"><coords count="1">-44784 -3391;</coords></object>
<object type="1" symbol="132"><coords count="10">-45547 -1858 1;-45595 -2281;-45726 -2659;-45442 -2975 1;-45255 -3183;-45169 -3319;-44962 -3507 1;-44760 -3691;-44522 -3741;-44273 -3629;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">-45547 -1858 1;-45595 -2281;-45726 -2659;-45442 -2975 1;-45255 -3183;-45169 -3319;-44962 -3507 1;-44760 -3691;-44522 -3741;-44273 -3629;-45547 -1858 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-42949 1606;-42548 1607;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">-37577 1793;-39471 1793;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">-41358 -3158;-41919 -3160 32;-41921 -2479 32;-41360 -2477 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-41358 -3158;-41919 -3160 32;-41921 -2479 32;-41360 -2477 32;-41358 -3158 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="19">-43351 -1218;-42827 -494;-42807 -670 1;-42799 -733;-42794 -798;-42792 -869 1;-42781 -1325;-42534 -1799;-42077 -1794;-41397 -1787;-41379 -2335;-42199 -2318 1;-42758 -2286;-43310 -2016;-43344 -1458 1;-43346 -1422;-43347 -1386;-43349 -1351;-43351 -1218 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="26">-42821 -539;-43339 -1242;-43361 -1106 1;-43379 -944;-43430 -807;-43591 -730 1;-43817 -623;-43987 -487;-43998 -237 1;-44029 481;-44102 868;-44085 1577 1;-44081 1740;-44012 1906;-43850 1922 1;-43494 1958;-43271 1965;-42937 1836;-42968 1540 1;-43159 1170;-43247 877;-43150 457 1;-43071 116;-42948 -117;-42869 -386;-42821 -539 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="17">-41656 -1790;-41656 -1790;-42077 -1794 1;-42534 -1799;-42781 -1325;-42792 -869 1;-42794 -798;-42799 -733;-42807 -670;-42827 -494;-42874 -369 1;-42953 -107;-43073 123;-43150 457 1;-43226 785;-43189 1035;-43078 1305;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="25">-43259 1926;-43259 1926 1;-43445 1956;-43619 1945;-43850 1922 1;-44012 1906;-44081 1740;-44085 1577 1;-44102 868;-44029 481;-43998 -237 1;-43987 -487;-43817 -623;-43591 -730 1;-43430 -807;-43379 -944;-43361 -1106;-43339 -1242;-43346 -1418 1;-43345 -1431;-43345 -1445;-43344 -1458 1;-43315 -1940;-42898 -2207;-42425 -2292;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="40">-34519 5948;-34239 5940;-34083 5941 1;-33905 5942;-33729 6052;-33730 6230;-33755 11166;-33893 11107 1;-34969 11108;-35660 11116;-36769 11124 1;-37160 11127;-37408 11596;-37483 11980 1;-37614 12645;-37711 13021;-37719 13698;-38060 13724;-38159 13724 1;-40086 13729;-41171 13607;-43079 13331 1;-45419 12993;-46697 12599;-48985 12005 1;-49968 11750;-50489 10660;-50177 9694 1;-50141 9582;-50120 9518;-50084 9406;-48860 5919;-47150 5966;-47122 7623;-47122 8362 32;-42159 8362 32;-42159 9067 32;-34430 9067 32;-34430 7083;-34519 5948 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-43560 6025;-43560 5572;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="3">-45503 5964;-43788 5964;-43788 5563;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="5">-45505 6377 32;-43350 6377 32;-43350 5993 32;-45505 5993 32;-45505 6377 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-33736 5533;-33718 4216;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-34879 1608;-33719 2280;-33736 3474;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-36201 5533;-33722 5533;-33734 4226;-36201 4238;-36201 5533 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="27">-48922 6051;-47133 6026;-45517 5965;-43308 5977;-36449 6001;-36486 3731;-33747 3620;-33737 3275;-33723 2280;-34879 1608;-37535 1671;-37757 1782;-40237 1831;-41285 1745;-41371 -3992;-43130 -4264 1;-43597 -3672;-44041 -3075;-44591 -2282 1;-46054 -174;-46664 1149;-47841 3430;-48289 4350 1;-48497 4932;-48683 5440;-48860 5919;-48922 6051 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="14">-20952 14227;-21002 13635;-23950 13573;-23910 2006;-17315 2023;-17350 889;-32790 994;-32807 1918;-24975 1930;-24974 13748;-32895 13695;-32912 14219;-25567 14201;-20952 14227 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="16">-34918 171;-32735 183;-32846 13708;-33771 13690;-33721 6216;-33823 6002;-34005 5915;-33703 5585;-33706 5493;-33690 4259;-33687 4129;-33703 3503;-33718 3377;-33724 2281;-34897 1606;-34918 171 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-33706 3456;-34184 3450;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="61">-32852 13681;-32861 14187;-33506 14193;-36427 14189 1;-39657 14185;-41498 14096;-44668 13473 1;-46567 13100;-47611 12793;-49490 12332 1;-50688 12038;-50976 10566;-50624 9383 1;-49635 6061;-48887 4237;-47322 1144 1;-46572 -338;-46032 -1202;-45143 -2437;-44847 -2831;-44273 -3629;-44105 -3842 1;-43963 -4030;-43824 -4211;-43688 -4386;-43159 -4227 1;-43615 -3648;-44053 -3058;-44591 -2282 1;-46029 -210;-46643 1103;-47781 3314;-47857 3397;-47900 3505;-48249 4165;-48289 4273;-48345 4507 1;-48531 5024;-48699 5484;-48860 5919;-48922 6051;-48957 6182 1;-49330 7194;-49667 8115;-50084 9406 1;-50120 9518;-50141 9582;-50177 9694 1;-50489 10660;-49968 11750;-48985 12005 1;-46697 12599;-45419 12993;-43079 13331 1;-41171 13607;-40086 13729;-38159 13724;-35168 13717;-33782 13727;-33752 13622;-32852 13681 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="46">-21031 14215;-21043 15646;-21142 15655;-21565 15664 1;-22042 15687;-22512 15812;-22911 16031;-26716 15947 1;-26824 15867;-26940 15800;-27064 15749;-27497 15641 1;-27560 15635;-27625 15632;-27691 15634;-29681 15685;-30421 16871;-31505 16871;-32615 16870;-34757 16869 1;-36651 16868;-37714 16868;-39608 16867 1;-42037 16866;-43386 16497;-45775 16058;-46045 14671;-49421 13825 1;-50275 13611;-51198 13817;-51754 14395;-50748 10660 1;-50666 11447;-50271 12140;-49490 12332 1;-47611 12793;-46567 13100;-44668 13473 1;-41498 14096;-39657 14185;-36427 14189;-28174 14199;-27335 14205;-25567 14201;-22054 14221;-21031 14215 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="61">-50382 -5664 1;-50250 -5726;-50093 -5682;-50025 -5553 1;-49730 -4996;-49617 -4654;-49445 -4048 1;-49327 -3633;-49416 -3323;-49654 -2963 1;-49861 -2650;-50155 -2550;-50530 -2568 1;-51092 -2595;-51427 -2788;-51838 -3172 1;-52123 -3438;-52144 -3770;-52048 -4147 1;-51939 -4572;-51736 -4824;-51345 -5023 1;-50984 -5207;-50527 -5039;-50370 -4665 1;-50198 -4258;-50177 -3706;-50592 -3555 1;-50850 -3461;-51052 -3541;-51283 -3691 1;-51397 -3765;-51384 -3917;-51320 -4036 1;-51265 -4138;-51131 -4106;-51024 -4061 1;-50895 -4007;-50669 -4008;-50678 -4147 1;-50692 -4371;-50726 -4640;-50950 -4653 1;-51285 -4672;-51596 -4490;-51653 -4159 1;-51717 -3791;-51612 -3470;-51295 -3271 1;-50928 -3040;-50545 -3017;-50185 -3259 1;-49759 -3546;-49801 -4117;-50049 -4566 1;-50221 -4877;-50311 -5055;-50481 -5368 1;-50539 -5475;-50492 -5612;-50382 -5664 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="37">-49099 -4406 1;-49031 -4271;-48916 -4059;-48803 -4159 1;-48703 -4247;-48623 -4284;-48569 -4406 1;-48509 -4542;-48609 -4705;-48754 -4739 1;-48984 -4794;-49085 -4977;-49136 -5208 1;-49187 -5438;-49247 -5721;-49025 -5800 1;-48817 -5874;-48622 -5710;-48544 -5504 1;-48512 -5418;-48493 -5371;-48461 -5285 1;-48433 -5212;-48368 -5140;-48297 -5171 1;-48191 -5218;-48252 -5361;-48297 -5467 1;-48476 -5892;-48807 -6354;-49235 -6183 1;-49531 -6065;-49746 -5741;-49605 -5455 1;-49404 -5047;-49305 -4816;-49099 -4406 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-52278 -7997 1;-52045 -7531;-51861 -6922;-52313 -6662 1;-52661 -6462;-53123 -6597;-53298 -6959 1;-53415 -7200;-53477 -7339;-53551 -7596 1;-53615 -7819;-53436 -8088;-53228 -8189 1;-52876 -8359;-52453 -8347;-52278 -7997 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-55165 -8974 1;-55084 -9120;-54841 -9096;-54738 -8965 1;-54609 -8801;-54464 -8618;-54589 -8451 1;-54728 -8266;-55009 -8270;-55182 -8424 1;-55264 -8497;-55283 -8587;-55261 -8695 1;-55238 -8808;-55221 -8873;-55165 -8974 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-54319 -11382 1;-54207 -11519;-53927 -11471;-53874 -11303 1;-53766 -10962;-53581 -10635;-53839 -10387 1;-53993 -10240;-54082 -10158;-54258 -10038 1;-54407 -9935;-54707 -9988;-54703 -10169 1;-54693 -10636;-54649 -10979;-54319 -11382 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-54502 -5345 1;-54146 -5276;-53701 -5401;-53673 -5763 1;-53643 -6149;-53513 -6459;-53769 -6749 1;-53931 -6932;-54170 -7063;-54371 -6924 1;-54710 -6689;-55084 -6471;-54991 -6069 1;-54914 -5737;-54837 -5410;-54502 -5345 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="61">-50382 -5664 1;-50250 -5726;-50093 -5682;-50025 -5553 1;-49730 -4996;-49617 -4654;-49445 -4048 1;-49327 -3633;-49416 -3323;-49654 -2963 1;-49861 -2650;-50155 -2550;-50530 -2568 1;-51092 -2595;-51427 -2788;-51838 -3172 1;-52123 -3438;-52144 -3770;-52048 -4147 1;-51939 -4572;-51736 -4824;-51345 -5023 1;-50984 -5207;-50527 -5039;-50370 -4665 1;-50198 -4258;-50177 -3706;-50592 -3555 1;-50850 -3461;-51052 -3541;-51283 -3691 1;-51397 -3765;-51384 -3917;-51320 -4036 1;-51265 -4138;-51131 -4106;-51024 -4061 1;-50895 -4007;-50669 -4008;-50678 -4147 1;-50692 -4371;-50726 -4640;-50950 -4653 1;-51285 -4672;-51596 -4490;-51653 -4159 1;-51717 -3791;-51612 -3470;-51295 -3271 1;-50928 -3040;-50545 -3017;-50185 -3259 1;-49759 -3546;-49801 -4117;-50049 -4566 1;-50221 -4877;-50311 -5055;-50481 -5368 1;-50539 -5475;-50492 -5612;-50382 -5664 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="37">-49099 -4406 1;-49031 -4271;-48916 -4059;-48803 -4159 1;-48703 -4247;-48623 -4284;-48569 -4406 1;-48509 -4542;-48609 -4705;-48754 -4739 1;-48984 -4794;-49085 -4977;-49136 -5208 1;-49187 -5438;-49247 -5721;-49025 -5800 1;-48817 -5874;-48622 -5710;-48544 -5504 1;-48512 -5418;-48493 -5371;-48461 -5285 1;-48433 -5212;-48368 -5140;-48297 -5171 1;-48191 -5218;-48252 -5361;-48297 -5467 1;-48476 -5892;-48807 -6354;-49235 -6183 1;-49531 -6065;-49746 -5741;-49605 -5455 1;-49404 -5047;-49305 -4816;-49099 -4406 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-55165 -8974 1;-55084 -9120;-54841 -9096;-54738 -8965 1;-54609 -8801;-54464 -8618;-54589 -8451 1;-54728 -8266;-55009 -8270;-55182 -8424 1;-55264 -8497;-55283 -8587;-55261 -8695 1;-55238 -8808;-55221 -8873;-55165 -8974 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-52278 -7997 1;-52045 -7531;-51861 -6922;-52313 -6662 1;-52661 -6462;-53123 -6597;-53298 -6959 1;-53415 -7200;-53477 -7339;-53551 -7596 1;-53615 -7819;-53436 -8088;-53228 -8189 1;-52876 -8359;-52453 -8347;-52278 -7997 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-54502 -5345 1;-54146 -5276;-53701 -5401;-53673 -5763 1;-53643 -6149;-53513 -6459;-53769 -6749 1;-53931 -6932;-54170 -7063;-54371 -6924 1;-54710 -6689;-55084 -6471;-54991 -6069 1;-54914 -5737;-54837 -5410;-54502 -5345 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-54319 -11382 1;-54207 -11519;-53927 -11471;-53874 -11303 1;-53766 -10962;-53581 -10635;-53839 -10387 1;-53993 -10240;-54082 -10158;-54258 -10038 1;-54407 -9935;-54707 -9988;-54703 -10169 1;-54693 -10636;-54649 -10979;-54319 -11382 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="48">-59015 64185 1;-59209 62728;-59831 62001;-60718 60829 1;-63344 57356;-64705 55319;-67010 51625 1;-68817 48728;-69582 46842;-70193 43483 1;-70691 40742;-70650 39128;-70415 36352 1;-70205 33866;-69810 32488;-69057 30110;-64621 15057;-63917 12681 1;-63706 11843;-63032 11477;-62427 11530 1;-61592 11603;-61133 11858;-60329 12097 1;-59081 12467;-58226 12542;-56996 12115 1;-55934 11747;-55465 11044;-55042 10003 1;-54771 9336;-54656 8937;-54554 8224 1;-54488 7759;-54485 7090;-54955 7090 1;-55355 7090;-55606 7458;-55635 7857 1;-55735 9209;-56383 11435;-58188 11120 1;-59756 10847;-60488 10855;-61986 10318 1;-62948 9973;-62935 8831;-62771 7823 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-55112 8084;</coords></object>
<object type="1" symbol="92"><coords count="2">-55010 7313;-54776 5302;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="4">-54579 8005 1;-54003 7472;-53753 6975;-53715 6191;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="47">-55236 15606 1;-55143 15238;-55050 14995;-55175 14637 1;-55279 14338;-55264 14130;-55175 13826 1;-54884 12830;-54655 12292;-54364 11296 1;-54259 10934;-53828 10935;-53727 10572 1;-53415 9456;-53228 8833;-52956 7707 1;-52855 7289;-53080 7033;-53290 6658 1;-53559 6178;-53450 5738;-53191 5252 1;-53003 4899;-52700 4829;-52315 4722 1;-52006 4636;-51827 4473;-51698 4179 1;-50549 1551;-49856 86;-48379 -2372 1;-47158 -4404;-46430 -5548;-44827 -7294 1;-43556 -8679;-42878 -9494;-41765 -11009 1;-41363 -11556;-41571 -12114;-41124 -12625 1;-40690 -13120;-40447 -13398;-40014 -13893 1;-39570 -14400;-39000 -14271;-38546 -14771;-38110 -15378 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-40845 -11492 1;-40225 -11480;-39757 -11539;-39340 -11998 1;-39051 -12315;-39043 -12630;-39056 -13059 1;-39061 -13245;-39102 -13537;-39279 -13479 1;-39749 -13325;-39959 -13079;-40278 -12701 1;-40287 -12691;-41321 -11501;-40845 -11492 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-40623 -11838;</coords></object>
<object type="0" symbol="84"><coords count="1">-39624 -12282;</coords></object>
<object type="0" symbol="84"><coords count="1">-39464 -13170;</coords></object>
<object type="1" symbol="132"><coords count="11">-40874 -11498 1;-42498 -9356;-43504 -8230;-45167 -6119 1;-45895 -5196;-46326 -4689;-46944 -3689 1;-48487 -1195;-49301 243;-50572 2887;-51694 5354;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-53503 11661;-52230 6845;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="100">-57477 20981;-57674 21758;-57294 21589;-56247 21029;-54742 15588;-54394 14400;-54596 14396 1;-54675 14327;-54728 14139;-54700 14021 1;-54505 13209;-54345 12767;-54133 11960 1;-54075 11739;-53905 11464;-53701 11566 1;-53629 11602;-53563 11640;-53503 11681;-53458 11492;-52230 6845;-52583 6709 1;-52869 6509;-52999 6136;-52877 5790 1;-52731 5374;-52275 5156;-51860 5303 1;-51804 5323;-51751 5348;-51702 5379;-51639 5233;-50572 2887 1;-49301 243;-48487 -1195;-46944 -3689 1;-46326 -4689;-45895 -5196;-45167 -6119 1;-43504 -8230;-42498 -9356;-40874 -11498;-40954 -11700 1;-40850 -12043;-40285 -12694;-40278 -12701 1;-39959 -13079;-39749 -13325;-39279 -13479 1;-39271 -13482;-39263 -13484;-39255 -13485;-39520 -14231 1;-39695 -14159;-39864 -14064;-40014 -13893 1;-40447 -13398;-40690 -13120;-41124 -12625 1;-41571 -12114;-41363 -11556;-41765 -11009 1;-42878 -9494;-43556 -8679;-44827 -7294 1;-46430 -5548;-47158 -4404;-48379 -2372 1;-49856 86;-50549 1551;-51698 4179 1;-51827 4473;-52006 4636;-52315 4722 1;-52700 4829;-53003 4899;-53191 5252 1;-53450 5738;-53559 6178;-53290 6658 1;-53080 7033;-52855 7289;-52956 7707 1;-53228 8833;-53415 9456;-53727 10572 1;-53828 10935;-54259 10934;-54364 11296 1;-54655 12292;-54884 12830;-55175 13826 1;-55264 14130;-55279 14338;-55175 14637 1;-55050 14995;-55143 15238;-55236 15606;-56565 20459;-57477 20981 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-51879 1376 32;-50818 -869 32;-53004 -1902 32;-54065 343 32;-51879 1376 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-54988 -943;</coords></object>
<object type="0" symbol="143"><coords count="1">-52731 377;</coords></object>
<object type="0" symbol="143"><coords count="1">-52200 -795;</coords></object>
<object type="1" symbol="120"><coords count="5">-51879 1376 32;-50818 -869 32;-53004 -1902 32;-54065 343 32;-51879 1376 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-57771 9943;</coords></object>
<object type="1" symbol="92"><coords count="2">-59473 13485;-59281 12211;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">-57030 13310;-57344 12019;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">-55268 12089;-55896 11269;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-58028 16520;</coords></object>
<object type="0" symbol="84"><coords count="1">-57138 15211;</coords></object>
<object type="0" symbol="84"><coords count="1">-59319 15403;</coords></object>
<object type="0" symbol="84"><coords count="1">-61186 15351;</coords></object>
<object type="1" symbol="109"><coords count="9">-55530 -3822;-56507 -2181;-58060 -1763;-59196 -1030;-61282 6867 32;-62930 9321 32;-63455 11687 32;-62868 13094 32;-63557 15497 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="5">-62283 14638;-61934 12894 1;-62167 12362;-62598 12087;-62493 11515;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-62825 11575;-62171 11619;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-62781 11995;-62165 11865;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-62584 12427;-62029 12124;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-62399 12704;-61813 12501;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-62245 12883;-61616 12994;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">-62199 10122;-60941 8197;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-62296 10059;-61038 8134;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-62094 10191;-60836 8266;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="29">-62832 12955;-62656 12842 1;-62524 12800;-62366 12800;-62177 12846 1;-60743 13194;-59861 13450;-58374 13423 1;-57251 13403;-56529 13169;-55670 12446 1;-55514 12315;-55427 12184;-55349 12042;-55836 11403;-55968 11509 1;-56239 11765;-56569 11967;-56996 12115 1;-58226 12542;-59081 12467;-60329 12097 1;-61133 11858;-61592 11603;-62427 11530 1;-62864 11492;-63140 11579;-63405 11806;-62832 12955 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="30">-55853 11368;-55313 12031;-55220 11803 1;-55188 11747;-55153 11688;-55112 11626 1;-54774 11119;-54387 10945;-54187 10369 1;-53834 9353;-53814 8732;-53577 7683 1;-53481 7260;-53537 6870;-53705 6527;-53779 6704 1;-53879 7161;-54091 7519;-54452 7883;-54550 8192 1;-54551 8203;-54553 8214;-54554 8224 1;-54656 8937;-54771 9336;-55042 10003 1;-55212 10422;-55390 10787;-55611 11096;-55853 11368 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-54318 6954;</coords></object>
<object type="0" symbol="84"><coords count="1">-54493 6098;</coords></object>
<object type="1" symbol="62"><coords count="27">-63269 14630;-55138 14770;-55211 14518 1;-55273 14279;-55252 14088;-55175 13826 1;-54884 12830;-54655 12292;-54364 11296 1;-54259 10934;-53828 10935;-53727 10572 1;-53415 9456;-53228 8833;-52956 7707 1;-52855 7289;-53080 7033;-53290 6658 1;-53525 6238;-53471 5849;-53281 5432;-60460 4110;-61245 6797;-62868 9326;-63461 11839;-62815 13147;-63269 14630 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="5">-65376 64636;-65374 64652 1;-65836 63819;-66154 63251;-66602 62426;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="18">-57781 64048;-57781 64048 1;-57856 63505;-57981 63125;-58252 62575 1;-58930 61200;-59556 60569;-60423 59305;-60633 59058;-60669 58982;-60910 58621;-62539 56182;-62958 55554;-63931 54097;-64291 53574;-65028 52501;-65219 52207;-65685 51420;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="8">-66760 49586;-66793 49527 1;-67934 47499;-68579 46242;-68955 43922 1;-69218 42301;-69380 41013;-69424 39724;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">-49773 -1087;-52163 4513;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="2">-49971 -1171;-52361 4429;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="7">-43599 -9210 1;-44418 -8251;-45610 -6918;-46321 -5876 1;-47598 -4006;-48194 -3144;-49294 -1165;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="7">-44474 -8506 1;-45293 -7547;-45787 -7031;-46498 -5989 1;-47775 -4119;-48379 -3244;-49479 -1265;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-51617 3640;</coords></object>
<object type="0" symbol="84"><coords count="1">-50420 975;</coords></object>
<object type="0" symbol="84"><coords count="1">-49063 -2589;</coords></object>
<object type="0" symbol="84"><coords count="1">-46250 -5489;</coords></object>
<object type="1" symbol="127"><coords count="5">-49016 -15376 32;-48633 -16202 32;-49451 -16581 32;-49834 -15754 32;-49016 -15376 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-50163 -15302;</coords></object>
<object type="0" symbol="143"><coords count="1">-48646 -14759;</coords></object>
<object type="0" symbol="142"><coords count="1">-47766 -12262;</coords></object>
<object type="0" symbol="84"><coords count="1">-48621 -11424;</coords></object>
<object type="0" symbol="84"><coords count="1">-47556 -13850;</coords></object>
<object type="0" symbol="84"><coords count="1">-47748 -15751;</coords></object>
<object type="0" symbol="84"><coords count="1">-52546 -11616;</coords></object>
<object type="0" symbol="84"><coords count="1">-54064 -14286;</coords></object>
<object type="1" symbol="103"><coords count="2">-47212 -18076;-48109 -17578;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">-49873 -18752;-49379 -20072;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">-52241 -19270;-52456 -21078;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="10">-51893 -23714;-53655 -23121 32;-54318 -20417 32;-54064 -18106 32;-54489 -16703;-55641 -12899;-56688 -8206 32;-58345 -7683 32;-59217 -3844 32;-58310 -1681 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="72">-62771 7823;-60406 -867 1;-60120 -1704;-59758 -2359;-58905 -2594 1;-58304 -2759;-57954 -2802;-57352 -2961 1;-57137 -3018;-56986 -3175;-56986 -3397 1;-56986 -3606;-57303 -3527;-57510 -3502 1;-58059 -3435;-58691 -3316;-58888 -3833 1;-59143 -4502;-58561 -5902;-58324 -6578 1;-57863 -7895;-58225 -7666;-57806 -9179;-55314 -18178 1;-55009 -19279;-54431 -19932;-53223 -20156 1;-51929 -20396;-51072 -20466;-49862 -19935 1;-48184 -19199;-47179 -18431;-46390 -16777 1;-45474 -14857;-45271 -13377;-45919 -11351 1;-46143 -10652;-46278 -10080;-46948 -9780 1;-47505 -9530;-48329 -9208;-49088 -9222 1;-49365 -9227;-49366 -8812;-49101 -8812 1;-47592 -8812;-45819 -9363;-45420 -10818 1;-45070 -12093;-44869 -12794;-44896 -14116 1;-44925 -15534;-45201 -16418;-45978 -17605 1;-47038 -19223;-48334 -20177;-50008 -21146 1;-50462 -21409;-50524 -20935;-51044 -21004 1;-51598 -21078;-51383 -21614;-51908 -21804 1;-53439 -22359;-53206 -23288;-53219 -24480;-53219 -24480 1;-53227 -25227;-52985 -26815;-52632 -28281;-50429 -37634;-49492 -41321 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-56725 -8195;-56794 -6206;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="24">-60101 63913 1;-60162 62768;-60773 62234;-61433 61297 1;-64079 57541;-65669 55497;-68021 51551 1;-69747 48654;-70429 46776;-71031 43458 1;-71597 40338;-71743 38631;-71327 35488 1;-71154 34176;-70812 33303;-70439 32033;-65529 15082;-60936 -1028;-58686 -9106;-55777 -19551;-52969 -30231;-50724 -39435;-48577 -48244;-47763 -51581 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">-58532 -6318;-56910 -6265;-56787 -8097;-58393 -7591;-58532 -6318 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="8">-58794 -3229 1;-58506 -3855;-58315 -4202;-58148 -4870;-57834 -6297;-58550 -6353;-59213 -3788;-58794 -3229 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="19">-58615 -2673 1;-58041 -2880;-57673 -3105;-57393 -3648 1;-57211 -4000;-57012 -4301;-56616 -4301 1;-56074 -4301;-55735 -4313;-55247 -4079 1;-55001 -3961;-54949 -3644;-55074 -3401 1;-55262 -3033;-55454 -3135;-55864 -3080;-56505 -2266;-58319 -1674;-58615 -2673 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="16">-55528 -3143 1;-55320 -3227;-55193 -3169;-55074 -3401 1;-54949 -3644;-55001 -3961;-55247 -4079 1;-55735 -4313;-56074 -4301;-56616 -4301 1;-57012 -4301;-57211 -4000;-57393 -3648 1;-57601 -3244;-57858 -3016;-58213 -2840;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">-57307 -6251;-57850 -6275 32;-57897 -6013;-58148 -4870 1;-58275 -4360;-58417 -4037;-58605 -3635;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="22">-50679 -7657 1;-50559 -7177;-50497 -6745;-50853 -6401 1;-51190 -6076;-51458 -5889;-51708 -5493 1;-51887 -5209;-52074 -5158;-52406 -5109 1;-52605 -5079;-52976 -5143;-52877 -5319 1;-52682 -5665;-52442 -5778;-52092 -5964 1;-51519 -6268;-51269 -6731;-51219 -7378 1;-51201 -7615;-50737 -7887;-50679 -7657 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="10">-49404 -5319 1;-48591 -3512;-48246 -4882;-48393 -5301 1;-48541 -5724;-48766 -6133;-49213 -6104 1;-49532 -6083;-49535 -5611;-49404 -5319 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="22">-54046 -4534 1;-54093 -4092;-54779 -4255;-55180 -4446 1;-55912 -4795;-56242 -5517;-56087 -6313 1;-55978 -6876;-56042 -7313;-55529 -7570 1;-55278 -7696;-54917 -8048;-54761 -7814 33;-54554 -7502;-55878 -7296;-55599 -5982 1;-55487 -5453;-55363 -4925;-54831 -4830 1;-54508 -4772;-54011 -4860;-54046 -4534 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="127">-53960 -4892 1;-53827 -4841;-53704 -4710;-53697 -4516 1;-53691 -4365;-53534 -4298;-53383 -4289 1;-53012 -4266;-52671 -4242;-52511 -3911 1;-52488 -3837;-52468 -3752;-52448 -3662 1;-52410 -3490;-52381 -3328;-52335 -3168 1;-52358 -2924;-52594 -2626;-52371 -2562 1;-52258 -2530;-52179 -2632;-52113 -2759 1;-52047 -2734;-51986 -2691;-51913 -2655 1;-51297 -2347;-50958 -2150;-50308 -1922 1;-49944 -1794;-49566 -1931;-49384 -2271 1;-48819 -3324;-48399 -3867;-47953 -4976 1;-47725 -5542;-47918 -6089;-48389 -6476 1;-48747 -6771;-49145 -6682;-49576 -6511 1;-50330 -6212;-50894 -6141;-51390 -5499 1;-51542 -5303;-51623 -5190;-51774 -4993 1;-51990 -4710;-52309 -4774;-52664 -4801 1;-52907 -4819;-53046 -4944;-53188 -5142 1;-53368 -5393;-53110 -5718;-52830 -5846 1;-52226 -6122;-51703 -6383;-51621 -7042 1;-51533 -7747;-51651 -8384;-52263 -8745 1;-52549 -8914;-52901 -9025;-53114 -8770 1;-53234 -8626;-53340 -8579;-53509 -8499 1;-53735 -8392;-53974 -8646;-54015 -8893 1;-54066 -9196;-54162 -9525;-53891 -9671 1;-53734 -9756;-53507 -9797;-53435 -9634 1;-53386 -9524;-53449 -9434;-53521 -9338 1;-53586 -9252;-53644 -9144;-53570 -9066 1;-53470 -8961;-53279 -8945;-53200 -9066 1;-52977 -9404;-52954 -9802;-53226 -10102 1;-53447 -10346;-53262 -10615;-53312 -10941 1;-53382 -11395;-53443 -11737;-53818 -12002 1;-54097 -12200;-54483 -11988;-54632 -11681 1;-54994 -10934;-55389 -10498;-55323 -9670 1;-55298 -9360;-55415 -9180;-55582 -8918 1;-55771 -8623;-55951 -8406;-55866 -8066 1;-55848 -7993;-55834 -7954;-55816 -7881 1;-55783 -7748;-55589 -7750;-55471 -7820 1;-55183 -7990;-54975 -8093;-54644 -8042 1;-54474 -8016;-54432 -7728;-54558 -7610 1;-54999 -7197;-55446 -6955;-55458 -6351 1;-55470 -5727;-55274 -5051;-54656 -4970 1;-54374 -4933;-54135 -4917;-53960 -4892 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-54308 -4377;</coords></object>
<object type="0" symbol="84"><coords count="1">-51813 -2527;</coords></object>
<object type="0" symbol="84"><coords count="1">-54500 -2719;</coords></object>
<object type="1" symbol="120"><coords count="296">-50308 -1922 1;-50958 -2150;-51297 -2347;-51913 -2655 1;-51979 -2688;-52036 -2726;-52084 -2769;-52084 -2747 1;-52094 -2751;-52103 -2755;-52113 -2759 1;-52179 -2632;-52258 -2530;-52371 -2562 1;-52558 -2616;-52422 -2834;-52360 -3047;-52318 -3169 1;-52378 -3313;-52409 -3482;-52448 -3662 1;-52476 -3790;-52505 -3907;-52544 -4013;-52564 -4000 1;-52739 -4247;-53049 -4268;-53383 -4289 1;-53534 -4298;-53691 -4365;-53697 -4516 1;-53703 -4692;-53805 -4815;-53922 -4875;-53925 -4877 1;-54144 -4917;-54379 -4934;-54656 -4970 1;-55274 -5051;-55470 -5727;-55458 -6351 1;-55446 -6955;-54999 -7197;-54558 -7610 1;-54432 -7728;-54474 -8016;-54644 -8042 1;-54975 -8093;-55183 -7990;-55471 -7820 1;-55589 -7750;-55783 -7748;-55816 -7881 1;-55834 -7954;-55848 -7993;-55866 -8066 1;-55951 -8406;-55771 -8623;-55582 -8918 1;-55415 -9180;-55298 -9360;-55323 -9670 1;-55389 -10498;-54994 -10934;-54632 -11681 1;-54483 -11988;-54097 -12200;-53818 -12002 1;-53443 -11737;-53382 -11395;-53312 -10942 1;-53262 -10615;-53447 -10346;-53226 -10102 1;-52954 -9802;-52977 -9404;-53200 -9066 1;-53279 -8945;-53470 -8961;-53570 -9066 1;-53644 -9144;-53586 -9252;-53521 -9338 1;-53449 -9434;-53386 -9524;-53435 -9634 1;-53507 -9797;-53734 -9756;-53891 -9671 1;-54162 -9525;-54066 -9196;-54015 -8893 1;-53974 -8646;-53735 -8392;-53509 -8499 1;-53340 -8579;-53234 -8626;-53114 -8770 1;-52901 -9025;-52549 -8914;-52263 -8745 1;-51651 -8384;-51533 -7747;-51621 -7042 1;-51703 -6383;-52226 -6122;-52830 -5846 1;-53110 -5718;-53368 -5393;-53188 -5142 1;-53046 -4944;-52907 -4819;-52664 -4801 1;-52309 -4774;-51990 -4710;-51774 -4993 1;-51623 -5190;-51542 -5303;-51390 -5499 1;-50894 -6141;-50330 -6212;-49576 -6511 1;-49145 -6682;-48747 -6771;-48389 -6476 1;-47918 -6089;-47725 -5542;-47953 -4976 1;-48399 -3867;-48819 -3324;-49384 -2271 1;-49566 -1931;-49944 -1794;-50308 -1922 18;-49654 -2963 1;-49416 -3323;-49327 -3633;-49445 -4048 1;-49617 -4654;-49730 -4996;-50025 -5553 1;-50093 -5682;-50250 -5726;-50382 -5664 1;-50492 -5612;-50539 -5475;-50481 -5368 1;-50311 -5055;-50221 -4877;-50049 -4566 1;-49801 -4117;-49759 -3546;-50185 -3259 1;-50545 -3017;-50928 -3040;-51295 -3271 1;-51612 -3470;-51717 -3791;-51653 -4159 1;-51596 -4490;-51285 -4672;-50950 -4653 1;-50726 -4640;-50692 -4371;-50678 -4147 1;-50669 -4008;-50895 -4007;-51024 -4061 1;-51131 -4106;-51265 -4138;-51320 -4036 1;-51384 -3917;-51397 -3765;-51283 -3691 1;-51052 -3541;-50850 -3461;-50592 -3555 1;-50177 -3706;-50198 -4258;-50370 -4665 1;-50527 -5039;-50984 -5207;-51345 -5023 1;-51736 -4824;-51939 -4572;-52048 -4147 1;-52144 -3770;-52123 -3438;-51838 -3172 1;-51427 -2788;-51092 -2595;-50530 -2568 1;-50155 -2550;-49861 -2650;-49654 -2963 18;-48803 -4159 1;-48703 -4247;-48623 -4284;-48569 -4406 1;-48509 -4542;-48609 -4705;-48754 -4739 1;-48984 -4794;-49085 -4977;-49136 -5208 1;-49187 -5438;-49247 -5721;-49025 -5800 1;-48817 -5874;-48622 -5710;-48544 -5504 1;-48512 -5418;-48493 -5371;-48461 -5285 1;-48433 -5212;-48368 -5140;-48297 -5171 1;-48191 -5218;-48252 -5361;-48297 -5467 1;-48476 -5892;-48807 -6354;-49235 -6183 1;-49531 -6065;-49746 -5741;-49605 -5455 1;-49404 -5047;-49305 -4816;-49099 -4406 1;-49031 -4271;-48916 -4059;-48803 -4159 18;-53673 -5763 1;-53643 -6149;-53513 -6459;-53769 -6749 1;-53931 -6932;-54170 -7063;-54371 -6924 1;-54710 -6689;-55084 -6471;-54991 -6069 1;-54914 -5737;-54837 -5410;-54502 -5345 1;-54146 -5276;-53701 -5401;-53673 -5763 18;-52313 -6662 1;-51861 -6922;-52045 -7531;-52278 -7997 1;-52453 -8347;-52876 -8359;-53228 -8189 1;-53436 -8088;-53615 -7819;-53551 -7596 1;-53477 -7339;-53415 -7200;-53298 -6959 1;-53123 -6597;-52661 -6462;-52313 -6662 18;-54589 -8451 1;-54464 -8618;-54609 -8801;-54738 -8965 1;-54841 -9096;-55083 -9120;-55165 -8975 1;-55221 -8873;-55238 -8808;-55261 -8695 1;-55283 -8587;-55264 -8497;-55182 -8424 1;-55009 -8270;-54728 -8266;-54589 -8451 18;-54258 -10038 1;-54082 -10158;-53993 -10240;-53839 -10387 1;-53581 -10635;-53766 -10962;-53874 -11303 1;-53927 -11471;-54207 -11519;-54319 -11382 1;-54649 -10979;-54693 -10636;-54703 -10169 1;-54707 -9988;-54407 -9935;-54258 -10038 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="24">-60601 4204;-53125 5611;-52903 5166;-51718 4624;-49917 972;-48437 -1742;-46586 -4580;-43946 -8034;-44538 -8454;-46191 -8429;-48190 -9959;-46907 -14351;-47672 -16745;-49473 -18373;-52434 -18373;-53667 -16276;-53741 -14845;-55173 -14104;-56628 -8183;-58355 -7640;-59170 -3889;-58380 -1619;-59219 -953;-60601 4204 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="8">-54886 -14896 1;-54531 -15193;-54172 -15301;-54066 -15751 1;-53978 -16127;-54054 -16539;-54415 -16676;-54886 -14896 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">-54537 -15151 1;-54318 -15304;-54136 -15452;-54066 -15751 1;-54021 -15945;-54019 -16148;-54077 -16318;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="18">-66899 14843;-63544 15707;-63494 15065;-63137 14198;-62815 13147;-63461 11839;-62868 9326;-61245 6797;-60460 4110;-60353 3351;-59196 -1030;-58266 -1630;-59152 -3810;-58239 -7708;-56734 -8128;-56512 -8893;-60114 -9016;-66899 14843 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="67">-54765 15636;-52287 15618;-52238 15348 1;-52227 15303;-52215 15258;-52204 15212 1;-52100 14795;-51868 14463;-51561 14220;-50717 10907;-50751 10672;-50748 10660;-50764 10315 1;-50761 10002;-50713 9683;-50624 9383 1;-49635 6061;-48887 4237;-47322 1144 1;-46696 -94;-46216 -901;-45556 -1853;-45573 -2051 1;-45626 -2397;-45682 -2708;-45442 -2975 1;-45255 -3183;-45169 -3319;-44962 -3507 1;-44763 -3688;-44530 -3739;-44285 -3634;-44166 -3765;-44105 -3842 1;-43988 -3996;-43874 -4146;-43761 -4292;-45814 -5300 1;-46203 -4803;-46532 -4355;-46944 -3689 1;-48487 -1195;-49301 243;-50572 2887;-51694 5354;-51587 5466 1;-51357 5675;-51263 6009;-51372 6320 1;-51501 6684;-51866 6896;-52233 6846;-52289 7068;-53458 11492;-53503 11681;-53324 11833 1;-53191 11978;-53130 12152;-53171 12368 1;-53364 13389;-53497 14299;-53986 14353 1;-54219 14379;-54256 14379;-54444 14396;-54569 15002;-54765 15636 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="22">55495 60745;54495 65448;55701 65415;55753 67280;55520 67286;55648 72240;56755 72211;56748 71959;58504 71910;58483 71175;59214 71286;59256 70971;59630 71027;59147 74731;61751 75071;62468 69576;59436 69180;58440 68075;58328 62711;57441 62509;57374 61117;55495 60745 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="7">55110 60288;53916 65757;54394 65825;54473 65484;55488 60713;55553 60376;55110 60288 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="43">53927 65718;55105 60328;54725 60254;54692 60421;51437 59778;51356 60189;50415 60004;50388 60140;49129 59890;49186 59237;43071 58730;43085 58525;42929 58341;41745 58239;41561 58409;41480 59441;37608 61462;35888 61287;35718 61432;35498 63352;35263 63537;35159 64451;38345 64872;38598 65133;39002 64647;39515 65073;40093 64378;39836 64164;40261 63654;43287 62003;43747 62059;43606 63219;44459 63323;44605 62124;46782 62389;47406 63698;48787 63866;48671 64821;49026 64864;48895 65949;53287 66695;53849 66257;53927 65718 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">47899 77413;48306 74326 32;52587 74844 32;54629 65459;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">47377 70799;</coords></object>
<object type="0" symbol="84"><coords count="1">46592 71741;</coords></object>
<object type="1" symbol="132"><coords count="4">43829 70729;45372 71308;45255 72690;44292 72597 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">45217 73580;44237 73490;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="9">43729 71353 32;44071 71384 32;43962 72583 32;44623 72643 32;44576 73161 32;44277 73134 32;44202 73966 32;43498 73902 32;43729 71353 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="3">43717 71397;44083 71418;43885 73611;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">44081 73129;44036 73622;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">43871 71371;43669 73587;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="3">43477 73923;44233 73992;44310 73151;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">43992 72538;44413 72576;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">44277 73122;44322 72617;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="14">41371 74306;41198 75466;41282 75556;41665 75953;44656 75553;45093 74633;45190 73578;44270 73517;44221 74004;43468 73942;43413 74627;42994 74929;42568 74485;41371 74306 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">46493 74704;</coords></object>
<object type="0" symbol="84"><coords count="1">45926 77103;</coords></object>
<object type="0" symbol="84"><coords count="1">47671 76510;</coords></object>
<object type="0" symbol="84"><coords count="1">47819 75182;</coords></object>
<object type="0" symbol="84"><coords count="1">47928 73576;</coords></object>
<object type="0" symbol="84"><coords count="1">48754 72812;</coords></object>
<object type="1" symbol="132"><coords count="13">54166 66983;53375 67659;52149 67442;52002 68392;52732 68505;52223 71788;50313 71492;50451 70602;47492 70147;45971 71512;45752 74647;44883 76336;45058 76971 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="8">46475 70076 1;46202 69909;45629 69114;45000 70364;45065 70433;45803 70723;46320 70256;46475 70076 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="4">46223 69878 1;45951 69668;45572 69471;45159 70088;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="10">41780 65885;43028 64603;43377 64646;43717 62108;43316 62038;40254 63678;39817 64158;40480 64646;40428 64742;41780 65885 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">47811 63760 32;48755 63874 32;48703 64305 32;47751 64194 32;47811 63760 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">47740 64206;47087 65131;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">47034 65756;46903 66835;47510 66921;47095 69556;45803 70723;43885 69970 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="8">47391 67588 1;45416 67880;45023 66101;45559 65565;47025 65774;46885 66847;47505 66925;47391 67588 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="4">47039 67619 1;45728 67653;45253 66676;45354 66011;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="13">45868 66664 1;46029 66879;46314 66938;46503 66796 1;46692 66653;46713 66364;46552 66149 1;46390 65933;46105 65874;45916 66016 1;45727 66159;45706 66449;45868 66664 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">44074 71425;44000 72542;45246 72690;45382 71302;43827 70728;41829 70568;41650 71160;44074 71425 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">48680 69574 32;50046 69785 32;50304 68109 32;48938 67898 32;48680 69574 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">48680 69574;47721 69426;48130 66814;51669 67371;51526 68301;50836 68195;50687 69168;50153 69086 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">49490 68859;</coords></object>
<object type="1" symbol="38"><coords count="5">48680 69574 32;50046 69785 32;50304 68109 32;48938 67898 32;48680 69574 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">51139 71598 32;51496 69298 32;52588 69467 32;52231 71767 32;51139 71598 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">51139 71598 32;51496 69298 32;52588 69467 32;52231 71767 32;51139 71598 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">48531 67350;</coords></object>
<object type="0" symbol="84"><coords count="1">50511 68440;</coords></object>
<object type="0" symbol="84"><coords count="1">50633 67542;</coords></object>
<object type="0" symbol="84"><coords count="1">51375 67655;</coords></object>
<object type="1" symbol="64"><coords count="10">52575 69454;53613 69628;54172 66994;54000 67100;53357 67650;52149 67442;52002 68392;52732 68505;52637 69116;52575 69454 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="10">52575 69454;53613 69628;54172 66994;54000 67100;53383 67659;52149 67442;52002 68392;52732 68505;52637 69116;52575 69454 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="114" rotation="-0.143739"><coords count="1">53134 67840;</coords></object>
<object type="1" symbol="74"><coords count="2">48806 66126;53301 66889;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">44649 62146;44335 64763;47083 65138;47746 64187;47816 63777;47397 63707;46813 62407;44649 62146 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="19">42124 69825;43903 69965;44994 70418;45032 70303 1;45648 69141;46207 69912;46475 70076;46465 70088;47070 69563;47393 67574;47348 67594 1;45410 67854;45027 66097;45559 65565;45570 65567;43275 65245;42176 66388;41923 69616;42124 69825 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">49772 71439;</coords></object>
<object type="1" symbol="67"><coords count="23">48180 74153 1;48273 73800;48632 73667;48995 73697 1;49771 73762;50206 73804;50981 73882 1;51230 73907;51547 73860;51561 73610 1;51584 73188;51465 72841;51770 72549 1;52025 72306;52165 72118;52227 71772;52572 69428;52638 69465;53582 69623;53664 69892;52587 74844 32;48306 74326 32;48180 74153 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="16">52129 72093 1;52050 72260;51934 72393;51770 72549 1;51465 72841;51584 73188;51561 73610 1;51547 73860;51230 73907;50981 73882 1;50206 73804;49771 73762;48995 73697 1;48768 73678;48543 73723;48383 73846;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="14">45372 77545;47827 77434;48259 74338;52564 74807;53181 71883;52117 71772;50313 71492;50451 70602;47492 70147;45971 71512;45752 74647;44883 76336;45058 76971;45372 77545 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="14">47728 69428;48653 69563;48700 69447;48938 67898 32;50304 68109 32;50154 69081;50304 69109;50687 69168;50836 68195;51526 68301;51669 67371;48130 66814;47916 68178;47728 69428 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="48">44891 76348;44958 76190;45752 74647;45971 71512;47492 70147;50451 70602;50313 71492;51125 71618;51168 71409;51496 69298 32;52536 69459;52591 69415;52732 68505;52002 68392;52149 67442;51669 67371;51526 68301;50836 68195;50687 69168;50209 69095;50136 69203;50046 69785 32;48680 69574 32;48369 69526;47721 69426;48130 66814;47480 66917;47510 66921;47095 69556;45803 70723;44007 70018;43818 70007;43828 70698;43886 70747;43975 70784;45372 71308;45255 72690;44616 72628;44616 72723;44576 73161 32;44277 73134 32;44248 73451;44343 73500;45217 73580;45090 74677;44637 75584;44802 76378;44891 76348 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="19">47119 65093;47045 65877;46910 66833;47551 66931;48143 66827;51675 67387;52138 67462;53390 67662;54192 66983;54383 65830;53927 65774;53841 66255;53298 66681;48887 65947;49029 64880;48665 64825;48708 64325;47746 64214;47119 65093 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">61625 75073;61361 77100;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">64045 77433;64402 74712;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="23">54651 65419;52644 74841;48335 74352;47480 81488;49190 81715;49940 75783;61420 77179;61542 74963;60447 74901;59147 74731;59630 71027;59256 70971;59214 71286;58483 71175;58504 71910;56748 71959;56755 72211;55648 72240;55520 67286;55753 67280;55701 65415;55274 65427;54651 65419 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">59632 61086;59738 64676;59987 67806;61285 67878;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">60213 66940;60049 64675;60048 64168;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">58349 63911 32;58866 63900 32;58841 62690 32;58324 62701 32;58349 63911 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">58843 66131 32;59262 66122 32;59280 66959 32;58861 66968 32;58843 66131 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">58898 67858;59729 68780;59939 68591;59284 67863;58898 67858 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">58843 66131 32;59262 66122 32;59280 66959 32;58861 66968 32;58843 66131 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">58898 67858;59729 68780;59939 68591;59284 67863;58898 67858 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">58859 66970;58877 67853;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">59272 66964;59291 67857;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="7">60157 69272;59437 69171;58442 68098;58407 66136;58835 66127;58878 67845;60157 69272 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">59262 66283;59785 66272;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">58511 60561;58807 61042;60001 61109;60134 60928;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">58511 60561;58807 61042;60001 61109;60142 60919;59604 60728;58511 60561 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">59889 57824;59721 58980;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="5">66113 59946 1;66001 60957;65539 61856;64534 62019;64411 62772;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">63586 65611;63052 65520;62959 62521;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">62848 65013;62772 62543;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">66016 71754;68979 72144;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">68582 71921 1;68636 71591;68482 71196;68150 71156 1;67804 71114;67538 71402;67496 71748;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">68582 71921 1;68636 71591;68482 71196;68150 71156 1;67804 71114;67538 71402;67496 71748;68582 71921 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">68051 71687;</coords></object>
<object type="1" symbol="132"><coords count="2">61771 75043;62351 75118;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">61869 74289;62449 74364;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">63375 76893;</coords></object>
<object type="0" symbol="84"><coords count="1">64029 73328;</coords></object>
<object type="0" symbol="84"><coords count="1">65657 71342;</coords></object>
<object type="1" symbol="64"><coords count="10">61599 77165 1;62388 76999;63176 76876;63363 76091 1;63732 74542;63644 73621;63869 72045;64522 72464;63980 77387;61599 77165 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="9">64979 71502;64868 70848;64584 70676 1;64037 70902;63824 71441;63869 72032;64585 72526;64671 71440;64979 71502 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">64868 70848;66156 71011;66601 71717;64956 71474;64868 70848 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">66549 71674;66165 71028;64900 70880 1;63533 69977;61514 67794;61434 65639;61266 61918 1;61244 61442;60922 61190;60474 61027 1;59996 60854;59761 60729;59257 60659 1;57835 60462;57124 60363;55702 60165 1;54842 60045;54370 58266;54501 57408 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">63097 65614 1;63211 67309;64658 68427;65984 69488;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">64591 70676;64470 70730 1;64007 70981;63827 71484;63869 72032;63846 72214 1;63650 73688;63719 74598;63363 76091 1;63181 76854;62431 76992;61664 77151;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="20">61467 77130;61825 77154;62002 77080 1;62641 76937;63208 76741;63363 76091 1;63732 74542;63644 73621;63869 72045;63867 71763 1;63898 71282;64121 70867;64584 70676;64499 70592 1;63876 70111;63178 69420;62606 68621;62466 69567;61529 76846;61467 77130 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">64047 77417;74323 78743;74881 73073;74131 72550;68810 71921;68757 72096;64901 71607;64047 77417 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="8">63075 65553;66258 66133;65752 69291;65493 69094 1;64362 68175;63272 67170;63110 65760;63075 65553 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="53">60113 69253;62593 69574;62657 68691 1;62640 68668;62623 68644;62606 68621;62467 68421 1;61890 67565;61470 66599;61434 65639;61266 61918 1;61244 61442;60922 61190;60474 61027 1;60341 60979;60226 60934;60120 60894;60079 61004;60001 61109;58807 61042;58511 60561;58284 60524 1;57426 60405;56761 60313;55702 60165 1;55495 60136;55311 60012;55152 59827;54969 60272;55536 60358;55487 60704;55819 60809;57374 61117;57441 62509;58328 62711;58522 62697;58841 62690 32;58866 63900 32;58349 63911 32;58358 64171;58400 66149;58559 66133;58835 66127;59262 66132;59279 66934;58856 66946;58877 67853;59291 67872;59931 68582;59939 68591;59729 68780;59722 68773;60113 69253 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="11">56561 58428;56650 58463 1;56674 58469;56698 58475;56723 58480 1;57914 58710;58578 58771;59650 58974;59807 57818;56701 57364;56561 58428 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="25">59752 58985;59941 59031 1;59984 59039;60028 59048;60072 59057 1;61304 59309;62642 60408;62802 61179 1;62936 61826;62978 62160;62986 62820;63014 65111;63070 65548;63601 65610;64082 62723;64304 62747;64471 62407;64534 62019 1;65539 61856;66001 60957;66113 59946;62281 59515;62429 58195;59912 57813;59752 58985 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="50">66514 71685;67464 71845;67506 71688 1;67570 71369;67824 71116;68150 71156 1;68421 71189;68574 71459;68591 71736;69228 71808;69450 70056;65885 69353;65355 68982 1;64275 68093;63265 67113;63110 65760;63075 65553;62970 62320 1;62947 61944;62898 61642;62802 61179 1;62642 60408;61304 59309;60072 59057 1;58735 58784;58063 58739;56723 58480 1;56275 58393;56094 58027;56029 57577;54481 57808 1;54507 58724;54960 60062;55702 60165 1;57124 60363;57835 60462;59257 60659 1;59761 60729;59996 60854;60474 61027 1;60922 61190;61244 61442;61266 61918;61434 65639 1;61514 67794;63533 69977;64900 70880;66165 71028;66368 71370;66514 71685 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="12">56413 57316;56010 57289 1;56014 57191;56030 57095;56057 56969 1;56568 54544;56895 52993;57304 51055;58688 44619;59183 44231;56386 57310;56413 57316 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">56010 57289;56413 57316;56716 57390;56546 58470;56455 58378 1;56197 58220;56078 57921;56028 57573 1;56012 57461;56006 57374;56010 57289 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">53671 52241;54362 52313;55866 44716;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="6">53386 52229;54386 52315;55866 44716;52498 43951;52412 45197;53386 52229 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="18">49638 47125 1;49244 47093;48858 46739;48890 46345;49142 43284;51113 43389;52518 43971;52419 44898;51471 44776;51340 44584;51052 44575;50808 44758;49928 44665;49861 45323;49647 45474;49569 46217;49771 46484;49638 47125 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">55293 52306;</coords></object>
<object type="0" symbol="84"><coords count="1">55625 50683;</coords></object>
<object type="0" symbol="84"><coords count="1">56026 48886;</coords></object>
<object type="1" symbol="64"><coords count="5">54753 53462;55276 53584;55982 50225;55440 50110;54753 53462 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">54230 55979;54771 56032;55279 53553;54732 53426;54230 55979 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">55429 50118;55984 50224;56394 48128;55887 48038;55429 50118 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="8">55853 48064;56403 48169;56428 48025;57065 44942 1;57137 44585;56988 44267;56726 44053;55853 48064 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="16">54494 57851;56038 57633;56016 57476 1;55998 57295;56014 57172;56057 56969 1;56765 53607;57957 47962;58666 44600;59172 44299;56781 44101 1;57008 44313;57132 44611;57065 44942;54487 57430;54494 57851 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">51226 43428;51309 43470;52518 43971;52561 43965;55851 44713;55893 44518 1;55971 44156;55730 43760;55361 43733;51226 43428 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">55852 44710;55865 44648;55893 44518 1;55969 44165;55742 43780;55388 43736;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="19">54203 56004;53512 55942;53616 54749;53389 54714;53651 52236;54383 52324;55849 44786;55851 44785;55893 44518 1;55954 44236;55821 43933;55584 43801;55494 43734;56107 43780 1;56307 43811;56493 43886;56648 43993;56721 44054;54203 56004 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">51235 43428;52508 43925;55867 44745;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">49987 41616;51409 41736;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="6">42321 39029;42204 40184;46065 40577;46807 32488;43804 31232;43595 31775 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="48"><coords count="13">49531 34932 1;49350 34922;49196 35061;49186 35242 1;49177 35422;49315 35577;49496 35586 1;49677 35596;49831 35457;49840 35276 1;49850 35096;49711 34942;49531 34932 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="24">49900 39037;50421 39076;50578 36992;51676 37073;51741 36223;55006 36498;54516 41413;53131 41260;53049 41999;56628 42396 1;57177 42457;57756 42232;57851 41688;56610 41471;57449 37334;58655 37579;59220 34796;58144 34578;58583 32676;59683 32964;59784 32577;58129 32039;58213 31628;57895 31524 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">50420 39076;50353 39970;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">55633 40294;</coords></object>
<object type="1" symbol="87"><coords count="5">57143 33826;56721 34789;43020 28779;42808 28534;42884 27579;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">41752 27858;41682 28346;41080 28573;33743 25084;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="9">56505 42378;56614 41881;55005 41680;55153 40258;54637 40203;54516 41413;53131 41260;53049 41999;56505 42378 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">54708 39481;55223 39534;55546 36228;55040 36114;54708 39481 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="15">55450 37205 1;55467 36816;56013 36857;56400 36900 1;56756 36939;56961 36911;57316 36961 1;57453 36980;57511 36646;57377 36612 1;56637 36425;56215 36352;55467 36202;55301 36569;55450 37205 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">57962 36856;</coords></object>
<object type="0" symbol="84"><coords count="1">58555 34998;</coords></object>
<object type="0" symbol="84"><coords count="1">59157 32599;</coords></object>
<object type="1" symbol="132"><coords count="13">49407 34538 1;49097 34584;48845 34833;48807 35159 1;48761 35549;49040 35902;49430 35948 1;49820 35994;50174 35715;50220 35324 1;50258 34992;50061 34686;49761 34575 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">46333 39159;47179 39229;47031 40947;46133 40869;46333 39159 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">47424 39229;47912 38749;49639 38871;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">47397 39272;47912 38749;49657 38889;49587 39420;47397 39272 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="7">50639 35957;49996 35909;49719 39580 32;47297 39397 32;47173 41036 32;45654 40921;45626 41291 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">48706 38801;48916 36027 1;48924 35921;49000 35884;49064 35800;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">49186 38008;</coords></object>
<object type="0" symbol="143"><coords count="1">49256 36655;</coords></object>
<object type="1" symbol="38"><coords count="16">48689 38793;49649 38862;49849 35914;49709 35926 1;49621 35951;49527 35959;49430 35948 1;49287 35931;49160 35873;49057 35788;48984 35889 1;48949 35927;48921 35965;48916 36027;48802 37528;48689 38793 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">47704 38671;</coords></object>
<object type="0" symbol="84"><coords count="1">46875 38609;</coords></object>
<object type="1" symbol="132"><coords count="2">46399 39167;47166 39228;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="14">46638 35973 1;47119 36004;47625 35715;47625 35233 1;47625 34755;47313 34484;47440 34024 1;47586 33495;48277 32956;47810 32667 1;47515 32484;47308 32455;46971 32371;46638 35973 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="5">42739 29829;49044 32593 1;49675 32870;49671 33805;49574 34616;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="26">49596 34535 1;49206 34489;48852 34768;48807 35159 1;48761 35549;49040 35902;49430 35948 1;49820 35994;50174 35715;50220 35324 1;50265 34934;49986 34581;49596 34535 18;49560 34939 1;49381 34915;49217 35041;49193 35220 1;49169 35398;49295 35563;49474 35587 1;49652 35610;49817 35485;49841 35306 1;49864 35127;49739 34963;49560 34939 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="13">49993 34694 1;50434 34425;50965 34938;50511 35817;50024 35799;50075 35679 1;50152 35579;50204 35458;50220 35324 1;50245 35102;50165 34891;50020 34742;49993 34694 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="23">50435 39076;49880 39027;50115 36029;50482 36029;50466 35769;50638 35344 1;50602 35245;50797 35283;50878 35331 1;50895 35341;50915 35348;50938 35352 1;51203 35402;51355 35430;51614 35478;51631 35776 1;51646 35947;51680 36157;51514 36201 1;51070 36319;50733 36496;50567 36905;50435 39076 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="16">50552 36991;51668 37071;51736 36226;55018 36510;55009 36428;55039 36126;51610 35486;51617 35534;51631 35776 1;51646 35947;51680 36157;51514 36201 1;51072 36319;50736 36495;50569 36900;50552 36991 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="39">50211 34623;50216 34623 1;50481 34611;50715 34857;50681 35270 32;50703 35282 1;50759 35283;50835 35305;50878 35331 1;50895 35341;50915 35348;50938 35352 1;51203 35402;51355 35430;51614 35478;51683 35500;53884 35910 32;55039 36126;55190 36148;55546 36228;55590 36227 1;56263 36361;56679 36436;57377 36612 1;57511 36646;57453 36980;57316 36961 1;56961 36911;56756 36939;56400 36900 1;56120 36869;55756 36839;55570 36972 33;55500 37023;55455 37098;55450 37205;55427 37448;55223 39534 32;54785 39489;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="5">54705 40198;55153 40258 32;55005 41680 32;56614 41881 32;56524 42292;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="37">45754 41368;45619 42935;48172 43268;49141 43323;49153 43268;50841 43386;56007 43772;56092 43779;56107 43780 1;56435 43831;56726 43999;56903 44237;59092 44324;59627 41918;57844 41687;57851 41688 1;57756 42232;57177 42457;56628 42396;53049 41999;53072 41789;53131 41260;54516 41413;55006 36498;51741 36223;51676 37073;50578 36992;50421 39076;50350 39979;51153 40058;51161 40572;50184 40546;50190 40669;50126 41507;51327 41654;51353 41856;45754 41368 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">42814 30994;</coords></object>
<object type="1" symbol="2"><coords count="13">50494 35849 1;50768 35536;51181 35626;51593 35684 1;53095 35897;53924 36108;55432 36277 1;56056 36347;56652 36289;56845 35692 1;57055 35042;57176 34575;57248 33896;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-0.175324"><coords count="1">53533 36033;</coords></object>
<object type="1" symbol="62"><coords count="51">46329 39163;47440 39274;47908 38731;48686 38793;48932 36017;49068 35733;50314 35573;55002 36350;54483 41421;55137 42247;56731 42404 1;57248 42428;57762 42198;57851 41688;56610 41471;57449 37334;58655 37579;59220 34796;58144 34578;58218 34257;57161 33933;56716 34771;55861 34421 1;55648 34620;55354 35151;55073 35028;49307 32494;42938 29915;42745 30201;42443 30451;42252 30488;42160 31397;42837 31453;43528 31774;43657 31613;43804 31232;46581 32393;47052 32391 1;47343 32461;47540 32499;47810 32667 1;48277 32956;47586 33495;47440 34024 1;47313 34484;47625 34755;47625 35233 1;47625 35715;47119 36004;46638 35973;46329 39163 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="11">42302 39040;42203 40101;46015 40484;46755 32428;43795 31268;43597 31811;45633 32847;45596 33279;45880 33341;45349 39336;42302 39040 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">42857 27576;57094 33857;56723 34736;42813 28597;42857 27576 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">35450 18328;34853 18076;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">44406 22411;37128 19067;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">34798 18212;34415 19119;58663 29668;58811 28829;34798 18212 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="10">56911 34790 1;57090 34868;57189 34913;57368 34991 1;57684 35130;58075 34918;58150 34581;58682 32208;57740 31938;56911 34790 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">58562 32654;59685 32950;59771 32592;58649 32235;58562 32654 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">57742 31982;58137 32068;58205 31642;57859 31507;57742 31982 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="8">57162 34917;57254 34941 1;57289 34956;57326 34973;57368 34991 1;57600 35093;57873 35006;58031 34819;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">58157 30625;</coords></object>
<object type="1" symbol="124"><coords count="2">45673 25406;45920 24829;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="124"><coords count="2">50608 27519;50855 26942;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="124"><coords count="2">55528 29663;55789 29054;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">57969 31087;58314 31198;58506 30404;56045 29331 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">55404 29051;51135 27189 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">50483 26904;46212 25041 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">42974 24157;43151 23716;45563 24758 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">41889 27971;42662 28314;42971 24162;42286 23852;41889 27971 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="125"><coords count="2">38595 23158;39125 21899;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">42215 24508;42338 23358;39519 22127 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">34980 23519;36167 20622;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">38689 21764;36405 20767 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">35897 20545;32575 19094;31571 21392;32086 21673 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">39770 22600;</coords></object>
<object type="0" symbol="84"><coords count="1">38209 21928;</coords></object>
<object type="0" symbol="84"><coords count="1">33570 20563;</coords></object>
<object type="1" symbol="126"><coords count="16">56603 41478;57849 41700;59607 41934;62141 30319;58810 28826;58135 32065;59776 32589;59683 32978;58567 32669;58477 33137;58144 34578;59220 34796;58655 37579;57449 37334;56771 40676;56603 41478 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">57862 31517;58247 31628;58321 31224;57973 31110;57862 31517 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">55874 29855 32;58049 30808 32;57944 31047 32;58303 31204 32;58515 30405 32;56094 29352 32;55874 29855 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">50944 27685 32;55171 29541 32;55380 29064 32;51153 27208 32;50944 27685 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">46028 25539 32;50236 27390 32;50453 26897 32;46245 25046 32;46028 25539 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">42956 24163 32;45318 25237 32;45531 24768 32;43169 23694 32;42956 24163 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">42287 23901;39316 22633 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">38474 22274;36233 21318 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">39106 23214 32;42203 24499 32;42280 23890 32;39333 22667 32;39106 23214 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">35985 21869 32;38209 22819 32;38443 22254 32;36213 21323 32;35985 21869 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">39346 22638;42288 23909;42344 23385;39543 22157;39346 22638 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">38426 22268;38667 21744;36434 20794;36230 21324;38426 22268 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">41057 23133;</coords></object>
<object type="1" symbol="119"><coords count="7">33770 25093;41074 28559;41592 28411;41715 27881;34597 24710;33857 24883;33770 25093 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="7">34910 22844;32215 21387 1;32449 20954;32958 20923;33395 21149;35207 22086;34910 22844 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">32112 20312;32610 19292;33813 19815;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">35897 20545;32575 19094;31571 21392;32086 21673;34804 23212;35897 20545 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="5">32258 21335 1;32537 20951;32996 20942;33395 21149;34813 21882;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="9">58499 30368;43135 23679;42957 24131;42288 23839;42332 23320;32556 19051;32829 18431;58650 29654;58499 30368 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="7">22202 38142 32;21555 37788 32;19634 41298 32;31023 47530 32;31414 46815 32;20672 40937 32;22202 38142 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">20669 42896;</coords></object>
<object type="1" symbol="132"><coords count="13">20735 42497 1;20514 42461;20305 42611;20268 42832 1;20231 43053;20381 43263;20603 43299 1;20824 43336;21033 43186;21070 42965 1;21107 42743;20957 42534;20735 42497 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">22298 43735;</coords></object>
<object type="1" symbol="132"><coords count="13">22364 43336 1;22143 43300;21934 43450;21897 43671 1;21860 43892;22010 44102;22232 44138 1;22453 44175;22662 44025;22699 43804 1;22736 43582;22586 43373;22364 43336 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">23803 44537;</coords></object>
<object type="1" symbol="132"><coords count="13">23869 44138 1;23648 44102;23439 44252;23402 44473 1;23365 44694;23515 44904;23737 44940 1;23958 44977;24167 44827;24204 44606 1;24241 44384;24091 44175;23869 44138 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">25493 45450;</coords></object>
<object type="1" symbol="132"><coords count="13">25559 45051 1;25338 45015;25129 45165;25092 45386 1;25055 45607;25205 45817;25427 45853 1;25648 45890;25857 45740;25894 45519 1;25931 45297;25781 45088;25559 45051 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">26899 46228;</coords></object>
<object type="1" symbol="132"><coords count="13">26965 45829 1;26744 45793;26535 45943;26498 46164 1;26461 46385;26611 46595;26833 46631 1;27054 46668;27263 46518;27300 46297 1;27337 46075;27187 45866;26965 45829 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">28408 46644 1;28187 46608;27978 46758;27941 46979 1;27904 47200;28054 47410;28276 47446 1;28497 47483;28706 47333;28743 47112 1;28780 46890;28630 46681;28408 46644 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">28342 47043;</coords></object>
<object type="1" symbol="132"><coords count="13">29962 47470 1;29741 47434;29532 47584;29495 47805 1;29458 48026;29608 48236;29830 48272 1;30051 48309;30260 48159;30297 47938 1;30334 47716;30184 47507;29962 47470 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">29896 47869;</coords></object>
<object type="1" symbol="68"><coords count="2">20099 42608;20547 41787;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="2">22841 44104;23289 43283;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">36761 49256;</coords></object>
<object type="0" symbol="84"><coords count="1">35293 48441;</coords></object>
<object type="0" symbol="84"><coords count="1">33491 47516;</coords></object>
<object type="0" symbol="143"><coords count="1">35514 46374;</coords></object>
<object type="0" symbol="143"><coords count="1">36578 44229;</coords></object>
<object type="0" symbol="143"><coords count="1">35706 42833;</coords></object>
<object type="0" symbol="143"><coords count="1">37965 45740;</coords></object>
<object type="1" symbol="38"><coords count="13">38621 45241 1;38825 45495;38683 45947;38305 46250 1;37927 46553;37455 46593;37252 46339 1;37048 46085;37189 45633;37568 45330 1;37946 45027;38417 44987;38621 45241 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="13">36622 43526 1;36261 43513;35958 43794;35944 44155 1;35930 44517;36212 44820;36573 44834 1;36934 44848;37238 44566;37252 44205 1;37265 43844;36984 43540;36622 43526 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="13">35635 42305 1;35291 42336;35037 42639;35068 42983 1;35099 43328;35402 43582;35747 43551 1;36091 43520;36345 43216;36314 42872 1;36283 42528;35980 42274;35635 42305 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="13">34044 44341 1;34125 44174;34464 44171;34801 44335 1;35138 44498;35346 44766;35265 44933 1;35185 45099;34846 45102;34508 44938 1;34171 44775;33963 44507;34044 44341 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="13">33316 45895 1;33304 45719;33496 45563;33745 45546 1;33993 45529;34205 45658;34217 45834 1;34229 46009;34037 46166;33788 46183 1;33540 46200;33328 46071;33316 45895 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="13">35919 45796 1;36167 45963;36189 46365;35968 46696 1;35746 47026;35365 47159;35117 46993 1;34869 46827;34848 46424;35069 46094 1;35291 45763;35671 45630;35919 45796 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">34633 43318;</coords></object>
<object type="0" symbol="84"><coords count="1">36576 40070;</coords></object>
<object type="0" symbol="84"><coords count="1">36798 39009;</coords></object>
<object type="0" symbol="84"><coords count="1">37650 38590;</coords></object>
<object type="0" symbol="84"><coords count="1">38526 39145;</coords></object>
<object type="0" symbol="84"><coords count="1">39389 39120;</coords></object>
<object type="0" symbol="84"><coords count="1">40512 39873;</coords></object>
<object type="0" symbol="84"><coords count="1">40611 41649;</coords></object>
<object type="1" symbol="74"><coords count="2">42190 37209;41910 40345;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="11">41795 40318 1;41297 40933;41248 41689;41696 42341;41848 42198 1;42418 41514;43297 41117;44270 41197;45507 41290;45533 40638;41795 40318 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">40979 47178;41234 44074;41787 44119;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="18">38131 47029;38587 47264 1;38920 46788;39291 46464;39870 46511 1;40263 46543;40539 46522;40845 46770;41141 43896 1;40478 43864;40284 44726;40327 45389 1;40343 45634;40268 45879;40031 45944 1;39347 46130;38751 45951;38131 47029 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="12">38137 47017 1;37962 46959;37545 47103;37681 47369 1;37910 47816;37627 48188;37860 48633 1;37953 48810;38302 48656;38341 48460;38587 47264;38137 47017 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="28">40565 46607 1;40357 46530;40141 46533;39870 46511 1;39291 46464;38920 46788;38587 47264 32;38560 47398;38341 48460 1;38302 48656;37953 48810;37860 48633 1;37627 48188;37910 47816;37681 47369 1;37552 47116;37944 46974;38131 47010 32;38162 46976 1;38771 45957;39359 46127;40031 45944 1;40268 45879;40343 45634;40327 45389 1;40295 44901;40392 44304;40710 44037;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">32081 46240;41151 29887;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="12">40988 30057;36658 28095 1;35892 27748;34963 27795;34549 28527 1;32620 31940;31593 33885;29663 37298 1;29043 38393;29610 39737;30712 40345;34177 42257;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">31236 34451 1;31550 34620;31640 35062;31438 35438 1;31235 35813;30817 35981;30503 35812 1;30189 35643;30098 35201;30301 34825 1;30503 34449;30922 34282;31236 34451 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="30">29043 33694;26329 32218;27576 29937 32;27729 30020 32;28284 29004 32;28118 28913 32;30336 24858 32;30490 24942 32;31041 23935 32;30892 23854 32;32065 21710 32;34754 23181 32;34681 23389;35237 23693;35998 21893;36908 22273;37318 22105;37496 22540;38169 22823;38085 23023;39062 23434;39145 23237;39904 23552;40309 23387;40477 23798;42191 24517;41859 27904;34630 24699;33858 24892;29043 33694 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">28657 34473;25905 32921;26302 32193;29078 33702;28657 34473 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">29136 33556;29937 33995;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">28560 34607;29361 35046;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">29911 33976;30352 34215;34151 27207;32948 26555;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">33830 25324;33184 26503;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">29152 33541;30349 34157;34038 27212;32915 26644;29152 33541 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">29361 35046;29815 35295;28104 38414;26874 37739;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">28547 34637 32;29770 35306 32;28080 38393 32;26857 37724 32;28547 34637 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">36796 36754;36378 37507;32997 35613;33903 34029;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">36774 36742;36356 37495;33014 35582;33903 34029;36774 36742 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">31546 35027;32773 35694;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">34329 38269;34612 37751;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">33483 37806;33766 37289;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">34648 38349;33977 39576;33386 39252;34059 38025;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">34330 38224;33923 38969;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="7">33908 39666;33338 39354;33338 39353;32101 38678 32;32806 37390 32;34614 38376 32;33908 39666 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">33386 39252;32285 38648;32944 37447;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">32835 37601;33282 37851 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">33559 38006;33934 38216 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">35350 38878;</coords></object>
<object type="0" symbol="84"><coords count="1">34635 40099;</coords></object>
<object type="0" symbol="84"><coords count="1">33989 41158;</coords></object>
<object type="0" symbol="84"><coords count="1">33262 42523;</coords></object>
<object type="1" symbol="123"><coords count="2">31621 40837;31067 41842;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">32303 40981 32;33205 39336 32;31762 38545 32;31086 39778 32;31669 40098 32;31443 40510 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">31087 39791;32543 40574;33209 39334;31772 38545;31087 39791 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">32252 41013;32507 40547;31698 40102;31447 40564;32252 41013 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="12">32535 40554 1;32763 40684;32892 40756;33120 40886 1;33355 41020;33692 40854;33856 40639;35217 38164;34774 37901;33849 39647;33213 39332;32535 40554 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="8">32806 40708 1;32902 40762;32997 40816;33120 40886 1;33355 41020;33692 40854;33856 40639;35033 38499;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">31063 35798;36072 38587;36503 37797;31544 35034;31063 35798 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">31057 35798;33597 37226 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">33902 37398;34437 37699 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">34750 37875;36006 38581 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="12">32383 38116 1;32159 37933;32017 37654;32167 37407 1;32305 37180;32060 36961;32186 36728;32315 36519;33568 37210;33327 37672;32790 37395;32383 38116 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">33919 37413;33685 37876;34178 38153;34419 37678;33919 37413 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">32173 37870 1;32093 37724;32075 37559;32167 37407 1;32294 37198;32097 36997;32162 36785;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">31051 39754 1;30559 39505;30851 38806;31409 39180;31051 39754 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="2">30837 39545;31089 39073;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">25263 38881;33463 43373;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">26919 37974;26312 39085;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">26247 38878;28171 39931;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="5">28218 39857;28472 39393;26776 38465;26538 38899;28218 39857 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">31386 34570 1;31494 34691;31549 34857;31545 35035;31544 35058 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">31092 35792 1;30957 35865;30807 35894;30667 35869 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">30359 35700 1;30257 35589;30199 35437;30193 35272 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">30532 34547 1;30699 34415;30902 34358;31089 34397 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="3">42405 36930;41358 36837;41951 30192;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">41827 33424;42731 33505;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">42835 31438 32;42679 33176 32;42000 33115 32;42156 31377 32;42835 31438 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">42660 33820 32;42409 36619 32;41698 36556 32;41949 33757 32;42660 33820 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">42823 31447;42173 31389;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="15">55738 34400;55715 34584 1;55523 34816;55294 35125;55073 35028;51744 33662;42959 29952;43003 29833 1;43023 29778;43038 29721;43048 29662 1;43097 29379;43023 29102;42864 28888;55738 34400 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">41114 29093;40837 29760;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">42221 28490 1;41670 28395;41145 28765;41049 29317 1;40954 29869;41324 30394;41876 30489 1;42428 30584;42953 30214;43048 29662 1;43143 29111;42773 28586;42221 28490 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="7">41266 30233;41343 30122;41090 29286;40886 29733;40834 29842;41034 29968;41266 30233 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">41312 30187 1;41404 30285;41516 30364;41643 30419 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">42208 30491 1;42471 30449;42706 30305;42863 30094 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">43029 29750 1;43036 29721;43043 29692;43048 29662 1;43118 29256;42961 28879;42639 28656;42664 28318 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">41899 27970;41849 28494 1;41482 28569;41174 28844;41071 29220 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">41863 28515 32;42624 28721 32;42672 28322 32;41902 27981 32;41863 28515 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="25">36294 29464 1;36062 29168;35933 29001;35701 28705 1;35576 28545;35343 28453;35195 28591 1;35033 28742;34942 28827;34780 28978 1;34624 29124;34608 29383;34767 29525 1;34871 29618;34995 29584;35125 29533 1;35253 29483;35304 29670;35360 29795 1;35497 30099;35817 30330;36119 30188 1;36382 30064;36473 29693;36294 29464 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="10">36669 28373 1;36808 28776;36757 29211;36390 29429 1;36524 29685;36528 29993;36294 30162 1;36064 30328;35804 30384;35570 30223;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="12">35526 30319 1;35338 30588;35079 30727;34758 30659 1;34523 30609;34459 30144;34680 30048 1;34939 29935;35085 29874;35351 29778;35645 30122;35526 30319 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="11">35491 30388;35421 30448 1;35245 30630;35023 30715;34758 30659 1;34523 30609;34459 30144;34680 30048 1;34823 29985;35063 29887;35177 29841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">35870 29666;</coords></object>
<object type="0" symbol="84"><coords count="1">39614 30496;</coords></object>
<object type="0" symbol="84"><coords count="1">37994 29607;</coords></object>
<object type="0" symbol="84"><coords count="1">37637 30377;</coords></object>
<object type="0" symbol="84"><coords count="1">38741 31250;</coords></object>
<object type="1" symbol="87"><coords count="4">37540 31271;37026 30845;35472 31995;35821 32475;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">37540 31271;37026 30845;35472 31995;35821 32475;37540 31271 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="10">35969 31454 1;35531 31350;35144 31092;34818 31402 1;34044 32137;34185 32919;33762 33923;35734 32588;35289 31943;35969 31454 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="43">32886 35779;30382 34459;34071 27254;33096 26600;33861 25206;41140 28599;41670 28426;39326 32596;37118 30795;35969 31454 1;35531 31350;35144 31092;34818 31402 1;34055 32126;34181 32896;33780 33880;33849 33990;32886 35779 18;36119 30188 1;36382 30064;36473 29693;36294 29464 1;36062 29168;35933 29001;35701 28705 1;35576 28545;35343 28453;35195 28591 1;35033 28742;34942 28827;34780 28978 1;34624 29124;34608 29383;34767 29525 1;34871 29618;34995 29584;35125 29533 1;35253 29483;35304 29670;35360 29795 1;35497 30099;35817 30330;36119 30188 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="19">40299 34023 1;40615 34094;40803 33737;40867 33419 1;40969 32908;41102 32631;41126 32111 1;41133 31966;41082 31820;40941 31790 1;40774 31754;40701 31943;40632 32099 1;40398 32632;40211 32911;40040 33468 1;39970 33697;40066 33971;40299 34023 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">39423 35393;</coords></object>
<object type="1" symbol="82"><coords count="4">41549 42088 1;41316 41600;41340 41073;41603 40601;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="16">41434 42845 1;41153 42845;40897 42942;40814 43211 1;40659 43713;40140 43738;39916 44214 1;39754 44558;39912 45079;40291 45113;40333 44957 1;40368 44589;40482 44228;40710 44037;41172 43909;41434 42845 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="113">38755 49795;32389 46316;41258 29982;41751 30278;41197 36952;42208 37063;41851 40323;41795 40318 1;41327 40896;41256 41597;41620 42221;41708 42380 1;41585 42555;41481 42744;41399 42946;41434 42845 1;41153 42845;40897 42942;40814 43211 1;40659 43713;40140 43738;39916 44214 1;39754 44558;39912 45079;40291 45113;40333 44957 1;40368 44589;40482 44228;40710 44037;41172 43909;41189 43841;40840 47204;39581 47081;39038 47451;38755 49795 18;35968 46696 1;36189 46365;36167 45963;35919 45796 1;35671 45630;35291 45763;35069 46094 1;34848 46424;34869 46827;35117 46993 1;35365 47159;35746 47026;35968 46696 18;38305 46250 1;38683 45947;38825 45495;38621 45241 1;38417 44987;37946 45027;37568 45330 1;37189 45633;37048 46085;37252 46339 1;37455 46593;37927 46553;38305 46250 18;33788 46183 1;34037 46166;34229 46009;34217 45834 1;34205 45658;33993 45529;33745 45546 1;33496 45563;33304 45719;33316 45895 1;33328 46071;33540 46200;33788 46183 18;35265 44933 1;35346 44766;35138 44498;34801 44335 1;34464 44171;34125 44174;34044 44341 1;33963 44507;34171 44775;34508 44938 1;34846 45102;35185 45099;35265 44933 18;36573 44834 1;36934 44848;37238 44566;37252 44205 1;37265 43844;36984 43540;36622 43526 1;36261 43513;35958 43794;35944 44155 1;35930 44517;36212 44820;36573 44834 18;35747 43551 1;36091 43520;36345 43216;36314 42872 1;36283 42528;35980 42274;35635 42305 1;35291 42336;35037 42639;35068 42983 1;35099 43328;35402 43582;35747 43551 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">30904 41443;28436 40091;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">31495 41773;32520 42334;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">30729 42846 32;31404 43215 32;31673 42723 32;30998 42354 32;30729 42846 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">31672 42735 1;31946 42902;32225 43062;31987 43494;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">32363 43710;32752 43365;33202 43593;32918 44068;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">32789 43679;</coords></object>
<object type="0" symbol="84"><coords count="1">31783 43155;</coords></object>
<object type="1" symbol="120"><coords count="9">32799 43320;32354 43725;31970 43516;32070 43311;32057 43054;31926 42897;31870 42840;31900 42770;32799 43320 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">33512 43054;28068 40071;28218 39857;28472 39393;26825 38492;26681 38405;27030 37995;28173 38649;30057 35229;35980 38562;33512 43054 18;32543 40574;33209 39334;31772 38545;31087 39791;32543 40574 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">28679 34454;30210 35305;30572 34533;29080 33730;28679 34454 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="13">42051 41988 1;41475 41659;41017 41539;40376 41709 1;38801 42126;37757 42292;36206 41796 1;35378 41531;35083 40808;34968 39947 1;34909 39503;34576 39206;34130 39162;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-0.13068"><coords count="1">37358 42065;</coords></object>
<object type="1" symbol="132"><coords count="5">16335 39100 32;17105 39483 32;17293 39105 32;16523 38722 32;16335 39100 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">16568 39460;</coords></object>
<object type="0" symbol="84"><coords count="1">15626 41424;</coords></object>
<object type="1" symbol="120"><coords count="5">16335 39100 32;17105 39483 32;17293 39105 32;16523 38722 32;16335 39100 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="31">22196 49448;37427 52641;37829 49221;32416 46363;31827 46036;31018 47537;23378 43378;22950 44163;22736 44043;23159 43265;20636 41879;20208 42666;19990 42550;20419 41764;19642 41320;20014 40612;19089 40101;17770 42316;18376 42613;21329 49229;21403 49115 1;21458 49034;21541 48971;21642 48941 1;21875 48873;22118 49006;22187 49238 1;22198 49277;22204 49316;22205 49354;22196 49448 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="9">56390 57245;66667 58710;65882 54575;69161 33383;62104 23069;59686 22181;57218 27905;62301 30225;56390 57245 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">20017 40585 32;19093 40079 32;19346 39618 32;20270 40124 32;20017 40585 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">21616 37300 32;20692 36794 32;20945 36333 32;21869 36839 32;21616 37300 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">22760 35213 32;21836 34707 32;22089 34246 32;23013 34752 32;22760 35213 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">23850 33225 32;22926 32719 32;23179 32258 32;24103 32764 32;23850 33225 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">25049 31142 32;24125 30636 32;24378 30175 32;25302 30681 32;25049 31142 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">26415 28857 32;25491 28351 32;25744 27890 32;26668 28396 32;26415 28857 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">28222 25871 32;27298 25365 32;27551 24904 32;28475 25410 32;28222 25871 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">29702 23391 32;28778 22885 32;29031 22424 32;29955 22930 32;29702 23391 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">30981 21107 32;30057 20601 32;30310 20140 32;31234 20646 32;30981 21107 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">26415 28857 32;25491 28351 32;25744 27890 32;26668 28396 32;26415 28857 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">22760 35213 32;21836 34707 32;22089 34246 32;23013 34752 32;22760 35213 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">28222 25871 32;27298 25365 32;27551 24904 32;28475 25410 32;28222 25871 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">21616 37300 32;20692 36794 32;20945 36333 32;21869 36839 32;21616 37300 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">25049 31142 32;24125 30636 32;24378 30175 32;25302 30681 32;25049 31142 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">29702 23391 32;28778 22885 32;29031 22424 32;29955 22930 32;29702 23391 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">30981 21107 32;30057 20601 32;30310 20140 32;31234 20646 32;30981 21107 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">23850 33225 32;22926 32719 32;23179 32258 32;24103 32764 32;23850 33225 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">20017 40585 32;19093 40079 32;19346 39618 32;20270 40124 32;20017 40585 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">30635 20625;</coords></object>
<object type="0" symbol="84"><coords count="1">29381 22885;</coords></object>
<object type="0" symbol="84"><coords count="1">27872 25395;</coords></object>
<object type="0" symbol="84"><coords count="1">26070 28369;</coords></object>
<object type="0" symbol="84"><coords count="1">24700 30639;</coords></object>
<object type="0" symbol="84"><coords count="1">23493 32748;</coords></object>
<object type="0" symbol="84"><coords count="1">22407 34721;</coords></object>
<object type="0" symbol="84"><coords count="1">21260 36806;</coords></object>
<object type="0" symbol="84"><coords count="1">19688 40099;</coords></object>
<object type="1" symbol="132"><coords count="2">19991 39974;21474 37226;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">21736 36755;22626 35141;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">22862 34662;23716 33144;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">23179 32258;24134 30639;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">25162 30590;26236 28758;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">26538 28306;28068 25777;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">28327 25333;29536 23297;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">29031 22424;30068 20578;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">31083 20566;31977 18669;30872 18148;31452 16882 1;31526 16726;31687 16645;31844 16719;34511 11232;37376 5225;42560 -4791;42893 -6008;47681 -15309 1;48093 -16109;48720 -16420;49607 -16572;49564 -16053 1;49055 -15980;48620 -15824;48321 -15476;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">28619 34432;30202 35310 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">30563 34522;29027 33688 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="14">23477 38300;24124 38649;23942 38987;24456 39264;24642 38919;25142 39188;30974 42377 32;30711 42857 32;32888 44049 32;31390 46788 32;20717 40950 32;22230 38183 32;23239 38735 32;23477 38300 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="9">25449 38567;25108 39190;24655 38947;24455 39317;23904 39020;24099 38658;23438 38299;23737 37752 32;25449 38567 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="9">23420 37524 32;24610 35352 32;24780 35445 32;25310 34475 32;25144 34384 32;25940 32930;28631 34448;26149 38984 32;23420 37524 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">24799 35409 32;25296 34502 32;24826 34245 32;24329 35152 32;24799 35409 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">27751 30018 32;28281 29050 32;27811 28793 32;27281 29761 32;27751 30018 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">30525 24949 32;31055 23981 32;30579 23721 32;30055 24692 32;30525 24949 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">23376 37537 32;24597 35307 32;23983 34971 32;22762 37201 32;23376 37537 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">25113 34391 32;25929 32900 32;25335 32575 32;24519 34066 32;25113 34391 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">26316 32196 32;27557 29925 32;27043 29644 32;25802 31915 32;26316 32196 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">28093 28912 32;30318 24843 32;29859 24592 32;27634 28661 32;28093 28912 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">30845 23857 32;31064 23457 32;30585 23195 32;30366 23595 32;30845 23857 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">25113 34391 32;25929 32900 32;25335 32575 32;24519 34066 32;25113 34391 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">23376 37537 32;24597 35307 32;23983 34971 32;22762 37201 32;23376 37537 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">28093 28912 32;30318 24843 32;29859 24592 32;27634 28661 32;28093 28912 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">26316 32196 32;27557 29925 32;27043 29644 32;25802 31915 32;26316 32196 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">30845 23857 32;31064 23457 32;30585 23195 32;30366 23595 32;30845 23857 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">29859 24592;30366 23595;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">27043 29644;27634 28661;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="58">19976 39973;20260 40127;21549 37801;23215 38702;23727 37746;22771 37191;23968 34964;24331 35167;24835 34262;24521 34088;25341 32552;25882 32866;26284 32203;26129 32094;25802 31915 32;27043 29644 32;27268 29767;27341 29652;27811 28793;27731 28714;27634 28661 32;29859 24592 32;30044 24693;30147 24522;30579 23721;30485 23660;30366 23595 32;30585 23195;29955 22930;29702 23391 32;29507 23284;28327 25333;28475 25410;28222 25871 32;28054 25779;26538 28306;26668 28396;26415 28857 32;26246 28764;25162 30590;25302 30681;25049 31142 32;24131 30639;23179 32258;23417 32388;24103 32764 32;23850 33225 32;23689 33137;22866 34656;22990 34740;23013 34752 32;22760 35213 32;22607 35129;21736 36755;21869 36839;21616 37300 32;21466 37218;19976 39973 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">29032 22444;29954 22950;30580 23213;31076 23472;32079 21671;31591 21405;32540 19111;32873 18383;33097 17926;32158 17501;32375 17003;31844 16719 1;31687 16645;31526 16726;31452 16882;30872 18148;31977 18669;31083 20566;31234 20646;30981 21107 32;30057 20601 32;29032 22444 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">34859 18179;32868 17338;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">58816 28855;58645 29659;32857 18440;33104 17898;32151 17481;32358 17008;32906 17248 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">34433 19119;34874 18090;32353 17004;32148 17492;33099 17898;32863 18456;34433 19119 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="2">34507 18901;34678 18496;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">34659 14272;34285 15157 32;33869 14981 32;34241 14101 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">34412 14170;34213 14644;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">35177 13534;35415 12988;36715 13553 32;38203 14200 32;42543 16087 32;42326 16586 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">46742 19239;46066 18953;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">45032 18375 32;46113 18832 32;46354 18263 32;45273 17806 32;45032 18375 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">42738 16011;45467 17186 1;45826 17341;46471 17883;46340 18252;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">42738 16011;45467 17186 1;45826 17341;46471 17883;46340 18252;42456 16638;42738 16011 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">47594 18360;47868 17710;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">46387 16209;42563 14562;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">43198 13618;42829 14490;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="5">42546 11957;41622 14083;35254 11315;36245 9406;36742 9622;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="33">31828 16724;32327 17002;35492 18310;35794 17600;33919 16835;34597 15275;34295 15157;34634 14331;34894 14460;35492 13085;42679 16024;42889 16076;45467 17186 1;45826 17341;46471 17883;46340 18252;46116 18815;46770 19103;46953 18693;47398 18859;47834 17786;47276 17332;47381 16800;47023 15998;46849 16390;42644 14576;43612 12421;42652 12028;41684 14201;35185 11278;36215 9202;35630 8897;31828 16724 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">39337 8321;37234 7473 32;39436 3058;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">39436 3058;42634 -3312;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">44938 -5534;44091 -5830;48454 -15428;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">43851 -5722 1;43621 -5806;43536 -6099;43650 -6315 1;44292 -7532;44652 -8214;45294 -9431 1;45394 -9620;45490 -9683;45678 -9784;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">43851 -5722 1;43621 -5806;43536 -6099;43650 -6315 1;44292 -7532;44652 -8214;45294 -9431 1;45394 -9620;45512 -9695;45700 -9796;43851 -5722 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">49564 -16053 1;50498 -15976;51340 -15627;51557 -14715;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">48294 -15360;51557 -14715;51526 -14829 1;51268 -15656;50458 -15979;49564 -16053;49418 -16029 1;48972 -15948;48591 -15790;48321 -15476;48294 -15360 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">37829 5951 1;37604 5831;37584 5534;37706 5310;42443 -3351;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">37829 5951 1;37604 5831;37584 5534;37706 5310;42443 -3351;37829 5951 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">36146 9162;36978 7558;39267 8403;38903 9477;37780 9051;36645 11753;35436 11241;36146 9162 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">36170 9174;37009 7546;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">43002 -3826;44233 -3392;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">44536 -3165 32;42996 -3709 32;42806 -3170 32;44346 -2626 32;44536 -3165 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">44670 -3098;45146 -4420;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="43">35613 8929;36163 9209;37061 7499;37812 5963;37700 5835 1;37603 5690;37614 5479;37706 5310;42443 -3351;42792 -3223;43001 -3685;44546 -3118;45025 -4496;44711 -4618;44929 -5360;43883 -5718;43772 -5763 1;43603 -5878;43550 -6126;43650 -6315 1;44292 -7532;44652 -8214;45294 -9431 1;45394 -9620;45490 -9683;45678 -9784;45761 -9811;48315 -15425;48377 -15537 1;48642 -15811;49002 -15953;49418 -16029;49564 -16053;49602 -16550;49350 -16522 1;48597 -16353;48052 -16029;47681 -15309;42893 -6008;42560 -4791;37376 5225;35732 8673;35613 8929 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="44">36153 18609;57439 27961;60300 21052;63371 16411;64069 14631;62812 14422;63092 12851;63580 12607;63824 12188;61417 9222;58206 3709;58124 3206;57458 1910;56964 1618;54496 -3613;53361 -6969;52128 -10991;51535 -14445;48402 -15235;44182 -5883;45367 -5340;44577 -2478;41740 -1540;37249 7491;39519 8453;38903 12870;41617 14079;42727 11981;43640 12425;42801 14695;46848 16349;47070 15830;47391 16743;47243 17336;47860 17755;47527 18495;47206 19421;46010 19050;42062 17360;42494 16102;35425 13079;35301 13424;37325 14855;36153 18609 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="6">47921 17602;47169 17285;47407 16721;47036 15808;46796 16376;46360 16192;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">58096 3249;57412 1929;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">55614 -14649;</coords></object>
<object type="0" symbol="84"><coords count="1">57649 -14636;</coords></object>
<object type="0" symbol="84"><coords count="1">59315 -14673;</coords></object>
<object type="0" symbol="84"><coords count="1">59919 -14698;</coords></object>
<object type="0" symbol="84"><coords count="1">61449 -14797;</coords></object>
<object type="0" symbol="84"><coords count="1">63645 -15056;</coords></object>
<object type="1" symbol="70"><coords count="10">59453 -11395 1;59538 -11784;59931 -12039;60316 -11937 1;60793 -11811;60960 -11475;61439 -11358;63906 -10741;63771 -10309;59453 -11395 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">81041 -11904;69609 -12236;69012 -9905;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="23">68054 -9244 1;68165 -9556;68228 -9732;68339 -10044 1;68493 -10475;68035 -10770;68177 -11205 1;68308 -11607;68703 -11666;68831 -12069 1;68997 -12591;69421 -13014;69966 -12969 1;72186 -12784;72785 -12496;75642 -12463 1;77555 -12441;78628 -12429;80539 -12340;81008 -11957;69584 -12216;68794 -8984;68054 -9244 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="5">63706 -10260;68146 -9118;68260 -9667;63906 -10741;63706 -10260 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="5">69433 -20429 32;72320 -20602 32;72479 -17947 32;69592 -17774 32;69433 -20429 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="3">77662 -22762;73037 -22423;71492 -20634;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">69462 -19080;67093 -18939;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">70340 -16200;</coords></object>
<object type="0" symbol="84"><coords count="1">74054 -17482;</coords></object>
<object type="0" symbol="84"><coords count="1">74007 -19774;</coords></object>
<object type="0" symbol="84"><coords count="1">73881 -21443;</coords></object>
<object type="0" symbol="84"><coords count="1">74141 -22011;</coords></object>
<object type="1" symbol="122"><coords count="2">63609 -18634;63435 -21210;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">60265 -20702;63262 -20900;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">63652 -21196;63354 -25709;64078 -25757;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">67339 -17776;67392 -16888 32;67884 -16918 32;67833 -17770 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">67639 -17331;67605 -17798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">67884 -16918 32;67834 -17746 32;67342 -17716 32;67392 -16888 32;67884 -16918 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">67591 -17766;67518 -18875;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="52">74962 -13221;74863 -12480 1;72652 -12552;71968 -12802;69966 -12969 1;69421 -13014;68997 -12591;68831 -12069 1;68703 -11666;68308 -11607;68177 -11205 1;68035 -10770;68493 -10475;68339 -10044 1;68290 -9905;68250 -9793;68211 -9684;68112 -9704;63906 -10741;63420 -10863;61439 -11358 1;60960 -11475;60793 -11811;60316 -11937 1;59931 -12039;59538 -11784;59453 -11395;53908 -12759;53200 -16622;53077 -16860;52934 -17053;52673 -17246;51938 -17543;55542 -17829;55752 -14697;67497 -15505;67362 -16899;67831 -16949;67719 -18898;69422 -19009;69594 -17738;72469 -17960;72284 -20748;71704 -20761;72975 -22315;74344 -22463;76480 -22460;76510 -22056;75631 -21969;75646 -21472;74416 -21379;74962 -13221 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">69760 -20132;69884 -18102;72154 -18219;72018 -20267;69760 -20132 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">-64342 72109;-64186 70948;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">-63501 72222;-63345 71059;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">-59039 72823;-58882 71656;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">-65691 71927;-65536 70779;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">-66497 71819;-66341 70658;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">58171 -18458;63562 -18803;63377 -20913;63070 -20887;61470 -20782;61493 -20668 1;61485 -20498;61422 -20300;61271 -20290;58155 -20084;58171 -18458 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">59445 -27083;</coords></object>
<object type="0" symbol="84"><coords count="1">60108 -26507;</coords></object>
<object type="1" symbol="132"><coords count="9">65014 -28014;58830 -27595;58396 -27570;58458 -26570 1;58470 -26376;58637 -26228;58831 -26240;65108 -26681;65014 -28014 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="7">61260 -26448 1;61227 -26762;61452 -27055;61766 -27077;65061 -27308;65110 -26707;61260 -26448 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="15">58375 -27589;58401 -27492;58458 -26570 1;58470 -26376;58637 -26228;58831 -26240;61262 -26411;61257 -26503 1;61254 -26796;61471 -27056;61766 -27077;65061 -27308;65055 -27429;65014 -28014;58375 -27589 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">69191 -28288;69276 -26962;72227 -27151;72142 -28481;69191 -28288 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">68600 -28249;65577 -28051;65676 -26731;68684 -26924;68600 -28249 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">68184 -27586;</coords></object>
<object type="0" symbol="84"><coords count="1">66762 -27507;</coords></object>
<object type="0" symbol="84"><coords count="1">70060 -27655;</coords></object>
<object type="0" symbol="84"><coords count="1">71700 -27751;</coords></object>
<object type="1" symbol="62"><coords count="5">68600 -28249;65577 -28051;65676 -26731;68684 -26924;68600 -28249 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">69191 -28288;69276 -26962;72227 -27151;72142 -28481;69191 -28288 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="5">73745 -27439 32;74817 -27517 32;74752 -28414 32;73680 -28336 32;73745 -27439 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">73744 -27456 32;74816 -27534 32;74752 -28414 32;73680 -28336 32;73744 -27456 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">73468 -28632;74930 -28738;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">73469 -28568 32;72686 -28518 32;72715 -28064 32;73534 -28116 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">73561 -27691;72742 -27639 32;72770 -27205 32;73566 -27256 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">73221 -28367;</coords></object>
<object type="0" symbol="84"><coords count="1">73258 -27454;</coords></object>
<object type="1" symbol="62"><coords count="5">73469 -28568 32;72686 -28518 32;72715 -28064 32;73534 -28116 32;73469 -28568 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">73561 -27691;72742 -27639 32;72770 -27205 32;73566 -27256 32;73561 -27691 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">72297 -26365 32;72820 -26403 32;72797 -26724 32;72274 -26686 32;72297 -26365 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">68781 -26111 32;69304 -26149 32;69281 -26470 32;68758 -26432 32;68781 -26111 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">65209 -25853 32;65732 -25891 32;65709 -26212 32;65186 -26174 32;65209 -25853 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">64972 -26276;64080 -26222 32;64108 -25730 32;64964 -25782 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">64108 -25730 32;64941 -25780 32;64911 -26272 32;64080 -26222 32;64108 -25730 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">64524 -25979;64992 -26008;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">69971 -26148 32;70804 -26198 32;70774 -26690 32;69943 -26640 32;69971 -26148 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">70835 -26694;69943 -26640 32;69971 -26148 32;70827 -26200 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">70387 -26397;70855 -26426;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="19">74910 -28412 1;76636 -28400;77603 -28357;79328 -28329 1;80022 -28318;80418 -27617;80414 -26923;80340 -23543;79674 -23558 32;79637 -21903 32;80280 -21889;80250 -20520 1;80237 -19942;80446 -19608;80784 -19139 1;80931 -18935;80975 -18774;80970 -18523;80840 -11990;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">80475 -23417 32;80443 -21994 32;79751 -22009 32;79783 -23432 32;80475 -23417 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">74136 -25717;74189 -24829 32;74681 -24859 32;74630 -25711 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">74681 -24859 32;74631 -25687 32;74139 -25657 32;74189 -24829 32;74681 -24859 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">74388 -25707;74315 -26816;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">74436 -25272;74402 -25739;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">74915 -24737;</coords></object>
<object type="1" symbol="123"><coords count="3">73519 -26916;77419 -27155;78283 -13156;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="2">76157 -27149;76108 -27944;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="6">75775 -27909;75609 -28262;74920 -28284;74977 -27320;75819 -27359;75775 -27909 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">75811 -27891;76411 -27928;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">78729 -27392;</coords></object>
<object type="1" symbol="74"><coords count="2">77801 -28066;79047 -28038;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="42">79955 -12378 1;80248 -12725;80135 -13072;80140 -13526 1;80160 -15338;80118 -16354;80079 -18165 1;80068 -18684;79806 -18942;79499 -19361 1;79093 -19916;79191 -20216;79174 -20903 1;79144 -22141;79033 -23011;79104 -24247 1;79126 -24640;79499 -24780;79499 -25173 1;79499 -26045;79528 -26534;79486 -27405 1;79472 -27690;79563 -27859;79721 -28096;80104 -27921 1;80308 -27654;80416 -27287;80414 -26923;80340 -23543;79674 -23558 32;79637 -21903 32;80280 -21889;80250 -20520 1;80237 -19942;80446 -19608;80784 -19139 1;80931 -18935;80975 -18774;80970 -18523;80844 -12192;79955 -12378 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="56">59585 -11679 1;59752 -11897;60036 -12011;60316 -11937 1;60793 -11811;60960 -11475;61439 -11358;63906 -10741 32;64154 -10680;68214 -9678 33;68291 -9908;68314 -9973;68339 -10044 1;68493 -10475;68035 -10770;68177 -11205 1;68308 -11607;68703 -11666;68831 -12069 1;68997 -12591;69421 -13014;69966 -12969 1;72186 -12784;72785 -12496;75642 -12463 1;77335 -12444;78405 -12432;79947 -12364 32;80045 -12505 1;80222 -12811;80136 -13127;80140 -13526 1;80160 -15338;80118 -16354;80079 -18165 1;80068 -18684;79806 -18942;79499 -19361 1;79093 -19916;79200 -20355;79183 -21042 1;79180 -21160;79142 -21316;79132 -21662 1;79106 -22556;79045 -23226;79104 -24247 1;79126 -24640;79499 -24780;79499 -25173 1;79499 -26045;79528 -26534;79486 -27405 1;79479 -27541;79497 -27651;79534 -27755 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">77819 -15750 32;77856 -15227 32;78177 -15251 32;78140 -15774 32;77819 -15750 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">77575 -19798 32;77612 -19275 32;77933 -19299 32;77896 -19822 32;77575 -19798 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">77173 -13340;76287 -13289 32;76315 -12796 32;77166 -12848 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">76315 -12796 32;77144 -12844 32;77113 -13339 32;76287 -13289 32;76315 -12796 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="3">77158 -13089;78384 -13168;78371 -13440;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">76729 -13040;77198 -13076;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">65809 -22580;</coords></object>
<object type="1" symbol="120"><coords count="57">56240 -27709;56271 -27388;56309 -27276;56493 -25285;56561 -24421;58750 -24581;59989 -24643;60251 -20734;63206 -20920;63310 -20920;63600 -21213;63634 -21222;63348 -25703;64101 -25753;65218 -25838;65201 -25961;65186 -26174 32;65709 -26212 32;65732 -25891;68759 -26048;68773 -26222;68758 -26432 32;69281 -26470 32;69304 -26149;72266 -26344;72286 -26512;72274 -26686 32;72797 -26724 32;72820 -26403;74238 -26449;74185 -26903;73558 -27224;73357 -27243;72770 -27205 32;72742 -27639 32;73523 -27689;73521 -28100;73409 -28108;72715 -28064 32;72686 -28518 32;73464 -28568;73459 -28964;69166 -28655;69218 -28290;72142 -28481;72227 -27151;69276 -26962;58815 -26237;58732 -26248 1;58583 -26281;58468 -26410;58458 -26570;58396 -27570;58404 -27570;65008 -28002;65004 -28362;56240 -27709 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="15">64970 -28364;64995 -28019;65118 -26637;65686 -26686;65671 -26796;65577 -28051;68600 -28249;68684 -26924;68795 -26890;69270 -26945;69268 -27081;69191 -28288;69263 -28293;69197 -28670;64970 -28364 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="15">63306 -25717;63778 -18878;69239 -19262;69151 -20692;71454 -20814;73007 -22646;77386 -22891;77125 -26904;74473 -26677;74665 -24880;74159 -24827;74246 -23536;64301 -22751;64092 -25735;63306 -25717 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">75647 -21473 32;76476 -21521 32;76445 -22016 32;75619 -21966 32;75647 -21473 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">76061 -21717;76530 -21753;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">76505 -22017;75619 -21966 32;75647 -21473 32;76498 -21525 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">76490 -21766;77550 -21834;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="125"><coords count="2">76482 -22246;77515 -22313;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">76486 -22500;76522 -21955;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">75329 -21835;75527 -22124;76483 -22186;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="18">74917 -13260;74621 -12162;80814 -11940;80900 -18800;80197 -20218;80222 -21785;79605 -21933;79740 -23512;80296 -23562;80296 -27387;79778 -28263;75571 -28349;75793 -27794;76410 -27165;77298 -27091;77644 -26905;78397 -13482;74917 -13260 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="39">73437 -28967;73441 -28575;75003 -28566;78921 -28336 1;79052 -28334;79187 -28331;79328 -28329 1;80022 -28318;80418 -27617;80414 -26923;80340 -23543;80474 -23358;80443 -21994 32;80216 -21432;80197 -20218;80900 -18800;80814 -11940;81744 -11857 1;81744 -11903;81745 -11949;81746 -11995 1;81786 -14393;81782 -15738;81833 -18136 1;81847 -18803;81692 -19212;81320 -19766 1;81041 -20182;81001 -20513;81021 -21013 1;81109 -23234;81158 -24479;81246 -26700 1;81288 -27760;80691 -28839;79631 -28883;74795 -29081;73631 -28996;73437 -28967 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">71024 -12165 32;70974 -10929 32;70188 -10961 32;70238 -12197 32;71024 -12165 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">69838 -11397;</coords></object>
<object type="0" symbol="84"><coords count="1">69594 -10246;</coords></object>
<object type="1" symbol="122"><coords count="3">69978 -9827;70667 -10472;70684 -10944;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">70536 -10359;72041 -10298;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">72016 -9799 32;72656 -9773 32;72670 -10124 32;72030 -10150 32;72016 -9799 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">77004 -9600 32;77644 -9574 32;77658 -9925 32;77018 -9951 32;77004 -9600 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">72758 -11955;71043 -11994;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">74788 -11187;</coords></object>
<object type="0" symbol="84"><coords count="1">78221 -11210;</coords></object>
<object type="0" symbol="84"><coords count="1">79117 -11015;</coords></object>
<object type="1" symbol="115"><coords count="5">76443 -10657 32;77691 -10621 32;77710 -11278 32;76462 -11314 32;76443 -10657 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">80819 -11889;80843 -8484;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">80844 -7731;80868 -5276;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">80893 -3265;80905 -970;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">76156 -4244;79209 -4177;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">76175 -5108;79229 -5040;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">76128 -4253 32;79173 -4186 32;79191 -5003 32;76146 -5070 32;76128 -4253 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">78793 -5007;78776 -4239;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="1.55505"><coords count="1">78794 -4618;</coords></object>
<object type="0" symbol="3" rotation="1.55505"><coords count="1">77389 -4635;</coords></object>
<object type="1" symbol="0"><coords count="2">77388 -5024;77371 -4256;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">79154 -5044;79536 -5036;79565 -6419;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">80239 -10677;79836 -10689;79872 -11886;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">79865 -11887 32;79834 -10536 32;80697 -10516 32;80728 -11867 32;79865 -11887 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">72020 -10484;72035 -10846;80733 -10487 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="16">79824 -8528;80774 -8522;80706 -10496;72032 -10834;72032 -10155;72241 -10141;72670 -10124 32;72657 -9802;72883 -9773;76982 -9606;77009 -9734;77018 -9951 32;77658 -9925 32;77644 -9574;79829 -9501;79824 -8528 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">69061 -9954;72035 -9806;72047 -10843;79721 -10528;79771 -11922;69605 -12194;69061 -9954 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">80547 -8499;80533 -10492;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">80561 -5290;80537 -7726;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">80591 -1224;80580 -3261;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">80811 -1157;75341 -1541;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">73904 -2029;65789 -3844;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">65415 -2920;65014 -1273;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">76035 -36;74913 -93;74125 723;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="8">79267 141;80872 222 32;80556 10042 32;77625 9065 32;76252 13651 32;75127 13538 32;75006 14769 32;74878 16063;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">76495 13335 32;77156 13533 32;77483 12441 32;76822 12243 32;76495 13335 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">77700 9409;80716 10414;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">80255 12680;79737 20057;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">80446 12704;80023 18729;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">76069 20353;75035 19139;75053 18800;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">77474 23024;78696 21881 1;78890 21700;79169 21689;79376 21855;79835 22223;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="9">77106 14180 32;77731 14234 32;77283 19433 32;75106 19245 32;75143 18816 32;76918 18969 32;77061 17312 32;76838 17293 32;77106 14180 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="35">76522 21900;77464 23043;77641 22906;78241 22317;78757 21846;79076 21736;79330 21807;79782 22184;79778 22252;80395 22267;81055 12753;80567 12715;80145 18730;79918 18720;80224 12691;77476 12464;77156 13533 32;76495 13335 32;76274 13576;76252 13651 32;75127 13538 32;75006 14769 32;74886 15982;75209 15955;75409 15966 32;75573 14073 32;77092 14205 32;77234 14191;77731 14234 32;77283 19433 32;75205 19254;76167 20350;76664 19931;77572 21109;76522 21900 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="26">76747 12212;77611 12515;80286 12705;80355 12704;80576 12718;81034 12762;81106 11866 1;81264 8579;81394 6590;81485 3166 1;81643 -2754;81646 -6074;81746 -11995 1;81746 -11996;81746 -11998;81746 -11999;80991 -11965;80685 -8501;80650 -7673;80689 -5289;80697 -3222;80929 -1161;80807 252;80563 10005;77597 9080;76747 12212 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="9">80913 148;80987 -1061;75424 -1504;65813 -3798;65159 -1306;74042 717;74992 -110;77385 -72;80913 148 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="9">75251 -1627;80852 -1170;80753 -8635;79704 -8622;79507 -4909;79174 -4921;79161 -4218;75312 -4243;75251 -1627 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="41">72242 17150;72772 17200;73451 15201;74894 15670;75141 13511;76239 13659;77645 9082;80555 10033;80827 287;75053 -133;73992 731;65282 -1046;65183 -1465;65652 -3735;65948 -3883;74041 -1860;75300 -5117;79519 -5043;79556 -6707;70279 -9816;69070 -9865;68799 -8903;53915 -12684;54382 -10742;55389 -6719;56079 -5232 1;57023 -3198;57553 -2059;58497 -25 1;59089 1251;59393 2050;59955 3212;60090 3486;60484 4253 1;61197 5576;62150 7067;63147 8405;63779 9313;65702 11355;69757 14953;72242 17150 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="70">49501 -26594 1;49320 -27302;48378 -27802;47468 -27745 1;47140 -27725;46957 -27713;46629 -27693 1;39039 -27222;34783 -26960;27192 -26506 1;22464 -26223;19813 -26061;15084 -25791 1;10304 -25519;7621 -25423;2837 -25251 1;-3124 -25036;-6466 -24899;-12430 -24779 1;-14501 -24737;-15676 -24944;-17699 -25390 1;-19105 -25700;-19909 -25945;-21161 -26655 1;-22377 -27344;-23966 -27804;-24885 -26720 1;-27303 -23868;-28430 -22601;-30851 -19752 1;-32889 -17353;-33937 -15925;-36033 -13576 1;-36664 -12869;-36449 -11422;-35527 -11203 1;-31236 -10181;-28847 -9334;-24465 -8831 1;-21354 -8474;-19501 -8324;-16370 -8395 1;-10701 -8524;-7649 -8663;-2047 -8813 1;2347 -8930;4796 -9014;9190 -8919 1;13770 -8820;16304 -8942;20879 -8709 1;23766 -8562;25392 -8327;28185 -7632 1;31893 -6710;33913 -6017;37573 -4879 1;38798 -4498;40215 -4692;40647 -5541 1;42952 -10071;44342 -12565;46590 -17124 1;47502 -18974;48066 -19986;48945 -21852 1;49740 -23540;49967 -24772;49501 -26594 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="15">32883 -9217 1;32313 -8493;31629 -8340;30708 -8300 1;29779 -8260;29259 -8215;28330 -8197;28336 -8058 1;32110 -7114;34264 -6452;37966 -5256 1;38914 -4950;39872 -5188;40332 -6072;41406 -8175 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="7">40978 -13469;44091 -13453 32;41309 -8339 32;33050 -9354 32;33047 -10107 32;33250 -10111 32;33242 -11733 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">35322 -16274;</coords></object>
<object type="0" symbol="84"><coords count="1">36272 -16237;</coords></object>
<object type="0" symbol="84"><coords count="1">36568 -14855;</coords></object>
<object type="0" symbol="84"><coords count="1">37345 -14843;</coords></object>
<object type="1" symbol="64"><coords count="5">38666 -14312 32;44599 -14227 32;44879 -14752 32;38674 -14841 32;38666 -14312 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">44390 -14522;</coords></object>
<object type="0" symbol="84"><coords count="1">39061 -14571;</coords></object>
<object type="1" symbol="132"><coords count="5">38666 -14312 32;44599 -14227 32;44879 -14752 32;38674 -14841 32;38666 -14312 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">34408 -17285;43698 -17174;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">37572 -17063;37533 -14324;35096 -14359;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">37528 -14370;35052 -14406;35041 -13685;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">45405 -18950;47009 -19049 32;46009 -17146 32;43698 -17174;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">48762 -23304 1;48572 -22627;48328 -22248;48067 -21595;45140 -21429;45196 -20441;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="8">48762 -23304 1;49065 -24383;49141 -25079;48888 -26170 1;48735 -26830;48129 -27185;47453 -27144;43183 -26885 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">40517 -7295;</coords></object>
<object type="1" symbol="120"><coords count="38">40900 -7158;41362 -6941;41421 -7040 1;43281 -10676;44604 -13096;46590 -17124 1;47470 -18908;48025 -19913;48852 -21656;48408 -20735 1;48577 -21079;48753 -21445;48945 -21852 1;49677 -23407;49906 -24585;49595 -26178;48929 -25982 1;49129 -25008;49049 -24336;48773 -23342;48684 -23049 1;48507 -22522;48293 -22161;48067 -21595;45140 -21429;45196 -20441;45227 -19013;46954 -19048;46047 -17233;37582 -17085;37570 -16920;37533 -14263;38666 -14233 32;38674 -14841 32;44879 -14752 32;44599 -14227;41443 -8203;40900 -7158 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">38666 -14312 32;44599 -14227 32;44879 -14752 32;38674 -14841 32;38666 -14312 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="6">35110 -14373;35070 -13687;44312 -13561;44679 -14224;38616 -14337;35110 -14373 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">34501 -13636;35019 -13611;35036 -14419;37545 -14369;37589 -17065;34431 -17109;34501 -13636 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="63">41366 -6941;42967 -6137;43233 -6668;47681 -15309 1;48093 -16109;48720 -16420;49607 -16572;49564 -16053;49751 -16034 1;50609 -15926;51355 -15566;51557 -14715;51564 -14275;51931 -12139;53427 -12591 1;53420 -12623;53412 -12654;53405 -12686;53312 -13098 1;53113 -13993;52933 -14943;52766 -16136 1;52721 -16459;52558 -16724;52264 -16864 1;51629 -17167;50526 -17575;50302 -18151 1;49815 -19400;50372 -19123;51378 -21909 1;51489 -22216;51566 -22478;51620 -22732;51693 -23170 1;51725 -23431;51741 -23707;51752 -24037 1;51772 -24612;51792 -24936;51761 -25511 1;51730 -26082;51948 -26609;52322 -26983;49601 -26145 1;49903 -24569;49672 -23396;48945 -21852 1;48753 -21445;48577 -21079;48408 -20735;48852 -21656 1;48025 -19913;47470 -18908;46590 -17124 1;45986 -15899;45447 -14821;44938 -13813;44434 -12820 1;43490 -10963;42564 -9268;41491 -7171;41366 -6941 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">51616 -30253;</coords></object>
<object type="0" symbol="84"><coords count="1">50482 -34388;</coords></object>
<object type="0" symbol="84"><coords count="1">49871 -38907;</coords></object>
<object type="0" symbol="84"><coords count="1">49260 -43426;</coords></object>
<object type="0" symbol="84"><coords count="1">48493 -48049;</coords></object>
<object type="1" symbol="132"><coords count="7">48496 -29303;48453 -30603;49351 -30655 1;49388 -30054;49192 -29365;48592 -29312;48496 -29303 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">48663 -31019;49290 -31048;49194 -31615;48645 -31569;48663 -31019 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">48067 -29251;47884 -29687;47012 -29190;48067 -29251 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">48112 -36086;48540 -36287;48496 -36557;48069 -36540;48112 -36086 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">48073 -29257;48483 -29309;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">49342 -30673;49283 -31066;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">22830 -48486 1;23821 -50287;24174 -51459;25532 -53002;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="9">40966 -29419 1;43271 -29557;44272 -29533;46564 -29811 1;47306 -29901;48124 -30779;48033 -31521;47402 -35838;45983 -35788 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">45946 -36480 32;47438 -36537 32;47391 -37766 32;45899 -37709 32;45946 -36480 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">45083 -37664 32;46622 -37723 32;46582 -38755 32;45043 -38696 32;45083 -37664 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">46379 -38935;47279 -38984;47637 -39490;46774 -44856;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="7">41851 -51258;41840 -52204;44306 -51764 1;45191 -51606;45764 -50999;45910 -50111;46774 -44856;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="18">82291 -39873;82168 -33261 1;82142 -31870;80943 -30819;79552 -30843 1;77943 -30871;77040 -30869;75432 -30941 1;74161 -30998;73447 -30895;72175 -30867 1;71250 -30847;70731 -30835;69806 -30815 1;68591 -30788;67753 -31996;67819 -33209;67985 -36263;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="18">66507 -36177;66350 -32652 1;66297 -31452;65488 -30471;64291 -30367 1;60065 -30000;57688 -29887;53457 -29582 1;52022 -29479;50750 -30394;50526 -31815 1;49427 -38783;48861 -42698;47803 -49672 1;47596 -51034;47457 -51794;47253 -53156;45639 -54802 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="69">81995 30074;79831 29690;79744 26075 1;79968 26053;80142 25955;80151 25816;80975 13914;81004 13496;81083 12362 1;81251 8771;81389 6759;81485 3166 1;81643 -2754;81646 -6074;81746 -11995 1;81774 -13672;81780 -14834;81799 -16202;81812 -17052 1;81818 -17392;81825 -17751;81833 -18136 1;81847 -18803;81692 -19212;81320 -19766 1;81041 -20182;81001 -20513;81021 -21013 1;81109 -23234;81158 -24479;81246 -26700 1;81288 -27760;80691 -28839;79631 -28883;79346 -28895;79360 -30846 1;79423 -30845;79487 -30844;79552 -30843 1;80943 -30819;82142 -31870;82168 -33261;82291 -39873;85275 -40155;85399 -35103 1;85481 -33659;86487 -32418;87929 -32521;89377 -32625;89498 -28983 1;85390 -26429;85579 -21920;85515 -19931 1;85368 -15325;85333 -13021;85166 -8416 1;84924 -1770;84432 1532;83874 8159 1;83156 16678;82865 21453;82088 29071;81995 30074 18;84659 -24816 1;85467 -26779;85931 -28158;87782 -29353;84677 -29143;84659 -24816 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="66">79404 -28883;79456 -30837;79157 -30850 1;77785 -30871;76904 -30875;75432 -30941 1;74161 -30998;73447 -30895;72175 -30867 1;71250 -30847;70731 -30835;69806 -30815 1;68591 -30788;67753 -31996;67819 -33209;67985 -36263;66507 -36177;66350 -32652 1;66297 -31452;65488 -30471;64291 -30367 1;60065 -30000;57688 -29887;53457 -29582 1;52022 -29479;50750 -30394;50526 -31815 1;50525 -31823;50524 -31831;50522 -31839;49186 -31613;49271 -31233;49317 -30924;49330 -30840;49367 -30336 1;49290 -29909;49208 -29406;48517 -29306;48085 -29249;47064 -29202;47313 -27742;47677 -27741;47926 -27730;48323 -27644;48869 -27400;49291 -27065;49503 -26597 1;49550 -26401;49590 -26212;49623 -26028;52197 -26845 1;52236 -26893;52278 -26939;52322 -26983;52579 -27201 1;52858 -27396;53193 -27520;53558 -27544;56271 -27721;65560 -28403;66821 -28498;69197 -28670;71138 -28812;74795 -29081;78159 -28943;79404 -28883 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="7">61254 -31343;53228 -30890 1;52281 -30837;51662 -31679;51519 -32617;50926 -36438 32;51991 -36438;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="8">61254 -31343 1;62668 -31423;63460 -31467;64874 -31547 1;65504 -31583;65946 -32124;65946 -32755;66097 -36176 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">48878 -30078;</coords></object>
<object type="0" symbol="84"><coords count="1">48965 -31300;</coords></object>
<object type="1" symbol="62"><coords count="5">48112 -36086;48540 -36287;48496 -36557;48069 -36540;48112 -36086 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">48644 -31204;49271 -31233;49175 -31800;48626 -31754;48644 -31204 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">48496 -29303;48453 -30603;49351 -30655 1;49388 -30054;49192 -29365;48592 -29312;48496 -29303 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="4">48086 -29251;47903 -29687;47031 -29190;48086 -29251 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">51563 -39310;50419 -39338;50761 -36535;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">50755 -36538;52020 -36538;52055 -39295;50424 -39312;50755 -36538 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">51389 -42635;50018 -42651 32;49045 -48212 32;50308 -47412 32;51072 -46928;51105 -48137;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">51095 -49676;48847 -49733;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">48763 -49553;47863 -54426;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">49824 -54204;48011 -54237;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">49586 -55488;47528 -55526 32;46048 -61344;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="24">48736 -31578;49192 -31597;50524 -31794;50474 -32146 1;49409 -38909;48844 -42809;47803 -49672 1;47596 -51034;47457 -51794;47253 -53156;46079 -54354;45639 -54802;46164 -51670;45934 -51510;46433 -50462;48246 -39224;47777 -38656;48032 -36786;48041 -36561;48249 -36547;48496 -36557;48540 -36287;48112 -36086;48736 -31578 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="81">53412 -12671;53340 -12970 1;53130 -13903;52941 -14886;52766 -16136 1;52721 -16459;52558 -16724;52264 -16864 1;51629 -17167;50526 -17575;50302 -18151 1;49815 -19400;50372 -19123;51378 -21909 1;51665 -22703;51723 -23194;51752 -24037 1;51772 -24612;51792 -24936;51761 -25511 1;51704 -26569;52501 -27475;53558 -27544;56271 -27721;56299 -27389;53571 -27186 1;53367 -27170;53152 -27090;52985 -26988;52849 -26928;52854 -26912;52839 -26906 1;52656 -26822;52540 -26764;52424 -26599 1;52342 -26482;52272 -26393;52242 -26279;52235 -26244;52282 -25450;52507 -25455;52476 -26196 1;52488 -26313;52536 -26372;52604 -26468 1;52673 -26566;52735 -26611;52843 -26660;52846 -26663;54879 -26850;54984 -25159;55107 -23839;55366 -23833;55399 -22923;52599 -22705;52544 -23593;52102 -23569;52102 -23568;52090 -23568 1;51965 -22678;51808 -22171;51524 -21322;51490 -21237;50706 -19460;50687 -19459 1;50582 -19207;50537 -19052;50537 -18784 1;50537 -18531;50621 -18377;50746 -18182;50830 -18041;51107 -18054;51794 -17556;51730 -17391;52447 -17084 1;52698 -16978;52944 -16783;52992 -16515;53683 -12737;53412 -12671 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="56">66162 -36162;66490 -36163;66346 -32578 1;66263 -31412;65463 -30469;64291 -30367 1;60065 -30000;57688 -29887;53457 -29582 1;52022 -29479;50750 -30394;50526 -31815 1;50235 -33657;49982 -35286;49747 -36815;49572 -37955 1;48998 -41712;48511 -45007;47803 -49672 1;47646 -50706;47528 -51393;47391 -52259;47281 -52969 1;47272 -53030;47263 -53092;47253 -53156;45400 -61193;45934 -61312;47510 -55485;49918 -55398;49848 -54246;47877 -54246;48697 -49710;51018 -49605;51018 -47145;48994 -48297;49936 -42557;51681 -42522;51594 -39294;51332 -39316;50419 -39338;50761 -36535;51366 -33170;51612 -32212 1;51851 -31451;52420 -30845;53228 -30890;60955 -31326;61592 -31362 1;62803 -31431;63577 -31474;64874 -31547 1;65425 -31578;65833 -31997;65926 -32523;66162 -36162 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="38">46888 -29857;47055 -29251;47878 -29675;48073 -29257;48495 -29311;48459 -30584;49357 -30655;49288 -31059;48663 -31025;48651 -31575;48760 -31584;47788 -38651;48257 -39243;46417 -50551 1;46235 -51451;45556 -51961;44696 -52224;44634 -51680 1;45332 -51444;45783 -50884;45910 -50111;46774 -44856;47614 -39367;47244 -38935;46553 -38812;46615 -37714;46810 -37744;47391 -37766 32;47438 -36537 32;45946 -36480 32;45973 -35764;47404 -35752;47725 -33626;48033 -31521 1;48117 -30839;47671 -30218;47022 -30053;46888 -29857 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">37852 -55758;43644 -54677;45424 -54956;44621 -57869;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">42956 -57633;44837 -57784;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">47260 -53153;45394 -61208;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="10">45593 -54841;47268 -53122;45462 -60913;45396 -61191;43927 -61002;43998 -60744;42714 -60642;42967 -57676;44738 -57702;45593 -54841 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">42749 -60636;43998 -60737;43928 -60998;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">37852 -55758;36137 -56111;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">35926 -57978 32;34914 -57903 32;34881 -58350 32;35893 -58425 32;35926 -57978 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">36066 -58009;36219 -55935;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">34886 -56890;34925 -56359;31955 -56968;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">31955 -56968;29069 -57528;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="7">29069 -57528;24058 -58424 32;22445 -58713 32;24024 -58851 32;24977 -58934 32;25873 -59012 32;41285 -60361;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="9">36023 -57997;36171 -56060;43635 -54703;45412 -54950;44647 -57713;42957 -57614;41304 -60366;36961 -59946;36023 -57997 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">34916 -56356;34724 -58606;35056 -58659;34951 -59740;22773 -58676;30764 -57141;34916 -56356 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">45932 -51514;46211 -51723 1;45770 -52360;45291 -52633;44527 -52761;41065 -53376;40990 -52929;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="6">44492 -52290;44562 -52787;44390 -52819;41065 -53376;40991 -52935;44492 -52290 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="12">44471 -52299;44615 -52248 1;45133 -52101;45591 -51867;45921 -51518;46050 -51597;46167 -51679;46210 -51737 1;45790 -52322;45284 -52607;44562 -52732;44471 -52299 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="5">41735 -51821;41805 -50949;37408 -50966;37408 -52536;41735 -51821 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-1.58404"><coords count="1">37425 -51685;</coords></object>
<object type="1" symbol="132"><coords count="5">37447 -53637 32;38172 -53496 32;38255 -53924 32;37531 -54065 32;37447 -53637 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">31905 -54655 32;34570 -54173 32;34653 -54601 32;31989 -55083 32;31905 -54655 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">23476 -53626;23825 -53382 1;24780 -54735;25640 -55391;27126 -56122;26564 -56270 1;25238 -55450;24428 -54954;23476 -53626 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">26373 -55929;</coords></object>
<object type="0" symbol="84"><coords count="1">25056 -55030;</coords></object>
<object type="0" symbol="84"><coords count="1">23983 -53966;</coords></object>
<object type="0" symbol="84"><coords count="1">25815 -52995;</coords></object>
<object type="0" symbol="84"><coords count="1">27061 -53980;</coords></object>
<object type="0" symbol="84"><coords count="1">28443 -54695;</coords></object>
<object type="0" symbol="84"><coords count="1">29763 -55004;</coords></object>
<object type="1" symbol="73"><coords count="5">31905 -54655 32;34570 -54173 32;34653 -54601 32;31989 -55083 32;31905 -54655 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">37836 -53786;</coords></object>
<object type="1" symbol="132"><coords count="13">48740 -31587;47777 -38656;48246 -39224;46433 -50462 1;46247 -51618;45267 -52160;44113 -52362 1;39328 -53200;36671 -53818;31886 -54656 1;31341 -54751;30829 -54790;30342 -54775 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">30342 -54775 1;28644 -54720;27060 -53903;25780 -52516;25353 -52803 1;26794 -54380;28353 -55272;30500 -55344;30300 -54785 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">30293 -54778 1;28595 -54723;27130 -53964;25780 -52534;25379 -52803 1;26785 -54380;28353 -55272;30500 -55344;30300 -54785;30293 -54778 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="9">23476 -53626;23825 -53382 1;24780 -54735;25640 -55391;27126 -56122;26564 -56270 1;25238 -55450;24428 -54954;23476 -53626 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="18">19577 -57853;26004 -56509 1;24698 -55623;24017 -54997;23056 -53745 1;22405 -52897;22279 -52266;21723 -51352 1;21537 -51046;21290 -50844;20934 -50883 1;20553 -50925;20451 -51282;20305 -51636 1;20006 -52362;19843 -52800;19811 -53585;19577 -57853 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="16">22446 -53065 1;22093 -52349;21942 -51915;21487 -51259 1;21364 -51082;21202 -50992;20989 -51024 1;20787 -51054;20641 -51146;20571 -51338 1;20377 -51872;20224 -52149;20082 -52699 1;19983 -53081;19943 -53307;19943 -53702;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">23609 -55982;</coords></object>
<object type="0" symbol="84"><coords count="1">21684 -56007;</coords></object>
<object type="1" symbol="74"><coords count="4">24712 -55723;24904 -56569;19743 -57656;19844 -55777;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="16">21229 -57312 1;21199 -56960;21300 -56568;21649 -56510 1;22509 -56367;23149 -56583;23832 -56041;24599 -55445 1;25000 -55798;25445 -56130;26004 -56509;24955 -56718;24753 -56028;23472 -56478;23549 -56787;21229 -57312 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">23514 -56787;23453 -56473;24718 -56063;24822 -56508;23514 -56787 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="5">23514 -56787;23453 -56473;24718 -56063;24822 -56508;23514 -56787 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="40">22421 -52960;22552 -52994;22599 -53050 1;22723 -53272;22867 -53499;23056 -53745 1;23601 -54454;24055 -54963;24585 -55432;24458 -55554;23832 -56041 1;23149 -56583;22509 -56367;21649 -56510 1;21300 -56568;21199 -56960;21229 -57312;21241 -57309;21082 -57374;19743 -57656;19836 -55925;19665 -55786;19813 -53684;19945 -53567 1;19953 -53251;19995 -53035;20082 -52699 1;20224 -52149;20377 -51872;20571 -51338 1;20641 -51146;20787 -51054;20989 -51024 1;21202 -50992;21364 -51082;21487 -51259 1;21844 -51774;22014 -52153;22242 -52638;22421 -52960 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="17">26920 -59533;22726 -59212 1;21649 -59130;21033 -59184;19962 -59323 1;16631 -59754;14773 -60172;11438 -60679 1;8330 -61151;6665 -61828;3567 -62363 1;-189 -63012;-2296 -63524;-6103 -63709 1;-6416 -63724;-6594 -63700;-6903 -63651 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="16">22793 -46842 1;23157 -47274;23459 -47682;23725 -48078 33;24052 -48571;24110 -48660;24360 -49087 33;24877 -49976;25461 -51126;26271 -52159 1;27212 -53359;28905 -54428;30796 -54187 1;31563 -54089;31993 -54034;32760 -53936;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">24432 -48446;24165 -48591;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">28672 -46418;25526 -46343 32;25534 -47776;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="5">28672 -46418;30754 -46502;31085 -46877;31914 -46894;31896 -47522;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">32089 -46724;32150 -43209;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="30">24185 -48531;25476 -47746;25476 -46402;30605 -46472;31024 -46926;32088 -46804;32090 -46647;32150 -43209;32367 -38254;40802 -37316;45390 -37456;46646 -38939;47292 -39061;47571 -39514;45889 -50460;45272 -51323;44532 -51669;41646 -52384;32763 -54099;30852 -54180 1;30834 -54182;30815 -54185;30796 -54187 1;28905 -54428;27212 -53359;26271 -52159 1;25568 -51263;25035 -50278;24569 -49453;24185 -48531 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">41667 -52396;32747 -54095;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">31342 -44398;</coords></object>
<object type="0" symbol="84"><coords count="1">28929 -44361;</coords></object>
<object type="0" symbol="84"><coords count="1">26560 -44336;</coords></object>
<object type="1" symbol="115"><coords count="5">27053 -43502 32;28239 -43548 32;28223 -43969 32;27037 -43923 32;27053 -43502 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">27001 -43912;26223 -43882;26184 -44890;29151 -45005;29205 -43599;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">31125 -43668 32;31070 -45081 32;31604 -45102 32;31659 -43689 32;31125 -43668 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">31125 -43668 32;31070 -45081 32;31604 -45102 32;31659 -43689 32;31125 -43668 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">26223 -43882;26184 -44890;29151 -45005;29205 -43599;28246 -43577;28235 -43953;26223 -43882 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">22233 -42825;22169 -44436;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">21196 -43798;21397 -44391;20638 -45150 1;19611 -44652;18952 -44415;17811 -44408;13451 -44204 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">17837 -43667;17811 -44408 1;18952 -44415;19611 -44652;20638 -45150;21397 -44391;21196 -43798;17837 -43667 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="38">20626 -45175;22768 -46904 1;23132 -47336;23459 -47682;23725 -48078 33;23869 -48294;23960 -48433;24039 -48556;25495 -47712;25507 -46318;30726 -46490;31096 -46848;31972 -46848;32090 -46662;32150 -43209;31158 -43098;31133 -43628;31294 -43675;31659 -43689 32;31604 -45102 32;31070 -45081 32;31124 -43697;29184 -43603;29198 -43775;29151 -45005;26184 -44890;26223 -43882;27001 -43912;27037 -43554;25743 -43462;25182 -43440 32;25200 -42952 32;21230 -42795 32;21191 -43788 32;21234 -43910;21397 -44391;20842 -44946;20626 -45175 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">22832 -48489 32;22439 -48005 32;22798 -47714 32;23191 -48198 32;22832 -48489 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">22127 -47620 32;21734 -47136 32;22093 -46845 32;22486 -47329 32;22127 -47620 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">16792 -46797 1;18472 -46868;19672 -47119;20802 -48364;20457 -48677;20419 -48635 1;19414 -47524;18253 -47369;16760 -47246;16792 -46797 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">22802 -48123;</coords></object>
<object type="0" symbol="84"><coords count="1">22105 -47241;</coords></object>
<object type="0" symbol="84"><coords count="1">20162 -48098;</coords></object>
<object type="1" symbol="109"><coords count="14">19703 -48646 1;19150 -48317;18664 -48125;18162 -48013 33;17593 -47885;17004 -47861;16273 -47857 32;12865 -47786 32;12809 -50455 32;12205 -51034 32;12085 -56721 32;10700 -56692 32;10753 -54152 32;9584 -54128 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">19727 -48535 1;20051 -48756;20357 -49066;20196 -49424;18950 -52138;18793 -57894;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="23">16187 -48363;16412 -47858 1;17680 -47870;18525 -47964;19631 -48604;19835 -48613 1;20114 -48826;20339 -49106;20196 -49424;18950 -52138;18798 -57702;17520 -57860;17572 -55602 32;17867 -55609 32;17947 -52119 32;18445 -52130 32;18485 -50390 32;19027 -50402 32;19065 -48760 32;18449 -48746 32;18456 -48455 32;17176 -48426;16187 -48363 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">22439 -48005;22127 -47620;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="55">20187 -45866;20342 -45499;20638 -45150;20673 -45115;20964 -45406;22793 -46842 1;22843 -46901;22891 -46960;22939 -47018;25416 -50932;26736 -52795;28266 -53683;29610 -54176;32534 -54078;32880 -54077;41646 -52384;44532 -51669;44788 -51549;44789 -52194 1;44758 -52205;44727 -52214;44696 -52224;42078 -52735;40991 -52935;40131 -53095 1;37466 -53607;35180 -54079;31886 -54656 1;31341 -54751;30829 -54790;30342 -54775;29641 -54708 1;28210 -54482;26882 -53710;25780 -52516;25353 -52803;25038 -52401 1;24068 -51135;23689 -50046;22830 -48486;22916 -48421;23191 -48198 32;22798 -47714 32;22440 -48004;22149 -47647;22127 -47620;22270 -47504;22486 -47329 32;22093 -46845 32;21760 -47115;21556 -46957 1;20749 -46163;20064 -45735;19008 -45414;20187 -45866 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">20457 -48677;20457 -48677 1;21384 -49705;21776 -50414;22351 -51673 1;22716 -52470;22960 -52909;23486 -53610;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="74">18634 -45308;18365 -46966 1;19285 -47156;20059 -47545;20802 -48364;20470 -48665;20773 -49040 1;21482 -49886;21846 -50567;22351 -51673 1;22713 -52465;22957 -52903;23475 -53596;23603 -53537;23825 -53382 1;24780 -54735;25640 -55391;27126 -56122;27485 -57684;34986 -56277;34961 -57931;35158 -57921;35926 -57978 32;36121 -56080;43671 -54600;45695 -54945;46312 -51787;46116 -51853 1;45701 -52398;45237 -52642;44527 -52761;41065 -53376;40995 -52958;40771 -52976;40131 -53095 1;39469 -53222;38829 -53347;38192 -53472;38203 -53658;38255 -53924 32;37531 -54065 32;37447 -53637 32;37280 -53650 1;36408 -53820;35521 -53992;34565 -54171;34593 -54293;34653 -54601 32;31989 -55083 32;31905 -54655 32;31722 -54683 1;31238 -54758;30780 -54788;30342 -54775;30335 -54883;30500 -55344 1;28353 -55272;26794 -54380;25353 -52803;25074 -52449 1;24078 -51162;23699 -50066;22830 -48486;22679 -48300;22439 -48005 32;22358 -47905;22127 -47620;22052 -47527;21734 -47136 32;21666 -47067 1;20795 -46187;20088 -45733;18950 -45396;18634 -45308 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="43">65933 -36163;64841 -36189;62416 -39225;60759 -39295;59991 -38091;56135 -38806;53850 -38928;53379 -39400;53013 -47285;52925 -48158;51878 -49484;51966 -51316;51198 -56741;51267 -59306;47987 -61697;46068 -61313;47551 -55538;49976 -55468;49907 -54142;47935 -54194;48667 -49728;51058 -49589;51023 -46919;49051 -48280;49976 -42593;51825 -42540;52053 -36468;51041 -36381;51038 -35713;51519 -32617 1;51662 -31679;52281 -30837;53228 -30890;61225 -31341;61606 -31363 1;62809 -31431;63582 -31474;64874 -31547 1;65425 -31578;65833 -31997;65926 -32523;66138 -35788;65933 -36163 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-44103 -67138;</coords></object>
<object type="0" symbol="142"><coords count="1">-41919 -66509;</coords></object>
<object type="1" symbol="87"><coords count="2">10924 -58534;15740 -58185;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">15727 -58191;18789 -57746;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">3336 -58833;10924 -58534;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">13459 -60032;</coords></object>
<object type="1" symbol="89"><coords count="25">2310 -61524 1;-269 -62051;-1696 -62441;-4282 -62936 1;-6671 -63393;-8048 -63442;-10476 -63581 1;-15162 -63850;-17775 -64219;-22462 -64471 1;-25572 -64638;-27310 -64811;-30418 -65012 1;-32102 -65121;-33047 -65227;-34710 -65518 1;-36005 -65745;-36736 -65852;-38025 -66111 1;-39322 -66372;-40217 -67608;-39944 -68902 1;-39803 -69570;-39724 -69945;-39579 -70612;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="52">27565 -59310;26920 -59533;22726 -59212 1;21649 -59130;21033 -59184;19962 -59323 1;19629 -59366;19310 -59409;19004 -59452;18718 -59493 1;16117 -59865;14335 -60239;11438 -60679 1;8330 -61151;6665 -61828;3567 -62363 1;3481 -62378;3397 -62393;3313 -62407;2984 -62465 1;-417 -63064;-2498 -63517;-6103 -63692;-6488 -63706;-6803 -63645;-6347 -63454;-554 -62339;2259 -61796;2444 -61885 1;4502 -61639;5704 -61091;7598 -60597;8625 -60337 1;8899 -60262;9136 -60198;9483 -60186 1;10255 -60159;10687 -60106;11454 -60018 1;15241 -59584;17425 -59130;21022 -58528;21439 -58459 1;21503 -58448;21567 -58438;21632 -58427 1;22562 -58274;24825 -58024;25765 -57958;23464 -58566;23325 -58828;27565 -59310 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="81"><coords count="46">26910 -59534;10163 -62480;-3585 -65062;-37816 -67644;-37258 -70366;-39295 -70533;-39740 -68608;-39740 -68275;-39634 -67754;-39331 -67235;-39142 -66993;-38850 -66756;-37882 -66345;-35505 -65942;-32578 -65478;-30410 -65299;-23378 -64819;-15603 -64250;-13243 -64023;-7134 -63644;-6624 -63692 1;-6458 -63712;-6310 -63719;-6103 -63709 1;-2296 -63524;-189 -63012;3567 -62363 1;6665 -61828;8330 -61151;11438 -60679 1;14027 -60285;15725 -59946;17914 -59612;18523 -59521 1;18588 -59512;18653 -59502;18718 -59493;19004 -59452 1;19310 -59409;19629 -59366;19962 -59323 1;21033 -59184;21649 -59130;22726 -59212;25927 -59457;26910 -59534 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="48">26001 -56510;26575 -56276;26311 -56114 1;25132 -55382;24366 -54868;23476 -53626;23425 -53529 1;22941 -52874;22701 -52439;22351 -51673 1;21846 -50567;21482 -49886;20773 -49040;20470 -48665;20344 -48554 1;19356 -47516;18216 -47366;16760 -47246;16762 -47221;16735 -47863 1;17780 -47889;18549 -48008;19495 -48527;19791 -48580 1;20089 -48797;20346 -49090;20196 -49424;18950 -52138;18793 -57894;19578 -57853;19577 -57853;19811 -53585 1;19843 -52800;20006 -52362;20305 -51636 1;20451 -51282;20553 -50925;20934 -50883 1;21290 -50844;21537 -51046;21723 -51352 1;22279 -52266;22405 -52897;23056 -53745 1;23928 -54882;24570 -55502;25658 -56270;26001 -56510 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="43">25965 -56491;26601 -56269;27168 -56127;27501 -57614;25385 -57984;23947 -58132 1;23067 -58228;22146 -58342;21632 -58427 1;17662 -59080;15451 -59560;11454 -60018 1;10687 -60106;10255 -60159;9483 -60186 1;8977 -60204;8706 -60330;8213 -60445 1;5899 -60985;4666 -61639;2304 -61901;2304 -61210;2378 -61210 1;3165 -61039;3596 -60901;4376 -60704 1;4512 -60670;4245 -60461;4105 -60469 1;2855 -60538;1754 -60601;720 -60652;186 -59182 1;1266 -59117;2348 -59050;3397 -58993;10873 -58634;15808 -58264;18788 -57871;19564 -57845;20202 -57722;25933 -56524;25965 -56491 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">-45557 -63379;-42362 -62638;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="39">25765 -57958 1;24825 -58024;22562 -58274;21632 -58427 1;17662 -59080;15451 -59560;11454 -60018 1;10687 -60106;10255 -60159;9483 -60186 1;8977 -60204;8706 -60330;8213 -60445 1;5899 -60985;4666 -61639;2304 -61901;2304 -61210;2378 -61210 1;3165 -61039;3596 -60901;4376 -60704 1;4512 -60670;4245 -60461;4105 -60469 1;-451 -60719;-3023 -60904;-7578 -60636 1;-12853 -60326;-15816 -60026;-21099 -60118 1;-25865 -60201;-28579 -60130;-33313 -60685 1;-35761 -60972;-37145 -61034;-39516 -61706 1;-40601 -62014;-41512 -62264;-42386 -62501 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">-44657 -64381 32;-43004 -63997 32;-42789 -64924 32;-44442 -65308 32;-44657 -64381 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="26">-41335 -65919 1;-41541 -65117;-41610 -64649;-41644 -63822 1;-41658 -63485;-41658 -63295;-41644 -62958 1;-41630 -62619;-41219 -62482;-40892 -62391 1;-40044 -62156;-39624 -61773;-38782 -61516 1;-38577 -61454;-38432 -62274;-38313 -62453 1;-38095 -62780;-37935 -63041;-37548 -63106 1;-37165 -63170;-36980 -63461;-36869 -63834 1;-36716 -64349;-36758 -64667;-36758 -65204;-41335 -65919 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="25">-35110 -60919 1;-33784 -60734;-33040 -60636;-31708 -60500 1;-30186 -60345;-29324 -60368;-27800 -60238 1;-27732 -60232;-27803 -60345;-27800 -60413 1;-27786 -60700;-27950 -61173;-28236 -61198 1;-29917 -61347;-30864 -61418;-32545 -61564 1;-33082 -61611;-33281 -62083;-33819 -62122 1;-34291 -62157;-34722 -61915;-34901 -61477 1;-34989 -61262;-35340 -60951;-35110 -60919 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="19">-20781 -61837 1;-20615 -62472;-20698 -62939;-20678 -63595;-17562 -63356;-17588 -62654 1;-17562 -62004;-17471 -61711;-17039 -61225 1;-16727 -60874;-16567 -60622;-16603 -60153;-17237 -60122 1;-18416 -60097;-19474 -60093;-20900 -60118 1;-20883 -60791;-20952 -61186;-20781 -61837 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="24">-13872 -62993 1;-13886 -62163;-14006 -61661;-14415 -60939 1;-14566 -60672;-14826 -60302;-14533 -60212;-14232 -60210 1;-12790 -60279;-11358 -60374;-9736 -60477 1;-9498 -60492;-9424 -60769;-9434 -61007 1;-9449 -61376;-9825 -61497;-10184 -61583 1;-10749 -61719;-11343 -61603;-11563 -62141 1;-11663 -62386;-11741 -62525;-11702 -62787;-13872 -62993 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">-16626 -62671;</coords></object>
<object type="0" symbol="83"><coords count="1">-14653 -62017;</coords></object>
<object type="1" symbol="70"><coords count="11">-17799 -63370;-17865 -61709;-16668 -60105;-16494 -60120 1;-15818 -60137;-14955 -60189;-14308 -60218;-13700 -61997;-13832 -62997;-14781 -63091;-17799 -63370 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="34">-10047 -60496;-9680 -60507 1;-9016 -60549;-8320 -60592;-7578 -60636 1;-5000 -60788;-3057 -60794;-1030 -60726 1;-803 -60718;-636 -60950;-661 -61176 1;-687 -61406;-852 -61556;-1080 -61595 1;-3932 -62089;-5530 -62589;-8425 -62589 1;-9804 -62589;-10618 -62656;-11988 -62812;-11993 -62726 1;-12005 -62513;-11934 -62366;-11845 -62149 1;-11625 -61611;-11031 -61727;-10466 -61591 1;-10107 -61505;-9731 -61384;-9716 -61015 1;-9709 -60848;-9743 -60661;-9847 -60560;-10047 -60496 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="49">-1158 -60692;-618 -60711 1;810 -60657;2302 -60568;4105 -60469 1;4245 -60461;4512 -60670;4376 -60704 1;3596 -60901;3165 -61039;2378 -61210;2304 -61210;2304 -61407;-3949 -62820;-8328 -63344;-11888 -63553;-13946 -63780;-24763 -64670;-29265 -64861;-32931 -65215;-37446 -66029;-39148 -66622;-39963 -67510;-40111 -68694;-39765 -70644;-44083 -71976;-45712 -63488;-42430 -62550;-42126 -62430 1;-41331 -62214;-40494 -61984;-39516 -61706 1;-37145 -61034;-35761 -60972;-33313 -60685 1;-28579 -60130;-25865 -60201;-21099 -60118 1;-20599 -60109;-20120 -60104;-19658 -60102;-17725 -60113 1;-14309 -60166;-11624 -60398;-7578 -60636 1;-5241 -60773;-3426 -60792;-1598 -60743;-1158 -60692 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="46">-691 -60966 1;-665 -61031;-653 -61104;-661 -61176 1;-687 -61406;-852 -61556;-1080 -61595 1;-3932 -62089;-5530 -62589;-8425 -62589 1;-8628 -62589;-8819 -62590;-9001 -62593;-9460 -62605 1;-10295 -62633;-10996 -62699;-11988 -62812;-12366 -62845;-14427 -63021;-15096 -63089;-15203 -63100;-18213 -63396;-18887 -63458;-21285 -63641;-21769 -63701;-24566 -63939;-25204 -63971;-26288 -64048 1;-29975 -64340;-32039 -64560;-35710 -65008;-36594 -65154;-36918 -65229;-41335 -65919 33;-41541 -65117;-41610 -64649;-41644 -63822 1;-41658 -63485;-41658 -63295;-41644 -62958 1;-41630 -62619;-41219 -62482;-40892 -62391 1;-40542 -62294;-40265 -62172;-40001 -62044;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-5414 -57917;-5479 -59452;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-5414 -57917;-5484 -59461;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">-46167 -61470 1;-43576 -60955;-42125 -60652;-39518 -60224 1;-36465 -59723;-34746 -59434;-31659 -59225 1;-28729 -59027;-27082 -58958;-24145 -58905 1;-21240 -58852;-19611 -58922;-16706 -58967 1;-12987 -59025;-10910 -59284;-7193 -59411 1;-6707 -59428;-6191 -59433;-5654 -59429 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-5289 -59425 1;-2633 -59387;509 -59149;3397 -58993 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="13">2501 -49521;3182 -49556 32;3235 -47244 33;1849 -46957;1083 -46357;7 -45438 32;-3587 -48857 32;-3692 -52975 32;-4652 -53830 32;-4844 -57930 32;-709 -58245;3548 -58210 32;3538 -58855;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="9">-5010 -58037;-5034 -59406;-4924 -59419 1;-2348 -59366;640 -59142;3397 -58993;3441 -58271;-766 -58370;-5010 -58037 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="17">-5030 -57967;-5640 -57930 1;-6432 -58156;-7335 -57987;-7975 -57468;-13228 -56791;-17759 -56386;-21585 -56242;-27683 -56149;-28076 -56707 1;-31927 -56758;-33765 -56732;-36978 -56916 1;-39791 -57077;-41460 -57092;-44272 -57282;-44334 -55975;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-16212 -56655;-14860 -56777;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="17">-14895 -56883 1;-14249 -57167;-13926 -57545;-13220 -57563 1;-12607 -57578;-12276 -57270;-11667 -57336 1;-10706 -57441;-10174 -57593;-9207 -57615 1;-8781 -57625;-8471 -57725;-8126 -57476;-8369 -57417;-13228 -56791;-14880 -56643;-14895 -56883 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="31">-13975 -57376 1;-14289 -57953;-14294 -58376;-14270 -59033;-14074 -59047 1;-11792 -59151;-9941 -59317;-7193 -59411 1;-6723 -59427;-6225 -59433;-5707 -59429;-5622 -57931;-5640 -57930 1;-6432 -58156;-7335 -57987;-7975 -57468;-8112 -57450;-8200 -57524 1;-8516 -57711;-8812 -57624;-9207 -57615 1;-10174 -57593;-10706 -57441;-11667 -57336 1;-12276 -57270;-12607 -57578;-13220 -57563 1;-13505 -57556;-13727 -57490;-13934 -57395;-13975 -57376 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">-19456 -58910 1;-19296 -58598;-19096 -58439;-18758 -58343 1;-18174 -58178;-17804 -58175;-17205 -58273 1;-16888 -58325;-16737 -58632;-16743 -58953;-19456 -58910 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="8">-22165 -56247 1;-21876 -56753;-21513 -57108;-20931 -57086 1;-20386 -57065;-19786 -56889;-19746 -56345;-22165 -56247 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="33">-26488 -56194 1;-26910 -56555;-27551 -56899;-27273 -57380 1;-27055 -57757;-26628 -57933;-26226 -57764 1;-25394 -57415;-24734 -57176;-23923 -57572 1;-23350 -57852;-22893 -58245;-22946 -58881;-23223 -58892 1;-23517 -58895;-23823 -58899;-24145 -58905 1;-26210 -58942;-27637 -58987;-29320 -59080 1;-29738 -59103;-29155 -58408;-29279 -58008 1;-29433 -57509;-29522 -57221;-29785 -56770;-29664 -56726 1;-29172 -56720;-28646 -56715;-28076 -56707;-27683 -56149;-26819 -56162;-26488 -56194 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-41384 -60582;-41576 -57128;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-41384 -60582;-41576 -57097;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="123"><coords count="9">-42340 -60976;-45675 -58642 1;-46086 -58354;-46306 -58069;-46391 -57575;-48869 -42674;-49033 -41692;-48615 -41622;-48944 -39656;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-48654 -42114;-47599 -42070;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-40958 -58645;</coords></object>
<object type="1" symbol="70"><coords count="21">-32839 -56778 1;-32691 -57760;-32769 -58306;-32865 -59294;-32753 -59307 1;-32406 -59278;-32043 -59251;-31659 -59225 1;-30830 -59169;-30068 -59114;-29386 -59076;-29418 -58993 1;-29454 -58798;-29149 -58316;-29244 -58008 1;-29398 -57509;-29417 -57186;-29680 -56735;-29728 -56749;-31464 -56744;-32839 -56778 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="20">-40667 -57091;-40570 -57086 1;-39468 -57039;-38361 -56995;-36978 -56916 1;-35385 -56825;-34071 -56785;-32741 -56762;-32743 -56888 1;-32621 -57799;-32729 -58364;-32821 -59311;-33065 -59334 1;-35339 -59533;-36960 -59804;-39518 -60224 1;-39852 -60279;-40166 -60332;-40467 -60383;-40667 -57091 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="6">-44288 -57288;-44127 -59336;-42277 -60693;-41623 -60582;-41796 -57153;-44288 -57288 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">-41368 -57138;-40652 -57086;-40663 -57164;-40467 -60383;-41184 -60496;-41368 -57138 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-46421 -61377;-44293 -60941;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="2">-40650 -57379;-40490 -60012;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="27">-27381 -56150;-27434 -58994;-27223 -58984 1;-26294 -58950;-25323 -58926;-24145 -58905 1;-23823 -58899;-23517 -58895;-23223 -58892;-22859 -58889 1;-20696 -58873;-19154 -58929;-16706 -58967 1;-15776 -58982;-14949 -59009;-14173 -59043;-13877 -57441;-13871 -57423 1;-14203 -57283;-14484 -57064;-14895 -56883;-14880 -56643;-15047 -56628;-17759 -56386;-21585 -56242;-27228 -56156;-27381 -56150 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="14">-8462 -57623;-8556 -57638 1;-8754 -57657;-8961 -57621;-9207 -57615 1;-10174 -57593;-10706 -57441;-11667 -57336 1;-12276 -57270;-12607 -57578;-13220 -57563 1;-13922 -57545;-14245 -57171;-14884 -56888;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="96"><coords count="6">-42190 -60587;-45453 -58314 1;-45792 -58078;-45951 -57824;-46012 -57415;-46160 -56420;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="96"><coords count="6">-46892 -56944;-46735 -57851 1;-46662 -58270;-46508 -58531;-46160 -58776;-43167 -60883;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-46320 -56051;-43198 -55742 32;-43180 -54789;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-48481 -42082;-46170 -55949;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="5">-44608 -59971;-44842 -60921;-44324 -61094;-43226 -60872;-44608 -59971 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="10">-47605 -52218;-48740 -52428;-48000 -55611;-47194 -58763;-46223 -61274;-44767 -60928;-44520 -60015;-46420 -58609;-46642 -57906;-47605 -52218 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="8">-44344 -55969;-44274 -57287;-44126 -59171;-45722 -58116;-46054 -57470;-46228 -56728;-46307 -56179;-44344 -55969 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-5194 -57976;-4985 -57976;-5009 -59426;-5268 -59419;-5194 -57976 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="59">243 -59164;805 -60645;215 -60676 1;-2298 -60791;-4479 -60818;-7578 -60636 1;-12853 -60326;-15816 -60026;-21099 -60118 1;-25865 -60201;-28579 -60130;-33313 -60685 1;-35761 -60972;-37145 -61034;-39516 -61706 1;-40601 -62014;-41512 -62264;-42386 -62501;-46066 -63380;-46596 -61555;-46288 -61493;-44166 -61086;-43770 -60993 1;-42420 -60728;-41214 -60502;-39518 -60224 1;-36465 -59723;-34746 -59434;-31659 -59225 1;-31586 -59220;-31515 -59215;-31443 -59211;-30975 -59180 1;-30420 -59143;-29909 -59112;-29421 -59085;-29072 -59067 1;-27494 -58983;-26108 -58940;-24145 -58905 1;-23823 -58899;-23517 -58895;-23223 -58892;-22946 -58881;-22387 -58886 1;-20462 -58882;-18972 -58932;-16706 -58967 1;-12987 -59025;-10910 -59284;-7193 -59411 1;-6707 -59428;-6191 -59433;-5654 -59429;-4798 -59416 1;-3319 -59382;-1709 -59295;-89 -59198;243 -59164 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="5">-50362 -45946;-48704 -45527;-47588 -52244;-48669 -52488;-50362 -45946 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="8">-51897 -39476;-49427 -38638;-49220 -39760;-48936 -41376;-49393 -41438;-48714 -45546;-50331 -45953;-51897 -39476 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="8">-52964 -35502 1;-51792 -35275;-50961 -35396;-49789 -35624;-49705 -36870;-49407 -38668;-51921 -39527;-52964 -35502 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="156"><coords count="6">-49990 -30922;-40150 -30748 1;-41024 -32749;-41312 -34209;-40796 -36331;-49746 -36714;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-40848 -31288;</coords></object>
<object type="1" symbol="162"><coords count="7">-49990 -30922;-40150 -30748 1;-41024 -32749;-41312 -34209;-40796 -36331;-49746 -36714;-49990 -30922 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="23">-40229 -30729;-39716 -29931 32;-40090 -28777 32;-39000 -28845 32;-35444 -25708 32;-36027 -25028;-34410 -23641;-33829 -24318 32;-33463 -24004 1;-33186 -23766;-32946 -23467;-32796 -23148 33;-32572 -22671;-32549 -22151;-32905 -21736;-37022 -16938 32;-50195 -23150 1;-51024 -23499;-51039 -24463;-50882 -25349 1;-50505 -27481;-50293 -28677;-49916 -30809;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="156"><coords count="2">-35304 -25624;-33944 -24455;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="5">-35427 -25501;-35776 -25074;-34450 -23896;-34013 -24324;-35427 -25501 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="22">-49874 -30884;-50038 -30121 1;-50343 -28395;-50548 -27241;-50882 -25349 1;-51039 -24463;-51024 -23499;-50195 -23150;-37022 -16938 32;-32905 -21736 1;-32311 -22428;-32771 -23410;-33463 -24004;-33829 -24318 32;-34410 -23641;-36027 -25028;-35444 -25708 32;-39000 -28845 32;-40090 -28777 32;-39716 -29931 32;-40229 -30729;-49874 -30884 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">-51077 -24831 1;-51914 -25190;-52843 -25786;-52542 -26646 1;-52332 -27245;-52112 -27665;-51530 -27919 1;-51113 -28101;-50852 -28143;-50449 -28355;-51077 -24831 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="6">-54254 -30275;-50276 -29507;-49980 -30921;-49718 -36713;-52510 -37376;-54254 -30275 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="8">-47728 -37816;-47623 -41933;-48251 -41907;-48661 -39508 1;-48784 -38787;-48538 -37992;-47824 -37833;-47728 -37816 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">-35338 -50247;-35301 -48803 32;-35807 -48803;-36954 -49605 32;-38201 -49602 32;-42000 -49593;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-35475 -54600;-34649 -54614 32;-34598 -51700;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="17">-48415 -42142;-42469 -42142;-41877 -49544;-37658 -49603;-36954 -49605 32;-35807 -48803;-35301 -48803 32;-35333 -50063;-35017 -50383;-34598 -51740;-34672 -54602;-36547 -54504;-36843 -53788;-43037 -54084;-43209 -55515;-46121 -56009;-48415 -42142 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-34495 -54744 1;-34529 -55257;-35054 -55484;-35568 -55508;-43072 -55885;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="11">-43090 -54745;-38684 -54292;-35840 -54326;-35448 -54675;-34497 -54728;-34524 -54906 1;-34647 -55305;-35112 -55487;-35568 -55508;-43072 -55885;-43090 -54745 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-40947 -40924 1;-40951 -40524;-40420 -40532;-40023 -40479;-39185 -46289;-40171 -46254;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">-40475 -48557;-39516 -48566;-39278 -48333;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="96"><coords count="4">-49335 -39723;-49079 -41286;-49515 -41354;-49373 -42184;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="96"><coords count="2">-48199 -41726;-48548 -39587;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="135"><coords count="2">-48944 -39656;-48662 -41343;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-49295 -42054;-48630 -41944;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-48900 -44439;-48235 -44329;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-48114 -49191;-47449 -49081;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-48509 -46806;-47844 -46696;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-46933 -56331;-46268 -56221;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-47328 -53946;-46663 -53836;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-47719 -51579;-47054 -51469;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-46828 -56965;-46163 -56855;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-46736 -57521;-46071 -57411;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-45979 -57883;-46553 -58247;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-45640 -58253;-46056 -58787;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-45640 -58253;-46056 -58787;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-45172 -58589;-45542 -59117;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-44700 -58920;-45070 -59448;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-44221 -59256;-44591 -59784;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-43730 -59600;-44100 -60128;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-43257 -59931;-43627 -60459;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-42773 -60270;-43143 -60798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-47705 -39222;-47626 -40897;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-49246 -39743;-49703 -36881;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-48652 -39633;-48661 -39508 1;-48784 -38787;-48538 -37992;-47824 -37833;-47728 -37816;-47728 -37821;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-47724 -37677;-45081 -37681;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">-42455 -37677;-40623 -37680;-40626 -39256;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-38283 -35809;-38209 -37031;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-38209 -37031;-37726 -43474;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-37982 -42505 1;-38235 -42615;-38446 -42783;-38426 -43058 1;-38409 -43296;-38159 -43463;-37920 -43450;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-38007 -42517 1;-38260 -42627;-38446 -42783;-38426 -43058 1;-38409 -43296;-38159 -43463;-37920 -43450;-38007 -42517 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">-39760 -42302;-40979 -42328;-40947 -40924 1;-40951 -40524;-40420 -40532;-40023 -40479;-39760 -42302 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="6">-40979 -42328;-39760 -42302;-39185 -46289;-40171 -46254;-41014 -43903;-40979 -42328 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-40422 -41427;</coords></object>
<object type="1" symbol="132"><coords count="2">-40665 -42313;-39758 -42308;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">-40509 -39253;-40166 -39239;-40022 -40468;-40229 -40502 1;-40581 -40541;-40950 -40590;-40947 -40924;-47660 -40869;-47722 -39204;-41726 -39216;-41701 -37674;-40517 -37649;-40509 -39253 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-40498 -37569;-40453 -37554;-40159 -39241;-40588 -39262;-40498 -37569 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="14">-40598 -36489;-40451 -37556;-42326 -37649;-42343 -37824;-47696 -37823;-47813 -37831;-47824 -37833 1;-48538 -37992;-48784 -38787;-48661 -39508;-48636 -39655;-49257 -39751;-49720 -36846;-40598 -36489 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">-29646 -46706 1;-29400 -46201;-29743 -45850;-30220 -45797 1;-30696 -45744;-31131 -45743;-31259 -46069 1;-31388 -46395;-31131 -46802;-30685 -46978 1;-30240 -47154;-29799 -47021;-29646 -46706 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-31242 -46496 1;-31565 -46707;-31844 -47025;-31687 -47377 1;-31496 -47804;-31300 -48215;-30832 -48215 1;-30495 -48215;-30182 -47967;-30196 -47630;-30213 -47046;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="27">-31260 -46025;-31201 -45964 1;-31023 -45719;-30634 -45712;-30220 -45797 1;-29725 -45899;-29431 -46176;-29646 -46706 1;-29729 -46911;-29944 -47037;-30204 -47056;-30209 -47185;-30196 -47630 1;-30182 -47967;-30495 -48215;-30832 -48215 1;-31300 -48215;-31496 -47804;-31687 -47377 1;-31844 -47025;-31565 -46707;-31242 -46496;-31269 -46403 1;-31298 -46306;-31301 -46207;-31274 -46113;-31260 -46025 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="7">-32561 -45615 1;-32797 -45615;-33069 -45656;-33233 -45796 1;-33363 -45906;-33426 -46078;-33355 -46339;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="6">-31166 -45650;-30258 -45650;-30258 -45650 1;-29801 -45650;-29559 -45963;-29325 -46356;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">-23546 -49530;-23546 -48395;-28776 -48393;-29307 -48912 32;-32663 -48875 32;-32688 -50220;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="8">-14922 -54736;-14910 -55599 32;-13960 -55686 32;-13800 -49875 32;-16563 -49850;-21004 -48401 32;-22353 -48421 32;-22337 -49517;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="14">-12691 -41913;-12270 -41933;-12218 -40276 32;-13200 -40255 32;-14665 -40224 32;-18866 -40136 32;-20471 -46574 32;-20000 -47481;-16882 -48474 32;-16493 -48598 32;-14382 -48633 32;-12395 -45987 32;-12290 -43008;-12726 -42993;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="15">-12691 -41913;-12270 -41933;-12218 -40276 32;-13200 -40255 32;-14665 -40224 32;-18866 -40136 32;-20471 -46574 32;-20000 -47481;-16882 -48474 32;-16493 -48598 32;-14382 -48633 32;-12395 -45987 32;-12290 -43008;-12726 -42993;-12691 -41913 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-18238 -39474 1;-18222 -38930;-18245 -38458;-17794 -38154;-14993 -39190;-15080 -39535;-18238 -39474 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-11850 -39657 1;-11858 -39194;-11831 -38726;-11369 -38702 1;-11063 -38686;-10768 -38877;-10752 -39183;-9506 -39189;-9531 -39645;-11850 -39657 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="4">-24468 -54260;-24480 -55062;-23074 -55050;-23061 -54507;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-15067 -55735 1;-18128 -55435;-19849 -55204;-22925 -55204;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-24639 -55204 1;-27478 -55213;-29068 -55310;-31906 -55401 1;-32070 -55406;-32161 -55409;-32325 -55414 1;-32921 -55433;-33551 -55330;-33560 -54734;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-33385 -51308;-33418 -54815;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="31">-22307 -49558;-22282 -48423;-21812 -48413;-21004 -48401;-16563 -49850;-13800 -49875 32;-13960 -55686 32;-14927 -55739;-15198 -55722 1;-18178 -55428;-19893 -55204;-22925 -55204;-24726 -55204 1;-27511 -55215;-29097 -55311;-31906 -55401 1;-32070 -55406;-32161 -55409;-32325 -55414 1;-32921 -55433;-33551 -55330;-33560 -54734;-33459 -50990;-32769 -50077;-32667 -49086;-32663 -48875;-29307 -48912;-28776 -48393;-23546 -48395;-23546 -49530;-22307 -49558 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="54">-35148 -48622;-32740 -48683;-32818 -50053;-33412 -51309;-33551 -54768;-33519 -54963 1;-33369 -55357;-32835 -55430;-32325 -55414 1;-32161 -55409;-32070 -55406;-31906 -55401 1;-29068 -55310;-27478 -55213;-24639 -55204;-22716 -55204 1;-19770 -55215;-18058 -55442;-15067 -55735;-13836 -55849;-13958 -56726;-14880 -56643;-15140 -56620;-17759 -56386;-21585 -56242;-27228 -56156;-27381 -56150;-27656 -56149;-27683 -56149;-28076 -56707 1;-28646 -56715;-29172 -56720;-29664 -56726;-29785 -56770;-30027 -56729 1;-32654 -56756;-34359 -56766;-36978 -56916 1;-38825 -57022;-40179 -57064;-41687 -57135;-41865 -57144 1;-42601 -57179;-43379 -57222;-44272 -57282;-44334 -55975;-42971 -55880;-35568 -55508 1;-35054 -55484;-34529 -55257;-34495 -54744;-34597 -51313;-35243 -49987;-35148 -48622 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="12">-29408 -46910;-28968 -46916;-28900 -47674;-29607 -48323;-29650 -48751;-32800 -48672;-33210 -47399;-32704 -47154;-32285 -48271;-30069 -48288;-29711 -47878;-29408 -46910 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-28852 -48218 1;-28876 -47677;-28879 -47369;-28975 -46836 1;-29018 -46600;-29075 -46464;-29222 -46275;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-31153 -45548;-32565 -45523;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-33466 -46356;-32812 -48693;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">-35107 -48649;-34697 -46782 1;-34729 -46150;-35129 -45572;-35762 -45561 1;-36470 -45549;-36868 -45541;-37576 -45529 1;-37802 -45525;-37870 -45816;-37847 -46041;-37498 -49478;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-36255 -47733;</coords></object>
<object type="1" symbol="73"><coords count="22">-34929 -47800 1;-35528 -47807;-35800 -48184;-36395 -48253 1;-36684 -48287;-36947 -48080;-36980 -47791 1;-37021 -47425;-36952 -46926;-37320 -46910 1;-37525 -46901;-37738 -47045;-37721 -47250;-37688 -47612;-37498 -49478;-37233 -49604;-36954 -49605 32;-35807 -48803;-35301 -48803 32;-35092 -48579;-34957 -47968;-34929 -47800 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-37685 -45646;-36952 -45663;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-35513 -46056;</coords></object>
<object type="0" symbol="84"><coords count="1">-34972 -46736;</coords></object>
<object type="1" symbol="82"><coords count="14">-35168 -47824;-35168 -47824 1;-35612 -47908;-35885 -48194;-36395 -48253 1;-36684 -48287;-36947 -48080;-36980 -47791 1;-37021 -47425;-36952 -46926;-37320 -46910 1;-37360 -46908;-37400 -46912;-37438 -46921;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="10">-33073 -47333;-32876 -47238;-32704 -47154 32;-32285 -48271 32;-30069 -48288 32;-29711 -47878;-29408 -46910 32;-28999 -46891 32;-28912 -47681;-29586 -48296;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="48">-28838 -48289;-28857 -48106 1;-28877 -47632;-28886 -47331;-28975 -46836 1;-29018 -46600;-29075 -46464;-29222 -46275;-29590 -46223 1;-29545 -46359;-29556 -46522;-29646 -46706 1;-29742 -46903;-29950 -47029;-30201 -47052;-30207 -47266;-30196 -47630 1;-30182 -47967;-30495 -48215;-30832 -48215 1;-31300 -48215;-31496 -47804;-31687 -47377 1;-31844 -47025;-31565 -46707;-31242 -46496;-31259 -46432 1;-31302 -46310;-31305 -46185;-31259 -46069 1;-31193 -45901;-31045 -45820;-30853 -45788;-31114 -45569;-31268 -45546;-32565 -45523;-32742 -45624 1;-32926 -45642;-33110 -45691;-33233 -45796 1;-33347 -45892;-33409 -46036;-33375 -46245;-33469 -46347;-33150 -47486;-32805 -48709;-29332 -48801;-28838 -48289 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-30411 -46317;</coords></object>
<object type="0" symbol="84"><coords count="1">-32714 -46296;</coords></object>
<object type="1" symbol="62"><coords count="16">-34949 -47842;-34888 -47650;-34697 -46782 1;-34729 -46150;-35129 -45572;-35762 -45561 1;-36470 -45549;-36868 -45541;-37576 -45529 1;-37802 -45525;-37870 -45816;-37847 -46041;-37690 -47587;-36877 -48610;-35560 -48505;-34949 -47842 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-34533 -43063;-34536 -43631;-33410 -43637;-33412 -44087;-28895 -44107;-28892 -43532;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="9">-34533 -43063;-34536 -43631;-33410 -43637;-33412 -44087;-28895 -44107;-28892 -43532;-31066 -43538;-31069 -43070;-34533 -43063 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-27617 -41261;-27617 -45858;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-28370 -41175;-27414 -41182;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">-26989 -46285;-23577 -46297 32;-23573 -45265;-24219 -45262;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><coords count="5">-26966 -46202;-26983 -46481;-27214 -46481;-27214 -46422;-26966 -46202 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">27804 -44786;28588 -44817;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="14">-38283 -35809 1;-38378 -34235;-38647 -33191;-37928 -31788 1;-37224 -30413;-36451 -29855;-35276 -28852 1;-33901 -27679;-33131 -27021;-31757 -25848 1;-31087 -25276;-30090 -25098;-29502 -25755;-25246 -30665;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-26429 -30922;-25016 -30930;-25251 -30669;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-26247 -32393;-23718 -32400;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-22379 -34995;-21611 -34995;-23831 -32330;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-22014 -36913;-20068 -36895;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-22154 -37393;-22149 -37873;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-21493 -39020;-20603 -39020;-22174 -45527;-23395 -46452;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-21241 -41621 1;-20873 -41710;-20681 -41873;-20770 -42241 1;-20846 -42557;-21143 -42604;-21459 -42528;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-21092 -42136;</coords></object>
<object type="1" symbol="62"><coords count="8">-21241 -41621 1;-20873 -41710;-20681 -41873;-20770 -42241 1;-20846 -42557;-21143 -42604;-21459 -42528;-21241 -41621 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="9">-21493 -39020;-20603 -39020;-22174 -45527;-23395 -46452;-23566 -45327;-24247 -45189;-24320 -44583;-22227 -40055;-21493 -39020 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-22174 -45527 1;-22401 -46340;-22653 -47240;-23497 -47237;-26454 -47226;-27239 -46409;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-26201 -46845;</coords></object>
<object type="0" symbol="84"><coords count="1">-25189 -46854;</coords></object>
<object type="0" symbol="84"><coords count="1">-24143 -46871;</coords></object>
<object type="0" symbol="84"><coords count="1">-23087 -46714;</coords></object>
<object type="1" symbol="62"><coords count="8">-22174 -45527 1;-22401 -46340;-22653 -47240;-23497 -47237;-26454 -47226;-27239 -46409;-23416 -46453;-22174 -45527 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="90">-22969 -47062;-22389 -48283;-22389 -49505;-23437 -49517;-23546 -48456;-23546 -48395;-28776 -48393;-28855 -48157 1;-28876 -47653;-28883 -47348;-28975 -46836 1;-29018 -46600;-29075 -46464;-29222 -46275;-29453 -46153 1;-29653 -45861;-29883 -45650;-30258 -45650;-30258 -45650;-31086 -45650;-31153 -45548;-32565 -45523;-32631 -45561;-32742 -45624 1;-32926 -45642;-33110 -45691;-33233 -45796 1;-33347 -45892;-33409 -46036;-33375 -46245;-33466 -46344;-33454 -46399;-32812 -48693;-35108 -48666;-35082 -48533;-34957 -47968;-34929 -47800;-34869 -47567;-34697 -46782 1;-34729 -46150;-35129 -45572;-35762 -45561 1;-36470 -45549;-36868 -45541;-37576 -45529 1;-37802 -45525;-37870 -45816;-37847 -46041;-37498 -49478;-41832 -49455;-41832 -48579;-40475 -48604;-40450 -46988;-40191 -46951;-40203 -46248;-40055 -46258;-39185 -46289;-39761 -42295;-37933 -42226;-37946 -42497;-38025 -42525 1;-38269 -42635;-38446 -42790;-38426 -43058 1;-38409 -43296;-38159 -43463;-37920 -43450;-37724 -43052;-37687 -42226;-35664 -42226;-35590 -43089;-34516 -43052;-34534 -43274;-34536 -43631;-33410 -43637;-33412 -44087;-28895 -44107;-28892 -43532;-28928 -42521;-28151 -42521;-28126 -41325;-27682 -41300;-27707 -45865;-26436 -47234;-26078 -47227;-23497 -47237 1;-23334 -47238;-23193 -47204;-23070 -47145;-22969 -47062 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="32">-37909 -40689;-38377 -33608;-38327 -32912 1;-38256 -32553;-38131 -32185;-37928 -31788 1;-37224 -30413;-36451 -29855;-35276 -28852 1;-33901 -27679;-33131 -27021;-31757 -25848 1;-31087 -25276;-30090 -25098;-29502 -25755;-25246 -30665;-25004 -30943;-26336 -30967;-26361 -32398;-23869 -32398;-21599 -34891;-22290 -34989;-22290 -38024;-24955 -45180;-23622 -45254;-23647 -46216;-27101 -46191;-27718 -45550;-27644 -41207;-28162 -41182;-28286 -41651;-37909 -40689 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-38379 -37086 1;-38862 -37173;-39235 -37599;-39146 -38081 1;-39069 -38496;-38713 -38763;-38291 -38744;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-38379 -37086 1;-38862 -37173;-39235 -37599;-39146 -38081 1;-39069 -38496;-38713 -38763;-38291 -38744;-38379 -37086 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-38686 -37483;</coords></object>
<object type="0" symbol="84"><coords count="1">-38607 -38460;</coords></object>
<object type="1" symbol="132"><coords count="21">-38836 -37266 1;-38933 -36434;-38926 -35955;-39023 -35123 1;-39250 -33180;-38992 -31791;-37701 -30321 1;-37220 -29773;-36955 -29455;-36405 -28976 1;-34731 -27516;-33755 -26699;-32079 -25241 1;-31334 -24593;-29988 -24320;-29189 -25139 1;-28349 -26104;-27896 -26661;-27072 -27640;-19706 -36392;-20156 -36771;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-25602 -29386 1;-25100 -28995;-24388 -29031;-23978 -29518 1;-23566 -30007;-23629 -30737;-24118 -31149;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-28601 -25821 1;-28403 -25623;-28085 -25772;-27903 -25985 1;-27735 -26182;-27698 -26480;-27895 -26648;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-28107 -26100;</coords></object>
<object type="0" symbol="84"><coords count="1">-25121 -29468;</coords></object>
<object type="0" symbol="84"><coords count="1">-24233 -29813;</coords></object>
<object type="0" symbol="84"><coords count="1">-24183 -30702;</coords></object>
<object type="1" symbol="132"><coords count="17">-40629 -36418;-40507 -34377 1;-40456 -33518;-40416 -33010;-40088 -32214 1;-39538 -30878;-39298 -29984;-38221 -29021 1;-36134 -27155;-34929 -26161;-32842 -24295 1;-31991 -23534;-31533 -22228;-32294 -21377 1;-35032 -18315;-36308 -16371;-39086 -13345;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="49">-38342 -37086;-38432 -37097 1;-38583 -37133;-38722 -37201;-38836 -37294;-38858 -37074 1;-38942 -36357;-38959 -35876;-39048 -35110 1;-39275 -33167;-38992 -31791;-37701 -30321 1;-37220 -29773;-36955 -29455;-36405 -28976 1;-34731 -27516;-33755 -26699;-32079 -25241 1;-31334 -24593;-29988 -24320;-29189 -25139 1;-28349 -26104;-27896 -26661;-27072 -27640;-19706 -36392;-20156 -36771;-22316 -36851;-22316 -35050;-21946 -34995;-21611 -34995;-23831 -32330;-26412 -32336;-26313 -30930;-25104 -30954;-25638 -30213;-29502 -25755 1;-30090 -25098;-31087 -25276;-31757 -25848 1;-33131 -27021;-33901 -27679;-35276 -28852 1;-36451 -29855;-37224 -30413;-37928 -31788 1;-38647 -33191;-38378 -34235;-38283 -35809;-38342 -37086 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="43">-36993 -16889;-36418 -16433 1;-35134 -18001;-33997 -19473;-32294 -21377 1;-31533 -22228;-31991 -23534;-32842 -24295 1;-34220 -25527;-35214 -26379;-36330 -27353;-36768 -27735 1;-37214 -28126;-37689 -28545;-38221 -29021 1;-39298 -29984;-39538 -30878;-40088 -32214 1;-40416 -33010;-40456 -33518;-40507 -34377;-40622 -36309;-40839 -36147 1;-41295 -34124;-40999 -32691;-40150 -30748;-39943 -30285;-39716 -29931 32;-40090 -28777 32;-39000 -28845 32;-35498 -25645;-36027 -25028;-34410 -23641;-33829 -24318 32;-33463 -24004 1;-33186 -23766;-32946 -23467;-32796 -23148 33;-32572 -22671;-32549 -22151;-32905 -21736;-36674 -17344;-36993 -16889 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="47">-39770 -42346;-38000 -42272;-37836 -42009;-38084 -38700;-38379 -38744 1;-38762 -38725;-39074 -38467;-39146 -38081 1;-39202 -37779;-39076 -37499;-38856 -37310;-38850 -37150;-38858 -37074 1;-38942 -36357;-38959 -35901;-39048 -35135 1;-39275 -33192;-38992 -31791;-37701 -30321 1;-37220 -29773;-36955 -29455;-36405 -28976 1;-36151 -28755;-35914 -28549;-35688 -28352;-35442 -28140 1;-34297 -27150;-33408 -26397;-32079 -25241 1;-31467 -24709;-30449 -24429;-29662 -24801;-31971 -21954 1;-31739 -22744;-32167 -23691;-32842 -24295 1;-34929 -26161;-36134 -27155;-38221 -29021 1;-39298 -29984;-39538 -30878;-40088 -32214 1;-40416 -33010;-40456 -33518;-40507 -34377;-40629 -36418;-39770 -42346 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">-38453 -17473;-39249 -15785;-38190 -15286;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">-39555 -14221;-39340 -13475;-39242 -13486 1;-39176 -13490;-39132 -13437;-39104 -13363;-39006 -13432 1;-37972 -14562;-37147 -15543;-36372 -16490;-36924 -16987;-36993 -16889;-38427 -17478;-38539 -17290;-39249 -15785;-38190 -15286;-38322 -15083;-38546 -14771 1;-38845 -14441;-39195 -14385;-39526 -14240;-39555 -14221 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-41954 -16681;</coords></object>
<object type="0" symbol="84"><coords count="1">-43176 -17256;</coords></object>
<object type="0" symbol="84"><coords count="1">-40244 -17815;</coords></object>
<object type="0" symbol="84"><coords count="1">-41378 -18129;</coords></object>
<object type="0" symbol="84"><coords count="1">-48580 -19065;</coords></object>
<object type="0" symbol="84"><coords count="1">-44878 -13185;</coords></object>
<object type="0" symbol="84"><coords count="1">-44555 -8818;</coords></object>
<object type="0" symbol="84"><coords count="1">-44433 -10161;</coords></object>
<object type="0" symbol="84"><coords count="1">-43316 -10353;</coords></object>
<object type="0" symbol="84"><coords count="1">-42461 -11033;</coords></object>
<object type="0" symbol="84"><coords count="1">-45260 -17574;</coords></object>
<object type="0" symbol="84"><coords count="1">-39394 -14941;</coords></object>
<object type="0" symbol="84"><coords count="1">-45911 -12993;</coords></object>
<object type="0" symbol="84"><coords count="1">-45126 -11963;</coords></object>
<object type="0" symbol="84"><coords count="1">-43403 -12575;</coords></object>
<object type="1" symbol="88"><coords count="2">-44694 -10692;-45471 -10951;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-44694 -10692;-45471 -10951;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="88"><coords count="4">-46246 -10292 1;-46692 -10241;-46881 -10163;-47248 -10421;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="4">-46226 -10294 1;-46672 -10243;-46881 -10163;-47248 -10421;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="17">-46726 -18633 1;-46535 -18376;-46332 -18132;-46023 -18213 1;-45873 -18252;-45827 -18586;-45916 -18713 1;-46086 -18956;-46220 -19123;-46469 -19285 1;-46616 -19381;-46685 -19233;-46825 -19126 1;-46988 -19001;-46974 -18891;-46862 -18719;-46726 -18633 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-53148 -19342;</coords></object>
<object type="1" symbol="132"><coords count="7">-50163 -21183 1;-50397 -21251;-50641 -21246;-50722 -21328 1;-50848 -21454;-50740 -21701;-50805 -22072;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-51363 -22045 1;-51337 -21665;-51156 -21402;-51520 -21294 1;-51673 -21249;-51793 -21282;-51952 -21270;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="23">-46873 -18878;-47079 -18993 1;-47880 -19821;-48796 -20443;-49921 -21094 1;-50006 -21143;-50081 -21169;-50149 -21177;-50280 -21212 1;-50474 -21252;-50654 -21260;-50722 -21328 1;-50848 -21454;-50740 -21701;-50805 -22072;-50608 -22129 1;-50209 -21962;-49815 -21806;-49266 -21471 1;-48225 -20835;-47278 -20148;-46489 -19385;-46873 -18878 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="42">-54040 -19058 1;-53790 -20025;-53730 -21226;-52731 -21256;-51894 -21273 1;-51763 -21275;-51654 -21255;-51520 -21294 1;-51452 -21314;-51403 -21340;-51368 -21371;-50735 -21342 1;-50841 -21472;-50742 -21714;-50805 -22072;-50527 -22095 1;-50155 -21940;-49778 -21783;-49266 -21471 1;-48225 -20835;-47278 -20148;-46489 -19385;-46426 -19324 1;-46305 -19205;-46187 -19084;-46074 -18961 1;-45992 -18871;-46088 -19155;-46136 -19267 1;-46624 -20394;-47082 -20951;-47881 -21884;-48661 -22426;-50195 -23150 1;-50558 -23303;-50765 -23573;-50869 -23903;-52155 -23626;-53655 -23121 32;-54318 -20417 32;-54292 -20176;-54040 -19058 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="2"><coords count="10">-54964 -20123 1;-54378 -20475;-54137 -20770;-53464 -20890 1;-53108 -20954;-53012 -21513;-53237 -21797 1;-53697 -22378;-53853 -23078;-53923 -23816;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="69">-55247 -14022;-53555 -14772;-53555 -16185;-52403 -18191;-49507 -18156;-47972 -16185;-48460 -9921;-46559 -8317;-44744 -8282;-44238 -8003;-44053 -8151 1;-43231 -9078;-42629 -9832;-41765 -11009 1;-41363 -11556;-41571 -12114;-41124 -12625 1;-40690 -13120;-40447 -13398;-40014 -13893 1;-39570 -14400;-39000 -14271;-38546 -14771;-38221 -15224;-39196 -15749;-38306 -17564;-48024 -22030;-47739 -21718 1;-47026 -20881;-46594 -20326;-46136 -19267 1;-46097 -19176;-46026 -18971;-46045 -18946;-45916 -18713 1;-45916 -18713;-45916 -18713;-45916 -18713 1;-45827 -18586;-45873 -18252;-46023 -18213 1;-46332 -18132;-46535 -18376;-46726 -18633;-46862 -18719 1;-46897 -18772;-46922 -18819;-46935 -18863;-47148 -19053 1;-47964 -19874;-48904 -20507;-50008 -21146 1;-50144 -21225;-50244 -21237;-50333 -21218;-50776 -21374;-51368 -21371 1;-51403 -21340;-51452 -21314;-51520 -21294 1;-51654 -21255;-51763 -21275;-51894 -21273;-52731 -21256 1;-53730 -21226;-53790 -20025;-54040 -19058;-54079 -18070;-55247 -14022 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="23">-60253 -8930;-56576 -8757;-54109 -18084;-54306 -20354;-53591 -22994;-51864 -23562;-50827 -23784;-51039 -24823;-51208 -24889 1;-52007 -25253;-52827 -25831;-52542 -26646 1;-52332 -27245;-52112 -27665;-51530 -27919 1;-51113 -28101;-50852 -28143;-50449 -28355;-50454 -28326;-50298 -29511;-50507 -29552;-54229 -30270;-60253 -8930 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="14">-43370 -71742;-44697 -64381 1;-44757 -64047;-44701 -63679;-44379 -63573 1;-43332 -63229;-42293 -63202;-42521 -62336 1;-42683 -61721;-42722 -61474;-42881 -60877 1;-42949 -60622;-44162 -60932;-44848 -60982 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="4">-45779 -59088 1;-45545 -59803;-45089 -60357;-44050 -60251;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="21">-42916 -60004;-34103 -59131 1;-33267 -59048;-26637 -58715;-26607 -58923 1;-26530 -59457;-26517 -59760;-26478 -60298 1;-26444 -60765;-34511 -61533;-38174 -62448 1;-41523 -63284;-40242 -62974;-42780 -63826 1;-43084 -63928;-43258 -63969;-43565 -64061 1;-43938 -64173;-43931 -64630;-43862 -65013;-42675 -71538;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="2">-49851 -39984;-49193 -42560 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="36">-47155 -50537;-45385 -57466 1;-45175 -58288;-44487 -58851;-43643 -58763 1;-39091 -58286;-36514 -58299;-31941 -58114 1;-26794 -57906;-23897 -57749;-18751 -57975 1;-14455 -58164;-12083 -58755;-7794 -59056 1;-7639 -59067;-7543 -59215;-7549 -59370 1;-7567 -59861;-7579 -60136;-7598 -60627 1;-7606 -60835;-7795 -60960;-8003 -60975 1;-15290 -61499;-19399 -61488;-26671 -62196 1;-31338 -62650;-33987 -62812;-38571 -63801 1;-39975 -64104;-40741 -64380;-42158 -64619 1;-42725 -64714;-43105 -65264;-42997 -65828;-41887 -71281 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-41050 -5068;</coords></object>
<object type="1" symbol="62"><coords count="13">-43170 -4218;-41347 -3939;-41349 -4166;-41348 -4401 32;-40090 -4398;-40049 -4462;-40038 -5377;-41569 -6163;-41678 -6033 1;-42154 -5463;-42546 -4993;-42913 -4536;-43170 -4218 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-37385 -5713;</coords></object>
<object type="0" symbol="84"><coords count="1">-38841 -7440;</coords></object>
<object type="1" symbol="132"><coords count="10">-40321 -7514;-39088 -6613;-37903 -4898;-33647 -4849;-33684 -8217;-37496 -9216 1;-38170 -9393;-38743 -9240;-39211 -8723;-40321 -7514 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">-40321 -7514;-39088 -6613;-37903 -4898;-33647 -4849;-33684 -8217;-37496 -9216 1;-38170 -9393;-38743 -9240;-39211 -8723;-40321 -7514 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-33191 -16173;-35659 -13212 1;-36094 -12690;-35777 -11716;-35116 -11559;-33494 -11174;-32982 -12546;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="13">-33598 -12015 1;-33408 -12018;-33259 -12355;-33266 -12767 1;-33273 -13180;-33433 -13511;-33623 -13508 1;-33813 -13505;-33962 -13168;-33955 -12756 1;-33948 -12344;-33789 -12012;-33598 -12015 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-34844 -12607;</coords></object>
<object type="0" symbol="84"><coords count="1">-33684 -14593;</coords></object>
<object type="1" symbol="109"><coords count="2">-32920 -13915;-33046 -16218;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-33191 -16173;-35659 -13212 1;-36094 -12690;-35777 -11716;-35116 -11559;-33494 -11174;-32982 -12546;-33191 -16173 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">-29588 -17825;-29640 -18610;-30565 -18837;-31743 -17511;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-31873 -17634;-33217 -16153;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-29478 -18734 1;-26536 -17861;-24849 -17465;-21823 -16953 1;-19826 -16615;-18684 -16421;-16659 -16465 1;-15068 -16500;-14176 -16507;-12585 -16516;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-12740 -16519;-12652 -9512;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-12469 -9488 32;-13591 -9473 32;-13584 -8934 32;-12462 -8949 32;-12469 -9488 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">-12836 -9661;-13795 -9648;-13787 -9074 32;-16336 -9038;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-16317 -9038;-18864 -8962;-21388 -9048;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-21344 -9048;-23947 -9308;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-23895 -9317;-29091 -10171;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-29054 -10171;-32052 -10924 32;-32163 -12676;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="26">-32277 -12837;-32080 -10937;-28995 -10123;-23814 -9210;-21075 -9037;-16214 -8963;-13771 -9062;-13771 -9580;-12661 -9728;-12735 -16464;-12958 -16514 1;-14325 -16506;-15197 -16497;-16659 -16465 1;-18684 -16421;-19826 -16615;-21823 -16953 1;-24849 -17465;-26536 -17861;-29478 -18734;-30574 -18858;-31842 -17663;-31967 -17530;-33207 -16164;-32854 -13875;-32277 -12837 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-29649 -21177 1;-30181 -21623;-30299 -22410;-29853 -22942 1;-29400 -23483;-28593 -23531;-28052 -23078;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-29014 -22795;</coords></object>
<object type="1" symbol="62"><coords count="8">-28601 -25821 1;-28403 -25623;-28085 -25772;-27903 -25985 1;-27735 -26182;-27698 -26480;-27895 -26648;-28601 -25821 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-25602 -29386 1;-25100 -28995;-24388 -29031;-23978 -29518 1;-23566 -30007;-23629 -30737;-24118 -31149;-25602 -29386 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-29649 -21177 1;-30181 -21623;-30299 -22410;-29853 -22942 1;-29400 -23483;-28593 -23531;-28052 -23078;-29649 -21177 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-26755 -21108;</coords></object>
<object type="0" symbol="84"><coords count="1">-28642 -20664;</coords></object>
<object type="0" symbol="84"><coords count="1">-28630 -19850;</coords></object>
<object type="0" symbol="84"><coords count="1">-25780 -19924;</coords></object>
<object type="0" symbol="84"><coords count="1">-25669 -21996;</coords></object>
<object type="0" symbol="84"><coords count="1">-25743 -22971;</coords></object>
<object type="1" symbol="109"><coords count="5">-19161 -17649;-24677 -18628 32;-24754 -20460 32;-24795 -21427 32;-24814 -21871;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="17">-24881 -23263;-24939 -24638 32;-25419 -25001;-24411 -26195 1;-24163 -26521;-23890 -26600;-23491 -26682 33;-23241 -26734;-23030 -26741;-22826 -26707 33;-22611 -26672;-22403 -26590;-22165 -26464 1;-21253 -25983;-20688 -25792;-19733 -25402 32;-19653 -23507 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-25633 -25013;-29060 -20846 1;-29403 -20430;-29324 -19601;-28800 -19473;-24822 -18496;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">-25646 -24962;-29048 -20845 1;-29391 -20429;-29324 -19601;-28800 -19473;-24822 -18496;-25095 -24571;-25646 -24962 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">-19251 -17640;-12799 -17590;-13045 -24212;-13628 -24213;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-9097 -17121;-11639 -17097;-11817 -24135;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-5812 -17182;184 -17305;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-5812 -17182;-9097 -17121;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-11698 -15599;-11706 -16123;20187 -16612;20199 -16116;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">20200 -16058;20181 -16611;-11706 -16123;-11698 -15599;20200 -16058 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-11452 -9948;-11499 -12750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-5411 -9302;-8446 -9191;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="5">-11452 -9948 1;-11444 -9476;-11053 -9089;-10581 -9108;-8446 -9191;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-5411 -9302;-2273 -9414;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="59">-2265 -8794;-2329 -9412;-5411 -9302;-10927 -9149;-11468 -9620;-11659 -15273;-11700 -15763;-11706 -16123;19300 -16598;19274 -17649;-5812 -17182;-11712 -17088;-11820 -24414;-13021 -24415;-12799 -17590;-18968 -17638;-24727 -18519;-25116 -18568;-28800 -19473 1;-29251 -19583;-29354 -20203;-29155 -20639;-30624 -19025;-29449 -18725 1;-26525 -17858;-24839 -17463;-21823 -16953 1;-19826 -16615;-18684 -16421;-16659 -16465 1;-15114 -16499;-14229 -16507;-12722 -16515;-12496 -9464;-12464 -9132;-12462 -8949 32;-13584 -8934;-19737 -8889;-29071 -10093;-32055 -10896;-32264 -12658;-32927 -12588;-33039 -12392;-33494 -11174;-33590 -10725 1;-30417 -9918;-28143 -9253;-24465 -8831 1;-22262 -8578;-20690 -8429;-18849 -8389;-17713 -8378 1;-17289 -8379;-16844 -8384;-16370 -8395 1;-10867 -8520;-7830 -8655;-2532 -8800;-2265 -8794 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="37">-33460 -11197;-33546 -10728;-33832 -10786 1;-34367 -10921;-34928 -11060;-35527 -11203 1;-36449 -11422;-36664 -12869;-36033 -13576 1;-33982 -15875;-32934 -17291;-30981 -19599;-30939 -19649 1;-30910 -19683;-30880 -19717;-30851 -19752 1;-28581 -22424;-27223 -23976;-25078 -26519;-24436 -26060;-25361 -24975;-25734 -24898;-29069 -20862 1;-29188 -20718;-29225 -20498;-29246 -20303;-30500 -18913;-31783 -17655;-31985 -17511;-33207 -16164;-33404 -15917;-35659 -13212 1;-36094 -12690;-35777 -11716;-35116 -11559;-33858 -11260;-33460 -11197 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-31834 -5407;-31818 -7837;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-24246 -5308;-24238 -6517 1;-27156 -6838;-28788 -7124;-31648 -7787;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-21482 -5333;-21475 -6345 1;-18092 -6010;-16102 -6231;-12703 -6195;-12728 -5270;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">-21482 -5333;-21475 -6345 1;-18092 -6010;-16102 -6231;-12703 -6195;-12728 -5270;-21482 -5333 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">-24246 -5308;-24238 -6517 1;-27156 -6838;-28788 -7124;-31648 -7787;-31772 -5393;-24246 -5308 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-7394 -4905;-7383 -6484;-8857 -6406;-8869 -4926;-7394 -4905 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-6687 -6523;-6698 -4909;-2560 -4881;-2547 -6767;-6687 -6523 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-3374 -5800;</coords></object>
<object type="0" symbol="84"><coords count="1">-5829 -5824;</coords></object>
<object type="0" symbol="84"><coords count="1">-8572 -6142;</coords></object>
<object type="1" symbol="105"><coords count="2">-8674 -4922;-8667 -5923;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-7394 -4905;-7383 -6484;-8857 -6406;-8869 -4926;-7394 -4905 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-6687 -6523;-6698 -4909;-2560 -4881;-2547 -6767;-6687 -6523 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-3579 -4319;-5745 -4334;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-3535 -4315 32;-5763 -4330 32;-5765 -4035 32;-3537 -4020 32;-3535 -4315 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="26">-634 -7372;-615 -6837;-1994 -6794;-2007 -4892;-390 -4881;-443 -4270;-3541 -4291 32;-3644 -4316;-5755 -4330;-5930 -4294;-8847 -4315 32;-8849 -4025 32;-12771 -4052 32;-12763 -5250 32;-12727 -5303;-12703 -6195;-8857 -6400;-8869 -4926;-7394 -4905;-7383 -6484;-6687 -6523;-6698 -4909;-2560 -4881;-2547 -6767;-2562 -7288;-634 -7372 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">-2537 -6782;-2525 -7300;-2877 -7284 1;-2971 -7280;-3068 -7276;-3169 -7272 1;-7742 -7097;-10303 -6928;-14876 -6766 1;-17512 -6673;-19309 -6652;-21489 -6788;-21475 -6345 1;-18092 -6010;-16102 -6231;-12703 -6195;-8880 -6346;-8837 -6416;-7371 -6469;-7310 -6442;-6647 -6529;-2537 -6782 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="50">-24249 -5326;-21467 -5296;-21460 -6344;-21473 -6782;-21640 -6798 1;-22394 -6847;-23196 -6916;-24096 -7006 1;-26235 -7221;-27431 -7427;-29530 -7891 1;-32598 -8569;-34300 -9027;-37342 -9811 1;-38684 -10157;-39636 -9352;-40500 -8269 1;-41770 -6677;-42679 -5656;-43737 -4310;-43203 -4171;-41555 -6156;-40038 -5377;-40050 -4390;-40056 1678;-39380 1678;-37585 1674;-37542 -4367;-34924 -4340;-34890 283;-32787 301;-32717 -4009;-33665 -4858;-37905 -4884;-38886 -6321;-39088 -6613;-40321 -7514;-39211 -8723 1;-38743 -9240;-38170 -9393;-37496 -9216;-33684 -8217;-31964 -7805;-31633 -7797;-31531 -7760 1;-28743 -7116;-27116 -6834;-24238 -6517;-24241 -5998;-24249 -5326 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="6">-33657 -4822;-32767 -3983;-31982 -4036;-31982 -7857;-33683 -8250;-33657 -4822 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">-40845 -11492 1;-40225 -11480;-39757 -11539;-39340 -11998 1;-39051 -12315;-39043 -12630;-39056 -13059 1;-39061 -13245;-39102 -13537;-39279 -13479 1;-39749 -13325;-39959 -13079;-40278 -12701 1;-40287 -12691;-41321 -11501;-40845 -11492 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="127">-45831 -5264;-43764 -4252;-43402 -4733 1;-42480 -5882;-41634 -6848;-40500 -8269 1;-39636 -9352;-38684 -10157;-37342 -9811 1;-34300 -9027;-32598 -8569;-29530 -7891 1;-28792 -7728;-28166 -7597;-27572 -7486;-26357 -7281 1;-25676 -7179;-24964 -7093;-24096 -7006 1;-20512 -6646;-18476 -6639;-14876 -6766 1;-10303 -6928;-7742 -7097;-3169 -7272 1;-2767 -7287;-2428 -7305;-2107 -7322;-2429 -8798;-2532 -8800 1;-7830 -8655;-10867 -8520;-16370 -8395 1;-16844 -8384;-17289 -8379;-17713 -8378;-18849 -8389 1;-20690 -8429;-22262 -8578;-24465 -8831 1;-28143 -9253;-30417 -9918;-33590 -10725;-34529 -10960 1;-34851 -11040;-35183 -11121;-35527 -11203 1;-36449 -11422;-36664 -12869;-36033 -13576 1;-33982 -15875;-32934 -17291;-30981 -19599;-30939 -19649 1;-30910 -19683;-30880 -19717;-30851 -19752 1;-30422 -20257;-30026 -20721;-29651 -21160;-29787 -21310 1;-30198 -21768;-30257 -22460;-29853 -22942 1;-29400 -23483;-28593 -23531;-28052 -23078;-27897 -23208 1;-27013 -24240;-26142 -25257;-25078 -26519;-26858 -27894;-27072 -27640 1;-27381 -27273;-27637 -26966;-27882 -26674;-27810 -26544 1;-27716 -26374;-27766 -26146;-27903 -25985 1;-28085 -25772;-28403 -25623;-28601 -25821;-28713 -25691 1;-28859 -25519;-29016 -25338;-29189 -25139 1;-29432 -24890;-29725 -24742;-30036 -24675;-31916 -22235 1;-31948 -21926;-32067 -21631;-32294 -21377 1;-33405 -20134;-34276 -19075;-35104 -18054;-35785 -17212 1;-35994 -16953;-36204 -16694;-36418 -16433;-36643 -16159 1;-37341 -15314;-38092 -14431;-39006 -13432;-39104 -13363;-39065 -13188 1;-39060 -13143;-39057 -13099;-39056 -13059 1;-39043 -12630;-39051 -12315;-39340 -11998 1;-39757 -11539;-40225 -11480;-40845 -11492 1;-40854 -11492;-40863 -11493;-40872 -11494;-40978 -11361 1;-42542 -9307;-43540 -8185;-45167 -6119 1;-45376 -5854;-45561 -5623;-45733 -5404;-45831 -5264 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="21">-14697 -35400;-14739 -36702 1;-15267 -36706;-15707 -36662;-16044 -36257 1;-17935 -33985;-19009 -32723;-20895 -30447 1;-21220 -30055;-21132 -29631;-20974 -29147 1;-20791 -28586;-20427 -28340;-19892 -28091 1;-18650 -27513;-17891 -27316;-16560 -26992 1;-15739 -26792;-15255 -26722;-14410 -26748;-14448 -27934 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="19">-16199 -26890 1;-15597 -27868;-15424 -28580;-15434 -29728 1;-15448 -31429;-15445 -32384;-15521 -34083 1;-15558 -34908;-15588 -35490;-16138 -36106;-16248 -36012 1;-17931 -33992;-18975 -32761;-20640 -30754;-18888 -27662 1;-18087 -27355;-17828 -27305;-16918 -27080;-16199 -26890 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="17">-18889 -27653;-18925 -27727;-20640 -30754;-20785 -30580 1;-20821 -30536;-20858 -30492;-20895 -30447 1;-21220 -30055;-21132 -29631;-20974 -29147 1;-20791 -28586;-20427 -28340;-19892 -28091 1;-19714 -28008;-19546 -27933;-19385 -27865;-18889 -27653 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="25">-14442 -27943;-14416 -26774;-14600 -26744 1;-15222 -26735;-15655 -26787;-16236 -26916;-16156 -26961 1;-15589 -27903;-15424 -28608;-15434 -29728 1;-15448 -31429;-15445 -32384;-15521 -34083 1;-15558 -34902;-15588 -35482;-16126 -36093;-16106 -36183 1;-16085 -36208;-16065 -36232;-16044 -36257 1;-15707 -36662;-15267 -36706;-14739 -36702;-14697 -35400;-14442 -27943 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-18010 -34661;-18441 -35030;-18624 -34819 1;-19715 -33559;-20327 -32854;-21411 -31592 1;-21767 -31182;-21718 -30722;-21535 -30214;-21483 -30126 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-21147 -31376;</coords></object>
<object type="0" symbol="84"><coords count="1">-20062 -32647;</coords></object>
<object type="0" symbol="84"><coords count="1">-18779 -34164;</coords></object>
<object type="1" symbol="132"><coords count="7">-14948 -37158;-14985 -37676 1;-15532 -37676;-15924 -37718;-16354 -37380;-17465 -36214;-16983 -35844;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-15988 -37249;</coords></object>
<object type="1" symbol="64"><coords count="17">-16982 -35846;-17063 -35905;-17465 -36214;-16354 -37380 1;-15924 -37718;-15532 -37676;-14985 -37676;-14948 -37158;-15062 -37167 1;-15548 -37168;-15927 -37049;-16262 -36663 1;-16469 -36425;-16667 -36197;-16856 -35978;-16856 -35978;-16982 -35846 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="18">-21465 -30142;-21464 -30207 1;-21405 -30467;-21295 -30715;-21127 -30934 1;-19872 -32416;-18992 -33475;-17982 -34663;-18400 -34995;-18441 -35030;-18624 -34819 1;-19715 -33559;-20327 -32854;-21411 -31592 1;-21756 -31195;-21721 -30750;-21552 -30261;-21465 -30142 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="18">-21465 -30142;-21464 -30207 1;-21405 -30467;-21295 -30715;-21127 -30934 1;-19872 -32416;-18992 -33475;-17982 -34663;-18400 -34995;-18441 -35030;-18624 -34819 1;-19715 -33559;-20327 -32854;-21411 -31592 1;-21756 -31195;-21721 -30750;-21552 -30261;-21465 -30142 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="17">-16982 -35846;-17063 -35905;-17465 -36214;-16354 -37380 1;-15924 -37718;-15532 -37676;-14985 -37676;-14948 -37158;-15062 -37167 1;-15548 -37168;-15927 -37049;-16262 -36663 1;-16469 -36425;-16667 -36197;-16856 -35978;-16856 -35978;-16982 -35846 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-17585 -38895;</coords></object>
<object type="0" symbol="84"><coords count="1">-16610 -39068;</coords></object>
<object type="0" symbol="84"><coords count="1">-11308 -39203;</coords></object>
<object type="1" symbol="87"><coords count="6">-13059 -53996;-13096 -55797;-7050 -56587 1;-6571 -56650;-6022 -56415;-6001 -55933;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="15">-5998 -55952;-5970 -55423 32;-5812 -52381;-5302 -51735 32;-5744 -51712;-5692 -50710 32;-5192 -50736;-5145 -49817;-4890 -49830 32;-4829 -48618 32;-6186 -47680 32;-11528 -47421 32;-12367 -47964;-12910 -48729 32;-13059 -53996;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="22">-13132 -55797;-12811 -48728;-12693 -48423;-12367 -47964;-11528 -47421 32;-6186 -47680 32;-4829 -48618 32;-4890 -49830 32;-5145 -49817;-5192 -50736;-5692 -50710 32;-5744 -51712;-5302 -51735 32;-5812 -52381;-5970 -55423 32;-5993 -55849;-6094 -56229 1;-6274 -56508;-6683 -56635;-7050 -56587;-12159 -55919;-13132 -55797 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="42">-12978 -46766;-12176 -47708;-12354 -47956;-12367 -47964;-12910 -48729 32;-13059 -53996;-13098 -55057;-13132 -55797;-12159 -55919;-7050 -56587 1;-6683 -56635;-6274 -56508;-6094 -56229;-5993 -55849;-5970 -55423 32;-5812 -52381;-5302 -51735 32;-5744 -51712;-5692 -50710 32;-5192 -50736;-5145 -49817;-4890 -49830 32;-4832 -48675;-3591 -49001;-3692 -52975 32;-4652 -53830 32;-4844 -57930 32;-5019 -57971;-5093 -57963;-5640 -57930 1;-6432 -58156;-7335 -57987;-7975 -57468;-8516 -57398;-8805 -57361;-13228 -56791;-14016 -56720;-13936 -55747;-13812 -49813;-14417 -49826;-14442 -48654;-12978 -46766 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="7">-20099 -37046;-20596 -39018;-21486 -39027;-21469 -37849;-22009 -37858;-22001 -37046;-20099 -37046 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="27">-20102 -37047;-18997 -39977;-20424 -46501;-19930 -47537;-16574 -48573;-14280 -48623;-14304 -49758;-16426 -49782;-20991 -48376;-22546 -48302;-23060 -47148;-22764 -46908 1;-22467 -46574;-22315 -46033;-22174 -45527;-22149 -45425;-21443 -42501;-21359 -42548 1;-21082 -42591;-20838 -42523;-20770 -42241 1;-20681 -41873;-20873 -41710;-21241 -41621;-21213 -41546;-20603 -39020;-20102 -37047 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-9345 -40125 32;-11441 -40101 32;-11656 -46411 32;-9058 -46501 32;-9039 -45951 32;-9547 -45933 32;-9345 -40125 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-11185 -40673;</coords></object>
<object type="0" symbol="84"><coords count="1">-11235 -42014;</coords></object>
<object type="0" symbol="84"><coords count="1">-11285 -43355;</coords></object>
<object type="0" symbol="84"><coords count="1">-11335 -44697;</coords></object>
<object type="0" symbol="84"><coords count="1">-11385 -46038;</coords></object>
<object type="0" symbol="143"><coords count="1">-10374 -46186;</coords></object>
<object type="1" symbol="62"><coords count="10">-9345 -40125 32;-11435 -40108 32;-11656 -46411 32;-9058 -46501 32;-9039 -45951 32;-9547 -45933 32;-10857 -45821;-10671 -40367;-9356 -40437;-9345 -40125 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-9537 -45182 32;-9205 -45194 32;-9028 -40150 32;-9360 -40138 32;-9537 -45182 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-7735 -39680;-6225 -39733 1;-5520 -39758;-5057 -39855;-4450 -40182;-4241 -39824 1;-4888 -39464;-5328 -39344;-6077 -39306;-7717 -39244;-7735 -39680 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-3110 -41146 32;-2684 -41559 32;-2362 -41227 32;-2788 -40814 32;-3110 -41146 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-1810 -39805 32;-1384 -40218 32;-1062 -39886 32;-1488 -39473 32;-1810 -39805 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">723 -42418 32;1149 -42831 32;1471 -42499 32;1045 -42086 32;723 -42418 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-697 -43882 32;-271 -44295 32;51 -43963 32;-375 -43550 32;-697 -43882 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">609 -45154;914 -44823 1;1716 -45432;2207 -45841;3193 -46049;3091 -46532 1;2171 -46395;1403 -45898;609 -45154 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">4232 -46744 32;4852 -46779 32;4883 -46231 32;4263 -46196 32;4232 -46744 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">1884 -43579;2180 -43259 1;2769 -43706;3019 -43977;3598 -44136;3505 -44540 1;2788 -44392;2467 -44125;1884 -43579 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">4372 -44659 32;5795 -44739 32;5818 -44337 32;4395 -44257 32;4372 -44659 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">8137 -44437 32;12271 -44574 32;12257 -45030 32;8123 -44893 32;8137 -44437 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">11072 -47067 32;10566 -47058 32;10576 -46526 32;11082 -46535 32;11072 -47067 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">12715 -47051;13975 -47077 1;13975 -46765;13668 -46571;13356 -46571 1;13051 -46571;12719 -46720;12715 -47051 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">14924 -44716 1;14915 -45210;15222 -45485;15716 -45485 1;15952 -45485;16265 -45382;16289 -45147 1;18102 -45205;18948 -45268;20163 -45865;20345 -45493;20208 -45426 1;18946 -44809;18146 -44826;16716 -44771;14924 -44716 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">15626 -45022;</coords></object>
<object type="0" symbol="84"><coords count="1">16798 -45022;</coords></object>
<object type="0" symbol="84"><coords count="1">18229 -45072;</coords></object>
<object type="0" symbol="84"><coords count="1">19537 -45380;</coords></object>
<object type="0" symbol="84"><coords count="1">13316 -46855;</coords></object>
<object type="0" symbol="84"><coords count="1">10838 -46824;</coords></object>
<object type="0" symbol="84"><coords count="1">11728 -44776;</coords></object>
<object type="0" symbol="84"><coords count="1">10445 -44739;</coords></object>
<object type="0" symbol="84"><coords count="1">9038 -44677;</coords></object>
<object type="0" symbol="84"><coords count="1">4563 -46499;</coords></object>
<object type="0" symbol="84"><coords count="1">4689 -44444;</coords></object>
<object type="0" symbol="84"><coords count="1">5517 -44523;</coords></object>
<object type="0" symbol="84"><coords count="1">2705 -46185;</coords></object>
<object type="0" symbol="84"><coords count="1">1335 -45481;</coords></object>
<object type="0" symbol="84"><coords count="1">2772 -43993;</coords></object>
<object type="0" symbol="84"><coords count="1">-337 -43918;</coords></object>
<object type="0" symbol="84"><coords count="1">1095 -42439;</coords></object>
<object type="0" symbol="84"><coords count="1">-1459 -39823;</coords></object>
<object type="0" symbol="84"><coords count="1">-2755 -41168;</coords></object>
<object type="0" symbol="84"><coords count="1">-5950 -39515;</coords></object>
<object type="0" symbol="84"><coords count="1">-4618 -39873;</coords></object>
<object type="1" symbol="132"><coords count="18">-9051 -37503 1;-9063 -37893;-8813 -38277;-8423 -38280 1;-8092 -38282;-7756 -38207;-7673 -37887;-7551 -37878;-7315 -37878 1;-6526 -37878;-6023 -37866;-5326 -38236;-5157 -37917;-5248 -37869 1;-5978 -37484;-6498 -37455;-7324 -37468;-9051 -37503 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-8323 -37815;</coords></object>
<object type="0" symbol="84"><coords count="1">-6744 -37710;</coords></object>
<object type="0" symbol="84"><coords count="1">-5697 -37885;</coords></object>
<object type="1" symbol="62"><coords count="7">-18238 -39474 1;-18222 -38930;-18245 -38458;-17794 -38154;-14993 -39190;-15080 -39535;-18238 -39474 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-697 -43882 32;-271 -44295 32;51 -43963 32;-375 -43550 32;-697 -43882 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">4372 -44659 32;5795 -44739 32;5818 -44337 32;4395 -44257 32;4372 -44659 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-1810 -39805 32;-1384 -40218 32;-1062 -39886 32;-1488 -39473 32;-1810 -39805 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">723 -42418 32;1149 -42831 32;1471 -42499 32;1045 -42086 32;723 -42418 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-3110 -41146 32;-2684 -41559 32;-2362 -41227 32;-2788 -40814 32;-3110 -41146 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">4232 -46744 32;4852 -46779 32;4883 -46231 32;4263 -46196 32;4232 -46744 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="16">14924 -44716 1;14915 -45210;15222 -45485;15716 -45485 1;15952 -45485;16265 -45382;16289 -45147 1;18102 -45205;18948 -45268;20163 -45865;20345 -45493;20208 -45426 1;18946 -44809;18146 -44826;16716 -44771;14924 -44716 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">-7735 -39680;-6225 -39733 1;-5520 -39758;-5071 -39868;-4446 -40191;-4254 -39807 1;-4906 -39451;-5328 -39344;-6077 -39306;-7717 -39244;-7735 -39680 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">16792 -46797 1;18472 -46868;19672 -47119;20802 -48364;20457 -48677;20419 -48635 1;19414 -47524;18253 -47369;16760 -47246;16792 -46797 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">-11850 -39657 1;-11858 -39194;-11825 -38701;-11363 -38677 1;-11057 -38661;-10768 -38877;-10752 -39183;-9506 -39189;-9531 -39645;-11850 -39657 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="18">-9051 -37503 1;-9063 -37893;-8813 -38277;-8423 -38280 1;-8092 -38282;-7756 -38207;-7673 -37887;-7551 -37878;-7315 -37878 1;-6526 -37878;-6023 -37866;-5326 -38236;-5157 -37917;-5248 -37869 1;-5978 -37484;-6498 -37455;-7324 -37468;-9051 -37503 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="9">1884 -43579;2180 -43259 1;2769 -43706;3019 -43977;3598 -44136;3505 -44540 1;2788 -44392;2467 -44125;1884 -43579 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">8137 -44437 32;12271 -44574 32;12257 -45030 32;8123 -44893 32;8137 -44437 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">11072 -47067 32;10566 -47058 32;10576 -46526 32;11082 -46535 32;11072 -47067 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="9">609 -45154;914 -44823 1;1716 -45432;2207 -45841;3193 -46049;3091 -46532 1;1962 -46299;1403 -45898;609 -45154 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="8">12715 -47051;13975 -47077 1;13975 -46765;13668 -46571;13356 -46571 1;13051 -46571;12719 -46720;12715 -47051 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">4759 -47500;11233 -47712;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10907 -53989;10984 -52169;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">9631 -52097;10975 -52159;10901 -54034;9569 -53997;9631 -52097 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">4774 -47399;4235 -47382;4174 -49233;4734 -49251;4743 -48969;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">4669 -50594;4700 -49624;4170 -49607;4160 -49926;3626 -51377;3608 -51957;4638 -51975;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">3630 -51985 32;3600 -52919 32;4389 -52945 32;4419 -52011 32;3630 -51985 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">4467 -48724;</coords></object>
<object type="1" symbol="63"><coords count="8">4669 -50594;4700 -49624;4170 -49607;4160 -49926;3626 -51377;3608 -51957;4638 -51975;4669 -50594 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="6">4774 -47399;4235 -47382;4174 -49233;4734 -49251;4743 -48969;4774 -47399 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">3726 -52926;3625 -56043 32;2420 -56004 32;2460 -54775 32;2503 -53432 32;1413 -53397;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="33">12873 -47766;16624 -47801;17636 -57292;17636 -57816;14897 -58217;10727 -58479;3591 -58828;3556 -58147;-945 -58199;-4801 -57868;-4696 -53803;-3650 -52895;-3527 -48935;84 -45463;1550 -46632;3225 -47225;3190 -49546;1341 -49494;1166 -53367;2510 -53489;2440 -55966;3626 -56036;3801 -52878;4430 -52008;4665 -51965;7094 -52001;9589 -54060;10775 -54112;10706 -56607;12066 -56659;12206 -51059;12817 -50431;12873 -47766 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">4406 -52151;4905 -52167;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">3348 -49741;2756 -51178;2669 -53263;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="9">2071 -49642;3335 -49698;3322 -49803;2756 -51178;2669 -53263;1417 -53238;1485 -51382;1966 -51400;2071 -49642 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="38">11237 -47596;12693 -47596;12864 -47841;12809 -50455 32;12205 -51034 32;12085 -56721 32;10700 -56692 32;10753 -54152 32;10910 -53928;10984 -52169;10961 -51920;10996 -50844 32;4719 -50638 32;4667 -50560;4719 -49636;4170 -49610;4167 -49688;4160 -49926;3626 -51377;3608 -51957;3719 -53147;3625 -56043 32;2420 -56004 32;2460 -54775 32;2499 -53550;2672 -53186;2756 -51178;3348 -49741;3381 -47139;4220 -47398;4231 -47509;4174 -49233;4734 -49251;4742 -49000;4937 -48980;11115 -49182 32;11157 -47883 32;11237 -47596 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-6377 -45627;-6412 -46622;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-8349 -45973 32;-8368 -46525 32;-6563 -46588 32;-6544 -46035 32;-8349 -45973 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-8348 -45949 32;-8368 -46525 32;-6563 -46588 32;-6543 -46011 32;-8348 -45949 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-6218 -46599 1;-5340 -46837;-4839 -47062;-3930 -47037 1;-3070 -47013;-2581 -46694;-2079 -46221 1;-1637 -45805;-1154 -45309;-532 -44668;-2585 -42454;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">-2796 -43376;-2766 -42520;-3869 -41396 1;-4582 -40670;-5314 -40457;-6330 -40404;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-6303 -40341;-7653 -40293;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="13">-6297 -40384;-6062 -40422 1;-5182 -40500;-4518 -40735;-3869 -41396;-2766 -42520;-2796 -43376;-3226 -43387;-4652 -43337 32;-4633 -42794 32;-6377 -42733 32;-6315 -40965;-6297 -40384 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="24">-11664 -46416;-12627 -46391;-12929 -46872;-12232 -47779;-11534 -47443;-6229 -47640;-4749 -48825;-3651 -49133;-3602 -48837;-24 -45259;-532 -44668 1;-1154 -45309;-1637 -45805;-2079 -46221 1;-2581 -46694;-3070 -47013;-3930 -47037 1;-4839 -47062;-5340 -46837;-6218 -46599;-6625 -46586;-8359 -46524;-9093 -46506;-11664 -46416 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="16">-2666 -42507;-2513 -42513;-532 -44668 1;-1154 -45309;-1637 -45805;-2079 -46221 1;-2581 -46694;-3070 -47013;-3930 -47037 1;-4839 -47062;-5340 -46837;-6218 -46599;-6243 -45603;-4479 -45616;-2888 -43420;-2666 -42507 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">-12037 -40098;-11438 -40086;-11671 -46463;-12541 -46432;-12325 -46012;-12251 -42897;-12726 -42829;-12702 -42070;-12251 -41984;-12037 -40098 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="15">-9028 -40140;-7609 -40171;-7814 -45964;-7910 -45988;-8349 -45973 32;-8368 -46525 32;-9087 -46522;-9057 -46470;-9039 -45951 32;-9547 -45933 32;-9521 -45193;-9427 -45186;-9205 -45194 32;-9046 -40673;-9028 -40140 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-18441 -35030;-17465 -36214;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-14916 -37163 1;-15484 -37193;-15889 -37092;-16262 -36663 1;-16520 -36367;-16766 -36082;-16996 -35815 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="22">-17979 -34668 1;-18982 -33487;-19879 -32407;-21127 -30934 1;-21942 -29869;-21404 -28123;-20152 -27640 1;-17613 -26661;-16056 -26212;-13336 -26295 1;-6784 -26495;-3118 -26594;3432 -26837 1;11347 -27130;15748 -27446;23657 -27862 1;30907 -28244;35002 -28391;42249 -28825 1;44137 -28939;45694 -28984;47011 -29197 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-14985 -37676;-8935 -37934;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-5157 -37917 1;-3783 -38532;-2890 -38767;-1792 -39796;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-1384 -40218;748 -42424;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">1458 -42492;2180 -43259;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">3590 -44139 1;3852 -44213;4140 -44232;4412 -44248;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">5705 -44311;8137 -44437;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">12271 -44574;14924 -44716;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">16762 -47222;13974 -47064;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">12715 -47045;11067 -47063;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10566 -47058;4721 -46770;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">4208 -46743 1;3783 -46722;3439 -46656;3032 -46532;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">607 -45137;-263 -44284;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-693 -43878;-2701 -41539;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-3103 -41137 1;-3572 -40690;-3887 -40481;-4464 -40187;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-7735 -39672;-9540 -39637;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-11835 -39637;-15106 -39533;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-12248 -36590;-6598 -36751;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-13395 -35431;-13429 -36727;-12238 -36758;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-6623 -36909;-5536 -36926 1;-5094 -37511;-4616 -37790;-3889 -37887 1;-3174 -37982;-2381 -37936;-2132 -37055 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-4309 -37368;</coords></object>
<object type="0" symbol="84"><coords count="1">-2988 -37429;</coords></object>
<object type="1" symbol="62"><coords count="8">-5539 -36914 1;-5097 -37499;-4616 -37790;-3889 -37887 1;-3174 -37982;-2385 -37967;-2136 -37086;-5539 -36914 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">-5306 -35649;-5337 -36796 32;-2075 -36885 32;-384 -36930 32;738 -36960 32;696 -38508;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><coords count="4">891 -38465;882 -38753;625 -38478;891 -38465 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">7251 -42671;7194 -44024;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="26">590 -38486;-385 -39381;818 -40692;1329 -40714;1306 -41256 32;2323 -41299 32;2281 -42277 32;4143 -42356 32;4106 -43227 32;5823 -43300 32;5852 -42618;8289 -42721 32;8262 -43365 32;12178 -43530 32;12452 -43216 32;12463 -42944 32;12213 -42661 32;12316 -40234 32;8367 -40068 32;8311 -41403 32;5910 -41302;5947 -40442 32;4105 -40364 32;4142 -39489 32;1404 -39373;590 -38486 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">5855 -43316;5828 -43968;5030 -43940 1;3858 -43904;3096 -43562;2291 -42710;-635 -39611;-385 -39381 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">13338 -42355;13264 -44234;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">8171 -43867;13084 -44029;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">8225 -43394;8212 -43699;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="23">17906 -43303;17857 -44401;17584 -44397;13451 -44204;12702 -44016;8227 -43869;8213 -43677;8225 -43394;8282 -42899;8289 -42721 32;5852 -42618;5850 -43433;5828 -43968;5030 -43940 1;3858 -43904;3096 -43562;2291 -42710;-635 -39611;-385 -39381;740 -38461;9875 -38907;18092 -39178;17906 -43303 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">21734 -47136 1;21176 -46564;20699 -46153;20133 -45851 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="66">20652 -45168;20359 -45508;20094 -45371 1;18897 -44810;18102 -44824;16716 -44771;14924 -44716;14545 -44695;12598 -44592;12271 -44574;11843 -44560;8139 -44437;7904 -44425;5945 -44323;5818 -44342;5308 -44308;4395 -44257 32;4260 -44238 1;4115 -44229;3967 -44215;3824 -44191;3595 -44147;3468 -44097 1;2978 -43934;2723 -43671;2180 -43259;2021 -43090;1458 -42492;1413 -42443;1045 -42086 32;741 -42400;472 -42138;-1243 -40364;-1407 -40195;-1140 -39967;-1062 -39886 32;-619 -39628;2291 -42710 1;2438 -42865;2583 -43003;2729 -43126;2788 -43174 1;3428 -43690;4100 -43911;5030 -43940;5828 -43968;5855 -43316;5851 -43147;5852 -42618;8289 -42721 32;8282 -42899;8243 -43236;8216 -43605;8212 -43699;8244 -43869;13066 -44028;13488 -44206;17811 -44408 1;18043 -44409;18254 -44420;18453 -44441;18394 -44435 1;19159 -44506;19730 -44717;20496 -45082;20652 -45168 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="53">-1049 -39908;-586 -39655;-601 -39579;-385 -39381;-292 -39296;590 -38486;705 -38182;738 -36960;-2126 -36883;-2165 -37178 1;-2442 -37968;-3200 -37979;-3889 -37887 1;-4616 -37790;-5094 -37511;-5536 -36926;-5645 -36924;-5872 -36921;-6623 -36909;-6999 -36899;-11984 -36765;-12476 -36752;-13429 -36727;-13395 -35445;-13566 -35407;-14671 -35372;-14703 -35591;-14739 -36702 1;-14791 -36702;-14842 -36702;-14892 -36701;-14951 -37194;-14985 -37676;-14840 -37676;-14710 -37688;-8965 -37933;-9000 -37827 1;-9036 -37726;-9054 -37615;-9051 -37503;-7324 -37468 1;-6498 -37455;-5978 -37484;-5248 -37869;-5157 -37917;-4807 -38070 1;-3628 -38578;-2797 -38856;-1798 -39790;-1714 -39706;-1488 -39473 32;-1104 -39845;-1049 -39908 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="47">-14856 -36713;-14917 -37169;-15040 -37165;-15062 -37167 1;-15548 -37168;-15927 -37049;-16262 -36663 1;-16469 -36425;-16667 -36197;-16856 -35978;-16856 -35978;-16982 -35846;-17063 -35905;-17465 -36214;-17595 -36056;-18441 -35030;-18368 -34969;-17982 -34663 1;-18136 -34482;-18287 -34304;-18436 -34127;-18536 -34009 1;-19333 -33066;-20106 -32140;-21127 -30934 1;-21295 -30715;-21405 -30467;-21464 -30207;-21465 -30142;-21507 -29928 1;-21554 -29374;-21387 -28795;-21054 -28343;-20822 -28810 1;-20882 -28909;-20932 -29020;-20974 -29147 1;-21132 -29631;-21220 -30055;-20895 -30447 1;-19009 -32723;-17935 -33985;-16044 -36257 1;-15769 -36587;-15426 -36677;-15022 -36697;-14856 -36713 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">40966 -29419;39815 -29350;39756 -30336;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">38413 -30279;38455 -29302 32;32934 -29006 32;32883 -29949;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">31530 -28877;26976 -28659;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">31879 -30064;31284 -30039;31326 -29045;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">26688 -29706;27142 -29725;27178 -28858;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">25073 -29636;23841 -29596 32;24344 -28442 32;22643 -28347 32;20940 -28251 32;16928 -28063;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">31403 -26255;40520 -26762 32;40545 -26244;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">16415 -25363;28331 -26070;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">28331 -26070;31428 -26256;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="37">17689 -41740;18800 -28218;19144 -28244;22701 -28402 32;24368 -28476 32;23859 -29603 32;25083 -29654;27015 -29720;27142 -29725;27178 -28858;27212 -28670;31324 -28885;31318 -29231;31284 -30039;31879 -30064;32829 -30106;32898 -29676;32934 -29006 32;38455 -29302 32;38413 -30279;39714 -30340;39768 -30128;39815 -29350;40606 -29397;41333 -29440 1;43384 -29555;44397 -29548;46564 -29811 1;47306 -29901;48124 -30779;48033 -31521;47402 -35838;45990 -35788;40585 -37592;32612 -38552;32488 -42204;17689 -41740 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="26">32590 -26296;32956 -19875;34352 -17328;34840 -17280;43698 -17174;44211 -17168;46009 -17146 32;47009 -19049 32;45405 -18950;45186 -20624;45140 -21429;48067 -21595 1;48313 -22210;48544 -22582;48729 -23190;48854 -23649 1;49078 -24542;49113 -25200;48888 -26170 1;48735 -26830;48129 -27185;47453 -27144;43597 -26910;43190 -27075;40691 -26962;32590 -26296 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">16928 -28063;13681 -27918;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">11797 -28708;11845 -27757;6135 -27523;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">3659 -27432;-1897 -27222;-1994 -29579;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">13272 -28911;13831 -28938;13871 -28115;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">6135 -27523;3633 -27423;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-1994 -29579;-2083 -32451;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">9144 -35645;9084 -37284 32;834 -36972;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-2367 -35210;-2387 -35642 1;-2398 -35882;-2188 -36065;-1948 -36074;8952 -36476;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-3512 -36529;8902 -36955;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="27">9038 -36475;8865 -36473;-1948 -36074 1;-2188 -36065;-2398 -35882;-2387 -35642;-2367 -35210;-2062 -31772;-1994 -29579;-1981 -29261;-1897 -27222;3659 -27432;9256 -27651;11845 -27757;11797 -28708;13476 -28921;13831 -28938;13871 -28115;14013 -27933;16928 -28063;17293 -28079;18877 -28150;18062 -39291;720 -38628;754 -36988;9007 -37215;9038 -36475 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-5150 -30499;-5055 -26948;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="17">-5055 -26957;-1904 -27036;-2184 -32427;-2356 -35178;-2376 -35409;-2387 -35642 1;-2398 -35882;-2188 -36065;-1948 -36074;8952 -36476;8957 -37214;-5292 -36720;-5267 -35647;-4138 -35688 32;-4000 -30531 32;-5155 -30501;-5055 -26957 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-13284 -27985;-13249 -26876;-6753 -27083;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="10">-13306 -26880;-13395 -35431;-13429 -36727;-12500 -36751;-6623 -36909;-5709 -36923;-5499 -36895;-5246 -26968;-6868 -26898;-13306 -26880 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">40694 -26924;43177 -27046;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">25813 -29527;25862 -28345;24550 -28291;24006 -29490;25813 -29527 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">16625 -25196;16713 -23137;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="4">8268 -23737;8208 -24929;15460 -25296;15492 -24493;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="5">15666 -23063 32;16516 -23096 32;16497 -23584 32;15647 -23551 32;15666 -23063 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><coords count="2">15716 -23555;16496 -23585;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">1521 -23913 32;6983 -24126 32;6948 -25037 32;1486 -24824 32;1521 -23913 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">1521 -23913 32;6983 -24126 32;6948 -25037 32;1486 -24824 32;1521 -23913 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">-4545 -23725;-4573 -24447;-901 -24589;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-937 -24743;66 -24782;116 -23477;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-12019 -24246;-6985 -24369;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-5938 -23255;-5989 -24559;-7028 -24532;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-13619 -24380 1;-14832 -24387;-15513 -24566;-16705 -24790 1;-17842 -25004;-18505 -25145;-19574 -25507;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="33">-24679 -18615;-23641 -18353;-19083 -17656;-18677 -17636;-12799 -17590;-13021 -23630;-13033 -23900;-13045 -24212;-13486 -24283;-13653 -24380 1;-14845 -24390;-15524 -24568;-16705 -24790 1;-17842 -25004;-18505 -25145;-19574 -25507;-19934 -25483 1;-20771 -25821;-21319 -26018;-22165 -26464 1;-22403 -26590;-22611 -26672;-22826 -26707 33;-23030 -26741;-23241 -26734;-23491 -26682 33;-23890 -26600;-24163 -26521;-24411 -26195;-25419 -25001;-24939 -24638 32;-24903 -23775;-24679 -18615 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-4660 -24591;77 -24765;112 -23457;-4625 -23291;-4660 -24591 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="100">-24627 -26116;-25099 -26470;-24997 -26591;-24961 -26630 1;-24936 -26660;-24910 -26690;-24885 -26720 1;-24148 -27589;-22980 -27466;-21919 -27027;-21397 -26783 1;-21317 -26742;-21238 -26699;-21161 -26655 1;-19909 -25945;-19105 -25700;-17699 -25390 1;-15676 -24944;-14501 -24737;-12430 -24779 1;-6466 -24899;-3124 -25036;2837 -25251 1;6418 -25380;8822 -25466;11809 -25615;12364 -25643 1;13207 -25687;14101 -25735;15084 -25791 1;19813 -26061;22464 -26223;27192 -26506 1;28535 -26586;29774 -26661;30945 -26731;31366 -26757 1;36602 -27072;40544 -27315;46629 -27693 1;46957 -27713;47140 -27725;47468 -27745 1;48378 -27802;49320 -27302;49501 -26594 1;49551 -26398;49593 -26209;49627 -26026;48952 -25865 1;48934 -25964;48912 -26065;48888 -26170 1;48735 -26830;48129 -27185;47453 -27144;43597 -26910;43190 -27075;40691 -26962;39040 -26826;16487 -25516;16532 -23591;15656 -23560;15539 -25435;8103 -25046;8164 -23701;6992 -23652;6944 -25025;1473 -24813;1535 -23549;116 -23487;61 -24770;-4739 -24595;-4653 -23293;-5917 -23250;-5985 -24570;-12008 -24378;-12925 -24379;-13616 -24372;-13970 -24387 1;-14974 -24423;-15633 -24589;-16705 -24790 1;-17842 -25004;-18505 -25145;-19574 -25507;-20346 -25648 1;-20970 -25897;-21465 -26095;-22165 -26464 1;-22403 -26590;-22611 -26672;-22826 -26707 33;-23030 -26741;-23241 -26734;-23491 -26682 33;-23839 -26610;-24092 -26541;-24315 -26308;-24627 -26116 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="58">-21114 -28419;-21995 -27058;-21743 -26945;-21397 -26783 1;-21317 -26742;-21238 -26699;-21161 -26655 1;-19909 -25945;-19105 -25700;-17699 -25390 1;-15748 -24960;-14585 -24752;-12647 -24775;-12286 -24782 1;-8776 -24853;-6172 -24931;-3383 -25027;-1831 -25082 1;-411 -25132;1102 -25188;2837 -25251 1;7621 -25423;10304 -25519;15084 -25791 1;19813 -26061;22464 -26223;27192 -26506 1;34783 -26960;39039 -27222;46629 -27693 1;46957 -27713;47140 -27725;47468 -27745 1;47480 -27746;47492 -27746;47503 -27747;47189 -29199;47031 -29190;46440 -29116 1;45249 -28970;43871 -28923;42249 -28825 1;35002 -28391;30907 -28244;23657 -27862 1;15748 -27446;11347 -27130;3432 -26837 1;-3118 -26594;-6784 -26495;-13336 -26295 1;-16056 -26212;-17613 -26661;-20152 -27640 1;-20437 -27750;-20685 -27926;-20889 -28144;-21114 -28419 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="61">-20843 -28855;-21096 -28380;-20960 -28230;-20889 -28144 1;-20685 -27926;-20437 -27750;-20152 -27640 1;-17613 -26661;-16056 -26212;-13336 -26295 1;-6784 -26495;-3118 -26594;3432 -26837 1;11347 -27130;15748 -27446;23657 -27862 1;30907 -28244;35002 -28391;42249 -28825 1;43871 -28923;45249 -28970;46440 -29116;47031 -29190;47109 -29194;46974 -29828;39725 -29357;39655 -30343;38425 -30299;38415 -29362;32888 -28992;32814 -30053;31284 -29979;31358 -28869;27213 -28647;27139 -29634;25786 -29569;25815 -29474;25862 -28345;24550 -28291;13895 -27898;13821 -28860;11798 -28737;11823 -27824;-2034 -27044;-5135 -26973;-6808 -26902;-13310 -26933;-13397 -27933;-14483 -27933;-14442 -27748;-14410 -26748 1;-15255 -26722;-15739 -26792;-16560 -26992 1;-17891 -27316;-18650 -27513;-19892 -28091 1;-20211 -28239;-20469 -28387;-20664 -28600;-20843 -28855 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-6756 -26916;-5235 -26978;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">16111 -17576;184 -17305;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">16111 -17576;19464 -17649;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="18">19322 -17713;18844 -25412;16661 -25326;16685 -23093;15661 -23019;15464 -25276;8144 -24943;8218 -23561;-5893 -23171;-5944 -23419;-5989 -24559;-7028 -24532;-7588 -24354;-11791 -24252;-11810 -23721;-11712 -17088;-9749 -17119;19322 -17713 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">18324 85141;</coords></object>
<object type="1" symbol="64"><coords count="9">18594 86902;18799 86863;18821 86740;18913 85374;18728 85250;18783 84698;17871 84133;17800 84154;18594 86902 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">17784 84152;17863 84126;18063 82202;17933 82198 1;17638 82212;17312 82407;17382 82681 1;17488 83097;17563 83366;17664 83720;17784 84152 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">16683 73193;</coords></object>
<object type="1" symbol="111"><coords count="56">18027 77177;18254 76950;18254 76662;18547 76662;18547 77446;19337 77854;19143 79264;19807 79596;19516 82389;18069 82238;17871 84133;18783 84698;18728 85250;18913 85374;18814 86838;19251 87126;19238 87468;22254 89592;22406 87338;22180 87151;22462 86817;24369 88209;24535 85693;24097 85391;23803 85215;24075 81810;24544 81412;24829 81698;25317 81307;25063 80971;25543 80564;27566 80724;27870 81084;28283 81575;29954 80965;30419 75813;29690 75333;30120 71093;29810 71346;29291 71764;28899 71302;29117 71128;28777 70709;29038 68031;28480 67577;28562 66826;24829 66449;24752 67206;25234 67256;25055 69582;23412 70816;23013 70770;21935 71688;17442 71190;16846 76567;18027 77177 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="6">18560 77494;18569 76629;18252 76629;18252 76941;17998 77203;18560 77494 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">16853 76479;16403 77197;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">18563 77489;18307 77985;18134 77896 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">17651 77646;16973 77287 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">18134 77896;17651 77646 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="3">16755 77327;16128 78056;15312 78362;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">16529 77624;16738 77354;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><coords count="4">16681 76380;16838 76130;16825 76495;16681 76380 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">16918 78291;</coords></object>
<object type="0" symbol="84"><coords count="1">17254 80581;</coords></object>
<object type="1" symbol="132"><coords count="10">17557 77793;17366 78904;16941 78922;16996 80156;17625 80144;17607 81050;16916 81075 1;16481 80026;16176 79446;15491 78540;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">9833 73908;11448 73460;11648 74263;9957 74783;9833 73908 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">13396 72790;12463 74400;12827 75871 1;13882 77033;14527 77394;15238 78199;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="16">16945 78961 1;16731 78916;16589 78873;16384 78949 1;16204 79016;16099 79067;15964 79202;16022 79294 1;16372 79839;16612 80343;16916 81075;17607 81050;17625 80144;16996 80156;16955 79228;16945 78961 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="17">15958 79220;15991 79176 1;16113 79060;16216 79012;16384 78949 1;16589 78873;16731 78916;16945 78961;16942 78950;16941 78922;17366 78904;17557 77793;16945 77481;16871 77512;15477 78548;15755 78875;15958 79220 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">19160 82357;19465 79428;19795 79606;19511 82388;19160 82357 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="7">16557 77244;16893 77475;16931 77442;18222 78059;18493 77466;16933 76652;16557 77244 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="34">16051 77854 1;15786 77476;15595 77211;15626 76750 1;15646 76453;15985 76317;15891 76034 1;15802 75768;15721 75619;15533 75411 1;15481 75353;15616 75298;15694 75294 1;16042 75278;16399 75135;16428 74788 1;16454 74472;16090 74489;15814 74333 1;15588 74205;15507 73894;15521 73635 1;15526 73539;15522 73484;15527 73388 1;15535 73233;15742 73227;15897 73240 1;16393 73281;16695 73324;17187 73400;16862 76349;16542 77251;16051 77854 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="23">17960 71223;17953 71128 1;17932 70943;17845 70816;17791 70607 1;17679 70178;17232 70078;16788 70074 1;16716 70073;16646 70077;16580 70085;16493 70111 1;16240 70326;16102 70646;15937 70952 1;15843 71125;15990 71334;16177 71396 1;16623 71545;16901 71518;17368 71568;17417 71204;17960 71223 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="20">17880 70853 1;17847 70781;17816 70703;17791 70607 1;17679 70178;17232 70078;16788 70074 1;16716 70073;16646 70077;16580 70085;16493 70111 1;16240 70326;16102 70646;15937 70952 1;15843 71125;15990 71334;16177 71396 1;16462 71491;16679 71515;16920 71532;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">13777 74503;</coords></object>
<object type="0" symbol="84"><coords count="1">13672 73578;</coords></object>
<object type="1" symbol="62"><coords count="45">15228 78164;16048 77885;16066 77824;15974 77745 1;15750 77421;15598 77165;15626 76750 1;15646 76453;15985 76317;15891 76034 1;15802 75768;15721 75619;15533 75411 1;15481 75353;15616 75298;15694 75294 1;16042 75278;16399 75135;16428 74788 1;16454 74472;16090 74489;15814 74333 1;15588 74205;15507 73894;15521 73635 1;15526 73539;15522 73484;15527 73388 1;15535 73233;15742 73227;15897 73240 1;16393 73281;16695 73324;17187 73400;17409 71586;18334 71324;17636 68890;15804 68489;12480 74421;12485 74488;12827 75871 1;13702 76834;14294 77247;14877 77819;15228 78164 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="32">15756 73237 1;15639 73243;15533 73278;15527 73388 1;15522 73484;15526 73539;15521 73635 1;15507 73894;15588 74205;15814 74333 1;16090 74489;16454 74472;16428 74788 1;16399 75135;16042 75278;15694 75294 1;15616 75298;15481 75353;15533 75411 1;15721 75619;15802 75768;15891 76034 1;15924 76133;15904 76214;15863 76290;15779 76418 1;15709 76515;15635 76616;15626 76750 1;15604 77074;15692 77301;15838 77538;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="60">18112 87067;18605 86980;18532 86728;17749 84015 1;17599 83496;17516 83204;17382 82681 1;17304 82374;17721 82167;18036 82201;19172 82321;19459 79460;19307 79346;19143 79264;19337 77854;18727 77539;18125 78047;17549 77742;17545 77863;17366 78904;16941 78922;16996 80156;17625 80144;17607 81050;16916 81075 1;16499 80069;16201 79495;15574 78651;15467 78569;15249 78183;14467 77433;14304 77294 1;13885 76925;13421 76525;12827 75871;12485 74488;12480 74421;13251 73046;13336 72872;12497 73226;11450 73462;11467 73580 1;11609 74200;11738 74557;11990 75192 1;12427 76294;13019 76819;13903 77609 1;14527 78167;14979 78637;15361 79181;15744 79794 1;15899 80072;16047 80377;16198 80724 1;16620 81696;16768 82279;17055 83300;17802 85959;18112 87067 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">9976 74799;9856 73929;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="78">15169 83808;15108 83574 1;15053 83396;14996 83215;14937 83031 1;14523 81520;14092 80415;12996 79307 1;12572 78878;12107 78613;11605 78499;11278 78457;11273 78448 1;10859 78407;10421 78463;9961 78609 1;9707 78689;9461 78766;9221 78840;8833 78967 1;6117 79830;4672 80298;1528 81109 1;788 81300;67 81371;-654 81380;-865 81371 1;-1759 81408;-2585 81300;-3612 81227;-4610 81171 1;-9027 80952;-11972 80704;-15838 80387;-16289 80345;-16067 78210;-14771 78297;-14302 77878;-11554 78060;-5967 78436;-4750 78510;-3064 78621 1;-376 78799;1780 78179;4798 77539;5043 77731;5258 77690;5327 77446;6968 77101;7173 77317;7966 77096;8235 77011;9245 76774;9369 76725 1;9569 76490;9723 76263;9829 76027 1;9974 75706;10030 75367;9994 74970;9981 74776;11556 74291;11642 74264;11835 74794 1;11881 74916;11932 75047;11990 75191 1;12427 76294;13019 76819;13903 77609 1;15030 78616;15596 79338;16198 80724 1;16595 81638;16749 82208;17005 83121;17088 83406;15169 83808 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">3350 72787;3089 71985;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="93"><coords count="7">6744 67628 1;5478 69525;4678 70806;3529 72493 1;3161 73033;2622 73572;2405 74532 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">6438 66993;1705 67411;1616 66068 1;328 65890;-583 65876;-1479 64420 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">294 67806;</coords></object>
<object type="0" symbol="84"><coords count="1">-520 68818;</coords></object>
<object type="1" symbol="73"><coords count="22">750 67880 1;759 68265;764 68482;773 68867 1;778 69090;910 69326;1133 69311 1;1316 69299;1422 69111;1404 68929 1;1337 68261;1301 67887;1235 67219 1;1222 67085;1082 67024;948 67029 1;813 67034;747 67178;750 67313 1;755 67534;745 67659;750 67880 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">-497 65827;-2322 65565 32;-2381 65974 32;-555 66234 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-2331 65765;-526 66026;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-936 66347;1238 66585;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-18672 64224;-1511 66683 32;-1637 67560;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="6">-930 66459;-1318 66533;-3067 66276;-2431 65984;-895 66215;-930 66459 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-916 65746 1;-1091 65505;-1268 65364;-1566 65345 1;-2075 65313;-2359 65545;-2865 65479 1;-3331 65418;-3593 65384;-4059 65323 1;-4241 65299;-4348 65354;-4519 65423 1;-4841 65553;-4957 65599;-5279 65729;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-9068 65289;-5262 65835;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-4163 65727;</coords></object>
<object type="0" symbol="84"><coords count="1">-3125 65849;</coords></object>
<object type="1" symbol="64"><coords count="23">-5330 65981;-5299 65737 1;-5004 65618;-4826 65547;-4519 65423 1;-4348 65354;-4241 65299;-4059 65323 1;-3593 65384;-3331 65418;-2865 65479 1;-2359 65545;-2075 65313;-1566 65345 1;-1268 65364;-1091 65505;-916 65746;-1068 65745;-2322 65565 32;-2381 65974 32;-2502 66017;-3067 66276;-5330 65981 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="23">-5330 65981;-5299 65737 1;-5004 65618;-4826 65547;-4519 65423 1;-4348 65354;-4241 65299;-4059 65323 1;-3593 65384;-3331 65418;-2865 65479 1;-2359 65545;-2075 65313;-1566 65345 1;-1268 65364;-1091 65505;-916 65746;-1068 65745;-2322 65565 32;-2381 65974 32;-2502 66017;-3067 66276;-5330 65981 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">1701 67411;1239 67170;1267 66445;-587 66264;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="22">750 67880 1;759 68265;764 68482;773 68867 1;778 69090;910 69326;1133 69311 1;1316 69299;1422 69111;1404 68929 1;1337 68261;1301 67887;1235 67219 1;1222 67085;1082 67024;948 67029 33;813 67034;747 67178;750 67313 1;755 67534;745 67659;750 67880 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="46">2827 57777;2495 57736;2024 64652 1;1382 64562;1022 64512;381 64420 1;218 64397;105 64242;132 64080 1;155 63946;270 63868;405 63883;1068 63961;1207 62570;430 62492 1;319 62481;240 62363;251 62252 1;263 62135;373 61988;490 62000;1247 62078;1391 60507;561 60431 1;441 60420;356 60279;367 60159 1;379 60029;493 59934;623 59946;1436 60021;1623 57997;755 57917 1;661 57908;597 57751;606 57657 1;616 57545;721 57417;833 57428;1669 57510;1828 55899;825 55757;944 54838;7559 55851;7398 56776;5979 56517 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="114" rotation="1.4797"><coords count="1">2017 58896;</coords></object>
<object type="0" symbol="114" rotation="1.4797"><coords count="1">1860 61164;</coords></object>
<object type="0" symbol="114" rotation="1.4797"><coords count="1">1703 63476;</coords></object>
<object type="0" symbol="84"><coords count="1">632 64179;</coords></object>
<object type="0" symbol="84"><coords count="1">1138 57714;</coords></object>
<object type="1" symbol="92"><coords count="2">1608 58120;2453 58200;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">2501 57805;1681 57417;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">1380 55379;</coords></object>
<object type="0" symbol="84"><coords count="1">2651 55564;</coords></object>
<object type="0" symbol="84"><coords count="1">4082 55749;</coords></object>
<object type="0" symbol="84"><coords count="1">5611 55984;</coords></object>
<object type="0" symbol="84"><coords count="1">7067 56206;</coords></object>
<object type="0" symbol="84"><coords count="1">7178 54577;</coords></object>
<object type="1" symbol="92"><coords count="2">6499 56592;6316 55658;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="55">854 55759;1797 55896;1790 56283;1669 57510;833 57428 1;721 57417;616 57545;606 57657 1;597 57751;661 57908;755 57917;1623 57997;1436 60021;623 59946 1;493 59934;379 60029;367 60159 1;356 60279;441 60420;561 60431;1391 60507;1247 62078;490 62000 1;373 61988;263 62135;251 62252 1;240 62363;319 62481;430 62492;1207 62570;1068 63961;405 63883 1;270 63868;155 63946;132 64080 1;105 64242;218 64397;381 64420 1;1022 64512;1382 64562;2024 64652;2495 57736;2827 57777;2981 57589;3143 56295 32;5876 56637;5983 56525;6080 56537;7410 56793;7420 56794;7429 56595;7559 55851;944 54838;878 55504;854 55759 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="46">3142 56306;2988 56083;1790 55944;1790 56283;1669 57510;833 57428 1;721 57417;616 57545;606 57657 1;597 57751;661 57908;755 57917;1623 57997;1436 60021;623 59946 1;493 59934;379 60029;367 60159 1;356 60279;441 60420;561 60431;1391 60507;1247 62078;490 62000 1;373 61988;263 62135;251 62252 1;240 62363;319 62481;430 62492;1207 62570;1068 63961;405 63883 1;270 63868;155 63946;132 64080 1;105 64242;218 64397;381 64420 1;1022 64512;1382 64562;2024 64652;2495 57736;2827 57777;2981 57589;3142 56306 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">3786 58376;</coords></object>
<object type="1" symbol="74"><coords count="2">4902 58184;5518 58261;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">6735 58715;2491 58154;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">2475 58136;6763 58733;6841 58358;6200 58197;5773 58162;2488 57743;2475 58136 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-3615 63435;-2473 63409;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-3306 61156;-2337 61134;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-2978 58780;-2096 58760;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-2664 56503;-1844 56484;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-2129 64513;</coords></object>
<object type="0" symbol="84"><coords count="1">-1839 59648;</coords></object>
<object type="1" symbol="67"><coords count="12">-2358 59384;-2386 59838;-2256 59855;-1493 59903 1;-1364 59911;-1253 59813;-1245 59684 1;-1237 59553;-1337 59439;-1468 59431;-2230 59387;-2358 59384 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="19">-2511 64116 1;-2705 64300;-2774 64572;-2636 64802 1;-2541 64960;-2447 65049;-2263 65049;-2125 64975 1;-1929 64879;-1748 64733;-1544 64566 1;-1493 64524;-1495 64472;-1491 64406 1;-1483 64277;-1581 64165;-1710 64157;-2333 64117;-2511 64116 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="42">-3678 64959;-3547 64981;-2791 65081 1;-2617 65104;-2466 65092;-2326 65052;-2413 65023 1;-2506 64986;-2571 64910;-2636 64802 1;-2773 64573;-2706 64303;-2514 64119;-2631 64092;-2629 63979;-2511 62164;-1637 62216 1;-1508 62224;-1397 62126;-1389 61997 1;-1381 61866;-1481 61752;-1612 61744;-2482 61692;-2365 59848;-2339 59389;-2320 59129;-2317 59077;-2110 57553;-1209 57608 1;-1080 57616;-969 57518;-961 57389 1;-953 57258;-1053 57144;-1184 57136;-2054 57083;-1899 55888;-2427 55820;-2530 56608;-3589 64220;-3678 64959 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="14">-3508 63641;-3692 64962;-2791 65081 1;-2269 65150;-1951 64900;-1544 64566 1;-1493 64524;-1495 64472;-1491 64406 1;-1483 64277;-1581 64165;-1710 64157;-2637 64098;-2604 63597 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-3192 61366;-3450 63225 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-2578 63197;-2511 62164;-1637 62216 1;-1508 62224;-1397 62126;-1389 61997 1;-1381 61866;-1481 61752;-1612 61744;-2482 61692;-2460 61351 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-2862 58991;-3133 60942 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">-2434 60930;-2365 59848;-1493 59903 1;-1364 59911;-1253 59813;-1245 59684 1;-1237 59553;-1337 59439;-1468 59431;-2336 59381;-2317 59077;-2304 58980 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-2544 56708;-2801 58554 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-2246 58553;-2110 57553;-1209 57608 1;-1080 57616;-969 57518;-961 57389 1;-953 57258;-1053 57144;-1184 57136;-2054 57083;-2006 56714 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-1949 56276;-1860 55585;-1837 55406;-76 55636;46 54715;-2222 54391;-2484 56277 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="13">-1318 54585 1;-1550 54653;-1683 54897;-1615 55129 1;-1547 55362;-1303 55495;-1071 55427 1;-838 55358;-705 55115;-773 54882 1;-842 54650;-1085 54517;-1318 54585 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-1183 55443;-1183 54585;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-1632 55011;-748 55033;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-395 55166;</coords></object>
<object type="0" symbol="84"><coords count="1">-1982 54952;</coords></object>
<object type="1" symbol="62"><coords count="8">-1949 56276;-1860 55585;-1837 55410;-76 55640;46 54715;-2222 54391;-2484 56277;-1949 56276 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">8671 66894;8622 66197;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10327 66715;10275 66018;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="19">-2351 73726;-2177 73766;3648 74755;4795 74969;5381 75064;5649 73393;5778 73414;7729 73541;7675 73228 1;7236 71006;6848 68987;6705 67411;6429 66994;1705 67420;1223 67161;1240 66694;-963 66443;-1333 66542;-2351 73726 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="67">7718 73514;8761 73780;8696 73525 1;8543 72569;8409 71989;8243 70987;8152 71012;8150 71012 32;8075 70427 32;8140 70419;8133 70362 1;7861 69293;7808 68650;7679 67549;7620 67540;7595 67542 32;7551 66973 32;8677 66885 32;8680 66920;8619 66181;8446 66208;7497 66282 32;7453 65713 32;7575 65703;7548 65610;7516 64956 1;7508 64736;7502 64521;7495 64258;7500 64152;7437 64121;7418 64121 32;7413 63529 32;7505 63528;7502 63393 1;7503 62778;7578 62391;7619 61781;7634 61675;7648 61676;7554 61668;7544 61667 32;7591 61131 32;7701 61141;7705 61053 1;7765 60256;7899 59787;8037 59012;8054 58893;8073 58896;7974 58880;7947 58876;8015 58374;7989 58356;7045 58288;6974 58486;6835 58907 1;6548 60792;6520 62069;6469 64095;6513 66106;6579 67132;6713 67502 1;6861 69047;7236 71004;7661 73154;7718 73514 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="110">6536 65965;6511 64029;6530 61703;6795 59359;6745 58711;2468 58142;2436 58603;2024 64652 1;1382 64562;1022 64512;381 64420 1;218 64397;105 64242;132 64080 1;155 63946;270 63868;405 63883;1068 63961;1207 62570;430 62492 1;319 62481;240 62363;251 62252 1;263 62135;373 61988;490 62000;1247 62078;1391 60507;561 60431 1;441 60420;356 60279;367 60159 1;379 60029;493 59934;623 59946;1436 60021;1623 57997;755 57917 1;661 57908;597 57751;606 57657 1;616 57545;721 57417;833 57428;1669 57510;1828 55899;825 55757;943 54849;42 54747;-76 55640;-1837 55410;-1860 55585;-1931 56132;-1911 56234;-1978 56739;-2018 56805;-2054 57083;-1184 57136 1;-1053 57144;-953 57258;-961 57389 1;-969 57518;-1080 57616;-1209 57608;-2110 57553;-2215 58324;-2211 58518;-2281 59015;-2318 59092;-2336 59381;-1468 59431 1;-1337 59439;-1237 59553;-1245 59684 1;-1253 59813;-1364 59911;-1493 59903;-2365 59848;-2424 60771;-2404 60884;-2432 61373;-2467 61461;-2482 61692;-1612 61744 1;-1481 61752;-1381 61866;-1389 61997 1;-1397 62126;-1508 62224;-1637 62216;-2511 62164;-2566 63007;-2545 63160;-2579 63662;-2611 63701;-2637 64098;-1710 64157 1;-1581 64165;-1483 64277;-1491 64406 1;-1492 64423;-1493 64438;-1494 64453;-1430 64498 1;-550 65877;351 65893;1616 66068;1705 67420;6438 66993;6536 65965 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-12714 57130;-12136 57205;-11975 55963;-11448 56031;-11262 56273;-11848 60755;-12141 60980;-12651 60913;-12498 59747;-13035 59677;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="11">-12767 57589 1;-12367 57659;-12069 57863;-11729 57641;-11412 57423;-11262 56273;-11448 56031;-11975 55963;-12136 57205;-12714 57130;-12767 57589 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-12305 58060;</coords></object>
<object type="0" symbol="84"><coords count="1">-12418 58941;</coords></object>
<object type="1" symbol="67"><coords count="10">-12497 59743 1;-12509 59534;-12496 59302;-12697 59246 1;-12801 59217;-12862 59208;-12968 59185;-13008 59267;-13057 59646;-12497 59743 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="8">-12532 60031;-11712 59604;-11710 59701;-11848 60755;-12141 60980;-12651 60913;-12562 60237;-12532 60031 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-10761 60759;</coords></object>
<object type="0" symbol="84"><coords count="1">-10650 59723;</coords></object>
<object type="0" symbol="84"><coords count="1">-10513 58378;</coords></object>
<object type="0" symbol="84"><coords count="1">-10415 57569;</coords></object>
<object type="0" symbol="84"><coords count="1">-10292 56776;</coords></object>
<object type="1" symbol="70"><coords count="28">-9588 60130 1;-9492 60145;-9394 60091;-9379 59995 1;-9198 58835;-9123 58181;-8947 57021 1;-8913 56794;-9063 56685;-9292 56676 1;-9518 56667;-9712 56834;-9737 57058 1;-9771 57362;-9812 57520;-9835 57824 1;-9842 57921;-9792 57978;-9712 58033 1;-9552 58144;-9429 58197;-9453 58391 1;-9525 58970;-9540 59298;-9650 59871 1;-9670 59973;-9691 60114;-9588 60130 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="28">-9553 60132 33;-9470 60146;-9392 60079;-9379 59995 1;-9198 58835;-9123 58181;-8947 57021 1;-8913 56794;-9063 56685;-9292 56676 1;-9518 56667;-9712 56834;-9737 57058 1;-9771 57362;-9812 57520;-9835 57824 1;-9842 57921;-9792 57978;-9712 58033 1;-9552 58144;-9429 58197;-9453 58391 1;-9525 58970;-9540 59298;-9650 59871 1;-9671 59980;-9690 60109;-9553 60132 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="11">-12714 57130;-12136 57205;-11975 55963;-11448 56031;-11262 56273;-11848 60755;-12141 60980;-12651 60913;-12498 59747;-13035 59677;-12714 57130 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="38">-3692 64949;-3766 65361 1;-3462 65401;-3224 65432;-2865 65479 1;-2359 65545;-2075 65313;-1566 65345 1;-1268 65364;-1091 65505;-916 65746;-1115 65738;-2322 65565 32;-2381 65974 32;-621 66225;-524 66270;1267 66445;1239 67170;1697 67419;1697 67299;1616 66068 1;328 65890;-583 65876;-1479 64420;-1508 64519 1;-1515 64536;-1526 64551;-1544 64566 1;-1748 64733;-1929 64879;-2125 64975;-2263 65049;-2403 65071 1;-2521 65095;-2648 65100;-2791 65081;-3515 64985;-3692 64949 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="9">-20115 74817;-10920 76090;-10850 75172;-9593 66412 32;-1593 67560;-1615 67404;-1511 66683 32;-18672 64224;-20115 74817 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-4419 58213;-3841 58288;-3680 57046;-3309 57093;-3126 57336;-3712 61818;-3966 62047;-4356 61996;-4203 60830;-4740 60760;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-4198 59509;</coords></object>
<object type="0" symbol="84"><coords count="1">-3997 61437;</coords></object>
<object type="1" symbol="64"><coords count="7">-4207 60827;-3609 60905;-3610 61036;-3712 61818;-3966 62047;-4356 61996;-4207 60827 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="11">-4760 60754;-3591 60928;-3447 59777;-3518 59762 1;-3676 59750;-3857 59800;-3936 59928 1;-4103 60199;-4339 60154;-4643 60094;-4760 60754 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">-3839 58311;-3264 58386;-3245 58246;-3126 57336;-3309 57093;-3680 57046;-3839 58311 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="11">-4393 58207;-3263 58377;-3403 59494;-3477 59475 1;-3669 59443;-3773 59347;-3832 59125 1;-3895 58886;-4215 58873;-4460 58846;-4393 58207 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-4637 60148;-3495 60283;-3346 58935;-4485 58791;-4637 60148 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">-4978 62475;-3940 62610;-4233 64862;-5362 65310;-8991 64795;-9252 64376;-9470 64341;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-5833 64943;</coords></object>
<object type="1" symbol="62"><coords count="14">-5371 65314;-6463 65159;-6444 65094 1;-6393 64811;-6195 64552;-5911 64586 1;-5562 64628;-5323 64706;-5013 64542 1;-4570 64308;-4350 64071;-4092 63653;-4236 64851;-5371 65314 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="19">-7367 63603;-7497 65010;-6454 65158;-6442 65085 1;-6389 64806;-6192 64552;-5911 64586 1;-5562 64628;-5323 64706;-5013 64542 1;-4570 64308;-4350 64071;-4092 63653;-3950 62616;-4974 62487;-5153 63850;-6812 63646;-7096 63807;-7367 63603 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-10690 63767;-10382 63810;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-9415 65019;-9365 64694;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-12052 64639;-11995 64271;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">-11958 63919;-11887 63422;-10980 63551;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-12704 65028;-12445 63218;-12184 62940;-11994 61613;-13278 61429;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-12432 61995;</coords></object>
<object type="1" symbol="62"><coords count="11">-12458 63211 1;-12719 62844;-12981 62261;-12860 61860 1;-12806 61680;-12753 61700;-12639 61551;-12575 61530;-11994 61613;-12180 62937;-12458 63211 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="19">-8877 63188;-9248 64378;-9488 64335;-9436 63947;-11023 63702;-11416 63667;-11374 63319;-11341 63086;-11797 63021;-11639 61911;-11302 61959;-11201 61969 1;-10715 62069;-10554 62370;-10119 62694 1;-9716 62993;-9347 63111;-8947 63176;-8877 63188 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="14">-7486 65006;-7360 63611;-7852 63506;-7852 63310;-7965 63290 1;-8304 63248;-8604 63228;-8887 63186;-8896 63248;-9248 64378;-9233 64407;-8991 64795;-7704 64978;-7486 65006 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="14">-7486 65006;-7360 63611;-7852 63506;-7852 63310;-7965 63290 1;-8304 63248;-8604 63228;-8887 63186;-8896 63248;-9248 64378;-9233 64407;-8991 64795;-7704 64978;-7486 65006 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="5">-7665 62271 32;-8232 62197 32;-7983 60293 32;-7416 60367 32;-7665 62271 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="5">-7167 58241 32;-7702 58171 32;-7462 56339 32;-6927 56409 32;-7167 58241 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-6775 54855 32;-7261 54792 32;-7463 56354 32;-6977 56417 32;-6775 54855 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-7216 58228 32;-7700 58165 32;-7977 60299 32;-7493 60362 32;-7216 58228 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-7717 62263 32;-8230 62196 32;-8367 63238 32;-7854 63305 32;-7717 62263 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-8372 63240;-7276 54809;-6780 54871;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="17">-11284 61917;-11310 62091;-10054 62972;-8981 63295;-8902 63212;-8905 63183;-8877 63188;-8849 63192 1;-8698 63213;-8541 63228;-8377 63245;-7264 54810;-7338 54409;-9356 54082;-9781 54372;-10441 55853;-11284 61917 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="19">-10172 56031 1;-10114 56042;-10052 56053;-9978 56066 1;-9804 56097;-9743 55872;-9716 55698 1;-9651 55270;-9653 55025;-9576 54599 1;-9529 54336;-9292 54149;-9027 54189 1;-8458 54274;-8142 54350;-7570 54416 1;-7500 54424;-7471 54437;-7435 54482;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-11049 54400 32;-11882 54291 32;-11839 53961 32;-11006 54070 32;-11049 54400 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="14">-10945 53337 1;-11475 53203;-12163 53168;-12149 52621 1;-12145 52465;-12191 52243;-12035 52237 1;-11765 52227;-11625 52380;-11355 52368 1;-11124 52358;-11033 52335;-10762 52359;-10945 53337 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">-14422 50686 1;-14351 50949;-14169 51109;-13899 51149 1;-13610 51192;-13355 51080;-13227 50817;-14422 50686 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">-12660 50896 1;-12533 51222;-12342 51441;-11997 51498 1;-11551 51572;-11079 51546;-10898 51131;-12660 50896 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">-9423 51315 1;-9330 51591;-9125 51727;-8839 51777 1;-8584 51822;-8344 51713;-8228 51481;-9423 51315 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="25">-12074 52902 1;-12614 52908;-12905 52733;-13406 52533 1;-13976 52305;-14334 52245;-14946 52206;-14765 50627 32;-9320 51321;-9385 52560;-10772 52373;-10857 52352 1;-11058 52341;-11153 52359;-11355 52368 1;-11625 52380;-11765 52227;-12035 52237 1;-12191 52243;-12145 52465;-12149 52621 1;-12150 52678;-12144 52729;-12132 52775;-12074 52902 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="25">-12074 52902 1;-12614 52908;-12905 52733;-13406 52533 1;-13976 52305;-14339 52240;-14951 52201;-14765 50627 32;-9320 51321;-9385 52560;-10772 52373;-10857 52352 1;-11058 52341;-11153 52359;-11355 52368 1;-11625 52380;-11765 52227;-12035 52237 1;-12191 52243;-12145 52465;-12149 52621 1;-12150 52678;-12144 52729;-12132 52775;-12074 52902 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="7">-12151 52503 1;-12687 52440;-12951 52231;-13468 52077 1;-14020 51912;-14325 51818;-14899 51769;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="24">-15105 53781;-14951 52197 1;-14339 52236;-13976 52305;-13406 52533 1;-12905 52733;-12614 52908;-12074 52902;-12050 52935 1;-11842 53191;-11348 53235;-10945 53337;-11003 54065;-11034 54066;-11839 53961 32;-11882 54291 32;-11049 54400 32;-11176 55514;-12465 55335;-12360 54182;-14014 53972;-14217 53670;-14587 53880;-15105 53781 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="13">-11172 53285 1;-11652 53183;-12161 53092;-12149 52621 1;-12145 52465;-12191 52243;-12035 52237 1;-11765 52227;-11625 52380;-11355 52368 1;-11200 52361;-11108 52349;-10982 52348;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">-3174 57675;-2687 57715;-2831 58528;-2898 59023;-3160 60907;-3231 61417;-3471 63182;-3546 63709;-3681 64989;-3740 65360;-4209 65316;-4224 64857;-3940 62610;-4978 62475;-4748 60774;-4203 60844;-4216 60927;-4356 61996;-3966 62047;-3712 61818;-3505 60231;-3174 57675 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="34">-4173 65321;-4212 64854;-4385 64912;-5371 65314;-6463 65159;-6657 65126;-8991 64795;-9252 64376;-9465 64342;-9556 64944;-10476 64791;-10350 63818;-10725 63766;-10869 64730;-11860 64594;-11768 63905;-11999 63866;-11938 63329;-11380 63412;-11336 63085;-11785 63015;-11633 61907;-11310 61942;-11271 61680;-12004 61602;-12011 61736;-12180 62937;-12458 63211;-12695 64982;-9023 65453;-9005 65217;-5324 65741;-4393 65369;-4173 65321 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">-13282 61431;-12005 61628;-11265 61714;-10140 53770;-10942 53675;-10980 53779;-10996 53983;-10997 54101;-11180 55504;-12478 55335;-12713 57138;-12589 57146;-12136 57205;-11975 55963;-11448 56031;-11262 56273;-11848 60755;-12141 60980;-12651 60913;-12498 59747;-13035 59677;-13282 61431 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-4189 56330;-3036 56480;-2753 54305;-9604 53414 1;-9869 53380;-10118 53559;-10153 53817;-11302 61959;-11639 61911;-11797 63021 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="13">-4161 56339;-3020 56468;-3028 56416;-2753 54305;-6685 53794;-6681 53929;-6789 54863;-6648 54920;-6245 54972;-5914 54737;-5685 55045;-4035 55261 32;-4161 56339 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-8131 48683;-7169 47995;-5827 48194;-5827 48194 1;-5698 48213;-5588 48301;-5606 48439;-6235 52988;-10772 52373;-11180 55504;-12478 55335 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="24">-9388 52543;-9342 51490;-9319 51515 1;-9209 51661;-9045 51741;-8839 51777 1;-8584 51822;-8344 51713;-8228 51481;-6853 51640;-6798 51223;-6487 50987;-6721 50646;-6487 48898 32;-8079 48685;-7903 48520;-7169 47995;-5827 48194;-5827 48194 1;-5698 48213;-5588 48301;-5606 48439;-6236 52991;-9388 52543 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="17">-7887 46818 1;-7906 46982;-8080 47120;-8236 47097 1;-8505 47058;-8656 47035;-8925 46995 1;-9235 46949;-9467 46608;-9412 46300 1;-9354 45977;-9334 45796;-9276 45473 1;-9221 45164;-8930 44868;-8707 44902;-8154 44977;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-8433 46072;</coords></object>
<object type="1" symbol="132"><coords count="3">-11061 47450;-10145 46736;-10857 45803;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-10770 45176;-10726 45182;-9951 44593;-9727 42954;-10345 42141;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="6">-10770 45176;-10726 45182;-9951 44593;-9727 42954;-10345 42141;-10770 45176 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="4">-11061 47450;-10145 46736;-10857 45803;-11061 47450 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">-3485 50117;-3904 53289;4433 54391;4459 53307;-3181 52283;-2919 50190;-3485 50117 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="4">-3661 51103;-3805 52202 32;-4241 52145 32;-4094 51027 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-3872 51073;-3970 51816;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="11">-5016 52702 1;-4921 52193;-4599 51985;-4196 51660;-4193 51783;-4241 52145 32;-3805 52202;-3752 52289;-3875 53300;-5078 53146;-5016 52702 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-2906 50024;-3234 49980;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="13">-4557 49418;-4070 49436;-4113 49973;-3477 50115;-3498 50214;-3620 51140;-4131 51077;-4236 51712;-4320 51759 1;-4614 51992;-4852 52183;-4968 52518;-4557 49418 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">-3661 51103;-3805 52202 32;-4241 52145 32;-4094 51027 32;-3661 51103 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-2374 48856 32;-698 49078 32;-798 49834 32;-2474 49612 32;-2374 48856 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-3701 49280;-3591 48508;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-2763 48804;-3446 48714;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-2864 49528;-2809 49113;-3285 49050;-3317 49292;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="7">-3214 49822;-2921 49863;-2799 49133;-3277 49058;-3312 49292;-3146 49320;-3214 49822 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">-3526 49261;-3324 49285;-3309 49229;-3285 49050;-2809 49113;-2864 49528;-2471 49582;-2379 48869;-3457 48718;-3526 49261 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="8">-3757 48521;-2116 35837;988 36364;864 37229;-1149 36968;-2757 48807;-3459 48715;-3757 48521 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="8">-4550 49433;-4069 49455;-4001 49239;-3813 49263;-3753 48525;-2267 37259;-2854 37183;-4550 49433 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="13">-4181 50043;-2992 50213;-3204 51711;-4824 51582;-4187 47003;-2571 47170;-2792 48768;-3419 48686;-3395 48541;-3790 48487;-3885 49178;-4060 49151;-4181 50043 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="25">-9129 42177;-8266 42331;-8343 42409 1;-8348 42418;-8352 42429;-8354 42441 1;-8378 42558;-8403 42621;-8424 42738 1;-8473 43011;-8271 43164;-8309 43439 1;-8332 43609;-8346 43705;-8369 43875 1;-8388 44014;-8515 44111;-8654 44092 1;-8878 44062;-9004 44046;-9228 44015 1;-9310 44004;-9366 43928;-9355 43846;-9129 42177 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-8321 39694;-8575 41509;-5529 41935;-5272 40095;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-8321 39694;-8575 41509;-5529 41935;-5272 40095;-8321 39694 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="8">-9061 41489;-8574 41514;-8315 39688;-9240 39559;-9274 39628;-9465 40988;-9189 41354;-9061 41489 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="21">-5077 39581;-4399 39766;-4928 43572;-5047 43550 1;-5316 43494;-5355 43406;-5445 43176 1;-5547 42916;-5800 42814;-6077 42781 1;-6436 42738;-6641 42744;-7002 42720 1;-7125 42712;-7193 42623;-7271 42545;-7167 41706;-5529 41935;-5272 40095;-5237 39698;-5077 39581 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">-9395 40463;-8452 40595;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="17">-9126 42206;-8311 42363;-8216 42337 1;-8168 42331;-8115 42336;-8066 42345 1;-7831 42388;-7701 42398;-7464 42433 1;-7366 42448;-7304 42511;-7243 42574;-7129 41722;-8572 41495;-9100 41460;-9030 41560;-9126 42206 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="46">-6560 37067;-5456 36244;-3945 36467;-4928 43570 1;-5088 43554;-5232 43535;-5299 43481 1;-5393 43405;-5374 43318;-5436 43172 1;-5545 42915;-5800 42814;-6077 42781 1;-6436 42738;-6641 42744;-7002 42720 1;-7209 42707;-7259 42464;-7464 42433 1;-7701 42398;-7831 42388;-8066 42345 1;-8183 42324;-8331 42325;-8354 42441 1;-8378 42558;-8403 42621;-8424 42738 1;-8473 43011;-8271 43164;-8309 43439 1;-8332 43609;-8346 43705;-8369 43875 1;-8388 44014;-8515 44111;-8654 44092 1;-8878 44062;-9004 44046;-9228 44015 1;-9310 44004;-9366 43928;-9355 43846;-9034 41560;-9465 40988;-9250 39593 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-7322 47327;-7072 46506;-6417 46602 1;-6245 46627;-6076 46521;-6051 46349;-5868 45109 1;-5479 44861;-5304 44599;-5248 44141;-5015 44171;-5438 47239 1;-5467 47451;-5687 47568;-5898 47534;-7322 47327 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="42">-7579 45697;-7412 44494 1;-7543 44476;-7616 44466;-7747 44448 1;-7889 44428;-7989 44297;-7969 44155 1;-7944 43975;-7929 43874;-7904 43694 1;-7887 43570;-7772 43483;-7648 43500;-7330 43544;-7296 43298 1;-7279 43172;-7162 43084;-7036 43101 1;-6647 43155;-6429 43183;-6040 43235 1;-5882 43256;-5771 43401;-5792 43559 1;-5854 44026;-5889 44287;-5951 44754 1;-5975 44936;-6143 45064;-6325 45040;-6401 45615;-6436 45881 1;-6453 46007;-6569 46097;-6695 46080 1;-6961 46045;-7111 46024;-7377 45988 1;-7497 45972;-7603 45849;-7579 45697 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="42">-7579 45697;-7412 44494 1;-7543 44476;-7616 44466;-7747 44448 1;-7889 44428;-7989 44297;-7969 44155 1;-7944 43975;-7929 43874;-7904 43694 1;-7887 43570;-7772 43483;-7648 43500;-7330 43544;-7296 43298 1;-7279 43172;-7162 43084;-7036 43101 1;-6647 43155;-6429 43183;-6040 43235 1;-5882 43256;-5771 43401;-5792 43559 1;-5854 44026;-5889 44287;-5951 44754 1;-5975 44936;-6143 45064;-6325 45040;-6401 45615;-6436 45881 1;-6453 46007;-6569 46097;-6695 46080 1;-6961 46045;-7111 46024;-7377 45988 1;-7497 45972;-7603 45849;-7579 45697 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-8772 48571;-9698 47380;-10889 48306;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="4">-8772 48571;-9698 47380;-10889 48306;-8772 48571 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-11473 47377 32;-11588 48220 32;-13372 47977 32;-13257 47134 32;-11473 47377 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="5">-13272 47127 32;-13388 47977 32;-13986 47896 32;-13870 47046 32;-13272 47127 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-13856 47101;-13957 47852;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-5371 44870;</coords></object>
<object type="0" symbol="84"><coords count="1">-5618 45919;</coords></object>
<object type="0" symbol="84"><coords count="1">-5803 47054;</coords></object>
<object type="0" symbol="84"><coords count="1">-6673 46999;</coords></object>
<object type="1" symbol="62"><coords count="16">-7322 47327;-7072 46506;-6417 46602 1;-6245 46627;-6076 46521;-6051 46349;-5868 45109 1;-5479 44861;-5304 44599;-5248 44141;-5015 44171;-5438 47239 1;-5467 47451;-5687 47568;-5898 47534;-7322 47327 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="22">-10151 53826;-10962 53739;-10936 53633;-10772 52373;-6817 52909;-6646 52933;-6236 52991;-5606 48439 1;-5599 48387;-5610 48343;-5634 48306;-4419 48442;-5073 53147;-2771 53456;-2882 54288;-6685 53794;-8489 53550;-9510 53412 1;-9806 53374;-10055 53508;-10141 53769;-10151 53826 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="82">-4430 48483;-5621 48357;-5696 48243 1;-5733 48218;-5779 48201;-5827 48194;-5827 48194;-7169 47995;-8116 48672;-8216 48564;-8366 48354;-8696 48602;-8763 48593;-8829 48498;-9698 47380;-10421 47942;-10607 48087;-10889 48306;-11580 48206;-11469 47404;-11080 47441;-10155 46738;-10852 45831;-10556 45553;-10769 45218;-9951 44591;-9853 43882;-9353 43900 1;-9339 43959;-9291 44006;-9228 44015 1;-9004 44046;-8878 44062;-8654 44092 1;-8553 44106;-8457 44058;-8406 43977;-7955 44056 1;-7959 44087;-7964 44119;-7969 44155 1;-7989 44297;-7889 44428;-7747 44448 1;-7616 44466;-7543 44476;-7412 44494;-7579 45697 1;-7603 45849;-7497 45972;-7377 45988 1;-7111 46024;-6961 46045;-6695 46080 1;-6569 46097;-6453 46007;-6436 45881;-6401 45615;-6325 45040 1;-6143 45064;-5975 44936;-5951 44754 1;-5915 44483;-5888 44281;-5860 44067;-5249 44147 1;-5305 44601;-5481 44862;-5868 45109;-6051 46349 1;-6076 46521;-6245 46627;-6417 46602;-7072 46506;-7322 47327;-5898 47534 1;-5687 47568;-5467 47451;-5438 47239;-5019 44199;-3848 44332;-4430 48483 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">-9363 43932;-9873 43915;-9729 42968;-10344 42166;-10327 41874;-10030 41603;-10218 41289;-9930 39056;-9186 39152;-9463 40979;-9040 41568;-9354 43806;-9363 43932 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="64">-8438 43997;-7967 44093;-7944 43979 1;-7931 43889;-7920 43807;-7904 43694 1;-7887 43570;-7772 43483;-7648 43500;-7330 43544;-7296 43298 1;-7279 43172;-7162 43084;-7036 43101 1;-6647 43155;-6429 43183;-6040 43235 1;-5882 43256;-5771 43401;-5792 43559 1;-5820 43771;-5843 43941;-5865 44106;-5256 44201 1;-5255 44192;-5254 44182;-5252 44173;-5018 44180;-5023 44250;-3867 44376;-3222 39864;-4394 39724;-4928 43570 1;-5088 43554;-5232 43535;-5299 43481 1;-5393 43405;-5374 43318;-5436 43172 1;-5545 42915;-5800 42814;-6077 42781 1;-6436 42738;-6641 42744;-7002 42720 1;-7209 42707;-7259 42464;-7464 42433 1;-7701 42398;-7831 42388;-8066 42345 1;-8183 42324;-8331 42325;-8354 42441 1;-8378 42558;-8403 42621;-8424 42738 1;-8473 43011;-8271 43164;-8309 43439 1;-8329 43588;-8342 43681;-8361 43816;-8438 43997 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-14409 50659;-14402 50749 1;-14320 50975;-14147 51112;-13899 51149 1;-13610 51192;-13355 51080;-13227 50817;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-12638 50886;-12636 50954 1;-12509 51248;-12321 51444;-11997 51498 1;-11551 51572;-11079 51546;-10898 51131;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-9414 51309;-9387 51404 1;-9282 51621;-9092 51733;-8839 51777 1;-8584 51822;-8344 51713;-8228 51481;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-3872 53115;4385 54224;4507 53314;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="27">-2697 57728;-3171 57709;-3146 57487;-3126 57336;-3309 57093;-3680 57046;-3841 58288;-4419 58213;-4145 56335;-3597 56407;-3036 56480;-2753 54305;-2938 54281;-2884 53248;1147 53789;4576 54284;4391 55370;4268 55347;944 54838;930 54944;26 54867;42 54747;36 54722;-2221 54395;-2514 56256;-2582 56750;-2697 57728 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">4704 52835 32;5571 52949 32;5789 51293 32;4922 51179 32;4704 52835 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="37">4502 54392;4336 55378;4485 55380;7559 55851;7398 56776;7413 56818;8333 56958;8542 56068;9541 56273;10034 54842;9853 54955 1;9588 55069;9206 55006;8890 54923 1;8974 54582;9058 54285;9144 54011;9235 53732 1;9461 53070;9711 52517;10042 51747;8832 51574;8524 53931 32;7890 53848 32;6819 53725;6758 54205;6862 54236;7658 54335 32;7583 54938 32;6695 54827 32;5641 54685;5746 53559;5484 53516;5536 52944;4752 52841;4656 53298;4502 54392 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">6695 54827 32;7583 54938 32;7658 54335 32;6770 54224 32;6695 54827 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="7">6230 54775;6685 54841;6840 53718;5721 53595;5684 54047;6286 54147;6230 54775 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">5628 49455;</coords></object>
<object type="1" symbol="132"><coords count="13">5630 49055 1;5409 49053;5228 49230;5226 49451 1;5223 49672;5400 49853;5621 49856 1;5842 49858;6024 49681;6026 49460 1;6028 49239;5851 49058;5630 49055 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">5075 50431;3392 50209;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">2832 50145;755 49871;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="4">1537 47576;1418 48481;3993 48820;4056 48341;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="15">3836 48902 1;3806 49137;3858 49419;4093 49451 1;4262 49474;4489 49507;4516 49338 1;4560 49061;4585 48905;4629 48628 1;4644 48535;4596 48436;4503 48422;4172 48370;3836 48902 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="19">1339 48220 1;1169 48201;957 48220;934 48390 1;913 48544;902 48631;881 48785 1;867 48889;939 48985;1043 48999 1;1552 49068;1840 49086;2347 49167 1;2458 49185;2547 49086;2561 48975;2587 48709;1344 48521;1339 48220 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">1314 46922;</coords></object>
<object type="0" symbol="84"><coords count="1">1445 46128;</coords></object>
<object type="0" symbol="143"><coords count="1">3155 47934;</coords></object>
<object type="0" symbol="143"><coords count="1">2544 46686;</coords></object>
<object type="1" symbol="38"><coords count="13">1628 47605;1844 46032;2271 46091;2372 45358;3536 45518;3423 46343 1;3373 46707;3733 47024;4080 47145;3932 48331;3889 48681;1557 48377;1628 47605 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">3933 48322;4080 47145 1;3733 47024;3373 46707;3423 46343;3536 45518;2372 45358;2271 46091;1844 46032;1629 47596;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">1629 47565;977 47476;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">103 47536;613 47603;397 49246;-105 49180;103 47536 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">127 47550;606 47613;394 49221;-62 49161;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">655 43537;1134 43600;682 47036;226 46976;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">657 45262;</coords></object>
<object type="1" symbol="64"><coords count="5">655 43537;1134 43600;682 47036;226 46976;655 43537 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">952 41199;1588 42033;1468 42927;750 42831;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">952 41199;1588 42033;1468 42927;750 42831;952 41199 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">1950 40084;1813 41123;3298 43060;4304 43179;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">8711 43826;8157 44827;7610 44984;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="6">7661 44793;6329 44590;6180 45904;7316 46095;7932 45015;7661 44793 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">7598 44802;4119 44315;4242 43359;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="13">1994 40119;1864 40738;1813 41123;3298 43060;4231 43253;4237 43398;4119 44315;7598 44802;8031 44863;8157 44827;8622 43986;8577 43729;1994 40119 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">4061 44822 32;5605 45038 32;5377 46669 32;3833 46453 32;4061 44822 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="5">4061 44822 32;5605 45038 32;5377 46669 32;3833 46453 32;4061 44822 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="19">7047 46598;6037 48447 1;5901 48695;5513 48551;5320 48344 1;5039 48041;4881 47872;4599 47570 1;4486 47449;4644 47183;4808 47202 1;5035 47228;5162 47243;5389 47269 1;5653 47300;5889 47120;5931 46857;5998 46419;7047 46598 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">6510 46820;</coords></object>
<object type="0" symbol="84"><coords count="1">6195 47394;</coords></object>
<object type="0" symbol="84"><coords count="1">5838 47967;</coords></object>
<object type="1" symbol="64"><coords count="19">7047 46598;6037 48447 1;5901 48695;5513 48551;5320 48344 1;5039 48041;4881 47872;4599 47570 1;4486 47449;4644 47183;4808 47202 1;5035 47228;5162 47243;5389 47269 1;5653 47300;5889 47120;5931 46857;5998 46419;7047 46598 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">6324 44635;6180 45904;7316 46095;7879 45108;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">3107 43702;3746 43799;3534 45199;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">2755 43648;2308 43580;2190 44355;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="13">1836 46023;1269 45944;1588 43654;1821 43686;1899 43116;2126 42943;2761 43543;2459 43765;2348 44844;2403 44912;2348 45356;2280 46072;1836 46023 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">2427 44875;2367 45362 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">1836 46023;1269 45944;1588 43654;1821 43686;1899 43116;2126 42943;2733 43517 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">6874 48842 32;6513 48645 32;7106 47557 32;7467 47754 32;6874 48842 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">7658 47448 32;7277 47241 32;7499 46833 32;7880 47041 32;7658 47448 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">7559 47115;</coords></object>
<object type="0" symbol="84"><coords count="1">6806 48540;</coords></object>
<object type="1" symbol="64"><coords count="5">6874 48842 32;6513 48645 32;7106 47557 32;7467 47754 32;6874 48842 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">7570 49244 32;8793 49912 32;8274 50861 32;6794 50664 32;7570 49244 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">1131 39941 32;2004 40056 32;2187 38670 32;1314 38555 32;1131 39941 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="64">4897 51180;5752 51293;5818 51112;5891 50555 32;6774 50670;6871 50523;7570 49244 32;7591 49255;7453 49143;6909 48846;6780 48791;6513 48645 32;7106 47557 32;7467 47754 32;7663 47438;7538 47383;7277 47241 32;7499 46833 32;7880 47041 32;9678 43748;8977 43365;8160 44812;7863 45108;7314 46085;6171 45902;5996 46417;6040 46426;7047 46598;6037 48447 1;5901 48695;5513 48551;5320 48344 1;5039 48041;4881 47872;4599 47570 1;4515 47480;4580 47311;4686 47237;4079 47154;3934 48317;4168 48376;4172 48370;4503 48422 1;4596 48436;4644 48535;4629 48628 1;4589 48882;4564 49034;4527 49272;5238 49359 1;5281 49183;5441 49053;5630 49055 1;5851 49058;6028 49239;6026 49460 1;6024 49681;5842 49858;5621 49856 1;5538 49855;5461 49829;5398 49785;5060 50331;4897 51180 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">3834 48920;3834 48920 1;3809 49151;3864 49420;4093 49451 1;4262 49474;4489 49507;4516 49338 1;4560 49061;4585 48905;4629 48628 1;4644 48535;4596 48436;4503 48422;4172 48370;4146 48388;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="17">2583 48752;2561 48975 1;2547 49086;2458 49185;2347 49167 1;1840 49086;1552 49068;1043 48999 1;939 48985;867 48889;881 48785 1;902 48631;913 48544;934 48390 1;957 48222;1164 48201;1333 48219;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="65">4920 50578;5408 49819;5377 49769 1;5284 49695;5224 49580;5226 49451 1;5226 49410;5233 49371;5245 49334;4529 49239;4512 49358 1;4471 49504;4255 49473;4093 49451 1;3858 49419;3806 49137;3836 48902;3859 48866;2593 48743;2577 48817;2561 48975 1;2547 49086;2458 49185;2347 49167 1;1840 49086;1552 49068;1043 48999 1;939 48985;867 48889;881 48785 1;902 48631;913 48544;934 48390 1;957 48222;1164 48201;1333 48219;1618 47565;1834 46041;1279 45943;1588 43654;1821 43686;1899 43116;2126 42943;2752 43535;3316 43064;3298 43060;1813 41123;1864 40738;1994 40119;1797 40027;1156 39947;977 41261;1588 42038;1458 42932;736 42827;668 43531;1119 43611;699 47029;205 46973;137 47547;606 47615;408 49219;-696 49089;-801 49805;4920 50578 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="30">4062 47204;4623 47284;4722 47217 1;4750 47204;4779 47199;4808 47202 1;5035 47228;5162 47243;5389 47269 1;5653 47300;5889 47120;5931 46857;5998 46419;6037 46426;6225 45911;6171 45902;6320 44637;4118 44304;4061 44822 32;5605 45038 32;5377 46669 32;3833 46453 32;3958 45558;3532 45545;3423 46343;3441 46562 1;3520 46825;3794 47040;4064 47139;4062 47204 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="14">2427 44876;2374 45348;3534 45508;3537 45579;3953 45585;4074 44805;4135 44330;4234 43349;3148 43171;2738 43525;2688 43794;3524 43948;3370 44972;2427 44876 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">14958 41825 32;15796 42265 32;15984 41887 32;15146 41447 32;14958 41825 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">14145 44489;</coords></object>
<object type="0" symbol="84"><coords count="1">12813 47215;</coords></object>
<object type="0" symbol="84"><coords count="1">11365 50229;</coords></object>
<object type="1" symbol="115"><coords count="5">13488 41153;8770 49903;9269 50175 32;14034 41451 32;13488 41153 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">8787 49872;13471 41184;11641 40184 32;6909 48846 32;8787 49872 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">11193 51931;11793 50528;11793 50529;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">11054 49789;12301 47242;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">12534 46765;13630 44523;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">13863 44046;14958 41825;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="10">10801 50399 1;11121 50440;11473 50483;11793 50529;11885 50353 1;11945 50238;11841 50114;11721 50065;11054 49789;10801 50399 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">13630 44523 32;14450 44924 32;14683 44447 32;13863 44046 32;13630 44523 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">15149 41439;15978 41884 1;16088 41650;16024 41369;15795 41247;15364 41018;15149 41439 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">12301 47242 32;13121 47643 32;13354 47166 32;12534 46765 32;12301 47242 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">14958 41825 32;15796 42265 32;15984 41887 32;15146 41447 32;14958 41825 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="18">9264 50170;8814 49917;8283 50830;8913 50935;8839 51632;10017 51786;10089 51754;11193 51931;11775 50540;10800 50411;11059 49788;12304 47247;12586 46659;13630 44523;13902 43967;14958 41825;14034 41451 32;9264 50170 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="46">11170 51992;12780 52258;12834 52150 1;12858 52100;12882 52049;12907 51996 1;12955 51895;13030 51799;13129 51836;13175 51711;13881 49895;14438 50028;17941 42583;17980 42411;17760 42308;15985 41446 1;16047 41578;16046 41740;15978 41884;15900 42057;15796 42265 32;14969 41831;14821 42104;13902 43967;13856 44061;13991 44109;14683 44447 32;14450 44924 32;13630 44523 32;13525 44737;12586 46659;12526 46784;12633 46813;13354 47166 32;13121 47643 32;12301 47242 32;12175 47510;11063 49780;11186 49844;11721 50065 1;11841 50114;11945 50238;11885 50353;11793 50529;11719 50675;11170 51992 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="40">-18383 61381;-18494 62134;-18561 64120;-12701 64947;-12677 64845;-12458 63211;-12451 63204;-12492 63162 1;-12741 62793;-12976 62243;-12860 61860 1;-12806 61680;-12753 61700;-12639 61551;-12611 61542;-13268 61443;-13355 61929;-13465 62772 32;-15116 62556;-15405 62760;-15638 62488;-16168 62419 32;-15816 59717;-15731 59072;-15048 53833;-15101 53740;-14951 52197;-14946 52162;-14765 50627 32;-14373 47847;-13978 47884;-13824 47014;-12394 36327;-12970 36239;-13152 36154;-13175 36037;-13160 35932;-13468 35886;-14830 35957;-18383 61381 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">34 914;-12019 914;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">152 -545;158 -1378;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">140 -1785;148 -2889;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">439 -3751;</coords></object>
<object type="0" symbol="84"><coords count="1">1308 -3759;</coords></object>
<object type="1" symbol="132"><coords count="13">1619 -3393 1;1628 -3761;1625 -4139;1631 -4536 1;1652 -5992;918 -6885;-581 -6838;-1994 -6794;-2007 -4892;100 -4877;92 -3689;765 -3007;1619 -3393 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="13">1619 -3393 1;1628 -3761;1625 -4139;1631 -4536 1;1652 -5992;918 -6885;-581 -6838;-1994 -6794;-2007 -4892;100 -4877;92 -3689;765 -3007;1619 -3393 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="13">-14234 987;-32592 962;-32592 -2714;-24820 -4442;-21563 -4491;-12767 -2694;-8868 -2634;-8859 -1456;-425 -1370;99 -1370;186 937;-14235 888;-14234 987 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="30">1557 1050;2196 1046;2195 53;2190 -4523 1;2190 -6333;1139 -7424;-561 -7383 1;-614 -7382;-665 -7380;-715 -7379;-731 -6833;-615 -6837;-472 -6840 1;954 -6841;1651 -5956;1631 -4536 1;1625 -4139;1628 -3761;1619 -3393;765 -3007;92 -3689;100 -4877;-559 -4882;-572 -4271;-443 -4270;-426 -3753;-442 -1362;88 -1362;127 -494;1557 1050 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">-16459 12674;-16426 2012;-17246 2009;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="10">-16739 13703;-24033 13593;-23893 2165;-20125 2235;-20173 13114;-17348 13104;-17246 2009;-16426 2012;-16459 12674;-16739 13703 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-11834 13678;-15436 13652;-15423 11802;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-15419 8897;-15410 6105;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="114"><coords count="1">-14797 2808;</coords></object>
<object type="1" symbol="109"><coords count="4">-15411 6114;-15406 2558 32;-15406 2183 32;-11555 2188;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-15428 11818;-15419 8897;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-11834 13678;-8633 13701;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-8653 13901;-7850 13912;-7813 2040;-8633 2037;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">-15485 2043;-8541 2037;-7813 2040;-7850 13912;-8653 13901;-15467 13820;-15485 2043 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-6719 4039;-6716 2188;1837 2202;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-6925 13755;-3714 13759;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-6734 13566;-6719 4039;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">1623 5535;1624 4663;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">1618 2387;1615 4676;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="11">1618 5521;1610 12270 1;1610 12420;1587 12565;1546 12702 33;1360 13315;790 13761;116 13760;-50 13760 32;-2345 13757 32;-3725 13755;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="15">-6720 2166;1638 2183;1610 11936;1610 12270 1;1610 12420;1587 12565;1546 12702 33;1360 13315;790 13761;116 13760;-50 13760 32;-2345 13757 32;-3725 13755;-6772 13786;-6720 2166 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="34">-17390 1024;-17427 2011;-17068 2010;-16426 2012;-16459 12674;-16632 13674;-21099 13622;-21116 14208;-20139 14209;363 14412 1;1238 14411;2213 13560;2212 12685;2198 2019;1565 2211;1612 10412;1610 12270 1;1610 12420;1587 12565;1546 12702 33;1360 13315;790 13761;116 13760;-50 13760 32;-2345 13757 32;-3725 13755;-6809 13692;-6774 2002;-7813 2040;-7850 13912;-8653 13901;-15550 13779;-15498 1025;-17390 1024 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="9">-15568 2037;-15603 990;2193 921;2198 2177;1652 2229;-7813 2159;-7813 2040;-8633 2037;-15568 2037 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">23488 -17737;19464 -17649;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">26077 -17754;28115 -17802;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">30749 -17775;33010 -17828;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">19162 -17670;33207 -17880;32632 -26307;18639 -25452;19162 -17670 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">28299 -10788;28328 -9546;29613 -9576 1;30319 -9592;30930 -10125;30914 -10831;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">26276 -10739;26330 -8450 1;25304 -8664;24735 -8776;23694 -8897;23654 -10667;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">26276 -10739;26330 -8450 1;25304 -8664;24735 -8776;23694 -8897;23654 -10667;26276 -10739 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="7">28299 -10788;28328 -9546;29613 -9576 1;30319 -9592;30930 -10125;30914 -10831;28299 -10788 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">33281 -7193;</coords></object>
<object type="0" symbol="84"><coords count="1">31813 -7489;</coords></object>
<object type="1" symbol="63"><coords count="22">34490 -7354 1;35292 -7278;35887 -7222;36415 -6613 1;36914 -6037;37643 -5668;38290 -6070 1;38702 -6326;38886 -6983;38512 -7292 1;37277 -8313;36111 -8624;34539 -8316 1;34249 -8259;33968 -8217;33885 -7933 1;33832 -7749;33849 -7519;34033 -7465 1;34209 -7413;34307 -7371;34490 -7354 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="38">37966 -5256 1;34264 -6452;32110 -7114;28336 -8058;28330 -8197 1;29259 -8215;29779 -8260;30708 -8300 1;31629 -8340;32313 -8493;32883 -9217;41421 -8165;40332 -6072 1;39872 -5188;38914 -4950;37966 -5256 18;38290 -6070 1;38702 -6326;38886 -6983;38512 -7292 1;37277 -8313;36111 -8624;34539 -8316 1;34249 -8259;33968 -8217;33885 -7933 1;33832 -7749;33849 -7519;34033 -7465 1;34209 -7413;34307 -7371;34490 -7354 1;35292 -7278;35887 -7222;36415 -6613 1;36914 -6037;37643 -5668;38290 -6070 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="11">40962 -13427;43997 -13365;41234 -8369;33079 -9380;33042 -10108;33227 -10133;33252 -11811;34522 -11823;34502 -13710;35488 -13693;40962 -13427 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-2273 -9414;-765 -9474;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-769 -9312;2293 -9390;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">6396 -9606;2269 -9556;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">6396 -9606;8091 -9594;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">8091 -9594;9541 -9599;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">9541 -9599;12606 -9550;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">15726 -9526;12606 -9550;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">15726 -9526;17010 -9507;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">17010 -9507;18811 -9477;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">18811 -9477;20391 -9410;20378 -10705;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="15">-11446 -12938;-11421 -9853;-11403 -9677 1;-11284 -9337;-10958 -9093;-10581 -9108;-8446 -9191;-1251 -9336;-668 -9315;2293 -9390;7075 -9654;17247 -9497;20335 -9427;20318 -13492;-11446 -12938 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="34">26331 -8060 1;24533 -8435;23069 -8598;20879 -8709 1;16304 -8942;13770 -8820;9190 -8919 1;4796 -9014;2347 -8930;-2047 -8813 1;-2060 -8813;-2074 -8812;-2087 -8812;-2323 -8802;-2367 -9259;-720 -9313;2293 -9390;8209 -9494;16462 -9406;20405 -9354;20370 -10750;21609 -10750;21505 -16120;20199 -16116;20187 -16612;19202 -16600;19185 -17516;23512 -17673;23658 -10489;23694 -8897 1;24735 -8776;25304 -8664;26330 -8450;26331 -8060 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="50">40895 -7190;41351 -6974;41347 -6910 1;41123 -6473;40890 -6018;40647 -5541 1;40215 -4692;38798 -4498;37573 -4879 1;34307 -5894;32347 -6556;29328 -7341;29054 -7412 1;28774 -7484;28485 -7557;28185 -7632 1;27487 -7806;26861 -7951;26271 -8073;26264 -8460;26338 -8442;26252 -10842;26079 -17664;28176 -17714;28302 -10646;28328 -9546;29613 -9576 1;30319 -9592;30930 -10125;30914 -10831;30693 -17714;32914 -17751;33160 -10139;32889 -9251;32802 -9118 1;32248 -8479;31586 -8338;30708 -8300 1;29779 -8260;29259 -8215;28330 -8197;28336 -8058 1;32110 -7114;34264 -6452;37966 -5256 1;38914 -4950;39872 -5188;40332 -6072;40768 -6926;40895 -7190 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">11980 39455 32;14384 40769 32;14685 40219 32;12281 38905 32;11980 39455 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">13916 40136;</coords></object>
<object type="0" symbol="84"><coords count="1">12678 39490;</coords></object>
<object type="1" symbol="64"><coords count="5">11980 39455 32;14384 40769 32;14685 40219 32;12281 38905 32;11980 39455 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">12907 37796;15121 38994;18659 32456;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">17785 32218;18400 32551;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">12428 36391 32;11958 37260 32;12489 37547 32;12959 36678 32;12428 36391 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="7">12952 36644 32;12467 37540 32;15005 38915 32;18406 32639 32;17795 32308 32;14879 37688 32;12952 36644 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">12931 37780;11989 37269;12457 36406;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">11599 36132;11194 36880;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">12562 34193;12080 35054;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="9">10111 34855 1;9373 34421;8925 34239;8175 33826 1;7239 33311;6641 33107;5584 32953;2879 32535;3281 29569;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">9981 34997;9592 35823 1;9535 35943;9393 35994;9273 35938 1;9171 35890;9126 35768;9174 35666;9589 34783;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">8006 33956;7612 34793 1;7555 34913;7413 34964;7293 34908 1;7191 34860;7146 34738;7194 34636;7609 33753;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">5434 33117;5286 33993 1;5268 34099;5162 34169;5056 34151 1;4949 34133;4846 34026;4864 33919;5008 33062;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="10">9981 34997;9592 35823 1;9535 35943;9393 35994;9273 35938 1;9171 35890;9126 35768;9174 35666;9589 34783;9981 34997 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="10">8008 33954;7612 34793 1;7555 34913;7413 34964;7293 34908 1;7191 34860;7146 34738;7194 34636;7609 33753;8008 33954 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="10">5434 33117;5286 33993 1;5268 34099;5162 34169;5056 34151 1;4949 34133;4846 34026;4864 33919;5008 33062;5434 33117 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">10016 34987;11246 35615;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="4">3243 29229;3308 28750;2212 28601;2326 27764;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">3343 29236;3692 29287;3778 28696;3424 28644;3343 29236 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">3892 28006 32;4882 28150 32;4798 28728 32;3808 28584 32;3892 28006 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="18">4815 28716;3790 28550;3690 29274;3158 29213;3123 29549;3246 29825;2879 32535;5584 32953 1;6641 33107;7239 33311;8175 33826;10002 34972;11311 35644;11952 34990;12445 34096;6930 31146;4537 30813;4815 28716 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">2957 30550;1858 30401;1923 29919;3020 30067;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">2673 32684;2511 33738;2008 33661 1;1689 33613;1470 33314;1519 32995;1633 32251;2695 32414;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="9">2673 32684;2511 33738;2008 33661 1;1689 33613;1470 33314;1519 32995;1633 32251;2695 32414;2673 32684 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">2957 30550;1858 30401;1923 29919;3020 30067;2957 30550 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">12900 33848 32;13650 34268 32;14535 32685 32;13785 32266 32;12900 33848 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="5">11412 39051;10072 38340;9433 39545;10682 40208;10921 39756;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">9511 39183;6704 37694;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">7101 36598;</coords></object>
<object type="1" symbol="73"><coords count="5">8250 38393;8712 37522;8294 37300;7835 38166;8250 38393 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">10044 41469 32;10305 40996 32;8776 40153 32;8515 40626 32;10044 41469 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">8048 40368 32;8309 39895 32;5392 38286 32;5131 38759 32;8048 40368 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">4697 38518 1;4829 38279;4847 37958;4609 37824 1;4430 37723;4332 37644;4130 37606 1;3808 37545;3627 37510;3305 37449 1;3189 37427;3105 37489;3035 37584;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">10044 41469 32;10305 40996 32;8776 40153 32;8515 40626 32;10044 41469 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">8048 40368 32;8309 39895 32;5392 38286 32;5131 38759 32;8048 40368 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="14">4697 38518 1;4829 38279;4847 37958;4609 37824 1;4430 37723;4332 37644;4130 37606 1;3808 37545;3627 37510;3305 37449 1;3189 37427;3105 37489;3035 37584;4697 38518 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">8652 38781 32;8449 39163 32;8081 38968 32;8284 38586 32;8652 38781 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">7797 38397 32;7621 38728 32;5478 37590 32;5654 37259 32;7797 38397 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">5704 36118;5232 37007;2369 36513 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">1546 36352;-2204 35741;-2432 37307 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="23">1500 37304;1761 35290 1;1547 35255;1201 35261;1164 35475;1069 36115;-96 35919;23 35023;-446 34960;-563 35852;-2064 35609;-1969 35033 1;-1941 34863;-2070 34757;-2240 34729;-2544 34692;-2649 35578;-2309 35634;-2558 37222;-2852 37174;-5070 53124;-3902 53279;-3485 50117 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="9">-2068 35639;-1969 35033 1;-1941 34863;-2074 34761;-2244 34733;-2525 34692;-2649 35578;-2309 35634;-2068 35639 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">1472 37277 32;1609 36245 32;987 36162 32;850 37194 32;1472 37277 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">1601 36537;2347 36659;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">1639 36199;2416 36321;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="9">1057 36216;1611 36307;1667 36014;1761 35290 1;1547 35255;1201 35261;1164 35475;1071 36099;1057 36216 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="7">-575 35928;-91 35993;-89 35865;23 35023;-446 34960;-523 35546;-575 35928 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">-5096 38866;-4306 38984;-4402 39796;-5070 39608;-4982 39481;-5135 39194;-5096 38866 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-7150 36995;-7975 35873;-8692 35764;-8843 36756;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-7150 36995;-7975 35873;-8692 35764;-8843 36756;-7150 36995 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-4847 37278;-4071 37391;-4312 38983;-5082 38868;-4847 37278 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="6">-5017 37277;-5096 36305;-5176 36285;-5456 36244;-6560 37067;-5017 37277 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">-5048 37264;-4075 37426;-3953 36466;-5117 36305;-5048 37264 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="18">-3843 35855;-9468 35123;-10106 34303 1;-9907 34142;-9769 34067;-9631 33852;-9076 33926;-9202 34870;-7034 35159;-6911 34239;-6530 34290;-6652 35202;-4133 35539;-4043 34868 1;-4019 34693;-3859 34571;-3684 34594;-3843 35855 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="18">-3807 35845;-9432 35113;-10070 34293 1;-9871 34132;-9733 34057;-9595 33842;-9040 33916;-9166 34860;-6998 35149;-6875 34229;-6494 34280;-6616 35192;-4097 35529;-4007 34858 1;-3983 34683;-3823 34561;-3648 34584;-3807 35845 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="14">-9578 36699;-9551 36500;-10060 35831;-9965 35128;-10345 34629 1;-11028 35149;-11752 35198;-12533 34842;-12700 35058;-13076 35700 1;-13184 35875;-13230 36194;-13027 36224;-12404 36317;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="15">-9578 36699;-9551 36500;-10060 35831;-9965 35128;-10345 34629 1;-11028 35149;-11752 35198;-12533 34842;-12700 35058;-13076 35700 1;-13184 35875;-13230 36194;-13027 36224;-12404 36317;-9578 36699 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">-13877 34647;-13842 34424;-13520 34190;-13267 34406;-13470 35887;-14821 35936;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="9">-13877 34647;-13842 34424;-13520 34190;-13267 34406;-13470 35887;-14821 35936;-14774 35557;-14052 35594;-13877 34647 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="6">-10997 76099;-20134 74789;-18828 64936 32;-18724 64156 32;-15017 36197;-14861 35024 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="27">-13388 30562;-13417 30778;-13280 30960 1;-12740 30520;-11988 30296;-11247 30427 1;-10265 30602;-9722 31218;-9480 32186;-670 33346 1;-337 33390;-107 33079;-53 32748;21 32125;-1133 31988;-898 30072;262 30214;327 29685;-832 29543;-620 27815;561 27960;628 27412;-814 27236;-892 27871;-1328 27817;-1274 27379;-1494 27352 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">-13768 30531;-13817 30906;-13562 31237 1;-13796 31518;-13962 31849;-14022 32215 1;-14129 32861;-14176 33346;-13790 33874;-14206 34178;-14269 34584 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="14">-13768 30531;-13817 30906;-13562 31237 1;-13796 31518;-13962 31849;-14022 32215 1;-14129 32861;-14176 33346;-13790 33874;-14206 34178;-14269 34584;-14684 34542;-14151 30463;-13768 30531 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">-12864 29516;-12555 29556;-12690 30597;-12759 30634 1;-12947 30722;-13123 30832;-13280 30960;-13417 30778;-13389 30566;-13043 30589;-12864 29516 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">-12658 30576;-12526 29554;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">-1613 33191;-2495 32550;-3340 32988;-3606 32951;-4716 32001;-6517 32581;-1613 33191 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="12">-1851 30119;-1579 30391;-1691 31303;-2465 31213;-10060 30328;-11435 29687;-12456 29579;-13986 29400;-13489 25830;-11430 26092;-11744 28814;-1851 30119 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">-11638 32113 1;-11995 32060;-12327 32306;-12380 32663 1;-12433 33019;-12187 33351;-11830 33404 1;-11474 33457;-11142 33211;-11089 32855 1;-11036 32498;-11282 32166;-11638 32113 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-11731 32748;</coords></object>
<object type="1" symbol="64"><coords count="13">-11638 32113 1;-11995 32060;-12327 32306;-12380 32663 1;-12433 33019;-12187 33351;-11830 33404 1;-11474 33457;-11142 33211;-11089 32855 1;-11036 32498;-11282 32166;-11638 32113 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="44">-1549 27329;-1898 30094;-1834 30136;-1579 30391;-1691 31303;-2465 31213;-10060 30328;-11435 29687;-12456 29579;-12544 29569;-12617 30572 1;-12194 30404;-11718 30344;-11247 30427 1;-10265 30602;-9722 31218;-9480 32186;-6452 32568;-6323 32518;-4716 32001;-3606 32951;-3340 32988;-2495 32550;-1613 33191;-1337 33258;-670 33346 1;-337 33390;-107 33079;-53 32748;21 32125;-1133 31988;-898 30072;262 30214;327 29685;-832 29543;-620 27815;561 27960;628 27412;-814 27236;-892 27871;-1328 27817;-1274 27379;-1416 27362;-1549 27329 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-9879 39055 32;-9170 39151 32;-8940 37460 32;-9649 37364 32;-9879 39055 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="52">-4419 39767;-3222 39896;-3207 39726;-2852 37174;-2558 37222;-2309 35634;-2649 35578;-2544 34692;-2483 34699;-2275 33135;-9480 32186 1;-9722 31218;-10265 30602;-11247 30427 1;-11289 30420;-11331 30413;-11374 30408;-11591 32122 1;-11261 32196;-11038 32514;-11089 32855 1;-11104 32958;-11143 33052;-11199 33131;-10106 34303 1;-9907 34142;-9769 34067;-9631 33852;-9076 33926;-9202 34870;-7034 35159;-6911 34239;-6530 34290;-6652 35202;-4133 35539;-4043 34868 1;-4019 34693;-3859 34571;-3684 34594;-3843 35855;-8616 35234;-8692 35765;-8692 35764;-7975 35873;-7150 36995;-6806 36792;-6595 37085;-6451 36986;-5456 36244;-3945 36467;-4286 38931;-4419 39767 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="67">-9655 37361;-8949 37461;-8687 35777;-8600 35250;-8734 35218;-9468 35123;-10106 34303 1;-10097 34296;-10088 34289;-10080 34282;-11157 33062 1;-11169 33086;-11184 33109;-11199 33131;-11289 33235 1;-11429 33366;-11626 33434;-11830 33404 1;-12187 33351;-12433 33019;-12380 32663 1;-12327 32306;-11995 32060;-11638 32113 1;-11610 32117;-11582 32123;-11555 32131;-11343 30401;-11482 30397 1;-12145 30346;-12797 30567;-13280 30960;-13417 30778;-13388 30562;-13768 30497;-13781 30632;-13817 30906;-13562 31237 1;-13796 31518;-13962 31849;-14022 32215 1;-14129 32861;-14176 33346;-13790 33874;-14206 34178;-14269 34584;-13881 34632;-13858 34525;-13842 34424;-13520 34190;-13267 34406;-13470 35887;-13175 35940;-13139 35839 1;-13123 35789;-13101 35740;-13076 35700;-12700 35058;-12533 34842 1;-11752 35198;-11028 35149;-10345 34629;-9965 35128;-10060 35831;-9551 36500;-9578 36699;-9655 37361 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="33">-7735 46820 1;-7764 47056;-8003 47282;-8240 47244 1;-8552 47194;-8712 47169;-9024 47119 1;-9351 47067;-9608 46633;-9572 46327;-9419 45411 1;-9363 45078;-8989 44715;-8699 44753;-8120 44830;-8161 45140;-8733 45052 1;-8928 45022;-9070 45206;-9100 45401 1;-9158 45778;-9217 45985;-9267 46363 1;-9295 46576;-9183 46792;-8971 46826 1;-8680 46873;-8516 46899;-8225 46946 1;-8124 46962;-8020 46885;-8011 46783;-7735 46820 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">9644 43757 32;8944 43374 32;9775 41855 32;10475 42238 32;9644 43757 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="7">2403 36394;2572 35417 1;2818 35459;3125 35546;3088 35793;2983 36495;2403 36394 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">2984 36488;5159 36856;5586 36023;5852 36167;5316 37170;2367 36668;2572 35417 1;2818 35459;3125 35546;3088 35793;2984 36488 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">18495 36807 32;17571 36301 32;17824 35840 32;18748 36346 32;18495 36807 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">18495 36807 32;17571 36301 32;17824 35840 32;18748 36346 32;18495 36807 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">18139 36313;</coords></object>
<object type="0" symbol="84"><coords count="1">19782 33314;</coords></object>
<object type="1" symbol="64"><coords count="5">20138 33808 32;19214 33302 32;19467 32841 32;20391 33347 32;20138 33808 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">20138 33808 32;19214 33302 32;19467 32841 32;20391 33347 32;20138 33808 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">20348 32281;</coords></object>
<object type="1" symbol="64"><coords count="5">20704 32775 32;19780 32269 32;20076 31729 32;21000 32235 32;20704 32775 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">20704 32775 32;19780 32269 32;20092 31701 32;21016 32207 32;20704 32775 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">21916 29419;</coords></object>
<object type="1" symbol="64"><coords count="5">22272 29913 32;21348 29407 32;21601 28946 32;22525 29452 32;22272 29913 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">22272 29913 32;21348 29407 32;21601 28946 32;22525 29452 32;22272 29913 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">23585 27518 32;22661 27012 32;22914 26551 32;23838 27057 32;23585 27518 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">23229 27024;</coords></object>
<object type="1" symbol="64"><coords count="5">23585 27518 32;22661 27012 32;22914 26551 32;23838 27057 32;23585 27518 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">23047 26614;23661 25494;24702 26064;25459 24683;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">25113 24171;</coords></object>
<object type="1" symbol="132"><coords count="5">25469 24665 32;24545 24159 32;24798 23698 32;25722 24204 32;25469 24665 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">25469 24665 32;24545 24159 32;24798 23698 32;25722 24204 32;25469 24665 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">26851 22054 32;25927 21548 32;26180 21087 32;27104 21593 32;26851 22054 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">26851 22054 32;25927 21548 32;26180 21087 32;27104 21593 32;26851 22054 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">26495 21560;</coords></object>
<object type="1" symbol="132"><coords count="5">28535 19036 32;27611 18530 32;27864 18069 32;28788 18575 32;28535 19036 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">28535 19036 32;27611 18530 32;27864 18069 32;28788 18575 32;28535 19036 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">28179 18542;</coords></object>
<object type="1" symbol="132"><coords count="5">28283 19495 32;27359 18989 32;27612 18528 32;28536 19034 32;28283 19495 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">27359 18989;26180 21087;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">26015 21594;24886 23744;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">22783 27084;21754 29043;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">21509 29508;20253 31798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">19346 33382;17933 35908;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">17658 36363;16527 38732;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">20391 33347;20704 32775;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">16120 30345 32;15767 30997 32;17858 32130 32;18211 31478 32;16120 30345 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="102">17721 42356;16000 41517;15895 41314;15346 40999;16080 39549;16217 39579;16484 39693 1;16715 39808;16997 39720;17113 39489;17283 39099;16530 38729;17659 36360;17744 36396;18495 36807 32;18748 36346 32;17943 35905;18017 35758;19346 33382;19473 33444;20138 33808 32;20391 33347;20462 33217;20704 32775;20827 32551;21016 32207 32;20253 31789;20371 31584;21509 29508;21651 29573;22272 29913 32;22525 29452 32;21743 29024;21891 28782;22783 27084;22885 27135;23585 27518 32;23838 27057 32;23034 26617;23107 26505;23661 25494;24702 26064;25459 24683;25532 24551;25722 24204 32;24885 23746;24993 23540;26015 21594;26158 21675;26851 22054 32;27104 21593 32;26180 21087;26342 20799;27359 18989;27490 19061;28283 19495 32;28536 19034;28787 18577;30872 18148;31977 18669;31083 20566;30310 20140 32;30057 20601;29897 20882;29031 22424;28943 22584;28778 22885 32;29544 23305;29356 23599;28334 25321;28189 25253;27551 24904 32;27298 25365 32;28072 25789;27913 26014;26538 28306;25881 27965;25744 27890 32;25491 28351 32;26221 28760;26080 29024;25162 30590;24379 30176;24378 30175 32;24125 30636 32;24047 30786;23179 32258;23085 32428;22926 32719 32;23706 33146;22856 34666;22089 34246 32;21836 34707 32;22617 35135;21727 36761;20945 36333 32;20692 36794 32;21474 37222;19986 39969;19346 39618 32;19093 40079;17721 42356 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="7">16117 39536;16335 39100;17113 39489 1;16997 39720;16715 39808;16484 39693;16117 39536 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="37">14008 41476;14939 41877;15377 40995;16124 39545;16556 38675;17655 36368;17585 36316;17838 35827;17951 35897;19347 33376;19269 33332;19214 33302 32;19467 32841 32;20391 33347 32;20381 33364;20700 32774;20578 32706;19780 32269 32;20076 31729 32;20234 31816;21502 29503;21449 29462;21348 29407 32;21601 28946 32;21768 29037;22770 27072;22661 27012 32;22914 26551 32;23028 26613;23648 25499;23002 25141;20438 29529;19068 31946;18196 31492;17838 32147;18645 32657;14008 41476 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="58">14022 41454;14414 40791;14307 40727;11980 39455 32;12093 39249;11422 38968;11125 39055;10611 39980;9677 39483;9695 39343;8630 38837;8591 38896;8449 39163 32;8081 38968 32;8267 38617;7797 38397 32;7621 38728 32;5478 37590 32;5654 37259 32;5664 37265;6162 36342;5847 36176;5316 37170;2367 36668;2572 35417;1761 35291;1500 37304;1320 38549;2166 38662;2323 37240;3021 37633;3078 37533 1;3139 37468;3212 37431;3305 37449 1;3627 37510;3808 37545;4130 37606 1;4332 37644;4430 37723;4609 37824 1;4847 37958;4829 38279;4697 38518;5124 38810;5181 38669;5392 38286 32;8309 39895 32;8048 40368 32;8526 40634;8571 40524;8776 40153 32;10305 40996 32;10044 41469 32;9799 41855;10471 42247;11640 40154;14022 41454 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="99">15206 39226;14701 40231;12270 38905;12067 39275;11363 39010;10093 38350;9544 39164;8242 38424;8280 38336;8712 37522;8294 37300;7835 38166;7804 38171;6737 37610;7094 36894;6169 36389;5861 36179;5573 36048;5159 36856;2984 36488;3088 35793 1;3125 35546;2818 35459;2572 35417;2569 35435;1764 35315;1695 35281 1;1482 35258;1197 35282;1164 35475;1069 36115;-96 35919;23 35023;-446 34960;-563 35852;-2064 35609;-1969 35033 1;-1941 34863;-2070 34757;-2240 34729;-2544 34692;-2338 33125;-2199 33145;-670 33346 1;-337 33390;-107 33079;-53 32748;18 32149;1624 32268;1606 32404;1574 32636;1519 32995 1;1470 33314;1689 33613;2008 33661;2511 33738;2673 32684;3023 32650;5028 33002;4999 33114;4864 33919 1;4846 34026;4949 34133;5056 34151 1;5162 34169;5268 34099;5286 33993;5434 33117;5614 33070;6804 33255;7649 33681;7587 33800;7194 34636 1;7146 34738;7191 34860;7293 34908 1;7413 34964;7555 34913;7612 34793;8001 33967;8081 33915;9611 34748;9559 34846;9174 35666 1;9126 35768;9171 35890;9273 35938 1;9393 35994;9535 35943;9592 35823;9981 34997;10011 34981;11295 35647;11800 35912;12905 33863;13614 34258;11992 37281;12954 37805;15206 39226 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">11118 39071;11371 39205;11518 38927;10014 38130;9521 39060;8251 38390;8712 37522;8294 37300;7836 38163;6759 37589 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">10806 39671;11072 39819;10735 40425;9234 39590;9400 39292;8632 38864;8449 39192;8047 38968;8215 38667;7784 38426;7608 38740;5525 37573;5668 37318;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="8">-21488 20374;-23910 20047 32;-23601 17763 1;-23453 16672;-22327 16155;-21226 16160;-19673 16172 32;-19863 17543 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-20576 18146;-18895 18374;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-19721 18127;-19459 16196;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-19063 17068 32;-18104 17198 32;-18038 16710 32;-18997 16580 32;-19063 17068 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-19283 16500;-19027 16535;-19131 17301;-19393 17265;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">-19354 16517 32;-19055 16558 32;-19153 17272 32;-19452 17231 32;-19354 16517 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-20591 18325;-20534 17906;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-18916 18553;-18859 18134;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="3">-19258 16162;-14595 16174 32;-14810 17869;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-15272 16732;</coords></object>
<object type="1" symbol="132"><coords count="4">-14740 17837;-15209 21217;-16122 21550;-16159 21772;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-16322 21740;-16734 24798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="12">-16471 21732 1;-16404 21204;-16120 20956;-16088 20425 1;-16038 19598;-16330 19143;-16310 18315;-18309 18216;-18383 18648;-19198 24496;-16892 24808;-16471 21732 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="41">-20778 36401 32;-23598 36028 32;-21252 18274 32;-18431 18647 32;-18454 18820;-18136 18862 32;-18263 19829 32;-18582 19787;-18721 20839;-18402 20881 32;-18604 22419 32;-18924 22377;-19067 23455;-18746 23497 32;-18873 24464 32;-19194 24422;-19228 24677;-18907 24719 32;-19034 25686 32;-19356 25643;-19495 26695;-19173 26738 32;-19375 28276 32;-19698 28233;-19841 29311;-19517 29354 32;-19644 30321 32;-19969 30278;-20006 30561;-19681 30604 32;-19808 31571 32;-20134 31528;-20273 32580;-19947 32623 32;-20149 34161 32;-20476 34118;-20619 35196;-20291 35239 32;-20418 36206 32;-20746 36163;-20778 36401 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="108"><coords count="3">-24341 32159;-24276 31678 32;-23700 27422;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-19212 24546;-13733 25266;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="32">-16161 21819;-16492 21767;-16462 21672 1;-16382 21184;-16119 20935;-16088 20425 1;-16038 19598;-16330 19143;-16310 18315;-18309 18216;-18381 18639;-18909 18574;-18900 18432;-18859 18134;-19528 18077;-19406 17266;-19135 17318;-19092 17091;-18933 17086;-18104 17198 32;-18038 16710 32;-18997 16580 32;-19083 16515;-19284 16498;-19231 16201;-14678 16219;-14739 17868;-14758 17970;-15209 21217;-16122 21550;-16128 21586;-16161 21819 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-18393 18616;-18366 18552;-18309 18216;-16310 18315 1;-16330 19143;-16038 19598;-16088 20425 1;-16120 20953;-16401 21201;-16470 21723;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="12">-14205 29164 1;-14636 28978;-14701 28506;-14637 28041 1;-14548 27396;-14543 27027;-14415 26388 1;-14333 25977;-14034 25818;-13995 25401;-13724 25426;-14205 29164 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="8">-14266 29470 1;-14608 29576;-14771 29877;-14771 30235 1;-14771 30493;-14620 30613;-14475 30827;-14266 29470 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="9">-17473 53801 1;-17810 53580;-17929 53202;-17897 52801;-15147 32020 1;-15106 31711;-14847 31471;-14537 31505;-17473 53801 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="8">-14686 30514;-14695 30519 1;-14741 30438;-14771 30350;-14771 30235 1;-14771 29995;-14698 29780;-14546 29633;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="11">-14476 28953;-14480 28955 1;-14662 28722;-14684 28380;-14637 28041 1;-14548 27396;-14543 27027;-14415 26388 1;-14358 26104;-14198 25940;-14091 25728;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="17">-33774 13716;-37719 13698 1;-37711 13021;-37614 12645;-37483 11980 1;-37408 11596;-37160 11127;-36769 11124 1;-35614 11116;-34913 11107;-33758 11107;-33774 13716 18;-34709 12742 32;-34706 12049 32;-35396 12046 32;-35399 12739 32;-34709 12742 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-13205 21917 32;-14426 21755 32;-14863 25056 32;-13642 25218 32;-13205 21917 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">-12560 16334;-13579 16365;-13710 17307;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">-14393 21751;-13799 17276;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="3">-13570 25291;-14183 29910 32;-14861 35024 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-13124 21925;-13570 25291 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-14388 21755;-13216 21915;-12513 16450;-13673 16499;-14388 21755 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="20">-20236 15666;-20219 16111;-19669 16190;-19268 16277;-19207 16172;-14584 16172;-14749 17882;-14758 17968;-14758 17970;-15209 21217;-16122 21550;-16128 21586;-16161 21819;-16187 21815;-16572 24747;-14819 25000;-13659 16192;-12511 16216;-12400 15688;-20236 15666 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-12360 16163;-13124 21925 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="23">-1093 23897;-427 23981;-761 26630;689 26813;756 26286;-277 26155;-16 24099;1038 24233;1815 18125;2204 18174;2387 16720 1;185 16681;-1050 16770;-3252 16818 1;-3465 16823;-3679 16945;-3679 17158 1;-3679 17386;-3679 17515;-3679 17743 1;-3679 17961;-3432 18019;-3217 18057 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-923 22688 32;363 22852 32;972 18064 32;-314 17900 32;-923 22688 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="10">-2995 17564 1;-2963 17358;-2847 17306;-2638 17302 1;-1551 17280;-1003 17299;84 17310 1;494 17314;872 17655;816 18061;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-3495 20628 32;-3254 18732 32;-4354 18592 32;-4364 20517 32;-3495 20628 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-1249 26591;-1009 24704;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-1954 26449 32;-2063 27309 32;-3917 27074 32;-3808 26214 32;-1954 26449 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">-6289 26728 1;-6254 26482;-6089 26235;-5844 26274 1;-5709 26296;-5617 26358;-5565 26484;-4510 26632;-4553 26963;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="10">-6289 26728 1;-6254 26482;-6089 26235;-5844 26274 1;-5709 26296;-5617 26358;-5565 26484;-4510 26632;-4553 26963;-6289 26728 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-3594 21735;-5281 23054;-5570 25479;-5103 26076;-4235 26194 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-5833 22814;-5690 23016;-5701 23106;-5962 25264;-7975 25046 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="6">-3594 21735;-5281 23054;-5570 25479;-5103 26076;-4235 26194;-3594 21735 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-8163 25054;-7827 22534;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="7">-8264 24198 1;-8597 24088;-8820 23838;-8790 23575 1;-8760 23305;-8474 23108;-8114 23082 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="7">-7686 23133 1;-7346 23240;-7117 23494;-7147 23760 1;-7178 24036;-7478 24237;-7852 24254 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">-8798 23544 1;-8739 23133;-8321 22852;-7863 22917 1;-7406 22982;-7082 23368;-7140 23780 1;-7199 24191;-7617 24472;-8075 24407 1;-8533 24342;-8856 23956;-8798 23544 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="13">-9462 23452 1;-9377 22834;-8643 22425;-7821 22537 1;-6999 22648;-6400 23239;-6485 23858 1;-6569 24476;-7304 24885;-8126 24773 1;-8948 24660;-9547 24069;-9462 23452 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">-8359 24996;-9556 24843;-9836 24477;-10386 24898 1;-10426 25195;-10562 25391;-10831 25523;-10196 26220;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">-12913 24671 1;-12853 24322;-12473 24099;-12066 24169 1;-11659 24241;-11380 24581;-11441 24930 1;-11501 25279;-11881 25502;-12288 25432 1;-12695 25360;-12974 25019;-12913 24671 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="34" rotation="-3.17606"><coords count="1">-12197 24384;</coords></object>
<object type="0" symbol="34" rotation="-0.84593"><coords count="1">-11686 24623;</coords></object>
<object type="1" symbol="103"><coords count="7">-12746 24960 1;-12609 25141;-12491 25255;-12266 25288 1;-12072 25317;-11899 25278;-11738 25165;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">-12913 24671 1;-12853 24322;-12473 24099;-12066 24169 1;-11659 24241;-11380 24581;-11441 24930 1;-11501 25279;-11881 25502;-12288 25432 1;-12695 25360;-12974 25019;-12913 24671 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-10759 23249;</coords></object>
<object type="1" symbol="64"><coords count="24">-11405 23755;-11283 22560 1;-11269 22427;-11151 22330;-11018 22344 1;-10753 22371;-10605 22387;-10340 22415 1;-10205 22429;-10108 22550;-10122 22685 1;-10172 23160;-10199 23427;-10248 23902 1;-10263 24050;-10395 24157;-10543 24142 1;-10809 24115;-10959 24100;-11225 24073 1;-11337 24062;-11418 23962;-11407 23850;-11405 23755 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">-4485 20695 1;-4478 21501;-4860 22059;-5584 22413;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="15">-12912 21079;-11290 21279;-11320 21519 1;-11334 21634;-11274 21758;-11159 21768 1;-10163 21855;-9602 21647;-8603 21611 1;-7987 21589;-7653 21756;-7041 21829 1;-6547 21887;-5956 21861;-5652 22235 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-10483 18366;-12629 18356;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="24">-4516 20660;-4547 21234 1;-4675 21731;-4998 22104;-5500 22370;-5688 22194 1;-6001 21863;-6566 21885;-7041 21829 1;-7653 21756;-7987 21589;-8603 21611 1;-9602 21647;-10163 21855;-11159 21768 1;-11274 21758;-11334 21634;-11320 21519;-11290 21279;-12912 21079;-12568 18436;-10509 18488;-10483 20634;-4516 20660 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">-13415 24086;-12712 23926;-12391 21125;-13033 21051;-13415 24086 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="18">-10823 25530;-11793 25369 1;-11936 25437;-12110 25463;-12288 25432 1;-12695 25360;-12974 25019;-12913 24671 1;-12888 24528;-12841 24418;-12729 24328;-12713 23926;-13285 24056;-13489 25830;-11430 26092;-11333 26064;-10210 26212;-10823 25530 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-7129 26640;-7744 25849;-8763 25721;-9540 26325;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-7129 26640;-7744 25849;-8763 25721;-9540 26325;-7129 26640 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="47">-3476 20640;-4365 20517;-4488 20842 1;-4525 21539;-4874 22038;-5500 22370;-5512 22528;-5833 22814;-5690 23016;-5701 23106;-5962 25264;-7825 25062;-7985 25077;-8384 25020;-9535 24846;-9556 24843;-9836 24477;-10386 24898 1;-10426 25195;-10562 25391;-10831 25523;-10196 26220;-9808 25980;-9507 26294;-8763 25721;-7744 25849;-7129 26640;-6772 26447;-6511 26726;-6301 26731;-6266 26624 1;-6205 26418;-6054 26241;-5844 26274 1;-5709 26296;-5617 26358;-5565 26484;-4510 26632;-4553 26963;-3908 27070;-3810 26231;-4344 26179;-5103 26076;-5570 25479;-5281 23054;-3649 21778;-3476 20640 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="83">-10828 25526;-10942 25510;-11755 25375;-11751 25347 1;-11589 25257;-11472 25111;-11441 24930 1;-11380 24581;-11659 24241;-12066 24169 1;-12319 24125;-12562 24195;-12724 24338;-12724 24193;-12713 23926;-12727 23929;-12705 23865;-12391 21125;-11290 21279;-11320 21519 1;-11334 21634;-11274 21758;-11159 21768 1;-10163 21855;-9602 21647;-8603 21611 1;-7987 21589;-7653 21756;-7041 21829 1;-6578 21883;-6030 21864;-5713 22169;-5634 22206;-5486 22545;-5803 22856;-5690 23016;-5701 23106;-5962 25264;-7975 25046;-9561 24836;-9836 24477;-10386 24898 1;-10426 25195;-10562 25391;-10831 25523;-10828 25526 18;-6485 23858 1;-6400 23239;-6999 22648;-7821 22537 1;-8643 22425;-9377 22834;-9462 23452 1;-9547 24069;-8948 24660;-8126 24773 1;-7304 24885;-6569 24476;-6485 23858 18;-10248 23902 1;-10199 23427;-10172 23160;-10122 22685 1;-10108 22550;-10205 22429;-10340 22415 1;-10605 22387;-10753 22371;-11018 22344 1;-11151 22330;-11269 22427;-11283 22560;-11405 23755;-11407 23850 1;-11418 23962;-11337 24062;-11225 24073 1;-10959 24100;-10809 24115;-10543 24142 1;-10395 24157;-10263 24050;-10248 23902 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-4309 17838;-4305 16940;-4650 16947;-5531 17838;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="17">-6190 17881;-5548 17239 1;-5677 17110;-5779 16959;-5962 16961 1;-6166 16963;-6264 17183;-6264 17387;-7430 17387;-7430 17134 1;-7430 17038;-7507 16961;-7603 16961 1;-7721 16961;-7769 17047;-7855 17128;-8634 17861;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="16">-9324 17880;-9323 17812;-8723 17259 1;-8877 17100;-8992 16928;-9213 16936 1;-9423 16944;-9496 17183;-9496 17393;-10193 17393;-10193 16739;-10452 16739;-10570 17060 1;-10651 17279;-10892 17282;-11125 17282;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">-11081 16881 1;-10981 16886;-10879 16833;-10872 16733 1;-10853 16486;-10953 16220;-11199 16190 1;-11703 16128;-12054 16158;-12562 16171;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="13">-11081 16881 1;-10981 16886;-10879 16833;-10872 16733 1;-10853 16486;-10953 16220;-11199 16190 1;-11703 16128;-12054 16158;-12562 16171;-12361 16473;-11154 16592;-11081 16881 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">-10451 16310;-10926 15680;-10155 15693;-9670 16316;-10451 16310 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-9680 16316;2231 16207;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-6776 16278;-6410 15851;-5808 15855;-5485 16278;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-2810 16247;-2444 15820;-1842 15824;-1519 16247;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">920 16210;1286 15783;1888 15787;2211 16210;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-6776 16278;-6410 15851;-5808 15855;-5485 16278;-6776 16278 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-2810 16247;-2444 15820;-1842 15824;-1519 16247;-2810 16247 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">920 16210;1286 15783;1888 15787;2211 16210;920 16210 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-10451 16310;-10926 15680;-10155 15693;-9667 16322;-10451 16310 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">1594 15989;</coords></object>
<object type="0" symbol="84"><coords count="1">-2157 15995;</coords></object>
<object type="0" symbol="84"><coords count="1">-6129 16040;</coords></object>
<object type="0" symbol="84"><coords count="1">-10299 15996;</coords></object>
<object type="1" symbol="73"><coords count="23">-12496 18271;-10510 18284;-10485 17858;-9289 17852;-9263 17754;-8726 17259 1;-8880 17100;-8992 16928;-9213 16936 1;-9423 16944;-9496 17183;-9496 17393;-10193 17393;-10193 16739;-10452 16739;-10570 17060 1;-10651 17279;-10892 17282;-11125 17282;-11165 17458;-11172 17568 32;-12368 17497 32;-12496 18271 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="18">-6190 17881;-5548 17239 1;-5677 17110;-5779 16959;-5962 16961 1;-6166 16963;-6264 17183;-6264 17387;-7430 17387;-7430 17134 1;-7430 17038;-7507 16961;-7603 16961 1;-7721 16961;-7769 17047;-7855 17128;-8634 17861;-6190 17881 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-4309 17838;-4305 16940;-4650 16947;-5531 17838;-4309 17838 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-8831 17613;-8315 17127;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-8776 17671;-8260 17185;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-8933 17450;-8459 17014;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-5801 17491;-5328 17050;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-5706 17690;-5190 17204;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-4316 17833;-3674 17836;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-4311 17397;-3687 17399;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-4309 16939;-3583 16942;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="78">-12473 15690;-12333 15682;-10916 15685;-10795 15853;-10451 16310;-9670 16316;-9112 16311;2309 16206;2387 16720 1;185 16681;-1050 16770;-3252 16818 1;-3465 16823;-3679 16945;-3679 17158 1;-3679 17386;-3679 17515;-3679 17743 1;-3679 17961;-3432 18019;-3217 18057;-3266 18731;-4328 18595;-4309 17732;-4305 16940;-4650 16947;-5522 17829;-5843 17547;-5743 17437;-5533 17241;-5675 17106 1;-5756 17025;-5842 16960;-5962 16961 1;-6166 16963;-6264 17183;-6264 17387;-7430 17387;-7430 17134 1;-7430 17038;-7507 16961;-7603 16961 1;-7721 16961;-7769 17047;-7855 17128;-8629 17856;-8976 17522;-8831 17359;-8723 17259 1;-8733 17248;-8744 17237;-8754 17226;-8796 17184 1;-8918 17050;-9027 16929;-9213 16936 1;-9423 16944;-9496 17183;-9496 17393;-10193 17393;-10193 16739;-10452 16739;-10570 17060 1;-10651 17278;-10890 17282;-11123 17282;-11081 16880;-11081 16881 1;-10981 16886;-10879 16833;-10872 16733 1;-10853 16486;-10953 16220;-11199 16190 1;-11703 16128;-12054 16158;-12562 16171;-12473 15690 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="25">-437 24057;-16 24099;1038 24233;1815 18125;2204 18174;2387 16720 1;185 16681;-1050 16770;-3252 16818 1;-3465 16823;-3679 16945;-3679 17158 1;-3679 17386;-3679 17515;-3679 17743 1;-3679 17961;-3432 18019;-3217 18057;-3067 17645;870 18181;298 22745;-928 22597;-1093 23897;-427 23981;-437 24057 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="7">-16 24099;-437 24057;-761 26630;689 26813;756 26286;-277 26155;-16 24099 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">3866 16732 32;3439 16673 32;3223 18249 32;3650 18308 32;3866 16732 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">5383 27283;4975 27228;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">4544 27166;3540 27030;4808 17640;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="25">3519 27113;3263 27101;2320 26974;2388 26471;3449 26614;3721 24597;2659 24454;2723 23981;3786 24125;4109 21744;3012 21595;3086 21048;4178 21196;4514 18720 1;4337 18696;4237 18682;4060 18658 1;3812 18624;3638 18397;3672 18149;3869 16716;4439 16734;4408 17018;4778 17647;3519 27113 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="71">-1143 31999;17 32122;17 32178;1621 32314;1633 32264;2731 32425;2981 30545;2877 30539;1858 30401;1923 29919;3020 30067;3103 29612;3117 29485;3200 28846;2099 28680;2212 27782;4842 28153;5807 28286;5929 27553;5380 27404;4972 27323;4998 27106;4550 27045;4520 27257;4247 27234;2320 26974;2388 26471;3449 26614;3721 24597;2659 24454;2723 23981;3786 24125;4109 21744;3012 21595;3086 21048;4178 21196;4514 18720 1;4337 18696;4237 18682;4060 18658 1;3812 18624;3638 18397;3672 18149;3869 16716;2386 16726;2204 18174;1815 18125;1038 24233;-16 24099;-277 26155;756 26286;689 26813;-761 26630;-427 23981;-1093 23897;-1439 26543;-1957 26476;-2055 27277;-1446 27358;-1274 27379;-1328 27817;-892 27871;-814 27236;628 27412;561 27960;-620 27815;-832 29543;327 29685;262 30214;-898 30072;-1143 31999 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">20293 29461;22893 25029;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="12">23697 23687;24292 22575 1;25154 20964;25579 20031;26412 18405 1;26481 18270;26459 18100;26381 17967 1;26308 17843;26186 17751;26045 17751;25496 17749;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">22638 25100;21893 24684;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">23628 23429;22855 22998;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">19436 29034 32;20221 29471 32;22623 25161 32;21838 24724 32;19436 29034 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">18662 17992 32;18662 17582;19024 17581;19026 17986 48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">19384 17986 32;19386 17581;25150 17584;25151 17950 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">20763 18521;19615 18529;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="7">20181 18361;20176 17593;19400 17589;19387 18003;19600 18007;19618 18356;20181 18361 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">18663 18025 32;19038 18019 32;19031 17580 32;18656 17586 32;18663 18025 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="11">23562 18465;24944 18625;24969 18008;25147 17973;25151 17579;20176 17589;20176 17650;20181 18361;20170 18361;23507 18378;23562 18465 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="16">22860 22956;23773 23419;26438 18231;26253 17812;25686 17830;25661 18571;24970 18626;24892 18619;23562 18465;23536 18583;23536 21082 1;23536 21579;23463 21851;23218 22284;23193 22329;22860 22956 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">18947 24437;18171 24011;19504 21440;20333 21869;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">18163 25930;17281 25442;15743 28155;16663 28655;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">14320 28409 1;13999 28965;13463 29069;12822 29084;13772 29559;13609 29885;13949 30055;14727 28644;14320 28409 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">12593 24011;</coords></object>
<object type="0" symbol="84"><coords count="1">11606 26552;</coords></object>
<object type="0" symbol="84"><coords count="1">14898 24038;</coords></object>
<object type="1" symbol="132"><coords count="3">20786 20812;18674 19895;18666 19032 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">19648 19018;19662 19920;20789 20369;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">19654 18679;19654 19907;20826 20381;20789 18673;19654 18679 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="9">20783 20813;20802 20381;20721 20339;19654 19907;19654 18969;18661 19000;18667 19129;18674 19895;20783 20813 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">18297 20583;</coords></object>
<object type="1" symbol="132"><coords count="4">15186 18101;15181 17581;12326 17568;12330 18081 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="11">17446 20755;17939 20751;17937 20666 1;17934 20651;17933 20635;17933 20619;17899 17581;16014 17579;16019 18095;17381 18103;17446 20755 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">15186 18101;15181 17581;12326 17568;12330 18081;15186 18101 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">18947 24437;18171 24011;19504 21440;20333 21869;18947 24437 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">16714 24599;</coords></object>
<object type="1" symbol="67"><coords count="5">18163 25940 32;17257 25448 32;16344 27128 32;17250 27620 32;18163 25940 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">17262 27618 32;16319 27105 32;15748 28155 32;16691 28668 32;17262 27618 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="4">16276 29368;15463 28926;15036 29712;15592 30014;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">15810 30174;15573 30045;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">15856 30187 32;16267 29433 32;15562 29049 32;15151 29803 32;15856 30187 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">12875 29104 32;12555 29699 32;11958 29378 32;12278 28783 32;12875 29104 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">12875 29104 32;12555 29699 32;11958 29378 32;12278 28783 32;12875 29104 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">12931 27608;</coords></object>
<object type="1" symbol="132"><coords count="12">12321 28367 1;13033 28747;14002 28430;14318 27687;13856 27442;14222 26788;13243 26242;12882 26888;12205 26509 1;11869 27110;11622 27994;12321 28367 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">14009 31894 32;14483 31011 32;13048 30241 32;12574 31124 32;14009 31894 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="13">11895 30765;12060 30457;11008 29893;11203 29530;9054 28376 1;8861 28273;8620 28345;8516 28538;8334 28440;8278 28410 1;8126 28329;7951 28463;7892 28625;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="14">11895 30765;12060 30457;11008 29893;11203 29530;9054 28376 1;8861 28273;8620 28345;8516 28538;8334 28440;8278 28410 1;8126 28329;7951 28463;7892 28625;11895 30765 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">5921 27550 32;7268 27732 32;7173 28435 32;5826 28253 32;5921 27550 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">8009 27844 32;8473 27907 32;8760 25778 32;8296 25715 32;8009 27844 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">8009 27844 32;8469 27906 32;8756 25777 32;8296 25715 32;8009 27844 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">8426 24754 32;8886 24816 32;9395 21039 32;8935 20977 32;8426 24754 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">8426 24754 32;8890 24817 32;9400 21046 32;8936 20983 32;8426 24754 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">10162 20625;9002 20398;9203 18950;10149 18958;10162 20625 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="5">9679 25033;9806 23802;11074 23933;10942 25210;10531 25168;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="3">10282 20755;10289 21612;11811 21600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="6">11400 21721;11269 22707;11211 22707;11134 22697;10085 21798;11400 21721 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="8">11392 21771;12657 22705;12575 22727 1;12257 22771;11930 22800;11528 22748;11256 22713;11392 21771 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="13">14842 22746;15156 21709;11381 21790;11483 21838;12657 22705;12729 22705 1;13085 22651;13443 22590;13898 22613 1;14168 22626;14415 22658;14644 22711;14842 22746 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">17423 20723 32;17465 21700 32;10402 21792 32;10310 20777 32;17423 20723 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">11817 21781;17456 21696;17443 20772;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="30">17455 20740;17944 20723;17975 20783 1;18035 20895;18154 20970;18291 20969 1;18503 20967;18672 20794;18670 20582;18797 20611;18910 21060;17592 23541;17372 23950;17318 23923 1;17248 23865;17169 23816;17081 23779 1;16820 23670;16537 23695;16308 23824;16261 23759 1;15834 23237;15382 22924;14826 22759;14857 22698;15153 21719;15221 21730;17456 21696;17447 21052;17455 20740 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="27">16019 18095;16014 17579;17899 17581;17933 20619 1;17935 20815;18095 20971;18291 20969 1;18503 20967;18672 20794;18670 20582;18797 20611;18910 21060;17366 23965 1;17284 23889;17190 23825;17081 23779 1;16820 23670;16537 23695;16309 23822 1;15658 23002;14943 22665;13898 22613 1;12972 22567;12448 22866;11528 22748;11134 22697;10109 21818 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="30">15942 24211 1;15741 24698;15952 25214;16400 25402 1;16424 25412;16447 25421;16474 25432;15152 27818;14760 27586 1;15087 26953;14723 26493;14189 26032 1;13803 25698;13361 25729;12889 25924 1;12776 25971;12689 26056;12583 25994 1;12356 25861;12219 25754;12112 25514 1;11885 25003;11862 24568;12139 24083 1;12598 23279;13457 23008;14354 23237 1;15051 23415;15427 23689;15942 24211 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="30">15942 24211 1;15741 24698;15952 25214;16400 25402 1;16424 25412;16447 25421;16474 25432;15152 27818;14760 27586 1;15087 26953;14723 26493;14189 26032 1;13803 25698;13361 25729;12889 25924 1;12776 25971;12689 26056;12583 25994 1;12356 25861;12219 25754;12112 25514 1;11885 25003;11862 24568;12139 24083 1;12598 23279;13457 23008;14354 23237 1;15051 23415;15427 23689;15942 24211 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="5">11042 25327;10961 26462;10431 26159;10536 25265;11042 25327 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="8">10961 26462;10937 27498;11668 28336;11397 28807;9233 27638;9431 26021;10417 26143;10961 26462 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">10551 25002;10411 26141;9431 26021;9233 27638;11397 28807;11667 28335;10951 27514;10937 27498;10961 26462;11028 25341 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="9">14320 28409 1;13999 28965;13463 29069;12822 29084;13772 29559;13609 29885;13949 30055;14727 28644;14320 28409 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">14009 31894 32;14483 31011 32;13048 30241 32;12574 31124 32;14009 31894 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="12">12321 28367 1;13033 28747;14002 28430;14318 27687;13856 27442;14222 26788;13243 26242;12882 26888;12205 26509 1;11869 27110;11622 27994;12321 28367 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="113">13787 32280;14511 32673;15479 30828;15780 30963;16134 30352;15091 29776;15506 29039;16260 29401;16669 28666;16556 28597;15743 28155;17281 25442;18163 25930;18951 24441;18867 24393;18171 24011;19504 21440;20323 21864;20445 21708 1;20639 21320;20735 21058;20780 20806;20629 20744;18674 19895;18666 19032;18648 17576;17902 17588;17899 17625;17933 20619 1;17933 20635;17934 20651;17937 20666;17939 20751;18036 20865 1;18101 20930;18191 20970;18291 20969 1;18503 20967;18672 20794;18670 20582;18797 20611;18910 21060;17592 23541;17372 23950;17318 23923 1;17248 23865;17169 23816;17081 23779 1;16820 23670;16537 23695;16308 23824;16261 23759 1;15865 23275;15447 22970;14944 22797;14593 22701 1;14378 22654;14147 22625;13898 22613 1;13122 22574;12629 22778;11948 22776;12573 23562 1;13048 23172;13691 23068;14354 23237 1;15051 23415;15427 23689;15942 24211 1;15741 24698;15952 25214;16400 25402 1;16424 25412;16447 25421;16474 25432;15991 26304;15914 26442;15152 27818;14760 27586 1;15087 26953;14723 26493;14189 26032 1;13803 25698;13361 25729;12889 25924 1;12776 25971;12689 26056;12583 25994 1;12525 25960;12473 25928;12426 25895;12205 26509;12882 26888;13243 26242;14222 26788;13856 27442;14318 27687 1;14021 28385;13149 28707;12454 28429;12285 28787;12875 29104 32;12949 29080 1;13534 29053;14020 28928;14320 28409;14727 28644;13949 30055;13609 29885;13048 30241 32;14483 31011 32;14014 31885;13787 32280 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="71">12577 31116;13053 30269;13616 29899;13773 29563;12870 29118;12560 29702;11962 29380;12271 28788;12302 28788;12480 28455;12382 28398 1;12362 28388;12341 28378;12321 28367 1;11622 27994;11869 27110;12205 26509;12443 25925;12348 25835 1;12250 25753;12176 25657;12112 25514 1;11885 25003;11862 24568;12139 24083 1;12267 23858;12427 23675;12610 23532;12082 22774 1;12038 22775;11993 22776;11948 22776;11707 22766 1;11649 22762;11589 22756;11528 22748;11256 22713;11129 22699;10105 21798;9711 23692;11092 23951;11018 25357;10926 27516;11672 28343;11419 28799;9243 27644;9233 27638;9431 26021;10417 26143;10543 25018;8421 24759;8285 25721;8754 25777;8470 27911;7261 27750;7175 28435;7884 28620;7938 28535 1;8018 28419;8156 28345;8278 28410;8334 28440;8516 28538 1;8620 28345;8861 28273;9054 28376;11203 29530;11008 29893;12060 30457;11895 30765;12577 31116 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="10">8884 24850;9625 24955;9766 23654;10124 21822;10186 20631;9008 20390;8916 20976;9088 21004;9400 21046 32;8884 24850 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="37">21973 24564;23613 25557;23667 25497;24702 26064;25459 24683;25403 24629;24545 24159 32;24798 23698 32;24871 23738;24928 23665;24993 23540;26015 21594;25955 21563;25927 21548 32;26180 21087 32;26212 21030;26342 20799;27359 18989;27490 19061;28283 19495 32;28534 19037;28510 19020;27612 18528;27864 18069;26296 17859 1;26329 17891;26358 17927;26381 17967 1;26459 18100;26481 18270;26412 18405 1;25579 20031;25154 20964;24292 22575;23770 23551;22793 23066;21973 24564 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="10">6666 17568;4933 17340;4951 17081;4766 17050;4797 16723;4853 16717;5197 16718;7695 17103;7598 17710;6666 17568 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">9374 17957;9444 17373;8457 17221;8350 17822;9374 17957 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="7">10094 18082;10143 17478;10208 17491;10684 17564;11491 17570;11497 18087;10094 18082 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">10115 18078;10172 17485;10684 17564;11491 17570;11497 18087 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">5363 27174;3666 26939;4960 17340;6666 17562;5363 27174 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="26">4400 17008;4432 16721;3869 16716;3672 18149 1;3638 18397;3812 18624;4060 18658 1;4237 18682;4337 18696;4514 18720;4178 21196;3086 21048;3012 21595;4109 21744;3786 24125;2723 23981;2659 24454;3721 24597;3449 26614;2388 26471;2320 26974;4536 27273;4565 27044;4998 27104;4967 27327;5380 27387 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">9359 17942;9430 17372;5197 16718;4795 16719;4758 17066 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="32">-21096 15663;-21114 14223;-20744 14208;-20139 14209;363 14412 1;636 14412;920 14328;1180 14187;1879 15787;1286 15783;920 16210;876 16219;-1542 16241;-1562 16190;-1842 15824;-2444 15820;-2798 16233;-2875 16254;-5510 16278;-5557 16183;-5808 15855;-6410 15851;-6776 16278;-6976 16291;-9112 16311;-9670 16316;-9679 16316;-9755 16208;-10155 15693;-10884 15681;-19146 15669;-21096 15663 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="32">28775 18579;37873 -467 1;38405 -1580;37788 -3004;36608 -3360 1;33415 -4324;31646 -4947;28413 -5769 1;27385 -6030;26816 -6207;25780 -6437;24571 -5425;23301 -5561 1;21105 -5796;19870 -5932;17663 -6017 1;14081 -6155;12069 -6110;8484 -6177 1;6663 -6211;5642 -6176;3821 -6165 1;3563 -5779;3568 -5531;3574 -5166 1;3616 -2764;3608 -1428;3636 974;3562 13963 1;3508 14853;2774 15794;1882 15788 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">3821 -6165 1;4426 -7007;5113 -7451;6150 -7440;6830 -7440;8069 -6201 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="142"><coords count="1">7413 -6575;</coords></object>
<object type="0" symbol="84"><coords count="1">6551 -6811;</coords></object>
<object type="0" symbol="84"><coords count="1">5600 -6811;</coords></object>
<object type="0" symbol="84"><coords count="1">4667 -6794;</coords></object>
<object type="1" symbol="73"><coords count="19">31356 -3787 1;31428 -3631;31469 -3543;31542 -3387 1;31602 -3258;31792 -3278;31906 -3363 1;32071 -3486;32188 -3534;32313 -3697 1;32424 -3842;32461 -4105;32288 -4165 1;31990 -4267;31818 -4314;31511 -4386 1;31276 -4441;31254 -4007;31356 -3787 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">30838 -3958;</coords></object>
<object type="1" symbol="82"><coords count="16">31305 -4177 1;31286 -4050;31307 -3894;31356 -3787 1;31428 -3631;31469 -3543;31542 -3387 1;31602 -3258;31792 -3278;31906 -3363 1;32071 -3486;32188 -3534;32313 -3697 1;32331 -3721;32347 -3747;32361 -3776;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">28208 -4099;</coords></object>
<object type="0" symbol="84"><coords count="1">27388 -2773;</coords></object>
<object type="0" symbol="84"><coords count="1">35045 -2925;</coords></object>
<object type="1" symbol="63"><coords count="11">35211 -3231 1;35294 -3013;35206 -2644;34975 -2681 1;34268 -2795;33881 -2940;33222 -3222 1;32979 -3326;32906 -3761;33135 -3894;35211 -3231 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="11">36188 -2864 1;35903 -2666;35626 -2287;35865 -2035 1;36059 -1831;36394 -1747;36580 -1957 1;36750 -2149;36936 -2269;36912 -2524;36188 -2864 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">36668 -1425;</coords></object>
<object type="1" symbol="74"><coords count="19">37311 -1354 1;37319 -1154;37347 -1024;37259 -844 1;37103 -523;37015 -344;36858 -23 1;36824 46;36767 98;36700 125 1;36632 153;36554 154;36482 120 1;36394 79;36335 3;36305 -86 1;36267 -194;36274 -322;36325 -429;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">36464 795;35273 3243;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="11">36180 1115 1;35919 960;35672 646;35859 406 1;35992 235;36038 31;36254 17;36655 122;36963 73;36593 875;36180 1115 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">35294 1773;</coords></object>
<object type="0" symbol="83"><coords count="1">31285 3008;</coords></object>
<object type="0" symbol="84"><coords count="1">34382 3566;</coords></object>
<object type="0" symbol="84"><coords count="1">33466 4875;</coords></object>
<object type="0" symbol="143"><coords count="1">32707 4901;</coords></object>
<object type="1" symbol="74"><coords count="2">34480 4917;33961 5981;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">33584 6796;32893 8209;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">33461 6099;</coords></object>
<object type="1" symbol="63"><coords count="14">31795 10795 1;31483 10899;31163 11186;30962 10925 1;30787 10699;31154 10515;31338 10296 1;31625 9953;31645 9668;31863 9278 1;31982 9065;32400 9175;32473 9407;31795 10795 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">28714 8871;</coords></object>
<object type="0" symbol="84"><coords count="1">29573 10796;</coords></object>
<object type="1" symbol="74"><coords count="2">30904 12302;30323 13504;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">29732 13721;</coords></object>
<object type="1" symbol="63"><coords count="18">29858 14781 1;29513 14660;29102 14382;28925 14702 1;28760 14999;28654 15319;28314 15322 1;26352 15337;25251 15278;23289 15278 1;23111 15278;23087 15501;23071 15679 1;23052 15890;23356 15896;23568 15897;29300 15924;29858 14781 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">27625 16334;</coords></object>
<object type="0" symbol="84"><coords count="1">25173 16343;</coords></object>
<object type="0" symbol="84"><coords count="1">24327 16334;</coords></object>
<object type="0" symbol="84"><coords count="1">20476 16271;</coords></object>
<object type="0" symbol="84"><coords count="1">18551 16234;</coords></object>
<object type="0" symbol="84"><coords count="1">10891 16382;</coords></object>
<object type="0" symbol="84"><coords count="1">13395 16419;</coords></object>
<object type="0" symbol="84"><coords count="1">14493 16382;</coords></object>
<object type="1" symbol="132"><coords count="9">25699 8316 1;25118 7831;24504 7434;24549 6678 1;24614 5591;24896 5007;25265 3982;27053 3973;27056 4618;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="11">26966 7357 1;27049 7617;27225 7801;27498 7811 1;28492 7849;29082 7750;30037 8029 1;30423 8142;30831 7785;30839 7383;26966 7357 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="12">25692 8317;25710 4618;27056 4609;27053 3973;25265 3982 1;24896 5007;24614 5591;24549 6678 1;24506 7399;25017 7755;25568 8207;25692 8317 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">23788 3555;22469 3141;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">27486 1059 1;26763 778;26326 144;26431 -625 1;26542 -1441;26676 -1888;26893 -2683;27654 -5465 1;28421 -5273;29129 -5087;29811 -4899;29786 -2570 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">24803 -223;24384 1199;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">26437 -5744 32;26153 -4692 32;25649 -4828 32;25933 -5880 32;26437 -5744 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="18">23793 3473;24037 2668;24009 2572 1;23843 2288;23622 2103;23706 1785;24159 -405;24054 -161 1;23777 362;23591 650;23426 1218 1;23286 1698;23171 1958;23069 2448 1;23003 2765;23002 2967;23095 3277;23793 3473 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">25578 -4940;23223 3303;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="10">23707 522 1;23917 -20;23684 -396;23820 -961;24675 -4843;24981 -5052;25469 -4939;24954 -2967;24126 60;23707 522 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="8">24034 2677;24568 1228;24941 -180;26166 -4705;25641 -4843;24019 749;23644 2153;24034 2677 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">23785 3482;24550 1230;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="24">33176 221 1;33192 495;33172 859;32897 867 1;31292 915;30394 1012;28788 1041;28047 1115;27584 1118;27379 1014 1;26720 714;26331 105;26431 -625 1;26486 -1026;26546 -1339;26619 -1647 1;26635 -1715;26696 -1764;26764 -1750 1;27054 -1692;27453 -1732;27453 -1436;27480 90;33176 221 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="5">34758 4719 1;33514 4180;32712 4039;31356 4030;28791 4004;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">30692 -2508;30718 -4639 1;32502 -4140;34203 -3591;36436 -2827 1;37252 -2548;37682 -1370;37354 -697;34819 4554 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">29017 3892;29007 1875;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">28820 1903;29187 1901;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">29224 4626;29226 4185;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="5">31230 12063 1;30311 11646;29752 11281;28744 11261;27085 11242;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">27059 9120;27676 9120;27676 10755;29071 10755;29071 11070;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">25658 11917;25661 11444;27115 11452;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">23058 11913;23082 7948;23725 3617;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="80">24575 -5415;24810 -4952;25953 -5882 1;26121 -5842;26286 -5802;26450 -5762;24934 -153;24537 1268;23785 3482;23717 3677;23213 7229;23188 7402;23073 7887;23058 11913;25674 11964;25659 11829;25661 11444;26748 11450;27113 11421;29044 11116;29050 11008;29047 10755;27676 10755;27676 9120;27059 9120;27045 10971;25691 10950;25683 8342;25642 8268 1;25064 7786;24504 7431;24549 6678 1;24605 5738;24824 5174;25120 4376;25236 4063 1;25245 4037;25255 4009;25265 3982;27053 3973;27056 4618;29212 4647;29193 4259;29192 4165;28814 3806;27518 3802;27512 1118;27368 1009 1;26716 707;26332 101;26431 -625 1;26486 -1026;26546 -1339;26619 -1647 1;26623 -1664;26630 -1680;26639 -1694;26687 -1922 1;26747 -2153;26814 -2395;26893 -2683;27654 -5465;27886 -5407 1;28565 -5235;29198 -5068;29811 -4899;29786 -2570;30693 -2570;30718 -4639 1;32471 -4149;34143 -3610;36319 -2867;36490 -3396 1;33371 -4339;31606 -4957;28413 -5769 1;27385 -6030;26816 -6207;25780 -6437;24575 -5415 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="41">36281 -2878;36438 -3415;36511 -3389 1;36543 -3379;36576 -3370;36608 -3360 1;37788 -3004;38405 -1580;37873 -467;30181 15636;29974 16069;28775 18579;27871 18096;26514 17930;26156 17720;25509 18024;25147 17973;25151 17579;22883 17584;22600 17583;19386 17581;19384 17986 32;19034 17990;19035 17829;19031 17580 32;18656 17586 32;18658 17693;17911 17681;17862 16724;28912 16793;31448 11539;31507 11416;34665 4874;34811 4520;34855 4502;34964 4254;37354 -697 1;37681 -1368;37255 -2541;36443 -2824;36281 -2878 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">34665 4874;31280 11888 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="33">28917 16821;22557 16753;22574 14598;22740 14596;27978 14622 32;27991 11978 32;25681 11967;25660 11836;25659 11829;25661 11444;26748 11450;27113 11421;28509 11201;31335 12145;28917 16821 18;29300 15924;29858 14781 1;29513 14660;29102 14382;28925 14702 1;28760 14999;28654 15319;28314 15322 1;26352 15337;25251 15278;23289 15278 1;23111 15278;23087 15501;23071 15679 1;23052 15890;23356 15896;23568 15897;29300 15924 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="41">31396 12034;29071 11070;29071 10755;27676 10755;27676 9120;27263 9120;27053 9123;27016 8383;25692 8317;25696 7432;25672 7334;28966 7334;29064 4040;33271 4176;34900 4829;31396 12034 18;31795 10795;32473 9407 1;32400 9175;31982 9065;31863 9278 1;31645 9668;31625 9953;31338 10296 1;31154 10515;30787 10699;30962 10925 1;31163 11186;31483 10899;31795 10795 18;30839 7383;26966 7357 1;27049 7617;27225 7801;27498 7811 1;28492 7849;29082 7750;30037 8029 1;30423 8142;30831 7785;30839 7383 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">31803 4718;</coords></object>
<object type="0" symbol="84"><coords count="1">29743 3336;</coords></object>
<object type="1" symbol="62"><coords count="59">34998 4817;32593 4089;29040 4003;28781 3139;28802 1041 1;30399 1011;31297 915;32897 867 1;33143 860;33185 567;33180 309;33074 203;27436 92;27449 -1484 1;27408 -1728;27037 -1695;26764 -1750 1;26734 -1756;26706 -1750;26682 -1736;26437 -1882;27522 -5719;37034 -2968;37799 -1389;37108 400;34998 4817 18;36180 1115;36593 875;36963 73;36655 122;36254 17 1;36038 31;35992 235;35859 406 1;35672 646;35919 960;36180 1115 18;36580 -1957 1;36750 -2149;36936 -2269;36912 -2524;36188 -2864 1;35903 -2666;35626 -2287;35865 -2035 1;36059 -1831;36394 -1747;36580 -1957 18;35211 -3231;33135 -3894 1;32906 -3761;32979 -3326;33222 -3222 1;33881 -2940;34268 -2795;34975 -2681 1;35206 -2644;35294 -3013;35211 -3231 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="43">28745 18634;30882 18172;30962 17951;31452 16882 1;31526 16726;31687 16645;31844 16719;34511 11232;37376 5225;42560 -4791;42893 -6008;43005 -6226;41421 -7040;41362 -6941;41237 -6696 1;41047 -6325;40851 -5941;40647 -5541 1;40215 -4692;38798 -4498;37573 -4879 1;34307 -5894;32347 -6556;29328 -7341;29054 -7412 1;28774 -7484;28485 -7557;28185 -7632 1;27487 -7806;26861 -7951;26271 -8073;25780 -6437 1;26816 -6207;27385 -6030;28413 -5769 1;31646 -4947;33415 -4324;36608 -3360 1;37788 -3004;38405 -1580;37873 -467;32052 11719;28745 18634 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">17093 14358 32;17340 12322 32;16235 12188 32;15988 14224 32;17093 14358 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">17835 14424;18181 11569;18871 11179;20413 11389;20142 13967;19130 14578;17835 14424 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">17155 10696;17691 10758;18956 10018;19073 8852;18592 7994;17408 8630;17155 10696 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">18202 9313;</coords></object>
<object type="0" symbol="143"><coords count="1">19194 12847;</coords></object>
<object type="0" symbol="143"><coords count="1">16699 13257;</coords></object>
<object type="1" symbol="62"><coords count="7">3821 -6165 1;4426 -7007;5113 -7451;6150 -7440;6830 -7440;8069 -6201;3821 -6165 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">9218 -3440 32;10927 -3466 32;10916 -4171 32;9207 -4145 32;9218 -3440 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">9218 -3440 32;10927 -3466 32;10916 -4171 32;9207 -4145 32;9218 -3440 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">10046 -3806;</coords></object>
<object type="1" symbol="132"><coords count="5">18595 7999;19601 7435;19937 4130;21167 4192;22467 3197;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="12">18125 6237;18297 4358;17183 4259;17219 3859;19478 4062;19245 6655;16683 8161;16334 11084;16003 11232;15135 11130;15766 6011;18125 6237 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">10291 13223;9603 13141;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">8409 12286;8323 12964;8939 13047;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">9625 13048;9402 13021;9278 14045;13167 14516;14217 13955;14549 11485;13466 11339;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">5425 9904;5476 8995;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">5250 9963;5304 8986;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">5603 9919;5653 9009;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">4440 9110;</coords></object>
<object type="0" symbol="84"><coords count="1">4467 7984;</coords></object>
<object type="0" symbol="84"><coords count="1">4755 11011;</coords></object>
<object type="0" symbol="84"><coords count="1">4467 11753;</coords></object>
<object type="0" symbol="84"><coords count="1">8021 13453;</coords></object>
<object type="0" symbol="84"><coords count="1">9739 13697;</coords></object>
<object type="1" symbol="63"><coords count="15">4008 12467;5386 12066;5464 12083;6487 12142;6462 12587 32;7661 12656 32;7686 12210;8363 12249;8377 12540;8323 12964;8879 13039;8888 13209;8792 13970;4035 13359;4008 12467 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="2">9045 16387;9007 15203;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="2">14607 15720;12302 15761;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">12311 15757;4051 15688;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="10">17824 16709 1;17589 15908;17223 15208;16393 15122 1;15928 15074;15665 15072;15198 15069 1;14834 15067;14673 14729;14570 14380;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">14588 15714;16974 15709;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="20">31123 12212;28912 16793;16570 16718;16577 16178;15850 16174;15845 16706;12737 16706;12740 16178;12013 16174;12011 16694;10716 16680;5324 15843;4025 15843;4033 13922;13230 15135;14747 14280;15087 11568;16082 11707;17111 11140;17155 10709 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="43">17918 15777 1;19494 15810;20377 15709;21953 15709 1;22027 15709;22069 15613;22045 15542 1;21957 15283;21883 15147;21792 14889 1;21735 14726;21566 14726;21397 14691 1;21251 14660;21169 14538;21163 14389 1;21158 14257;21154 14182;21144 14050 1;21136 13935;20994 13927;20879 13920 1;20636 13905;20499 13892;20256 13896 1;20210 13897;20160 13906;20151 13951 1;20096 14242;20108 14411;20065 14704 1;20032 14931;19924 15155;19695 15160 1;18955 15175;18532 15127;17801 15246 1;17665 15268;17599 15429;17641 15561 1;17682 15692;17781 15774;17918 15777 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">16826 14605;</coords></object>
<object type="0" symbol="84"><coords count="1">15636 14432;</coords></object>
<object type="0" symbol="84"><coords count="1">15839 12439;</coords></object>
<object type="1" symbol="64"><coords count="16">17093 14358 1;17177 14541;17179 14803;16987 14864;15278 14672;15562 11927;15785 11666;16082 11707;16320 11576;16327 11588 1;16555 11754;16703 11951;16660 12230;16245 12184;15993 14241;17093 14358 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="7">17835 14424;18181 11569;18871 11179;20413 11389;20142 13967;19130 14578;17835 14424 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">17093 14358 32;17340 12322 32;16235 12188 32;15988 14224 32;17093 14358 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="7">17155 10696;17691 10758;18956 10018;19073 8852;18592 7994;17408 8630;17155 10696 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">16068 10716;</coords></object>
<object type="0" symbol="84"><coords count="1">16330 8422;</coords></object>
<object type="0" symbol="84"><coords count="1">16540 6878;</coords></object>
<object type="0" symbol="84"><coords count="1">17377 6990;</coords></object>
<object type="0" symbol="84"><coords count="1">18189 7052;</coords></object>
<object type="0" symbol="84"><coords count="1">18939 6154;</coords></object>
<object type="0" symbol="84"><coords count="1">19052 4828;</coords></object>
<object type="0" symbol="143"><coords count="1">21092 7727;</coords></object>
<object type="1" symbol="105"><coords count="2">22914 7857;23054 6863;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="8">23046 11518 1;22739 11453;22486 11245;22497 10932 1;22510 10560;22731 10352;23046 10154;23046 11518 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="30">20055 11320 1;20220 11035;20268 10844;20316 10518 1;20389 10026;20311 9500;20779 9331 1;21079 9223;21243 9151;21537 9026 1;21594 9002;21646 8998;21695 9035;21644 9141 1;21596 9214;21540 9286;21474 9359 1;21212 9646;21173 9901;21107 10284 1;20993 10948;20932 11321;20776 11976 1;20696 12312;20534 12475;20279 12709;20291 12552;20413 11389;20303 11374;20055 11320 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="11">22855 6833 1;22876 6103;22827 5683;22969 4966 1;23089 4358;23094 4002;23257 3404;23728 3544;23709 3728;23256 6930;22855 6833 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="12">21158 14273 1;21537 14132;21723 13824;21745 13421 1;21770 12958;21750 12623;21449 12270;21227 12043 1;21095 12696;21151 13208;21107 13974;21158 14273 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="45">21107 13974;20156 13930;20279 12709 1;20534 12475;20696 12312;20776 11976 1;20932 11321;20993 10948;21107 10284 1;21173 9901;21212 9646;21474 9359 1;21931 8858;21894 8372;21984 7695 1;22086 6943;22198 6525;22220 5767 1;22226 5552;22133 5415;21967 5279;22133 4293;22150 4302 1;22545 4027;22729 3760;22865 3299;23249 3421;23236 3484 1;23093 4035;23084 4385;22969 4966 1;22827 5683;22876 6103;22855 6833;23122 7885;22686 9525 1;22545 10022;22360 10320;21936 10615 1;21570 10870;21475 11166;21343 11592 1;21066 12485;21161 13041;21107 13974 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">20275 4808;</coords></object>
<object type="1" symbol="82"><coords count="44">22888 8765;22686 9525 1;22545 10022;22360 10320;21936 10615 1;21570 10870;21475 11166;21343 11592 1;21066 12485;21161 13041;21107 13974;21135 14138;21158 14273;21207 14553 1;21246 14622;21310 14673;21397 14691 1;21566 14726;21735 14726;21792 14889 1;21883 15147;21957 15283;22045 15542 1;22069 15613;22027 15709;21953 15709 1;20377 15709;19494 15810;17918 15777 1;17781 15774;17682 15692;17641 15561 1;17599 15429;17665 15268;17801 15246 1;18532 15127;18955 15175;19695 15160 1;19924 15155;20032 14931;20065 14704 1;20079 14605;20088 14521;20094 14441;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="18">17814 14442;17685 15324;17728 15275 1;17749 15260;17774 15250;17801 15246 1;18532 15127;18955 15175;19695 15160 1;19924 15155;20032 14931;20065 14704 1;20108 14411;20096 14242;20151 13951;20107 13988;19130 14578;17814 14442 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="56">17915 17608;17933 16751;17761 16725;16570 16718;16577 16178;15850 16174;15845 16706;12737 16706;12740 16178;12013 16174;12011 16694;10716 16680;6602 16041;6151 15971;5324 15843;4025 15843;4033 13922;3562 13901;3562 13963 1;3509 14844;2789 15775;1909 15788;1947 15864;2211 16210;2401 16758;3438 16746;3425 16672;3820 16727;3931 16718;4439 16734;4408 17018;4423 17044;4764 17060;4776 16943;4797 16723;4853 16717;5197 16718;7695 17103;9427 17375;9199 18954;10105 18960;10105 18103;10173 17486;10297 17505;10684 17564;11491 17570;11497 18076;12338 18091;12329 17943;12326 17568;15181 17581;15186 18076;16039 18054;16018 17993;16014 17579;17915 17608 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="104">22611 16755;16570 16718;16577 16178;15850 16174;15845 16706;12737 16706;12740 16178;12013 16174;12011 16694;10716 16680;6602 16041;6151 15971;5324 15843;4025 15843;4033 13924;4008 13921;4033 13922;4033 13924;10064 14717;13230 15135;14747 14280;15087 11568;15660 11648;15785 11666;15562 11927;15278 14672;16987 14864 1;17147 14813;17172 14623;17128 14455;17091 14358;17093 14358 32;17340 12322 32;16726 12247;16660 12230 1;16702 11954;16559 11759;16335 11594;16334 11568;17111 11140;17131 10944;17155 10696;17691 10758;18211 10472;18918 11185;18871 11179;18181 11569;17845 14343;17831 14444;17814 14442;17693 15272;17763 15625;17763 15729 1;17806 15760;17858 15776;17918 15777 1;19494 15810;20377 15709;21953 15709 1;22027 15709;22069 15613;22045 15542 1;21957 15283;21883 15147;21792 14889 1;21735 14726;21566 14726;21397 14691 1;21256 14661;21175 14547;21164 14405;21158 14273 1;21537 14132;21723 13824;21745 13421 1;21770 12958;21750 12623;21449 12270;21245 12061;21223 12064 1;21252 11916;21291 11760;21343 11592 1;21475 11166;21570 10870;21936 10615 1;22360 10320;22545 10022;22686 9525;23030 8231;23075 8146;23046 10154 1;22731 10352;22510 10560;22497 10932 1;22486 11234;22722 11439;23014 11511;23075 11514;23058 11950;22281 11949;22281 14593;22613 14601;22611 16755 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="37">11945 13911;10753 13764 32;10804 13348;10320 13288 32;10610 10866;8540 10612;8452 12254 32;7686 12210;7661 12656 32;6462 12587 32;6487 12142;5422 12081 32;5480 10866;5352 10859 32;5404 9923 32;5809 9945;5928 7812;5604 7794 32;5656 6870 32;5979 6888;6000 6509;8752 6666 32;8608 9254;10781 9521;10990 7750 32;14090 8132 32;13945 9294;14066 9309 32;13965 10135 32;13558 10085;13234 12735;13585 12778 32;13480 13636 32;13129 13593;13090 13910 32;11961 13781;11945 13911 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">13940 10118;13819 11026;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">13767 10093;13652 11001;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">13857 10996;14592 11086;15354 4865;14469 4757;14331 5891;11134 5502;11259 4475;10641 4410;10484 5768;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">4386 4416;</coords></object>
<object type="0" symbol="84"><coords count="1">9765 4946;</coords></object>
<object type="0" symbol="84"><coords count="1">10875 5017;</coords></object>
<object type="0" symbol="84"><coords count="1">14675 5350;</coords></object>
<object type="1" symbol="63"><coords count="11">5665 7043 1;5169 7135;4330 7334;4391 6833;4733 4996;8632 5330;8472 6650;6000 6509;5979 6888;5656 6870;5665 7043 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="3">8707 6629;8824 5661;9960 5798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">10431 7656;10575 6491 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="108"><coords count="3">10368 6525;11453 6659 32;12487 6786 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="5">11128 7742;11191 7229;12949 7445;13093 6276;10443 5951;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">14459 6723;</coords></object>
<object type="0" symbol="84"><coords count="1">11787 5856;</coords></object>
<object type="1" symbol="120"><coords count="5">12061 5632 32;12608 5697 32;12570 6014 32;12108 5958 32;12061 5632 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">12610 5695;12572 6014;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="9">11694 5575;11458 5950;10490 5815;10493 5697;10650 4401;11259 4475;11134 5502;11459 5542;11694 5575 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="12">8645 6648;8722 6506;8824 5661;9875 5788;9978 5781;10135 4366;9542 4300;9420 5398;8644 5331;8626 5375;8472 6650;8645 6648 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">10462 7609 32;9723 7518 32;9500 9336 32;10239 9427 32;10462 7609 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">9721 7520;9752 7266;10336 7337;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">9691 7665;8712 7545;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="16">8650 9233;9496 9346;9723 7536;10456 7615;10242 9451;10770 9495;11053 7070;12820 7287;12929 6393;10460 6101;10639 4391;10142 4361;9967 5874;8890 5730;8755 6694;8650 9233 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="13">15987 11228;15699 11184;15701 11132;16272 6501;18224 6688;18588 6310;18745 4417;19446 4487;19433 4565;19245 6655;16683 8161;16334 11084;15987 11228 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="15">19439 4495;19478 4062;17219 3859;17183 4259;18297 4358;18125 6237;15766 6011;15135 11130;15688 11195;15712 11044;16272 6501;18224 6688;18588 6310;18745 4417;19439 4495 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="20">12566 6087;12576 5966;12608 5697;12729 5696;14331 5891;14469 4757;15354 4865;14592 11086;13857 10996;13853 10772;13940 10118;13989 9740;14042 9306 32;13945 9294;14090 8132 32;11199 7776;11240 7291;12941 7474;13046 6148;12566 6087 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">10367 13163;9581 13043;9402 13021;9278 14045;13167 14516;14217 13955;14549 11485;13466 11339;13403 11392;10367 13163 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="14">4036 3791;4123 3792;4830 3853;4732 4996;4727 5029;4391 6833 1;4330 7334;5169 7135;5665 7043;5973 7795;5894 8450;5718 8451;4058 8315;4036 3791 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="12">4062 8668;4244 8690;5480 8791;5458 9055;5414 10133;5397 10831;5493 10849;5397 12070;5303 12090;4008 12467;4036 12463;4062 8668 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="55">8896 13065;8399 12943;8425 12271;8522 10956;8540 10612;10610 10866;10336 13155;9385 13022;9298 13883;9278 14045;13167 14516;14217 13955;14549 11485;13466 11339;13572 10081;13904 10116;13834 10971;13949 11007;14592 11086;15222 5940;15766 6011;15135 11130;16003 11232;16334 11084;16683 8161;19245 6655;19476 4088;19953 4131;19937 4130;19601 7435;18595 7999;18344 8127;17408 8630;17155 10696;17143 10825;17131 10944;17111 11140;16334 11568;16335 11594 1;16337 11596;16340 11597;16342 11599;16120 11686;16082 11707;15087 11568;14747 14280;13230 15135;7474 14376;6955 14308;4033 13924;4033 13922;4008 13921;4035 13359;8792 13970;8896 13065 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">4035 787;4043 2112;4553 2154;4632 1155 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">5570 1136;5480 2269;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">5551 1154;11281 1679;11184 2740;11959 2811;12266 -536;10003 -741;10017 -61;9388 -48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="7">4295 1119 32;4285 -2381 32;9374 -2367 32;9382 500 32;5515 511;5517 1116 32;4295 1119 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">9390 -1934;9982 -1936;9984 -1317;12308 -1102;12722 -5610;7940 -5668;4495 -5710 1;4235 -5713;4022 -5505;4019 -5245;4047 -3858 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">5933 -4668;</coords></object>
<object type="1" symbol="74"><coords count="4">5776 -2383;5780 -3726;4136 -3731;4135 -3298;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">4133 -2417;4131 -2845;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">4118 -2070;4111 798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">4301 -2057 32;3999 -2062 32;4007 -2439 32;4300 -2440 32;4301 -2057 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">10330 1127;</coords></object>
<object type="0" symbol="84"><coords count="1">6387 857;</coords></object>
<object type="0" symbol="84"><coords count="1">7756 935;</coords></object>
<object type="0" symbol="84"><coords count="1">9074 1031;</coords></object>
<object type="0" symbol="84"><coords count="1">11625 2230;</coords></object>
<object type="0" symbol="84"><coords count="1">4309 1625;</coords></object>
<object type="1" symbol="62"><coords count="7">4032 762;4267 766;4272 1146;4616 1150;4559 2158;4032 2105;4032 762 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="17">9983 -1922 1;10007 -2332;10107 -2879;10515 -2829 1;11474 -2712;12113 -2052;12286 -1102 1;12394 -507;12077 -178;11867 390 1;11755 693;11519 970;11239 808 1;10812 561;10374 276;10009 -55;9983 -1922 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">11666 -5043;</coords></object>
<object type="1" symbol="62"><coords count="21">5511 1137;5515 511;9382 500 32;9380 -40;9454 -49;10017 -61;10073 2 1;10424 309;10837 575;11239 808 1;11519 970;11755 693;11867 390 1;11998 35;12172 -227;12257 -519;12253 -394;11959 2811;11184 2740;11281 1679;5511 1137 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="4">16348 834;16304 1409;16863 1452;16813 2101;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="4">18420 1685;17846 1602;17772 2107;17385 2050;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">16608 846;17033 908 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">17597 990;18482 1118 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="37">20003 2611 32;18768 2432 32;18837 1956;18406 1893 32;18756 -517;16686 -819;16562 812 32;15763 751;15725 1239 32;14568 1150 32;14606 663;13533 581 32;13625 -637;13423 -653 32;13486 -1481 32;13966 -1444;14131 -3607;13715 -3639 32;13783 -4526 32;14198 -4494;14235 -4975 32;16987 -4765 32;16790 -2177;18951 -1862;19207 -3630 32;22296 -3182 32;22127 -2020;22275 -1999 32;22146 -1107 32;21713 -1169;21357 1285;21792 1348 32;21663 2240 32;21228 2177;21171 2573 32;20031 2420;20003 2611 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">17392 2172;17283 3313;21036 3671;22233 2682;22650 167;21589 -9;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">13322 -1470;13395 -2441;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">13497 -1526;13567 -2432;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">13694 -1508;13753 -2421;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="10">13581 -2408;13597 -2621;12950 -2671;12431 2880;13490 2979;13597 1836;16450 2103;16347 3205;16781 3254;16912 2098 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">13197 2380;</coords></object>
<object type="0" symbol="84"><coords count="1">16625 2685;</coords></object>
<object type="0" symbol="84"><coords count="1">17594 2810;</coords></object>
<object type="1" symbol="63"><coords count="18">16265 1455;16161 2053;16054 2066;13597 1836;13564 1825 1;13266 1692;13076 1454;13101 1128 1;13121 866;13280 709;13520 603;13735 596;14606 663;14568 1150 32;15725 1239 32;15763 751;16249 788;16265 1455 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="10">16235 1407;16250 1541;16161 2053;16250 2084;16450 2103;16347 3205;16781 3254;16912 2098;16839 1487;16235 1407 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="19">13602 1833;13535 1812 1;13254 1676;13077 1443;13101 1128 1;13121 866;13280 709;13520 603;13547 398;13625 -637;13423 -653 32;13486 -1481 32;13602 -2621;13319 -2642;12950 -2671;12431 2880;13490 2979;13567 2162;13602 1833 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="12">18422 1745;17834 1681;17772 2107;17429 2056;17389 2206;17283 3313;21036 3671;22233 2682;22650 167;21589 -9;21206 2202;18422 1745 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">21976 -1108;21857 -309;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="133"><coords count="2">22149 -1083;22037 -284;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">22587 3131;22768 2993;23972 -4934;24671 -4841;25953 -5882 1;26121 -5842;26286 -5802;26450 -5762;24934 -153 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="108"><coords count="4">25574 -4922;25830 -5818 32;26328 -5676 32;26057 -4724 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="4">24964 -5049;25509 -4918;25731 -5699;24964 -5049 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">22207 -4224;</coords></object>
<object type="1" symbol="74"><coords count="3">16979 -4912;17754 -4853;17805 -5529;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">17900 -3718;16921 -3838;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="3">17930 -3863;17961 -4117;18545 -4046;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="16">16859 -2150;17705 -2037;17932 -3847;18665 -3768;18451 -1932;18979 -1888;19262 -4313;21029 -4096;21138 -4990;19816 -5146;19812 -5404;17794 -5531;17753 -4872;17038 -4877;16964 -4689;16859 -2150 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="108"><coords count="3">18577 -4858;19662 -4724 32;20696 -4597 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">18640 -3727;18784 -4892 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="6">19337 -3641;19400 -4154;21158 -3938;21302 -5107;19779 -5294;19820 -5648;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">18671 -3774 32;17932 -3865 32;17709 -2047 32;18448 -1956 32;18671 -3774 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">22076 -309;22705 -204;23439 -5002;21509 -5248 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="13">14071 -3051;13931 -3054;12998 -3126;13224 -5601;13329 -5602;16481 -5563;17695 -5509;17761 -5363;17700 -4918;17098 -4883;16976 -4761;14228 -4970;14071 -3051 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="14">22284 -3178;21979 -1137;22110 -1137;22135 -986;22043 -329;22133 -299;22705 -204;23439 -5002;21509 -5248;21360 -5202;21142 -3998;19475 -4120;19414 -3588;22284 -3178 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="34">19884 4517;20085 4537;21486 4619;22139 4298;22230 4245 1;22570 3989;22738 3728;22865 3299;22977 3335;23094 3348;23103 3279;23095 3277 1;23002 2967;23003 2765;23069 2448 1;23171 1958;23286 1698;23426 1218 1;23519 897;23619 665;23738 430;23777 276 1;23853 -143;23705 -485;23820 -961;24675 -4843;23975 -4930;23807 -3846;22768 2993;22587 3131;22188 3410;21167 4192;19937 4130;19884 4517 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="11">21739 5134;21980 5325;21975 5231;22133 4293;22139 4296;22064 4335;21486 4619;19898 4526;19851 5004;20048 5016;21739 5134 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="21">18263 10444 1;18453 10569;18620 10698;18824 10598 1;19001 10511;19101 10463;19278 10376 1;19386 10323;19465 10262;19478 10142 1;19494 9991;19482 9905;19490 9753 1;19497 9618;19504 9503;19398 9420 1;19262 9314;19186 9254;19050 9148;18948 10012;18263 10444 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">19197 10180;</coords></object>
<object type="1" symbol="62"><coords count="59">19834 4997;19919 5008;20048 5016;21739 5134;21980 5325;22055 5359 1;22165 5471;22225 5594;22220 5767 1;22198 6525;22086 6943;21984 7695 1;21911 8245;21922 8669;21683 9078;21682 9062;21695 9035 1;21646 8998;21594 9002;21537 9026 1;21243 9151;21079 9223;20779 9331 1;20311 9500;20389 10026;20316 10518 1;20268 10844;20220 11035;20055 11320;19958 11327;18871 11179;18798 11220;18107 10537;18284 10431;18263 10444 1;18453 10569;18620 10698;18824 10598 1;19001 10511;19101 10463;19278 10376 1;19386 10323;19465 10262;19478 10142 1;19494 9991;19482 9905;19490 9753 1;19497 9618;19504 9503;19398 9420 1;19262 9314;19186 9254;19050 9148;19050 9079;19073 8852;18592 7994;18853 7854;19601 7435;19834 4997 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="33">20589 12386 1;20673 12273;20735 12147;20776 11976 1;20932 11321;20993 10948;21107 10284 1;21173 9901;21212 9646;21474 9359 1;21540 9286;21596 9214;21644 9141;21695 9035;21748 8954 1;21921 8582;21918 8190;21984 7695 1;22086 6943;22198 6525;22220 5767 1;22223 5648;22196 5553;22143 5468;22068 5372;21978 5279;21975 5231;22133 4293;22139 4296;22209 4260 1;22443 4088;22598 3915;22713 3691;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="13">23031 2986 1;23010 2814;23026 2656;23069 2448 1;23171 1958;23286 1698;23426 1218 1;23547 801;23679 535;23851 217 1;23913 101;23980 -22;24054 -161;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="62">25821 -6433;26301 -8073;25840 -8159 1;24256 -8465;22867 -8608;20879 -8709 1;16304 -8942;13770 -8820;9190 -8919 1;4796 -9014;2347 -8930;-2047 -8813 1;-2060 -8813;-2074 -8812;-2087 -8812;-2323 -8802;-2508 -8804;-2162 -7324;-1942 -7315;-634 -7372;-228 -7376 1;1275 -7275;2190 -6212;2190 -4523;2195 53;2212 12685 1;2213 13337;1671 13976;1033 14260;1705 15796;2002 15783 1;2839 15709;3511 14813;3562 13963;3562 13901;3565 13394;3636 974 1;3626 103;3620 -628;3616 -1321;3611 -1977 1;3604 -2952;3596 -3914;3574 -5166 1;3568 -5531;3563 -5779;3821 -6165;3984 -6380 1;4551 -7082;5205 -7450;6150 -7440;6830 -7440;8069 -6201;9489 -6160 1;12476 -6117;14430 -6142;17663 -6017 1;19870 -5932;21105 -5796;23301 -5561;24571 -5425;25821 -6433 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="13">3552 13926;4021 13956;4058 13377;4021 13309;4038 8678;5486 8809;5399 9917;5800 9917;5870 8469;4029 8321;4038 4543;3602 4517;3552 13926 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">8895 13158;8792 13970;4035 13359;4038 8674;5480 8791;5458 9055 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="9">9962 5927;10135 4366;9542 4300;9420 5398;4732 4996;4830 3853;4044 3790;4046 8315;5869 8463 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="102">3616 4558;4044 4580;4038 4168;4036 3791;4123 3792;4830 3853;4733 4983;4832 5005;9420 5398;9542 4300;10135 4366;10135 4367;10143 4391;10648 4416;10650 4401;11259 4475;11205 4921;11180 5127;11134 5502;14331 5891;14469 4757;15354 4865;15217 5985;15750 6039;15845 6019;18125 6237;18297 4358;17183 4259;17219 3859;17283 3313;17392 2172;17452 2057;17723 2075;17865 1625;18420 1674;18760 -516;16662 -812;16551 823;16379 811;16354 1409;16878 1483;16915 2112;16900 2203;16781 3254;16347 3205;16450 2103;13597 1836;13490 2979;12431 2880;12950 -2671;13597 -2621;13581 -2408;13518 -1534;13949 -1497;14073 -3039;13912 -3055;12998 -3126;13227 -5633;12706 -5625;12710 -5448;12308 -1102;9984 -1317;9982 -1936;9390 -1934;9409 -66;9620 -53;10017 -61;10003 -741;12266 -536;11959 2811;11184 2740;11281 1679;7495 1332;7139 1299;5551 1154;4632 1134;4624 1254;4553 2154;4043 2112;4035 787;4010 -2073;4022 -2443;4247 -2427;5685 -2403;5728 -3687;4050 -3816;4044 -4020;4019 -5245 1;4021 -5455;4160 -5631;4350 -5689;4197 -6168 1;4075 -6167;3950 -6166;3821 -6165 1;3563 -5779;3568 -5531;3574 -5166 1;3599 -3717;3606 -2657;3614 -1516;3616 4558 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">17695 -5509;16481 -5563;13223 -5602;12998 -3126;14080 -3042 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="58">4323 -5681;4144 -6144;4467 -6170 1;5909 -6184;6890 -6207;8484 -6177 1;12069 -6110;14081 -6155;17663 -6017 1;19601 -5942;20790 -5828;22539 -5642;22674 -5628 1;22875 -5607;23083 -5584;23301 -5561;24571 -5425;24621 -5467;24839 -4981;24662 -4852;24600 -4852;23975 -4930;23807 -3846;23793 -3753;23687 -3055;22768 2993;22587 3131;22271 3347;21167 4192;19937 4130;19929 4208;19466 4196;19476 4088;17140 3856;17220 3313;17519 3336;21036 3671;22233 2682;22491 1123;22559 717;22650 167;21589 -9;21724 -1115;22099 -1063;22038 -330;22701 -208;23439 -4988;21452 -5253;19620 -5382;17825 -5493;17302 -5526;16481 -5563;13329 -5602;13224 -5601;13222 -5580;12503 -5612;7940 -5668;4323 -5681 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="3">3517 28551;2526 28408;2610 27833;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">3108 29551;3200 28846;2099 28680;2212 27782;2801 27865 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">3550 27970;4842 28153 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">3504 28696 32;3979 28764 32;4081 28058 32;3606 27990 32;3504 28696 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">3586 27950 32;2450 27786 32;2381 28261 32;3517 28425 32;3586 27950 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">3028 27872;2963 28328;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">3314 27913;3249 28369;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="31">-11198 22399 33;-11150 22359;-11086 22337;-11018 22344 1;-10753 22371;-10605 22387;-10340 22415 1;-10205 22429;-10108 22550;-10122 22685 1;-10172 23160;-10199 23427;-10248 23902 1;-10255 23975;-10291 24038;-10343 24081 33;-10397 24126;-10468 24150;-10543 24142 1;-10809 24115;-10959 24100;-11225 24073 1;-11281 24067;-11329 24040;-11362 23999 33;-11395 23959;-11412 23906;-11407 23850 1;-11276 22495;-11244 22439;-11198 22399 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="10">-6378 64888 1;-6287 64699;-6123 64560;-5911 64586 1;-5562 64628;-5323 64706;-5013 64542 1;-4745 64400;-4558 64257;-4395 64074;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-7851 63305 1;-8047 63278;-8230 63260;-8403 63242 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="7">-8840 63199 1;-9471 63136;-9542 63123;-10119 62694 1;-10587 62346;-10459 62286;-10929 62088 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-14826 -54891 32;-14022 -54887 32;-14019 -55628 32;-14823 -55632 32;-14826 -54891 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="29">9110 -2374 1;9078 -3197;8177 -3575;7370 -3515 1;6710 -3466;6248 -3036;6102 -2390;5823 -2391;5797 -3751;4044 -3769;4045 -3952;4019 -5245 1;4022 -5505;4235 -5713;4495 -5710;7940 -5668;12712 -5609;12692 -5255;12312 -1141;12259 -1231 1;12054 -2111;11430 -2717;10515 -2829 1;10109 -2879;10008 -2337;9983 -1928;9400 -1937;9356 -2373;9110 -2374 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="8">6102 -2390 1;6248 -3036;6710 -3466;7370 -3515 1;8177 -3575;9078 -3197;9110 -2374;6102 -2390 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">-24477 -63943;-24629 -62010;-20633 -61694;-20516 -63604;-24477 -63943 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="52">-20853 -60145;-27771 -60273 1;-27775 -60310;-27802 -60370;-27800 -60413 1;-27786 -60700;-27950 -61173;-28236 -61198 1;-29917 -61347;-30864 -61418;-32545 -61564 1;-33082 -61611;-33281 -62083;-33819 -62122 1;-34291 -62157;-34722 -61915;-34901 -61477 1;-34949 -61360;-35075 -61215;-35142 -61101;-35215 -60897 1;-36368 -61028;-37365 -61163;-38596 -61463;-38746 -61500;-38614 -61655 1;-38493 -61886;-38397 -62327;-38313 -62453 1;-38095 -62780;-37935 -63041;-37548 -63106 1;-37165 -63170;-36980 -63461;-36869 -63834 1;-36718 -64341;-36757 -64658;-36758 -65181;-35710 -65008 1;-32039 -64560;-29975 -64340;-26289 -64048;-24823 -63944;-24479 -63915;-24629 -62010;-20705 -61700 1;-20737 -61562;-20767 -61405;-20780 -61174 1;-20808 -60674;-20840 -60646;-20853 -60145 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-18988 -39976;-18754 -38787;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="183">-18207 -38881;-18754 -38805;-19008 -39972;-20112 -37131;-20114 -36709;-19966 -36611;-19706 -36392;-24137 -31127;-23923 -30939 1;-23621 -30518;-23629 -29932;-23978 -29518 1;-24388 -29031;-25100 -28995;-25602 -29386;-26893 -27858;-25122 -26454;-24961 -26630 1;-24936 -26660;-24910 -26690;-24885 -26720 1;-24148 -27589;-22980 -27466;-21919 -27027;-21049 -28336 1;-21436 -28858;-21602 -29550;-21470 -30177;-21582 -30354 1;-21724 -30807;-21734 -31220;-21411 -31592 1;-20327 -32854;-19715 -33559;-18624 -34819;-18441 -35030;-18379 -35106;-17465 -36214;-17265 -36424;-16354 -37380 1;-15924 -37718;-15532 -37676;-14985 -37676;-14984 -37662;-14710 -37688;-8935 -37934;-8883 -38043 1;-8774 -38184;-8615 -38279;-8423 -38280 1;-8092 -38282;-7756 -38207;-7673 -37887;-7551 -37878;-7315 -37878 1;-6526 -37878;-6023 -37866;-5326 -38236;-5176 -37952;-4680 -38125 1;-3565 -38600;-2758 -38891;-1792 -39796;-1243 -40364;748 -42424;886 -42576;1149 -42831 32;1471 -42499 32;1616 -42660;2180 -43259;2129 -43314;1884 -43579 1;2467 -44125;2788 -44392;3505 -44540;3595 -44147;3824 -44191 1;4007 -44222;4196 -44235;4379 -44246;4385 -44423;4372 -44659 32;5795 -44739 32;5818 -44342;5945 -44323;8137 -44437;8132 -44614;8123 -44893 32;12257 -45030 32;12271 -44574;12598 -44592;14914 -44715;14940 -44919 1;15009 -45285;15295 -45485;15716 -45485 1;15952 -45485;16265 -45382;16289 -45147 1;17338 -45181;18064 -45216;18724 -45355;18445 -46983 1;17944 -46872;17399 -46823;16792 -46797;16760 -47246;16146 -47187;13974 -47064;13952 -46935 1;13875 -46707;13617 -46571;13356 -46571 1;13052 -46571;12720 -46719;12715 -47049;12593 -47046;11067 -47063;11075 -46920;11082 -46535 32;10576 -46526 32;10566 -47058;10325 -47046;4872 -46777;4842 -46767;4858 -46671;4883 -46231 32;4263 -46196 32;4232 -46744 32;4268 -46746;4052 -46733 1;3702 -46705;3399 -46643;3051 -46538;3114 -46424;3193 -46049 1;2207 -45841;1716 -45432;914 -44823;609 -45154;427 -44960;-263 -44284;-228 -44250;51 -43963 32;-375 -43550 32;-686 -43870;-834 -43713;-2701 -41539;-2569 -41440;-2362 -41227 32;-2788 -40814 32;-3110 -41146 32;-3269 -40983 1;-3653 -40638;-3957 -40445;-4464 -40187;-4395 -40090;-4254 -39807 1;-4906 -39451;-5328 -39344;-6077 -39306;-7717 -39244;-7735 -39680;-8208 -39663;-9463 -39638;-9543 -39642;-9521 -39468;-9506 -39189;-10752 -39183 1;-10768 -38877;-11076 -38680;-11382 -38696 1;-11830 -38719;-11853 -39160;-11850 -39615;-12280 -39623;-15106 -39533;-15047 -39404;-14993 -39190;-17794 -38154 1;-18071 -38341;-18169 -38590;-18207 -38881 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="73">-18748 -38799;-18988 -40006;-12158 -40150;-11452 -40124;-10213 -40115;-9035 -40158;-7648 -40210;-6296 -40245;-5397 -40350;-4307 -40838;-2649 -42399;-625 -44597;-573 -44667;-58 -45252;1076 -46264;2376 -46979;3039 -47049;4120 -47406;4766 -47398;11152 -47639;12755 -47632;16778 -47725;16796 -47281;16762 -47222;14077 -47070;13975 -47056 1;13975 -47063;13975 -47070;13975 -47077;12843 -47054;12715 -47045;11202 -47062;11072 -47067 32;10659 -47060;10420 -47051;4872 -46777;4723 -46727;4721 -46770 32;4282 -46745;4035 -46739 1;3723 -46720;3512 -46673;3239 -46594;3091 -46532 1;2235 -46405;1511 -45966;776 -45307;607 -45137;-53 -44490;-333 -44233;-705 -43864;-2661 -41586;-2684 -41559 32;-3004 -41248;-3113 -41128 1;-3514 -40747;-3803 -40540;-4244 -40302;-4450 -40182 1;-5057 -39855;-5520 -39758;-6225 -39733;-7502 -39688;-7735 -39672;-9463 -39638;-9610 -39645;-11634 -39656;-11831 -39639;-14928 -39552;-18210 -39492;-18210 -39484;-18221 -38869;-18748 -38799 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="18">-34953 75446;-34909 75437 1;-34885 75438;-34861 75437;-34836 75436 1;-34316 75407;-33917 74962;-33946 74442 1;-33975 73921;-34420 73523;-34941 73552 1;-35461 73581;-35859 74026;-35830 74546 1;-35807 74969;-35509 75311;-35118 75409;-34953 75446 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="156"><coords count="4">3594 83351;3829 78922;9430 77657;9430 79860;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="11">3704 83347;6001 83499;6036 82632;6774 82597;7477 80910;7489 80265;7934 79785;9352 79844;9423 77676;3798 78941;3704 83347 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="11">-8233 53585;-8329 54305 1;-8097 54344;-7868 54382;-7570 54416 1;-7384 54438;-7353 54626;-7282 54799;-6770 54866;-6647 53800;-8233 53585 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="22">-8329 54305;-8233 53585;-9510 53412 1;-9874 53365;-10139 53588;-10157 53974;-10475 55977 1;-10281 56012;-10172 56031;-9978 56066 1;-9804 56097;-9743 55872;-9716 55698 1;-9651 55270;-9653 55025;-9576 54599 1;-9529 54336;-9292 54149;-9027 54189 1;-8755 54230;-8541 54268;-8329 54305 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="26">41229 47215;41152 48105;40846 48073 32;40502 51376;40058 51666;40401 52092;40272 53204;40116 54675;39791 56344;38603 56259;38386 56113 1;38282 56062;38166 56030;38043 56021 1;37829 56005;37627 56062;37464 56172 1;37405 55848;37180 55578;36878 55453;36666 55411;37783 49216;38773 49768;39027 47420;39593 47081;41229 47215 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="24">48114 43686;49098 43757;49942 44659;49872 45327;50094 45366;49983 46490;49771 46484;49702 47085 32;50738 47202;50671 47826;51702 47941;51345 51221;50677 51147;50698 50900;46421 50447 32;46491 49775 32;42648 49374 32;42763 48273 32;41157 48105;41224 47213;41083 47202;41060 46522;47575 46897;48114 43686 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="5">41230 47224;39582 47089;39024 47445;38763 49761;32422 46329 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="7">54487 57430;57065 44942 1;57183 44357;56706 43874;56107 43780;49149 43259;49102 43835 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">48105 43744;49108 43837;49153 43321;48146 43240;48105 43744 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">48168 43148;48117 43750 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="11">49841 44658;50753 44749;51043 44551;51266 44559;51457 44807;52468 44899;52567 43962;51242 43415;49129 43266;49104 43871;49841 44658 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">13788 60561;</coords></object>
<object type="1" symbol="23"><coords count="13">-28774 122236 1;-29487 122231;-30069 122805;-30074 123518 1;-30079 124231;-29505 124812;-28792 124817 1;-28079 124822;-27498 124248;-27493 123536 1;-27488 122823;-28062 122241;-28774 122236 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="9">-26895 124286;-25138 122498;-24000 123616;-24576 124203 1;-25103 123685;-25542 123631;-26078 124178;-26527 124635;-26895 124286 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="22">-28733 126000;-27664 126000;-25823 124159 1;-25558 123894;-25129 123894;-24864 124159 1;-24585 124438;-24585 124889;-24864 125168 1;-25660 125964;-26106 126410;-26902 127206 1;-27058 127362;-27181 127468;-27401 127468 1;-28348 127468;-28880 127468;-29827 127468 1;-29922 127468;-29999 127391;-29999 127296;-28733 126000 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="13">-35225 129007;-32156 129007;-28742 125593 1;-28618 125469;-28591 125176;-28904 125176 1;-29650 125176;-30067 125176;-30813 125176 1;-31207 125176;-31481 125250;-31759 125529;-35225 129007 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="22">-34258 126602;-33171 126602;-31927 125358 1;-31871 125302;-31909 125164;-31989 125164 1;-33002 125164;-33570 125164;-34583 125164 1;-34783 125164;-34905 125242;-35046 125383 1;-35898 126235;-36375 126712;-37227 127564 1;-37507 127844;-37507 128297;-37227 128577 1;-36925 128879;-36455 128866;-36153 128564;-34258 126602 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="170"><coords count="5">96915 -144926;96914 142524 32;-102705 142524 32;-102704 -144926 32;96915 -144926 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="149"><coords count="75">-94724 99498;29307 113498;38500 125237;45571 125803;49531 117317;74846 105013;77816 98932;91676 -31463;87716 -42777;78947 -41363;77816 -34857;72159 -34857;66302 -44060;56502 -43843;52359 -67385;26620 -63708;-47487 -75871;-48878 -61311;-52432 -52082;-86725 72900;-89598 78252;-95147 91437;-94724 99498 18;-87750 85332;-87944 85220;-88019 84989;-88000 84582;-87663 84664;-87700 85032;-87750 85332 18;-51203 55455 32;-49647 55455 32;-49647 60864 32;-51203 60864 32;-51203 55455 50;-50724 14979 32;-50024 14979 32;-50024 15742 32;-50724 15742 32;-50724 14979 50;-50688 1358 32;-50051 1358 32;-50051 -442 32;-50688 -442 32;-50688 1358 50;-13135 -24391 32;-12709 -24391 32;-12709 -8940 32;-13135 -8940 32;-13135 -24391 50;-13058 16186 32;-12722 16186 32;-12722 21066 32;-13058 21066 32;-13058 16186 50;-13064 29485 32;-12693 29485 32;-12693 30722 32;-13064 30722 32;-13064 29485 50;-13247 97034 32;-12628 97034 32;-12628 100163 32;-13247 100163 32;-13247 97034 50;-13097 58412 32;-12734 58412 32;-12734 61512 32;-13097 61512 32;-13097 58412 50;24437 65027 32;24755 65027 32;24755 69959 32;24437 69959 32;24437 65027 50;</coords><pattern rotation="0"><coord x="-50407" y="-38556"/></pattern></object>
<object type="1" symbol="148"><coords count="2">62093 -43270;62093 -44202;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="148"><coords count="2">24593 -63582;24593 -64514;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="148"><coords count="2">-12907 -69552;-12907 -70484;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="148"><coords count="2">-50415 -56514;-50415 -57446;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="148"><coords count="2">-87907 75943;-87907 75011;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="1"><coords count="79">-61777 6671;-59865 -675 1;-59704 -1366;-59397 -1821;-58748 -2106 1;-58038 -2418;-57546 -2345;-56847 -2682 1;-56552 -2824;-56556 -3104;-56410 -3397 1;-56291 -3636;-56214 -4093;-56480 -4077 1;-56850 -4055;-57052 -3981;-57405 -3868 1;-57746 -3759;-58103 -4103;-58103 -4461 1;-58103 -5022;-57921 -5446;-57440 -5735 1;-56833 -6099;-57117 -6738;-57143 -7445 1;-57171 -8196;-57248 -8784;-57090 -9364;-54760 -17861 1;-54461 -18952;-53410 -19207;-52278 -19382 1;-50704 -19636;-49098 -18950;-47816 -17606 1;-46157 -15867;-46149 -13999;-46467 -11617 1;-46602 -10606;-47251 -9928;-48260 -9778 1;-49255 -9630;-49794 -9485;-50215 -10431 1;-50528 -11135;-49568 -11505;-49620 -12349 1;-49697 -13596;-52184 -13647;-52081 -11757 1;-52027 -10780;-52107 -10172;-51505 -9401 1;-50918 -8650;-50295 -8533;-49359 -8355 1;-48108 -8118;-47247 -8285;-46149 -8931 1;-44572 -9859;-44469 -11385;-44208 -13196 1;-43662 -16985;-46000 -19475;-49266 -21471 1;-50314 -22111;-50798 -22096;-51830 -22761 1;-52384 -23118;-52428 -23955;-52332 -24607 1;-51945 -27234;-51696 -28526;-51066 -31105 1;-50488 -33471;-50377 -34918;-49862 -37298;-49324 -39793 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="1"><coords count="54">-48266 -43193;-44969 -55600 1;-44770 -56350;-44658 -56771;-44459 -57521 1;-44403 -57731;-44126 -57609;-43909 -57599 1;-37936 -57328;-34589 -57125;-28611 -57007 1;-28172 -56999;-27797 -57000;-27550 -56637 1;-27347 -56339;-26998 -56491;-26637 -56489 1;-22731 -56463;-20534 -56558;-16644 -56908 1;-14125 -57135;-12753 -57589;-10241 -57885 1;-8135 -58133;-6949 -58248;-4832 -58374 1;-3352 -58462;-2528 -58619;-1046 -58670 1;-695 -58682;-321 -58841;-313 -59193 1;-299 -59779;-292 -60108;-279 -60694 1;-271 -61060;-683 -61180;-1045 -61235 1;-4468 -61755;-6395 -62109;-9856 -62230 1;-13334 -62352;-15274 -62620;-18737 -62963 1;-24631 -63547;-27958 -63634;-33847 -64260 1;-36788 -64573;-38425 -64883;-41324 -65469 1;-41971 -65600;-42155 -65883;-42027 -66530;-41134 -71044 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="1"><coords count="20">-90081 87295 1;-88904 87663;-88866 87631;-87777 87896 1;-86608 88180;-85808 87191;-85477 86452;-74252 52606 1;-74077 52075;-73143 51784;-72928 51898 1;-72514 52117;-72271 52360;-72088 52657 1;-69677 56571;-68581 58935;-65929 62690 1;-65359 63497;-65039 63950;-64469 64757 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="1"><coords count="57">-58129 64311 1;-58237 63013;-58757 62349;-59461 61252 1;-61129 58653;-62367 57397;-63977 54762 1;-65401 52432;-66406 51244;-67653 48815 1;-68965 46259;-69382 44645;-69627 41783 1;-70167 35481;-69198 33882;-68259 30659;-63792 15201;-63391 13475 1;-63213 12954;-62713 12716;-62177 12846 1;-60743 13194;-59861 13450;-58374 13423 1;-57251 13403;-56529 13169;-55670 12446 1;-55374 12197;-55327 11948;-55112 11626 1;-54774 11119;-54387 10945;-54187 10369 1;-53834 9353;-53814 8732;-53577 7683 1;-53363 6737;-53908 5958;-54763 5502 1;-55535 5090;-56383 5488;-56892 6200 1;-57257 6711;-57329 7272;-56996 7805 1;-56763 8177;-56738 8505;-56874 8922 1;-57021 9373;-57429 9567;-57904 9567 1;-58992 9567;-59431 8764;-60468 8433 1;-61332 8157;-61963 7532;-61777 6671 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="1"><coords count="13">23449 -54909 1;24004 -55081;24327 -55630;24170 -56134 1;24013 -56638;23436 -56907;22881 -56735 1;22326 -56562;22003 -56013;22160 -55509 1;22316 -55005;22893 -54736;23449 -54909 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="4" symbol="171" h_align="1" v_align="2"><coords count="1">73320 -54693;</coords><text>N</text></object>
<object type="1" symbol="44"><coords count="4">69062 -61008;77555 -61008;73312 -68970;69062 -61008 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="4" symbol="171" h_align="1" v_align="2"><coords count="1">85399 110654;</coords><text>N</text></object>
<object type="1" symbol="44"><coords count="4">81141 104339;89634 104339;85391 96377;81141 104339 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="4" symbol="171" h_align="1" v_align="2"><coords count="1">-85692 22052;</coords><text>N</text></object>
<object type="1" symbol="44"><coords count="4">-89950 15737;-81457 15737;-85700 7775;-89950 15737 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
</objects></part>
<part name="Map key"><objects count="54">
<object type="4" symbol="169" h_align="0" v_align="1"><coords count="1">-90770 -101448;</coords><text>Construction area, forbidden access!
Street / asphalt, with / without traffic
Big signs, playground items, etc.</text></object>
<object type="1" symbol="73"><coords count="5">-94509 -62288 32;-91828 -62288 32;-91828 -59664 32;-94509 -59664 32;-94509 -62288 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">-97187 -18612 32;-94506 -18612 32;-94506 -15988 32;-97187 -15988 32;-97187 -18612 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="72"><coords count="5">-94509 -33067 32;-91828 -33067 32;-91828 -30443 32;-94509 -30443 32;-94509 -33067 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="38"><coords count="5">-94509 -18612 32;-91828 -18612 32;-91828 -15988 32;-94509 -15988 32;-94509 -18612 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">-94509 -22221 32;-91828 -22221 32;-91828 -19597 32;-94509 -19597 32;-94509 -22221 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="62"><coords count="5">-97187 -69541 32;-95398 -69541 32;-95398 -66917 32;-97187 -66917 32;-97187 -69541 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><coords count="5">-94217 -80160 32;-92083 -80160 32;-92083 -78042 32;-94217 -78042 32;-94217 -80160 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="143"><coords count="1">-95807 -93036;</coords></object>
<object type="0" symbol="142"><coords count="1">-93145 -93018;</coords></object>
<object type="4" symbol="169" h_align="0" v_align="1"><coords count="1">-90746 -80314;</coords><text>Building; Canopy
Street / asphalt, with / without traffic
Private/flowerbed, forbidden access!
Meadow; Meadow with trees; Forest
Light; strong thicket
Thicket, impassable
Tree; Special tree
Path; Track; Stairs
Fence, forbidden to pass!
Fence, passable
Wall, forbidden to pass!
Small wall, passable
Hedge, forbidden to pass!
Light; strong undergrowth
Hedges, passable
Contours; Hill
Rough/semi-open area
Sandy ground
Cultivation boundary; Step
Stone; Rock face
Well; Small erosion gully
</text></object>
<object type="1" symbol="120"><coords count="5">-94509 -76769 32;-91828 -76769 32;-91828 -74145 32;-94509 -74145 32;-94509 -76769 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><coords count="5">-94509 -65897 32;-91828 -65897 32;-91828 -63273 32;-94509 -63273 32;-94509 -65897 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">-93630 -69541;-91828 -69541 32;-91828 -66917 32;-93630 -66917 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="111"><coords count="5">-96905 -80131 32;-94837 -80131 32;-94837 -78071 32;-96905 -78071 32;-96905 -80131 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="64"><coords count="5">-97187 -22221 32;-94506 -22221 32;-94506 -19597 32;-97187 -19597 32;-97187 -22221 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="63"><coords count="5">-95397 -69541 32;-93622 -69541 32;-93622 -66917 32;-95397 -66917 32;-95397 -69541 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="119"><coords count="5">-97186 -70537 32;-97186 -73161 32;-91827 -73161 32;-91827 -70537 32;-97186 -70537 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="5">-97187 -62288 32;-94506 -62288 32;-94506 -59664 32;-97187 -59664 32;-97187 -62288 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="84"><coords count="1">-95825 -57271;</coords></object>
<object type="1" symbol="123"><coords count="4">-96926 -52501 1;-96327 -53305;-95862 -53873;-95644 -54852;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="92"><coords count="4">-95060 -52368 1;-94445 -53213;-94272 -53817;-94000 -54826;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">-97176 -39024;-91837 -39024;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="87"><coords count="2">-97176 -35418;-91837 -35418;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="5">-97187 -76769 32;-94506 -76769 32;-94506 -74145 32;-97187 -74145 32;-97187 -76769 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="122"><coords count="2">-92735 -52616;-92735 -54560;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="2">-92735 -52616;-92735 -54560;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="4">-97015 -24865 1;-96587 -25062;-96095 -25420;-95626 -25727;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="4">-97003 -23702 1;-95974 -23917;-95416 -24580;-94390 -24352;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="82"><coords count="2">-96651 -12597;-95063 -14610;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="2">-93963 -12572;-92375 -14585;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="3" rotation="-2.83455"><coords count="1">-95703 -24177;</coords></object>
<object type="1" symbol="0"><coords count="13">-93450 -24790 1;-93191 -25215;-92761 -25425;-92488 -25260 1;-92215 -25094;-92204 -24615;-92462 -24190 1;-92721 -23764;-93151 -23554;-93424 -23720 1;-93697 -23885;-93708 -24364;-93450 -24790 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="67"><coords count="5">-97187 -65897 32;-94506 -65897 32;-94506 -63273 32;-97187 -63273 32;-97187 -65897 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="69"><coords count="5">-97187 -33067 32;-94506 -33067 32;-94506 -30443 32;-97187 -30443 32;-97187 -33067 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="109"><coords count="2">-97176 -50002;-91837 -50002;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="107"><coords count="2">-97176 -46314;-91837 -46314;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="2">-97176 -42701;-91837 -42701;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="71"><coords count="2">-95238 -27135;-93674 -29044;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="74"><coords count="2">-93744 -27135;-92180 -29044;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="4">-97012 -24218 1;-96005 -24698;-95019 -25545;-94318 -25362;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="68"><coords count="2">-96856 -27135;-95292 -29044;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="83"><coords count="1">-93188 -57246;</coords></object>
<object type="1" symbol="10"><coords count="2">-93964 -5333;-92452 -7384;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="126"><coords count="5">-97183 -97983 32;-94502 -97983 32;-94502 -95359 32;-97183 -95359 32;-97183 -97983 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="163"><coords count="5">-91824 -101608;-97183 -101608;-97183 -98984;-91824 -98984;-91824 -101608 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="18"><coords count="2">-94070 -8966;-92558 -11017;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="59"><coords count="1">-95847 -6305;</coords></object>
<object type="0" symbol="32"><coords count="1">-95844 -9873;</coords></object>
<object type="1" symbol="162"><coords count="5">-97183 -101608 32;-94502 -101608 32;-94502 -98984 32;-97183 -98984 32;-97183 -101608 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="162"><coords count="5">-94505 -101608 32;-91824 -101608 32;-91824 -98984 32;-94505 -98984 32;-94505 -101608 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="120"><coords count="5">-94505 -97983 32;-91824 -97983 32;-91824 -95359 32;-94505 -95359 32;-94505 -97983 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="4" symbol="174" h_align="0" v_align="2"><coords count="1">-99428 -85496;</coords><text>Legend</text></object>
<object type="4" symbol="174" h_align="0" v_align="2"><coords count="1">-99743 -107017;</coords><text>Special Signatures</text></object>
</objects></part>
<part name="Design"><objects count="29">
<object type="1" symbol="179"><coords count="5">-108808 -113533 32;-108808 -149753 32;102997 -149753 32;102997 -113533 32;-108808 -113533 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="46"><coords count="14">-108808 -113533 32;-108808 -149753 32;102997 -149753 32;102997 -113533 33;102997 -107318;103133 -103770;103115 -102260 1;101634 -102168;99386 -102232;97055 -102227 1;78346 -102190;36945 -113533;13658 -113533;-108808 -113533 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="4" symbol="175" h_align="0" v_align="2"><coords count="1">59183 -130917;</coords><text>May 2013</text></object>
<object type="4" symbol="175" h_align="0" v_align="2"><coords count="1">59183 -123479;</coords><text>Thomas Schöps</text></object>
<object type="4" symbol="173" h_align="0" v_align="2"><coords count="1">-98032 -141948;</coords><text>Orienteering map</text></object>
<object type="4" symbol="174" h_align="0" v_align="2"><coords count="1">24405 -130921;</coords><text>Standing:</text></object>
<object type="4" symbol="171" h_align="0" v_align="2"><coords count="1">-100736 -132215;</coords><text>Garching</text></object>
<object type="4" symbol="172" h_align="0" v_align="2"><coords count="1">-100438 -131472;</coords><text>Garching</text></object>
<object type="4" symbol="174" h_align="0" v_align="2"><coords count="1">24405 -123483;</coords><text>Cartography:</text></object>
<object type="4" symbol="175" h_align="0" v_align="2"><coords count="1">59183 -136073;</coords><text>2.5 m</text></object>
<object type="4" symbol="175" h_align="0" v_align="2"><coords count="1">59183 -141376;</coords><text>1 : 4,000</text></object>
<object type="4" symbol="174" h_align="0" v_align="2"><coords count="1">24405 -141380;</coords><text>Scale:</text></object>
<object type="4" symbol="174" h_align="0" v_align="2"><coords count="1">24405 -136077;</coords><text>Contours:</text></object>
<object type="4" symbol="169" h_align="1" v_align="2"><coords count="1">76149 131570;</coords><text>Organizer, host, mapper,
land owners and administration
do not assume any liability!</text></object>
<object type="0" symbol="181"><coords count="1">-75609 131433;</coords></object>
<object type="1" symbol="46"><coords count="5">-108809 147382 32;-108809 139763 32;102996 139763 32;102996 147382 32;-108809 147382 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="180"><coords count="15">-29900 132587;-26214 132587;-23147 129520 1;-23039 129412;-23179 129177;-23332 129176;-26912 129153;-29983 132185 1;-30093 132294;-30091 132589;-29900 132587 18;-29256 132147;-23843 129647;-26750 129616;-29256 132147 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="179"><coords count="14">102997 139965 32;102996 147382 32;-108810 147387 32;-108806 139970 33;-108807 134438;-109023 130448;-108862 128687 1;-107176 128658;-105495 128666;-102866 128662 1;-84159 128623;-42757 139968;-19467 139967;102997 139965 50;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="51">-95213 128871;-95019 129525;-94453 130392;-93799 130869;-94258 131311;-94913 132089;-95195 133026;-95231 133821;-95036 134723;-94718 135306;-94223 135766;-93498 136084;-92402 136172;-91501 135978;-91129 135695;-90493 136031;-89132 136102;-88460 135748;-87771 136084;-86392 136066;-85773 135783;-85066 136049;-83970 136119;-82555 135978;-81760 136049;-78931 136048;-78472 135801;-77570 136119;-75997 136084;-75396 135836;-74388 136101;-73133 136119;-72090 135713;-71118 136102;-69827 136155;-68643 136031;-67246 136049;-66327 135819;-65355 136084;-60669 136119;-60369 136808;-59626 137144;-58248 137321;-57152 136967;-56356 136419;-55967 135606;-55914 134705;-55914 130338;-78896 125070;-95125 125565;-95213 128871 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="73"><coords count="181">-20091 135644;-49858 135630;-49858 132699;-49443 132699;-49293 132430;-49280 131652;-47718 130071;-43302 130083;-43299 130083;-43278 125783 1;-43394 125565;-43439 125417;-43434 125170 1;-43423 124571;-43079 124035;-42484 123964 1;-42460 123961;-42438 123961;-42428 123939 1;-42365 123801;-42273 123699;-42122 123701 1;-41963 123703;-41840 123778;-41784 123926 1;-41777 123945;-41754 123936;-41734 123939 1;-41135 124023;-40796 124577;-40809 125182 1;-40814 125404;-40830 125539;-40928 125739;-40922 130033;-40917 130033;-40100 130042;-40077 125801 1;-40193 125583;-40238 125435;-40233 125188 1;-40222 124589;-39878 124053;-39283 123982 1;-39259 123979;-39237 123979;-39227 123957 1;-39164 123819;-39072 123717;-38921 123719 1;-38762 123721;-38639 123796;-38583 123944 1;-38576 123963;-38553 123954;-38533 123957 1;-37934 124041;-37595 124595;-37608 125200 1;-37613 125422;-37629 125557;-37727 125757;-37719 130095;-37624 130216;-37623 131207;-36642 131657;-36227 132082;-36218 133257;-36094 133381;-35342 133386;-35339 132979;-35029 132674;-34118 132681;-33837 132966;-32396 132976;-32377 130280;-32093 129471 1;-32225 129147;-32253 128931;-32212 128584 1;-32154 128088;-31923 127658;-31431 127571 1;-31410 127567;-31445 127540;-31456 127521 1;-31516 127416;-31395 127274;-31274 127271 1;-31157 127268;-31073 127432;-31130 127534 1;-30854 127619;-30632 127677;-30512 127940 1;-30412 128158;-30366 128293;-30205 128471 1;-30131 128553;-30079 128617;-30087 128727 1;-30094 128827;-30130 128894;-30212 128952 1;-30316 129025;-30300 129131;-30337 129252;-30411 129477;-30130 130277;-30149 132308;-28692 132322;-28355 132665;-27955 132669;-27656 132376;-27616 128434;-27430 128239;-27438 127889;-27330 127776;-27337 127471 1;-27343 127224;-27152 127024;-26905 127008;-26899 126783;-26749 126633;-26618 126783;-26618 126989 1;-26283 127001;-26110 127417;-26121 127752;-26017 127880;-26017 128283;-25811 128508;-25831 131855;-25620 132068;-25622 132447;-25401 132671;-25079 132673;-24872 132469;-24854 129999;-24625 129773;-24622 129318 1;-24616 128430;-23974 127846;-23117 127612;-23117 127272;-23227 127139 1;-23350 126990;-23299 126748;-23130 126653 1;-23117 126646;-23117 126633;-23117 126618 1;-23112 126405;-23012 126180;-22799 126176;-22803 125973;-22574 125782;-22388 125964;-22384 126167;-22362 126176 1;-22160 126193;-22079 126411;-22083 126613 1;-22083 126625;-22072 126629;-22061 126635 1;-21938 126706;-21859 126798;-21862 126940 1;-21865 127096;-21961 127206;-22110 127254;-22110 127621 1;-21193 127748;-20726 128455;-20490 129350;-20503 129813;-20259 130007;-20271 132150;-20077 132419;-20091 135644 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="66"><coords count="4">-23551 129615;-26814 129502;-29539 132352;-23551 129615 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="180"><coords count="17">-30664 135205;-28383 132918 1;-28305 132840;-28179 132840;-28101 132918 1;-28023 132995;-28023 133121;-28101 133199 1;-28992 134090;-29492 134590;-30383 135481 1;-30459 135557;-30582 135557;-30658 135481 1;-30732 135407;-30732 135286;-30664 135205 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="23"><coords count="31">-35052 130658;-31782 130658;-33709 132585 1;-34002 132878;-34002 133352;-33709 133645 1;-33460 133894;-33056 133894;-32807 133645 1;-31544 132382;-30836 131674;-29573 130411 1;-29228 130066;-29577 129262;-30065 129262 1;-32132 129262;-33292 129262;-35359 129262 1;-35604 129262;-35761 129338;-35934 129511 1;-37787 131364;-38825 132402;-40678 134255 1;-40989 134566;-40989 135072;-40678 135383 1;-40415 135646;-39989 135646;-39726 135383;-35052 130658 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="4" symbol="177" h_align="1" v_align="2"><coords count="1">-35070 136617;</coords><text>Munich SprintCup</text></object>
<object type="4" symbol="176" h_align="0" v_align="2"><coords count="1">-53727 113748;</coords><text>www.ol-gruenwald.de</text></object>
<object type="4" symbol="176" h_align="0" v_align="2"><coords count="1">-53661 117691;</coords><text>www.ol-landshut.de</text></object>
<object type="4" symbol="178" h_align="2" v_align="2"><coords count="1">-54952 117697;</coords><text>Landshut and Freising:</text></object>
<object type="4" symbol="178" h_align="0" v_align="2"><coords count="1">-96409 113730;</coords><text>Munich:</text></object>
<object type="4" symbol="178" h_align="0" v_align="2"><coords count="1">-96266 109471;</coords><text>Orienteering in ...</text></object>
</objects></part>
</parts>
<templates count="0" first_front_template="0">
<defaults use_meters_per_pixel="true" meters_per_pixel="0.25" dpi="0" scale="0"/>
</templates>
<view>
<grid color="#646464" display="0" alignment="0" additional_rotation="0" unit="1" h_spacing="5" v_spacing="5" h_offset="0" v_offset="0"/>
<map_view zoom="0.707107" position_x="-2902" position_y="-1183"><map opacity="1" visible="true"/><templates hidden="true" count="0"/></map_view>
</view>
<print scale="4000" resolution="300" simulate_overprinting="true" mode="raster"><page_format paper_size="A4" orientation="portrait" h_overlap="5" v_overlap="5"><dimensions width="210" height="297"/><page_rect left="4.23" top="3.53" width="201.54" height="289.94"/></page_format><print_area left="-103.672" top="-146.153" width="201.54" height="289.94" center_area="true" single_page="true"/></print>
</barrier>
</map>
|