~ubuntu-branches/ubuntu/utopic/mricron/utopic

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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   id="svg1141"
   sodipodi:version="0.32"
   inkscape:version="0.46"
   width="210mm"
   height="297mm"
   sodipodi:docname="dti.svg"
   sodipodi:docbase="C:\Documents and Settings\Chris Rorden\Desktop"
   inkscape:output_extension="org.inkscape.output.svg.inkscape">
  <metadata
     id="metadata413">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <defs
     id="defs1143">
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       id="perspective448" />
    <linearGradient
       id="linearGradient1280">
      <stop
         style="stop-color:#ffc000;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1281" />
      <stop
         style="stop-color:#ff0000;stop-opacity:0.50000000;"
         offset="1.0000000"
         id="stop1283" />
    </linearGradient>
    <linearGradient
       id="linearGradient1271">
      <stop
         style="stop-color:#ffc87e;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1274" />
      <stop
         style="stop-color:#ff0000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1279" />
    </linearGradient>
    <linearGradient
       id="linearGradient1270">
      <stop
         style="stop-color:#ffc000;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1271" />
      <stop
         style="stop-color:#e84a50;stop-opacity:1.0000000;"
         offset="0.50000000"
         id="stop1273" />
      <stop
         style="stop-color:#ff0000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1272" />
    </linearGradient>
    <linearGradient
       id="linearGradient1608">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1609" />
      <stop
         style="stop-color:#9999ff;stop-opacity:1.0000000;"
         offset="0.50000000"
         id="stop1611" />
      <stop
         style="stop-color:#000000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1610" />
    </linearGradient>
    <linearGradient
       id="linearGradient1563">
      <stop
         style="stop-color:#898bdc;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1564" />
      <stop
         style="stop-color:#000000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1565" />
    </linearGradient>
    <linearGradient
       id="linearGradient1547">
      <stop
         style="stop-color:#9999ff;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1548" />
      <stop
         style="stop-color:#9999fd;stop-opacity:0.00000000;"
         offset="1.0000000"
         id="stop1549" />
    </linearGradient>
    <linearGradient
       id="linearGradient1391">
      <stop
         style="stop-color:#ffc000;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1392" />
      <stop
         style="stop-color:#ff0000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1394" />
    </linearGradient>
    <linearGradient
       id="linearGradient1111">
      <stop
         style="stop-color:#e8e838;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1112" />
      <stop
         style="stop-color:#ffff7f;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1114" />
    </linearGradient>
    <linearGradient
       id="linearGradient1274">
      <stop
         style="stop-color:#ff0400;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1275" />
      <stop
         style="stop-color:#fd6972;stop-opacity:1.0000000;"
         offset="0.0099999998"
         id="stop1277" />
      <stop
         style="stop-color:#ff0000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1276" />
    </linearGradient>
    <linearGradient
       id="linearGradient1205">
      <stop
         style="stop-color:#ffffff;stop-opacity:0.9;"
         offset="0.00000000"
         id="stop1206" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1.00000000"
         id="stop1207" />
    </linearGradient>
    <linearGradient
       id="linearGradient1172">
      <stop
         style="stop-color:#ffffff;stop-opacity:0.3;"
         offset="0.00000000"
         id="stop1173" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.8;"
         offset="1.00000000"
         id="stop1174" />
    </linearGradient>
    <linearGradient
       id="linearGradient969">
      <stop
         style="stop-color:#ffffff;stop-opacity:0.70196080;"
         offset="0.00000000"
         id="stop970" />
      <stop
         style="stop-color:#9999ff;stop-opacity:0.70196080;"
         offset="1.0000000"
         id="stop971" />
    </linearGradient>
    <linearGradient
       id="linearGradient684">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop685" />
      <stop
         style="stop-color:#9999ff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop686" />
    </linearGradient>
    <linearGradient
       id="linearGradient671">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop672" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.00000000;"
         offset="1.0000000"
         id="stop673" />
    </linearGradient>
    <linearGradient
       id="linearGradient594">
      <stop
         style="stop-color:#fffbfb;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop595" />
      <stop
         style="stop-color:#0000c0;stop-opacity:1;"
         offset="1"
         id="stop596" />
    </linearGradient>
    <linearGradient
       id="linearGradient1155">
      <stop
         style="stop-color:#fffbfb;stop-opacity:1.0000000;"
         offset="0.00000000"
         id="stop1156" />
      <stop
         style="stop-color:#9999ff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop1157" />
    </linearGradient>
    <radialGradient
       xlink:href="#linearGradient1155"
       id="radialGradient1158"
       cx="0.21874997"
       cy="0.23437454"
       r="0.70745194"
       fx="0.21874997"
       fy="0.23437454" />
    <radialGradient
       xlink:href="#linearGradient684"
       id="radialGradient1169"
       cx="0.77941167"
       cy="0.65624988"
       r="0.32758817"
       fx="0.77941167"
       fy="0.65624988" />
    <linearGradient
       xlink:href="#linearGradient1155"
       id="linearGradient1170"
       x1="0.81756759"
       y1="0.35156253"
       x2="0.17567571"
       y2="0.75000000" />
    <linearGradient
       xlink:href="#linearGradient594"
       id="linearGradient588"
       x1="321.4625"
       y1="541.3602"
       x2="354.41388"
       y2="556.75934"
       gradientTransform="scale(0.8041446,1.2435574)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       xlink:href="#linearGradient1547"
       id="linearGradient639"
       x1="0.47535211"
       y1="-0.11428571"
       x2="0.58802819"
       y2="0.96190476" />
    <linearGradient
       xlink:href="#linearGradient1155"
       id="linearGradient643"
       x1="0.20312500"
       y1="0.10687023"
       x2="0.50000000"
       y2="0.88549620" />
    <linearGradient
       xlink:href="#linearGradient1563"
       id="linearGradient670"
       x1="0.15079366"
       y1="0.11450382"
       x2="0.71428573"
       y2="0.42748091" />
    <linearGradient
       xlink:href="#linearGradient684"
       id="linearGradient683"
       x1="0.39084506"
       y1="-0.06603774"
       x2="0.59859157"
       y2="0.94339621" />
    <linearGradient
       xlink:href="#linearGradient1608"
       id="linearGradient701"
       x1="0.0035211267"
       y1="0.42574257"
       x2="0.98591548"
       y2="0.42574257" />
    <linearGradient
       xlink:href="#linearGradient671"
       id="linearGradient703"
       x1="0.45070422"
       y1="-0.93750000"
       x2="0.44366196"
       y2="1.21875000" />
    <radialGradient
       xlink:href="#linearGradient1271"
       id="radialGradient704"
       cx="292.27442"
       cy="807.81573"
       r="24.522423"
       fx="292.27442"
       fy="807.81573"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       xlink:href="#linearGradient969"
       id="linearGradient967"
       x1="0.39297354"
       y1="0.06249970"
       x2="0.46580359"
       y2="0.96093768" />
    <linearGradient
       xlink:href="#linearGradient684"
       id="linearGradient968"
       x1="0.08771923"
       y1="0.02343778"
       x2="0.55263156"
       y2="1.32031250" />
    <linearGradient
       xlink:href="#linearGradient671"
       id="linearGradient1138"
       x1="0.50000000"
       y1="0.05468750"
       x2="0.71717173"
       y2="1.70312500" />
    <linearGradient
       xlink:href="#linearGradient671"
       id="linearGradient1139"
       x1="-0.45833334"
       y1="0.19531250"
       x2="1.12500000"
       y2="0.71875000" />
    <radialGradient
       xlink:href="#linearGradient969"
       id="radialGradient1140"
       cx="0.11029412"
       cy="0.06250000"
       r="1.26334059"
       fx="0.11029412"
       fy="0.06250000" />
    <linearGradient
       xlink:href="#linearGradient1172"
       id="linearGradient1175"
       x1="0.91071421"
       y1="0.53906387"
       x2="0.46428558"
       y2="0.77343899" />
    <linearGradient
       xlink:href="#linearGradient684"
       id="linearGradient1202"
       x1="0.16197200"
       y1="-0.11904722"
       x2="0.32746491"
       y2="1.99999797" />
    <radialGradient
       xlink:href="#linearGradient684"
       id="radialGradient1203"
       cx="0.77941167"
       cy="0.65624988"
       r="0.32758817"
       fx="0.77941167"
       fy="0.65624988" />
    <radialGradient
       xlink:href="#linearGradient1547"
       id="radialGradient983"
       cx="0.73913020"
       cy="0.72519094"
       r="0.22669560"
       fx="0.73913020"
       fy="0.72519094" />
    <radialGradient
       xlink:href="#linearGradient1205"
       id="radialGradient1066"
       cx="0.76470590"
       cy="0.76562488"
       r="0.29453236"
       fx="0.76470590"
       fy="0.76562482" />
    <linearGradient
       xlink:href="#linearGradient1274"
       id="linearGradient1273"
       x1="-0.019230817"
       y1="-3.8570047e-008"
       x2="0.51923072"
       y2="0.87500006" />
    <linearGradient
       xlink:href="#linearGradient1280"
       id="linearGradient1110"
       x1="459.4994"
       y1="1254.0935"
       x2="481.37598"
       y2="1325.9788"
       gradientTransform="matrix(1.6468933,0,0,0.6072039,-185.20999,91.717409)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       xlink:href="#linearGradient1111"
       id="linearGradient1118"
       x1="0.53521127"
       y1="1.0151515"
       x2="0.52816904"
       y2="0.015151516" />
    <radialGradient
       xlink:href="#linearGradient1391"
       id="radialGradient1395"
       cx="0.69533569"
       cy="0.78121674"
       r="0.68209499"
       fx="0.69533557"
       fy="0.76559359" />
    <radialGradient
       xlink:href="#linearGradient1547"
       id="radialGradient1442"
       cx="291.17355"
       cy="815.41846"
       r="18.939451"
       fx="290.62314"
       fy="814.83362" />
    <linearGradient
       xlink:href="#linearGradient684"
       id="linearGradient1604"
       x1="0.52343750"
       y1="0.0076335878"
       x2="1.0312500"
       y2="1.1297710" />
    <linearGradient
       xlink:href="#linearGradient684"
       id="linearGradient1617"
       x1="0.10920641"
       y1="-0.40239441"
       x2="1.2083132"
       y2="1.9653628" />
    <linearGradient
       xlink:href="#linearGradient684"
       id="linearGradient1618"
       x1="0.42672610"
       y1="-0.31047121"
       x2="1.0007051"
       y2="2.1198800" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="radialGradient3181"
       cx="289.25905"
       cy="812.97649"
       fx="289.25905"
       fy="812.97649"
       r="16.96986"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="linearGradient3271"
       x1="299.8437"
       y1="1036.9841"
       x2="305.62924"
       y2="1092.2429"
       gradientTransform="matrix(1.646893,0,0,0.607204,-404.3959,232.2467)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="radialGradient3289"
       cx="289.25905"
       cy="812.97649"
       fx="289.25905"
       fy="812.97649"
       r="16.96986"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="linearGradient4195"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.646893,0,0,0.607204,-404.3959,232.2467)"
       x1="299.8437"
       y1="1036.9841"
       x2="305.62924"
       y2="1092.2429" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="radialGradient4197"
       gradientUnits="userSpaceOnUse"
       cx="289.25905"
       cy="812.97649"
       fx="289.25905"
       fy="812.97649"
       r="16.96986" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="linearGradient4209"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.646893,0,0,0.607204,-404.3959,232.2467)"
       x1="299.8437"
       y1="1036.9841"
       x2="305.62924"
       y2="1092.2429" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="radialGradient4211"
       gradientUnits="userSpaceOnUse"
       cx="289.25905"
       cy="812.97649"
       fx="289.25905"
       fy="812.97649"
       r="16.96986" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="linearGradient4223"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.646893,0,0,0.607204,-404.3959,232.2467)"
       x1="299.8437"
       y1="1036.9841"
       x2="305.62924"
       y2="1092.2429" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1547"
       id="radialGradient4225"
       gradientUnits="userSpaceOnUse"
       cx="289.25905"
       cy="812.97649"
       fx="289.25905"
       fy="812.97649"
       r="16.96986" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1172"
       id="linearGradient3598"
       x1="339.63678"
       y1="379.11596"
       x2="335.35134"
       y2="381.36582"
       gradientTransform="matrix(0.758349,0,0,1.3186542,-197.63622,-8.8758783)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient671"
       id="linearGradient3600"
       x1="588.89265"
       y1="195.07545"
       x2="612.58524"
       y2="202.90803"
       gradientTransform="matrix(0.4268666,0,0,2.3426521,-197.63622,-8.8758783)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient671"
       id="linearGradient3627"
       x1="833.72519"
       y1="196.49355"
       x2="857.41778"
       y2="204.32614"
       gradientTransform="matrix(0.4268666,0,0,2.3426521,-108.85068,2.4284606)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1172"
       id="linearGradient3629"
       x1="477.45044"
       y1="381.63529"
       x2="473.165"
       y2="383.88514"
       gradientTransform="matrix(0.758349,0,0,1.3186542,-108.85068,2.4284606)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1608"
       id="linearGradient3646"
       x1="-196.8662"
       y1="425.48517"
       x2="-141.23934"
       y2="425.48517"
       gradientTransform="matrix(1.677741,0,0,0.5960396,144.06957,-177.72971)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient684"
       id="linearGradient3670"
       x1="326.75421"
       y1="743.24066"
       x2="335.31547"
       y2="852.86278"
       gradientTransform="scale(1.7571663,0.5690981)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient969"
       id="radialGradient3672"
       cx="524.70152"
       cy="475.22645"
       fx="524.70152"
       fy="475.22645"
       r="111.10576"
       gradientTransform="matrix(1.075993,0,0,0.9293741,-172.89681,-540.25849)"
       gradientUnits="userSpaceOnUse" />
    <inkscape:perspective
       id="perspective2865"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 526.18109 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient671"
       id="linearGradient3657"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4268666,0,0,2.3426521,490.80166,-298.10221)"
       x1="833.72519"
       y1="196.49355"
       x2="857.41778"
       y2="204.32614" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1172"
       id="linearGradient3659"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.758349,0,0,1.3186542,490.80166,-298.10221)"
       x1="477.45044"
       y1="381.63529"
       x2="473.165"
       y2="383.88514" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.6899736"
     inkscape:cx="259.81914"
     inkscape:cy="210.13786"
     inkscape:window-width="1096"
     inkscape:window-height="885"
     inkscape:window-x="2"
     inkscape:window-y="-2"
     showgrid="true"
     snaptogrid="false"
     showguides="true"
     snaptoguides="true"
     inkscape:current-layer="svg1141"
     inkscape:snap-global="false"
     gridtolerance="23">
    <inkscape:grid
       type="xygrid"
       id="grid3676"
       visible="true"
       enabled="true" />
  </sodipodi:namedview>
  <rect
     style="fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:2.26807213pt"
     id="rect1183"
     width="802.11261"
     height="680.2215"
     x="-643.42822"
     y="163.21796" />
  <rect
     style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:2.3750000;"
     id="rect1295"
     width="69.963570"
     height="45.246185"
     x="-101.75949"
     y="509.82691"
     transform="scale(-1.000000,1.000000)" />
  <rect
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:2.3750000;fill-opacity:1.0000000;"
     id="rect1262"
     width="69.963570"
     height="45.246185"
     x="128.72227"
     y="535.48883"
     transform="translate(-91.26626,99.11160)" />
  <path
     sodipodi:type="arc"
     style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
     id="path1286"
     sodipodi:cx="88.389725"
     sodipodi:cy="698.28027"
     sodipodi:rx="18.305565"
     sodipodi:ry="18.305565"
     d="M 106.69529 698.28027 A 18.305565 18.305565 0 1 0 70.084160,698.28027 A 18.305565 18.305565 0 1 0 106.69529 698.28027 z"
     transform="translate(-17.25953,-39.22624)" />
  <path
     sodipodi:type="arc"
     style="fill-rule:evenodd;stroke-width:1.0000000pt;"
     id="path1573"
     sodipodi:cx="496.47308"
     sodipodi:cy="894.01904"
     sodipodi:rx="26.543070"
     sodipodi:ry="26.543070"
     d="M 523.01615 894.01904 A 26.543070 26.543070 0 1 0 469.93001,894.01904 A 26.543070 26.543070 0 1 0 523.01615 894.01904 z"
     transform="translate(185.5400,-212.9984)" />
  <path
     sodipodi:type="arc"
     style="fill:url(#radialGradient1395);fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;"
     id="path1343"
     sodipodi:cx="715.48608"
     sodipodi:cy="436.77219"
     sodipodi:rx="38.180180"
     sodipodi:ry="38.180180"
     d="M 753.66626 436.77219 A 38.180180 38.180180 0 1 0 677.30590,436.77219 A 38.180180 38.180180 0 1 0 753.66626 436.77219 z"
     transform="matrix(0.905654,0.000000,0.000000,0.919132,149.4257,12.54474)" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0375195;"
     d="M 704.48491,415.34092 C 694.57329,417.80874 687.95315,428.45052 684.92534,434.86193 C 681.89753,441.01182 677.92934,447.28914 688.65031,452.73194 C 698.87767,454.00139 705.70466,453.64762 711.13899,450.11964 C 718.44814,445.58571 724.25946,439.88285 726.48955,434.60790 C 727.94598,431.77023 741.08206,432.37026 740.21539,430.37826 C 740.33314,426.85776 739.63744,419.26753 731.65870,414.99087 C 727.35252,412.29016 710.27910,412.15675 704.48491,415.34092 z "
     id="path1377"
     sodipodi:nodetypes="czcccccc" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 175.16419,313.27629 C 170.59785,312.81843 161.53978,318.62958 157.57044,321.02629 C 146.72186,327.57680 135.88296,343.93132 135.88294,360.30754 C 135.88294,364.40161 132.43921,368.00533 137.35169,380.80754 C 143.39531,391.81829 170.06959,395.25262 170.28919,388.46379 C 170.50878,381.67497 166.19786,385.04854 171.50794,379.87004 C 171.67000,389.89820 175.12385,390.07619 174.97669,395.99504 C 174.88252,399.52179 174.69106,407.40659 176.03919,406.05754 L 177.97669,406.37004 L 177.97669,406.49504 L 178.35169,406.43254 L 180.28919,406.12004 C 181.63732,407.46909 181.44586,399.58428 181.35169,396.05754 C 181.20453,390.13869 184.65838,389.96069 184.82044,379.93254 C 190.13052,385.11104 185.81960,381.73746 186.03919,388.52629 C 186.25879,395.31512 212.93307,391.88078 218.97669,380.87004 C 223.88917,368.06783 220.44544,364.46410 220.44544,360.37004 C 220.44542,343.99382 209.60652,327.63929 198.75794,321.08879 C 194.78860,318.69208 185.73053,312.88092 181.16419,313.33879 C 179.64208,313.49141 178.61613,314.33756 178.44544,316.24504 L 177.64117,368.62731 L 177.88294,316.18254 C 177.71225,314.27507 176.68630,313.42891 175.16419,313.27629 z "
     id="path1150"
     sodipodi:nodetypes="ccccccccccccccccccccccc" />
  <path
     style="fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.68412900pt;"
     d="M 182.78509,493.16200 C 171.13638,496.94695 136.68072,486.89726 135.94501,503.73375 C 135.20931,520.57025 224.59784,516.52427 212.45865,506.21355 C 200.31947,495.90282 194.43381,489.37705 182.78509,493.16200 z "
     id="path1140"
     sodipodi:nodetypes="cczz" />
  <g
     id="g1263"
     transform="matrix(0.908672,-0.417511,0.685493,0.785541,-67.19158,231.4487)">
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.99068832pt;"
       d="M 420.68026,157.78820 C 420.68026,143.66413 411.49144,115.33358 402.38342,106.84266 C 393.27539,98.351740 375.11992,98.368210 366.03210,106.84266 C 356.94426,115.31711 347.85643,143.56526 347.85643,157.68934 C 347.85643,171.81342 356.94426,185.93749 366.03210,191.58713 C 375.11992,197.23676 393.27539,197.22028 402.38342,191.58713 C 411.49144,185.95397 420.68026,171.91228 420.68026,157.78820 z "
       id="path1235"
       sodipodi:nodetypes="czzzzzz"
       transform="matrix(0.937345,0.000000,-0.521597,0.915342,214.7080,20.05502)" />
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;"
       d="M 385.72466,104.99534 C 385.60653,104.99531 385.49150,105.02296 385.37337,105.02434 L 385.37337,105.05334 C 385.28545,105.04542 385.19871,105.02430 385.10991,105.02434 C 384.90297,105.02441 384.70203,105.07794 384.49516,105.08234 L 384.49516,105.19833 C 384.36904,105.18166 384.24249,105.16937 384.11460,105.16933 C 384.02579,105.16930 383.93906,105.19041 383.85113,105.19833 L 383.85113,105.16933 C 383.73301,105.16796 383.61798,105.14030 383.49985,105.14033 C 377.27858,105.14222 371.05063,107.10435 366.90157,110.99791 C 364.82705,112.94468 352.95338,129.00036 356.94846,131.76041 C 366.89106,139.03386 375.51079,117.62287 366.31609,135.38515 C 365.38960,141.48619 365.15147,144.66736 365.08659,146.25937 C 364.95557,143.34300 363.87193,136.50278 358.17796,133.18131 C 353.42130,130.46368 350.30330,154.46891 350.30330,157.71354 C 350.30330,170.69209 358.60347,183.66588 366.90157,188.85730 C 371.11000,191.49017 377.45333,192.75392 383.76331,192.71402 L 383.76331,192.74302 C 384.08594,192.74567 384.40678,192.71814 384.72935,192.71402 L 384.72935,192.56903 C 384.97331,192.57837 385.21671,192.60006 385.46120,192.59803 L 385.46120,192.56903 C 391.77118,192.60893 398.11451,191.34520 402.32294,188.71231 C 410.62104,183.52089 418.92121,170.54709 418.92121,157.56855 C 418.92121,154.32392 415.80320,130.31868 411.04655,133.03632 C 405.35258,136.35779 404.26894,143.19801 404.13792,146.11438 C 404.07304,144.52237 403.83491,141.34119 402.90841,135.24016 C 393.71372,117.47788 402.33345,138.88886 412.27605,131.61542 C 416.27113,128.85537 404.39746,112.79968 402.32294,110.85292 C 398.17388,106.95936 391.94593,104.99722 385.72466,104.99534 z "
       id="path1236"
       transform="matrix(0.937345,0.000000,-0.521597,0.915342,214.7080,20.05502)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;"
       d="M 380.33827,131.91200 C 380.67980,131.22522 379.75424,123.78448 378.33933,121.86149 C 376.92442,119.93850 374.82503,120.78615 374.48350,121.47293 C 374.14198,122.15971 376.25321,121.24535 377.66811,123.16834 C 379.08302,125.09132 379.99675,132.59878 380.33827,131.91200 z "
       id="path1237"
       sodipodi:nodetypes="czzzz"
       transform="matrix(0.937345,0.000000,-0.521597,0.915342,214.7080,20.05502)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.76453004pt;"
       d="M 374.01970,170.64672 C 371.03955,170.35930 370.44378,163.47294 368.37466,167.67389 C 366.21050,171.94993 370.67043,181.11939 371.06278,176.38002 C 371.36008,171.64067 376.90481,171.00921 374.01970,170.64672 z "
       id="path1238"
       sodipodi:nodetypes="czzz"
       transform="matrix(0.937345,0.000000,-0.521597,0.915342,214.7080,20.05502)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;"
       d="M 388.88624,131.76953 C 388.54471,131.08274 389.47027,123.64200 390.88518,121.71902 C 392.30008,119.79602 394.39948,120.64367 394.74101,121.33045 C 395.08253,122.01724 392.97130,121.10288 391.55640,123.02586 C 390.14149,124.94885 389.22776,132.45631 388.88624,131.76953 z "
       id="path1239"
       sodipodi:nodetypes="czzzz"
       transform="matrix(0.937345,0.000000,-0.521597,0.915342,214.7080,20.05502)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.76453004pt;"
       d="M 395.20481,170.50425 C 398.18496,170.21683 398.78073,163.33046 400.84985,167.53142 C 403.01401,171.80746 398.55408,180.97692 398.16173,176.23755 C 397.86443,171.49819 392.31970,170.86674 395.20481,170.50425 z "
       id="path1240"
       sodipodi:nodetypes="czzz"
       transform="matrix(0.937345,0.000000,-0.521597,0.915342,214.7080,20.05502)" />
  </g>
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:1.2724125pt;"
     d="M 496.61025,315.43263 C 487.70277,315.43523 472.41769,322.55172 466.47718,327.89823 C 454.59613,338.59121 447.94047,366.42388 447.94047,384.24553 C 447.94047,389.67769 447.95637,395.00686 448.18560,400.13622 L 542.84637,400.13622 C 543.08751,395.05165 543.13236,389.79833 543.13236,384.40325 C 543.13232,366.58163 539.47657,339.72728 527.56914,329.01351 C 521.61543,323.65662 505.51773,315.43003 496.61025,315.43263 z "
     id="path1063"
     sodipodi:nodetypes="cccccccc" />
  <path
     style="fill-rule:evenodd;stroke:none;stroke-width:0.91963024pt;"
     d="M 342.97890,399.86026 L 434.73342,400.51279 L 433.34799,392.09524 C 432.07595,388.11087 427.72724,383.73612 426.88022,379.25826 C 425.59125,374.78040 431.80349,377.65786 431.05395,370.30329 C 430.30440,362.94871 428.89800,343.42434 418.26686,333.11605 C 407.32322,323.12026 398.18407,316.70378 378.78742,319.85497 C 360.64077,321.75616 350.23069,330.41956 342.83093,345.70413 C 335.23979,360.98870 343.64369,380.00725 343.40504,387.13431 L 342.97890,399.86026 z "
     id="path1052"
     sodipodi:nodetypes="ccczzzzzzc" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.99068832pt;"
     d="M 320.29479,372.55062 C 320.29479,358.42655 311.10597,330.09600 301.99795,321.60508 C 292.88992,313.11416 274.73445,313.13063 265.64663,321.60508 C 256.55879,330.07953 247.47096,358.32768 247.47096,372.45176 C 247.47096,386.57584 256.55879,400.69991 265.64663,406.34955 C 274.73445,411.99918 292.88992,411.98270 301.99795,406.34955 C 311.10597,400.71639 320.29479,386.67470 320.29479,372.55062 z "
     id="path1005"
     sodipodi:nodetypes="czzzzzz" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;fill-opacity:1.0000000;"
     d="M 285.33919,319.75776 C 285.22106,319.75773 285.10603,319.78538 284.98790,319.78676 L 284.98790,319.81576 C 284.89998,319.80784 284.81324,319.78672 284.72444,319.78676 C 284.51750,319.78683 284.31656,319.84036 284.10969,319.84476 L 284.10969,319.96075 C 283.98357,319.94408 283.85702,319.93179 283.72913,319.93175 C 283.64032,319.93172 283.55359,319.95283 283.46566,319.96075 L 283.46566,319.93175 C 283.34754,319.93038 283.23251,319.90272 283.11438,319.90275 C 276.89311,319.90464 270.66516,321.86677 266.51610,325.76033 C 264.44158,327.70710 252.56791,343.76278 256.56299,346.52283 C 266.50559,353.79628 275.12532,332.38529 265.93062,350.14757 C 265.00413,356.24861 264.76600,359.42978 264.70112,361.02179 C 264.57010,358.10542 263.48646,351.26520 257.79249,347.94373 C 253.03583,345.22610 249.91783,369.23133 249.91783,372.47596 C 249.91783,385.45451 258.21800,398.42830 266.51610,403.61972 C 270.72453,406.25259 277.06786,407.51634 283.37784,407.47644 L 283.37784,407.50544 C 283.70047,407.50809 284.02131,407.48056 284.34388,407.47644 L 284.34388,407.33145 C 284.58784,407.34079 284.83124,407.36248 285.07573,407.36045 L 285.07573,407.33145 C 291.38571,407.37135 297.72904,406.10762 301.93747,403.47473 C 310.23557,398.28331 318.53574,385.30951 318.53574,372.33097 C 318.53574,369.08634 315.41773,345.08110 310.66108,347.79874 C 304.96711,351.12021 303.88347,357.96043 303.75245,360.87680 C 303.68757,359.28479 303.44944,356.10361 302.52294,350.00258 C 293.32825,332.24030 301.94798,353.65128 311.89058,346.37784 C 315.88566,343.61779 304.01199,327.56210 301.93747,325.61534 C 297.78841,321.72178 291.56046,319.75964 285.33919,319.75776 z "
     id="path1044" />
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:#fffffd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-dasharray:none;"
     id="path695"
     sodipodi:cx="271.35836792"
     sodipodi:cy="796.11926270"
     sodipodi:rx="37.42873764"
     sodipodi:ry="37.42873764"
     d="M 308.787106 796.119263 A 37.428738 37.428738 0 1 0 233.929630,796.119263 A 37.4287 37.4287 0 1 0 308.787 796.119 L 271.358368 796.119263 z"
     transform="matrix(1.269231,0.000000,0.000000,1.209574,152.3260,-283.6191)" />
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:url(#linearGradient1202);fill-opacity:0.75;fill-rule:evenodd;stroke:#0050fb;stroke-width:2.47293;stroke-dasharray:none;stroke-opacity:1;"
     id="path1200"
     sodipodi:cx="604.88873291"
     sodipodi:cy="441.20190430"
     sodipodi:rx="44.21426392"
     sodipodi:ry="13.48378277"
     d="M 649.102997 441.201904 A 44.214264 13.483783 0 1 0 560.674469,441.201904 A 44.2143 13.4838 0 1 0 649.103 441.202 L 604.888733 441.201904 z"
     transform="matrix(1.042553,0.000000,0.000000,0.882208,-29.50271,47.34934)"
     inkscape:export-filename="C:\pas\mricron\btn\path.png"
     inkscape:export-xdpi="21.807127"
     inkscape:export-ydpi="21.807127" />
  <path
     style="font-size:12;fill-opacity:0.70196;stroke:#1c66f9;stroke-width:9.25243;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99;fill:url(#linearGradient968);"
     d="M -49.21 243.091 C -46.9287 238.079 -38.9781 233.065 -32.1615 233.824 L 173.669 267.357 C 189.611 256.808 212.948 243.966 237.003 247.181 L 271.976 250.84 L 316.171 257.383 C 341.971 263.24 362.36 275.405 364.498 299.613 L 364.227 591.258 L -50.8332 491.502 L -49.21 243.091 z "
     id="path10"
     transform="matrix(0.180587,0.000000,0.000000,0.239519,475.9239,473.8713)"
     sodipodi:nodetypes="cccccccccc" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.25;fill-rule:evenodd;stroke-width:0.0937284;stroke-opacity:0.53137;"
     id="rect1408"
     x="0.001633"
     y="142.499995"
     width="14.998365"
     height="14.994604"
     rx="0"
     ry="0"
     transform="matrix(15.78489,0.000000,0.000000,15.78489,215.6082,-1931.463)" />
  <rect
     style="font-size:12;fill:none;fill-rule:evenodd;stroke-width:0.0520834;"
     id="rect702"
     width="25.000004"
     height="24.999990"
     x="24.999998"
     y="219.999988"
     transform="matrix(14.81984,0.000000,0.000000,14.99259,-23.10420,-2817.060)" />
  <path
     style="font-size:12;fill:url(#linearGradient588);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.47847000000000001pt"
     d="M 260,712.36218 C 260.6888,710.6402 290,637.36218 290,637.36218 L 318.17786,717.86525 C 318.17786,717.86525 305,722.36218 290,722.36218 C 270,722.36218 259.65561,712.36218 260,712.36218 z"
     id="path593"
     sodipodi:nodetypes="ccczc"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="25.411764"
     inkscape:export-ydpi="25.411764" />
  <polygon
     sodipodi:type="star"
     style="font-size:12;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     id="polygon597"
     sodipodi:sides="6"
     sodipodi:cx="240.40767073"
     sodipodi:cy="577.30510872"
     sodipodi:r1="15.40403841"
     sodipodi:r2="7.70201920"
     sodipodi:arg1="0.65284663"
     sodipodi:arg2="1.17644541"
     points="252.644,586.662 243.367,584.416 238.422,592.581 235.729,583.423 226.186,583.223 232.77,576.312 228.171,567.948 237.448,570.194 242.393,562.03 245.086,571.187 254.629,571.387 248.045,578.298 252.644,586.662 "
     transform="matrix(0.478471,0.000000,0.000000,0.478471,170.7767,389.9823)"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864" />
  <polygon
     sodipodi:type="star"
     style="font-size:12;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     id="polygon598"
     sodipodi:sides="6"
     sodipodi:cx="240.40767073"
     sodipodi:cy="577.30510872"
     sodipodi:r1="15.40403841"
     sodipodi:r2="7.70201920"
     sodipodi:arg1="0.65284663"
     sodipodi:arg2="1.17644541"
     points="252.644,586.662 243.367,584.416 238.422,592.581 235.729,583.423 226.186,583.223 232.77,576.312 228.171,567.948 237.448,570.194 242.393,562.03 245.086,571.187 254.629,571.387 248.045,578.298 252.644,586.662 "
     transform="matrix(0.478471,0.000000,0.000000,0.478471,161.8224,423.0443)"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864" />
  <polygon
     sodipodi:type="star"
     style="font-size:12px;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
     id="polygon599"
     sodipodi:sides="6"
     sodipodi:cx="240.40767"
     sodipodi:cy="577.30511"
     sodipodi:r1="15.404038"
     sodipodi:r2="7.7020192"
     sodipodi:arg1="0.65284663"
     sodipodi:arg2="1.1764454"
     points="252.644,586.662 243.367,584.416 238.422,592.581 235.729,583.423 226.186,583.223 232.77,576.312 228.171,567.948 237.448,570.194 242.393,562.03 245.086,571.187 254.629,571.387 248.045,578.298 252.644,586.662 "
     transform="matrix(0.478471,0,0,0.478471,180.82663,405.61557)"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864"
     inkscape:flatsided="false"
     inkscape:rounded="0"
     inkscape:randomized="0"
     d="M 252.64399,586.6623 L 243.36685,584.41597 L 238.42227,592.58067 L 235.72908,583.42327 L 226.18595,583.22349 L 232.76989,576.31241 L 228.17135,567.94793 L 237.44848,570.19426 L 242.39307,562.02956 L 245.08626,571.18696 L 254.62939,571.38674 L 248.04545,578.29781 L 252.64399,586.6623 z" />
  <polygon
     sodipodi:type="star"
     style="font-size:12px;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
     id="polygon600"
     sodipodi:sides="6"
     sodipodi:cx="240.40767"
     sodipodi:cy="577.30511"
     sodipodi:r1="15.404038"
     sodipodi:r2="7.7020192"
     sodipodi:arg1="0.65284663"
     sodipodi:arg2="1.1764454"
     points="252.644,586.662 243.367,584.416 238.422,592.581 235.729,583.423 226.186,583.223 232.77,576.312 228.171,567.948 237.448,570.194 242.393,562.03 245.086,571.187 254.629,571.387 248.045,578.298 252.644,586.662 "
     transform="matrix(0.478471,0,0,0.478471,183.55602,422.73609)"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864"
     inkscape:flatsided="false"
     inkscape:rounded="0"
     inkscape:randomized="0"
     d="M 252.64399,586.6623 L 243.36685,584.41597 L 238.42227,592.58067 L 235.72908,583.42327 L 226.18595,583.22349 L 232.76989,576.31241 L 228.17135,567.94793 L 237.44848,570.19426 L 242.39307,562.02956 L 245.08626,571.18696 L 254.62939,571.38674 L 248.04545,578.29781 L 252.64399,586.6623 z" />
  <polygon
     sodipodi:type="star"
     style="font-size:12px;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
     id="polygon601"
     sodipodi:sides="6"
     sodipodi:cx="240.40767"
     sodipodi:cy="577.30511"
     sodipodi:r1="15.404038"
     sodipodi:r2="7.7020192"
     sodipodi:arg1="0.65284663"
     sodipodi:arg2="1.1764454"
     points="252.644,586.662 243.367,584.416 238.422,592.581 235.729,583.423 226.186,583.223 232.77,576.312 228.171,567.948 237.448,570.194 242.393,562.03 245.086,571.187 254.629,571.387 248.045,578.298 252.644,586.662 "
     transform="matrix(0.478471,0,0,0.478471,166.77658,438.30666)"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864"
     inkscape:flatsided="false"
     inkscape:rounded="0"
     inkscape:randomized="0"
     d="M 252.64399,586.6623 L 243.36685,584.41597 L 238.42227,592.58067 L 235.72908,583.42327 L 226.18595,583.22349 L 232.76989,576.31241 L 228.17135,567.94793 L 237.44848,570.19426 L 242.39307,562.02956 L 245.08626,571.18696 L 254.62939,571.38674 L 248.04545,578.29781 L 252.64399,586.6623 z" />
  <polygon
     sodipodi:type="star"
     style="font-size:12px;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
     id="polygon602"
     sodipodi:sides="6"
     sodipodi:cx="240.40767"
     sodipodi:cy="577.30511"
     sodipodi:r1="15.404038"
     sodipodi:r2="7.7020192"
     sodipodi:arg1="0.65284663"
     sodipodi:arg2="1.1764454"
     points="252.644,586.662 243.367,584.416 238.422,592.581 235.729,583.423 226.186,583.223 232.77,576.312 228.171,567.948 237.448,570.194 242.393,562.03 245.086,571.187 254.629,571.387 248.045,578.298 252.644,586.662 "
     transform="matrix(0.478471,0,0,0.478471,191.38779,434.54077)"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864"
     inkscape:flatsided="false"
     inkscape:rounded="0"
     inkscape:randomized="0"
     d="M 252.64399,586.6623 L 243.36685,584.41597 L 238.42227,592.58067 L 235.72908,583.42327 L 226.18595,583.22349 L 232.76989,576.31241 L 228.17135,567.94793 L 237.44848,570.19426 L 242.39307,562.02956 L 245.08626,571.18696 L 254.62939,571.38674 L 248.04545,578.29781 L 252.64399,586.6623 z" />
  <path
     style="font-size:12;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     d="M 274.11717,675.42762 C 272.59006,680.51787 272.50982,680.74799 270.97720,685.84931 L 272.11357,689.70698 L 274.49097,685.80445 L 278.91683,686.88101 L 276.71885,682.87382 L 279.87377,679.56938 L 275.31334,679.47966 L 274.11717,675.42762 z "
     id="path605"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864" />
  <path
     style="font-size:12;fill:#ffff00;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     d="M 292.16411,644.27745 L 290.93802,646.28105 L 286.49722,645.20449 L 288.69519,649.21168 L 285.55523,652.51612 L 290.11565,652.60584 L 291.40154,656.98683 L 293.77894,653.08431 L 295.40874,653.48802 L 292.16411,644.27745 z "
     id="path608"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864"
     inkscape:export-filename="C:\pas\mricron\btn\new\magichat.png" />
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-dasharray:none;"
     id="path651"
     sodipodi:cx="271.35836792"
     sodipodi:cy="796.11926270"
     sodipodi:rx="37.42873764"
     sodipodi:ry="37.42873764"
     d="M 308.787106 796.119263 A 37.428738 37.428738 0 1 0 233.929630,796.119263 A 37.4287 37.4287 0 1 0 308.787 796.119 L 271.358368 796.119263 z"
     transform="matrix(1.269231,0.000000,0.000000,1.209574,-61.55729,-176.8490)"
     inkscape:export-filename="C:\pas\mricron\btn\new\autocontrast.png"
     inkscape:export-xdpi="22.289494"
     inkscape:export-ydpi="22.289494" />
  <path
     style="font-size:12;fill:url(#linearGradient670);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;"
     d="M 295.69152,743.03173 L 295.69152,775.76582 L 271.65546,775.76582 L 271.65546,765.25764 C 271.65546,765.25764 271.67456,765.22685 247.26244,785.85819 L 271.13984,805.28697 L 271.13984,795.57258 L 295.69152,795.57258 L 295.69152,829.28944 C 315.20163,823.65675 329.48478,806.54705 329.48479,786.12279 C 329.48480,765.70248 315.19580,748.66784 295.69152,743.03173 z "
     id="path669"
     inkscape:export-filename="C:\pas\mricron\btn\new\autocontrast.png"
     inkscape:export-xdpi="22.289494"
     inkscape:export-ydpi="22.289494" />
  <path
     style="font-size:12;fill:url(#linearGradient1170);fill-rule:evenodd;stroke:#000054;stroke-width:0.67086999999999997;stroke-linejoin:round;stroke-opacity:1"
     d="M 37.736449,210.52722 C 39.360943,210.15769 40.548315,209.21204 41.638551,208.17037 C 42.631649,207.06469 43.624746,205.57494 43.986449,204.08519 L 35.819276,193.99093 L 26.486449,203.31704 L 37.736449,210.52722 z "
     id="path709"
     sodipodi:nodetypes="cccccc"
     transform="matrix(4.130527,0.000000,0.000000,4.178675,143.9011,-279.6922)"
     inkscape:export-filename="C:\pas\mricron\btn\new\bucket24x.png"
     inkscape:export-xdpi="22.773436"
     inkscape:export-ydpi="22.773436" />
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:#f5f9ff;fill-rule:evenodd;stroke:#000054;stroke-width:10.78609999999999900;stroke-opacity:1"
     id="path587"
     sodipodi:cx="220.25373840"
     sodipodi:cy="529.07958984"
     sodipodi:rx="44.62657547"
     sodipodi:ry="78.45639801"
     d="M 264.880314 529.079590 A 44.626575 78.456398 0 1 0 175.627163,529.079590 A 44.6266 78.4564 0 1 0 264.88 529.08 L 220.253738 529.079590 z"
     transform="matrix(0.261130,0.000000,-0.220403,0.255703,330.6188,414.5732)"
     inkscape:export-filename="C:\pas\mricron\btn\new\bucket24x.png"
     inkscape:export-xdpi="22.773436"
     inkscape:export-ydpi="22.773436" />
  <path
     style="font-size:12;fill:#ff0000;fill-rule:evenodd;stroke-width:1pt;"
     d="M 32.982608,203.39618 C 24.345244,202.82561 29.882675,210.68326 29.960475,211.32626 C 30.038375,211.96926 25.425954,213.06265 27.366549,215.37646 C 30.570035,217.69028 45.345484,218.46139 45.105684,214.83439 C 44.865884,211.20639 33.164810,212.24817 30.632114,211.28954 C 29.797246,209.02780 29.689118,205.41944 30.954356,204.34431 C 31.695306,203.86591 31.589790,205.17495 32.982608,203.39618 z "
     id="path711"
     transform="matrix(4.130527,0.000000,0.000000,4.178675,123.2485,-284.9157)"
     sodipodi:nodetypes="cccccsc"
     inkscape:export-filename="C:\pas\mricron\btn\new\bucket24x.png"
     inkscape:export-xdpi="22.773436"
     inkscape:export-ydpi="22.773436" />
  <path
     style="font-size:12;fill:#ff0000;fill-rule:evenodd;stroke-width:10.7861;"
     d="M 564.64487,498.84975 C 545.78432,498.84975 507.75654,526.26504 479.76987,560.03725 C 456.70600,587.86900 447.66587,611.34624 455.73862,618.75600 C 480.65758,610.79895 518.18623,582.81638 547.11362,549.25600 C 560.29785,533.96018 569.66613,519.82649 574.98862,508.16225 C 574.60172,502.30556 571.27296,498.84975 564.64487,498.84975 z "
     id="path592"
     transform="matrix(0.278716,0.000000,0.000000,0.278716,129.6880,395.7771)"
     inkscape:export-filename="C:\pas\mricron\btn\new\bucket24x.png"
     inkscape:export-xdpi="22.773436"
     inkscape:export-ydpi="22.773436" />
  <rect
     style="font-size:12.000000;fill:url(#linearGradient643);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000002;stroke-width:1.9439127;"
     id="rect642"
     width="71.981430"
     height="73.806518"
     x="355.56149"
     y="751.56487" />
  <path
     style="font-size:12.000000;fill-rule:evenodd;stroke:#000002;stroke-width:1.9439127;"
     d="M 355.86912,768.41833 L 355.86912,825.08081 L 426.31248,825.08081 L 421.69830,821.88448 C 413.18767,816.07293 415.69984,808.37265 406.01003,809.09909 C 396.62784,809.24438 372.43926,821.89222 368.33775,814.53095 C 363.45690,807.88664 365.01940,752.99455 361.12114,759.56548 L 355.86912,768.41833 z "
     id="path640"
     sodipodi:nodetypes="cccczcsc" />
  <rect
     style="font-size:12.000000;fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:4.1028190;"
     id="rect615"
     width="57.240670"
     height="49.173893"
     x="519.27698"
     y="1042.7878"
     transform="matrix(0.859371,-0.511353,0.000000,1.000000,0.000000,0.000000)" />
  <text
     xml:space="preserve"
     style="font-size:48.000000;font-weight:bold;fill:#000000;stroke-width:1.0000000pt;font-family:Verdana;fill-opacity:1.0000000;"
     x="709.86213"
     y="1342.1935"
     id="text610"
     sodipodi:linespacing="100%"
     transform="matrix(0.632720,-0.387288,0.000000,0.813305,0.000000,0.000000)"><tspan
       x="709.86212"
       y="1342.1935"
       sodipodi:role="line"
       id="tspan613"
       style="fill:#000000;fill-opacity:1.0000000;">LR</tspan></text>
  <rect
     style="font-size:12.000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:4.1239262;"
     id="rect627"
     width="57.831149"
     height="49.173893"
     x="-632.70609"
     y="457.02159"
     transform="matrix(-0.862456,-0.506131,0.000000,1.000000,0.000000,0.000000)" />
  <text
     xml:space="preserve"
     style="font-size:48.000000;font-weight:bold;stroke-width:1.0000000pt;font-family:Verdana;"
     x="-858.67939"
     y="596.71201"
     id="text628"
     sodipodi:linespacing="100%"
     transform="matrix(-0.632720,-0.387288,0.000000,0.813305,0.000000,0.000000)"><tspan
       x="-858.67938"
       y="596.71204"
       sodipodi:role="line"
       id="tspan629">LR</tspan></text>
  <rect
     style="font-size:12.000000;fill:url(#linearGradient1617);fill-rule:evenodd;stroke:#000000;stroke-width:0.77675028pt;"
     id="rect648"
     width="56.066268"
     height="49.173893"
     x="649.12604"
     y="1116.5706"
     transform="matrix(0.852907,-0.522062,0.000000,1.000000,0.000000,0.000000)" />
  <rect
     style="font-size:12.000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.77675028pt;"
     id="rect649"
     width="56.066268"
     height="49.173893"
     x="-761.52524"
     y="380.12168"
     transform="matrix(-0.852907,-0.522062,0.000000,1.000000,0.000000,0.000000)" />
  <path
     style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.4003696;fill-opacity:1.0000000;stroke-opacity:1.0000000;"
     d="M 586.02954,781.20391 C 576.62200,796.60958 567.62949,793.58791 569.22048,807.83469 C 571.77988,813.49422 577.86711,800.59504 591.84007,797.41464 C 597.37391,793.56282 600.31377,785.36998 593.29271,770.69383 C 584.81901,757.01251 564.65506,775.58222 560.50467,790.68280 C 556.35428,805.45774 563.75581,807.31272 569.01296,805.97641"
     id="path646"
     sodipodi:nodetypes="ccczzc" />
  <path
     style="font-size:12.000000;fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.4003696;"
     d="M 618.03676,782.42607 C 627.44430,797.83174 636.43680,794.81007 634.84582,809.05685 C 632.28642,814.71638 626.19918,801.81720 612.22623,798.63680 C 606.69238,794.78498 603.75252,786.59214 610.77359,771.91599 C 619.24729,758.23467 639.41124,776.80439 643.56163,791.90496 C 647.71201,806.67990 640.31049,808.53488 635.05334,807.19857"
     id="path650"
     sodipodi:nodetypes="ccczzc" />
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:url(#radialGradient1158);fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="path1411"
     d="M 69.375000 165.000000 A 4.375000 4.375000 0 1 0 60.625000,165.000000 A 4.375 4.375 0 1 0 69.375 165 L 65.000000 165.000000 z"
     sodipodi:cx="65.000000"
     sodipodi:cy="165.000000"
     sodipodi:rx="4.375000"
     sodipodi:ry="4.375000"
     transform="matrix(6.282797,0.000000,0.000000,6.282797,-36.58204,-479.7863)" />
  <path
     style="font-size:12;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:39.4622;stroke-linecap:round;stroke-linejoin:round;"
     d="M 550.91978,487.64604 L 629.84423,566.57049"
     id="path1413"
     sodipodi:nodetypes="cc"
     transform="matrix(0.398026,0.000000,0.000000,0.398026,176.0698,386.3398)" />
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:url(#radialGradient1203);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.87645;stroke-dasharray:none;"
     id="path682"
     sodipodi:cx="271.35836792"
     sodipodi:cy="796.11926270"
     sodipodi:rx="37.42873764"
     sodipodi:ry="37.42873764"
     d="M 308.787106 796.119263 A 37.428738 37.428738 0 1 0 233.929630,796.119263 A 37.4287 37.4287 0 1 0 308.787 796.119 L 271.358368 796.119263 z"
     transform="matrix(1.269231,0.000000,0.000000,1.209574,46.26003,-283.6018)" />
  <path
     style="font-size:12;fill:url(#linearGradient683);fill-opacity:0.38017;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     d="M 390.66521,633.72235 C 371.44051,633.72235 354.98613,644.70534 347.51136,660.37076 C 353.42953,663.40271 360.03471,666.27491 367.81906,664.18848 C 382.43619,660.99617 387.00568,653.47068 394.31424,650.27839 C 409.63412,649.70584 416.97120,657.57598 432.07387,657.23344 C 423.97641,643.28339 408.56719,633.72236 390.66521,633.72235 z "
     id="path687" />
  <text
     xml:space="preserve"
     style="fill:black;fill-opacity:1;stroke:none;font-family:Palatino Linotype;font-style:normal;font-weight:bold;font-size:48;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;"
     x="127.75068"
     y="373.16888"
     id="text688"
     sodipodi:linespacing="100%"
     transform="scale(2.880225,1.909157)"><tspan
       x="127.75068"
       y="373.16888"
       sodipodi:role="line"
       id="tspan693">i</tspan></text>
  <path
     style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     d="M 496.33119,633.22307 L 496.33119,725.97164 C 523.77846,725.97164 546.04854,705.21602 546.04851,679.61336 C 546.04851,654.01069 523.77844,633.22305 496.33119,633.22307 z "
     id="path700" />
  <path
     style="font-size:12;fill:url(#linearGradient639);fill-opacity:0.49999997;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     d="M 496.76745,633.22395 C 477.54275,633.22395 461.08837,644.20694 453.61360,659.87236 C 459.53177,662.90431 466.13695,665.77651 473.92130,663.69008 C 488.53843,660.49777 493.10792,652.97228 500.41648,649.77999 C 515.73636,649.20744 523.07344,657.07758 538.17611,656.73504 C 530.07865,642.78499 514.66943,633.22396 496.76745,633.22395 z "
     id="path697" />
  <g
     id="g708"
     transform="matrix(1.262750,0.000000,0.000000,1.262750,-71.71251,-181.4823)"
     style="">
    <rect
       style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
       id="rect705"
       width="15.90990257"
       height="6.62912607"
       x="557.73045492"
       y="679.80529213"
       ry="3.31456304" />
    <rect
       style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
       id="rect706"
       width="12.47239814"
       height="1.37715197"
       x="559.37109430"
       y="680.06188965"
       ry="0.68857598"
       rx="1.69095615" />
  </g>
  <g
     id="g711"
     transform="matrix(1.262750,0.000000,0.000000,1.262750,10.32260,-181.7613)"
     style="">
    <rect
       style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
       id="rect712"
       width="15.90990257"
       height="6.62912607"
       x="557.73045492"
       y="679.80529213"
       ry="3.31456304" />
    <rect
       style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
       id="rect713"
       width="12.47239814"
       height="1.37715197"
       x="559.37109430"
       y="680.06188965"
       ry="0.68857598"
       rx="1.69095615" />
  </g>
  <g
     id="g721"
     transform="matrix(0.878674,-0.906901,0.906901,0.878674,-460.8343,623.7427)"
     style="font-size:12;">
    <g
       id="g722">
      <rect
         style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
         id="rect723"
         width="15.90990257"
         height="6.62912607"
         x="557.73045492"
         y="679.80529213"
         ry="3.31456304" />
      <rect
         style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
         id="rect724"
         width="12.47239814"
         height="1.37715197"
         x="559.37109430"
         y="680.06188965"
         ry="0.68857598"
         rx="1.69095615" />
    </g>
    <g
       id="g725"
       transform="translate(64.96544,-0.220965)">
      <rect
         style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
         id="rect726"
         width="15.90990257"
         height="6.62912607"
         x="557.73045492"
         y="679.80529213"
         ry="3.31456304" />
      <rect
         style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
         id="rect727"
         width="12.47239814"
         height="1.37715197"
         x="559.37109430"
         y="680.06188965"
         ry="0.68857598"
         rx="1.69095615" />
    </g>
  </g>
  <g
     id="g728"
     transform="matrix(1.073491e-5,-1.262750,1.262750,1.073491e-5,-178.5732,1437.573)"
     style="font-size:12;">
    <g
       id="g729">
      <rect
         style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
         id="rect730"
         width="15.90990257"
         height="6.62912607"
         x="557.73045492"
         y="679.80529213"
         ry="3.31456304" />
      <rect
         style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
         id="rect731"
         width="12.47239814"
         height="1.37715197"
         x="559.37109430"
         y="680.06188965"
         ry="0.68857598"
         rx="1.69095615" />
    </g>
    <g
       id="g732"
       transform="translate(64.96544,-0.220965)">
      <rect
         style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
         id="rect733"
         width="15.90990257"
         height="6.62912607"
         x="557.73045492"
         y="679.80529213"
         ry="3.31456304" />
      <rect
         style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
         id="rect734"
         width="12.47239814"
         height="1.37715197"
         x="559.37109430"
         y="680.06188965"
         ry="0.68857598"
         rx="1.69095615" />
    </g>
  </g>
  <g
     id="g735"
     transform="matrix(0.893911,0.891887,-0.891887,0.893911,758.6406,-462.3620)"
     style="font-size:12;">
    <g
       id="g736">
      <rect
         style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
         id="rect737"
         width="15.90990257"
         height="6.62912607"
         x="557.73045492"
         y="679.80529213"
         ry="3.31456304" />
      <rect
         style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
         id="rect738"
         width="12.47239814"
         height="1.37715197"
         x="559.37109430"
         y="680.06188965"
         ry="0.68857598"
         rx="1.69095615" />
    </g>
    <g
       id="g739"
       transform="translate(64.96544,-0.220965)">
      <rect
         style="font-size:12;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
         id="rect740"
         width="15.90990257"
         height="6.62912607"
         x="557.73045492"
         y="679.80529213"
         ry="3.31456304" />
      <rect
         style="font-size:12;fill:url(#linearGradient703);fill-rule:evenodd;stroke-width:1pt;"
         id="rect741"
         width="12.47239814"
         height="1.37715197"
         x="559.37109430"
         y="680.06188965"
         ry="0.68857598"
         rx="1.69095615" />
    </g>
  </g>
  <path
     style="font-size:12;fill:#e6e6e6;fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     d="M 683.81237,652.51288 C 671.83423,652.51288 661.58216,660.41352 656.92493,671.68248 C 660.61230,673.86352 664.72773,675.92965 669.57785,674.42877 C 678.68520,672.13237 681.53227,666.71889 686.08594,664.42251 C 695.63114,664.01065 700.20259,669.67205 709.61245,669.42564 C 704.56725,659.39064 694.96638,652.51289 683.81237,652.51288 z "
     id="path801" />
  <path
     style="fill:#fb4100;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"
     d="M 476.34114,554.66904 C 483.92112,533.01461 496.96853,549.86409 506.53666,550.82511 C 514.86216,550.34456 515.73201,524.39800 531.51319,528.72246 C 538.84464,531.28509 536.85645,548.74295 535.61383,558.03249 C 535.48959,568.60329 536.86193,580.71156 526.29423,589.74497 C 511.50642,601.90523 468.76115,575.84293 476.34114,554.66904 z "
     id="path760"
     sodipodi:nodetypes="ccccsz" />
  <path
     style="font-size:12;stroke:#1c4ed9;stroke-width:10.9208;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99216;fill:#4789f7;fill-opacity:1;"
     d="M -25.481958,248.26603 L 449.26700,273.43400 L 430.54500,310.73100 L -40.947002,275.21320 L -25.481958,248.26603 z "
     id="path279"
     transform="matrix(0.158157,4.271800e-2,5.364549e-3,0.156933,469.3436,553.4222)"
     sodipodi:nodetypes="ccccc" />
  <path
     style="font-size:12;fill:url(#linearGradient967);fill-opacity:0.6993;stroke:#1c66fb;stroke-width:9.25243;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99216;"
     d="M -49.210000,251.69600 C -50.453100,239.20100 -40.203100,227.28000 -26.572700,228.54900 L 168.87300,263.91600 L 168.28600,299.92400 L 253.04600,316.79000 L 253.93000,278.87900 L 343.03800,291.68700 C 354.24800,294.90300 361.40100,301.55900 364.49800,316.81800 L 362.20763,586.89881 L -28.092563,469.70606 L -49.210000,251.69600 z "
     id="path208"
     transform="matrix(0.171298,0.000000,6.402228e-2,0.215063,438.9690,493.7050)"
     sodipodi:nodetypes="ccccccccccc" />
  <path
     style="font-size:12;fill-opacity:0.99;stroke:#0c1dfb;stroke-width:2.63195;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99;fill:url(#radialGradient1140);"
     d="M 557.37226,540.24997 C 557.04724,536.47774 559.72713,532.59711 563.29085,532.12238 L 643.91869,532.55043 C 646.84958,532.82956 648.71975,534.42669 649.52947,538.93308 L 649.45887,612.42139 L 641.22180,619.79126 L 564.84594,620.14154 L 557.39252,612.04259 L 557.37226,540.24997 z "
     id="path1131"
     sodipodi:nodetypes="ccccccccc" />
  <path
     style="font-size:12;fill:url(#linearGradient1138);fill-opacity:0.6993;stroke:#1c2942;stroke-width:2.28142;stroke-opacity:0.99216;"
     d="M 582.66195,589.79239 L 627.14365,589.80274 L 627.52772,620.32722 L 582.36162,620.36346 L 582.66195,589.79239 z "
     id="path230"
     sodipodi:nodetypes="ccccc" />
  <path
     style="font-size:12;fill:#ffffff;fill-opacity:0.99216;stroke:#1c2942;stroke-width:1.10123;stroke-opacity:0.99216;"
     d="M 568.04305,545.40016 L 562.27509,545.17995 L 562.26523,539.14553 L 568.02662,539.08853 L 568.04305,545.40016 z "
     id="path313"
     sodipodi:nodetypes="ccccc" />
  <path
     style="font-size:12;fill-opacity:1;stroke:#0c5cff;stroke-width:2.20247;stroke-opacity:0.99216;fill:#fffffd;"
     d="M 572.55890,532.87597 L 635.43355,532.88839 L 635.97643,578.77497 L 572.13438,578.81877 L 572.55890,532.87597 z "
     id="path412"
     sodipodi:nodetypes="ccccc" />
  <path
     style="font-size:12;fill:#1c2942;fill-opacity:0.992157;stroke-width:8.96855;"
     d="M 600.69196,615.30986 L 590.20322,615.52766 L 590.18460,593.72001 L 600.66094,593.93144 L 600.69196,615.30986 z "
     id="path415"
     sodipodi:nodetypes="ccccc" />
  <path
     style="font-size:12;fill:#ffffff;fill-opacity:0.99216;stroke:#1c2942;stroke-width:1.10123;stroke-opacity:0.99216;"
     d="M 645.41453,544.95545 L 639.64657,544.73523 L 639.63671,538.70081 L 645.39810,538.64382 L 645.41453,544.95545 z "
     id="path420"
     sodipodi:nodetypes="ccccc" />
  <path
     style="fill:#fb4100;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"
     d="M 576.19524,551.65510 C 583.02443,538.35600 594.77948,548.70415 603.39989,549.29433 C 610.90075,548.99924 611.68442,533.06410 625.90249,535.71996 C 632.50774,537.29380 630.72141,567.64918 621.20046,573.19704 C 607.87739,580.66531 569.36604,564.65909 576.19524,551.65510 z "
     id="path1137"
     sodipodi:nodetypes="cccsz" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect1148"
     width="106.29921722"
     height="106.29921722"
     x="336.61416260"
     y="414.56689177" />
  <path
     style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 77.051277,408.7988 C 71.267817,417.21799 67.027117,423.63406 62.200887,434.68137 C 57.374657,446.11092 52.046077,474.37935 55.805647,479.02442 C 59.565217,483.66948 65.054177,480.60173 68.813737,476.487 C 72.573307,472.37227 70.668857,451.43553 71.855117,442.32214 C 72.728877,433.20875 75.073327,423.76954 77.051277,408.7988 z"
     id="path1163"
     sodipodi:nodetypes="czzzzc" />
  <path
     style="fill:url(#linearGradient3600);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 63.057537,441.27138 C 61.657557,445.37446 60.025867,448.19672 58.857597,453.5806 C 57.689337,459.15077 56.021237,472.92733 56.931297,475.19109 C 57.841367,477.45485 59.170057,475.95979 60.080117,473.95448 C 60.990177,471.94918 60.529177,461.74571 60.816327,457.30432 C 61.027837,452.86292 62.578747,448.56734 63.057537,441.27138 z"
     id="path1164"
     sodipodi:nodetypes="czzzzc" />
  <path
     style="font-size:12px;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
     d="M 65.027472,501.48235 C 51.407077,497.9052 50.454926,490.50156 53.966405,485.50879 C 55.290385,484.10977 58.403862,481.96591 60.211329,482.09583 C 62.018803,482.22576 63.57703,483.14148 65.898291,484.80391 C 71.165819,488.75376 61.235859,490.46929 65.027472,501.48235 z"
     id="path1165"
     sodipodi:nodetypes="ccszc" />
  <path
     style="font-size:12px;fill:url(#linearGradient3598);fill-rule:evenodd;stroke-width:1pt"
     d="M 60.576947,496.88161 C 57.318997,496.05997 55.784737,496.21737 53.771847,491.29171 C 51.758957,486.67855 56.763437,485.16283 57.357717,484.53711 C 57.951997,483.91138 58.819637,484.32463 59.413917,484.87892 C 60.008197,485.4332 59.707157,488.25355 59.894667,489.48119 C 60.032787,490.70884 57.764297,492.83368 60.576947,496.88161 z"
     id="path1166"
     sodipodi:nodetypes="czzzzc" />
  <path
     style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     id="path1178"
     d="M 132.76033,454.92476 C 133.58483,461.75504 110.61862,470.65746 109.69302,474.58544 C 107.79093,478.92593 122.67406,489.23041 118.64002,494.37156 C 116.06387,502.12143 76.332667,506.06522 67.089097,503.65943 C 65.935297,502.26703 65.735177,499.08018 67.848227,497.17509 C 73.487937,493.86766 101.21717,496.69665 110.37363,491.71974 C 111.17693,489.62848 100.67532,479.10788 103.89636,473.54283 C 107.27361,466.68575 127.96186,459.52712 127.6453,455.49314 C 124.66526,450.94096 101.5795,443.77841 98.841397,439.84805 C 98.841397,439.84805 128.87,449.20724 132.76033,454.92476 z"
     sodipodi:nodetypes="cccccccccc" />
  <path
     style="fill:#000054;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1"
     d="M 379.19834,430.4644 C 375.81627,423.04655 369.17418,435.83206 364.34795,446.87937 C 359.52172,458.30892 354.19314,486.57735 357.95271,491.22242 C 361.71228,495.86748 367.20124,492.79973 370.9608,488.685 C 374.72037,484.57027 372.81592,463.63353 374.00218,454.52014 C 374.87594,445.40675 382.58041,437.88226 379.19834,430.4644 z"
     id="path1183"
     sodipodi:nodetypes="czzzzz"
     inkscape:export-filename="C:\pas\mricron\btn\new\autoclose24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="fill:url(#linearGradient1139);fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"
     d="M 365.20460,453.46938 C 363.80462,457.57246 362.17293,460.39472 361.00466,465.77860 C 359.83640,471.34877 358.16830,485.12533 359.07836,487.38909 C 359.98843,489.65285 361.31712,488.15779 362.22718,486.15248 C 363.13724,484.14718 362.67624,473.94371 362.96339,469.50232 C 363.17490,465.06092 364.72581,460.76534 365.20460,453.46938 z "
     id="path1184"
     sodipodi:nodetypes="czzzzc"
     inkscape:export-filename="C:\pas\mricron\btn\new\autoclose24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="font-size:12;fill-rule:evenodd;stroke-width:1pt;fill:#ff0000;fill-opacity:1;"
     d="M 367.17453,513.68035 C 353.55414,510.10320 352.60199,502.69956 356.11346,497.70679 C 357.43744,496.30777 360.55092,494.16391 362.35839,494.29383 C 364.16586,494.42376 365.72409,495.33948 368.04535,497.00191 C 373.31288,500.95176 363.38292,502.66729 367.17453,513.68035 z "
     id="path1185"
     sodipodi:nodetypes="ccszc"
     inkscape:export-filename="C:\pas\mricron\btn\new\autoclose24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="font-size:12;fill:url(#linearGradient1175);fill-rule:evenodd;stroke-width:1pt;"
     d="M 362.72401,509.07961 C 359.46606,508.25797 357.93180,508.41537 355.91891,503.48971 C 353.90602,498.87655 358.91050,497.36083 359.50478,496.73511 C 360.09906,496.10938 360.96670,496.52263 361.56098,497.07692 C 362.15526,497.63120 361.85422,500.45155 362.04173,501.67919 C 362.17985,502.90684 359.91136,505.03168 362.72401,509.07961 z "
     id="path1186"
     sodipodi:nodetypes="czzzzc"
     inkscape:export-filename="C:\pas\mricron\btn\new\autoclose24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="fill:#ff0000;fill-rule:nonzero;stroke:none;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt"
     id="path1187"
     d="M 434.90739,467.12276 C 435.73189,473.95304 412.76568,482.85546 411.84008,486.78344 C 409.93799,491.12393 424.82112,501.42841 420.78708,506.56956 C 418.21093,514.31943 378.47973,518.26322 369.23616,515.85743 C 368.08236,514.46503 367.88224,511.27818 369.99529,509.37309 C 375.63500,506.06566 403.36423,508.89465 412.52069,503.91774 C 413.32399,501.82648 402.82238,491.30588 406.04342,485.74083 C 409.42067,478.88375 430.10892,471.72512 429.79236,467.69114 C 426.81232,463.13896 403.72656,455.97641 400.98846,452.04605 C 400.98846,452.04605 431.01706,461.40524 434.90739,467.12276 z "
     sodipodi:nodetypes="cccccccccc"
     inkscape:export-filename="C:\pas\mricron\btn\new\autoclose24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="font-size:12;fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#0000c0;stroke-width:5;stroke-linecap:round;stroke-dasharray:5, 5;stroke-dashoffset:0;stroke-miterlimit:4;stroke-opacity:1"
     d="M 400.09965,456.6173 L 371.53803,505.58684"
     id="path1189"
     inkscape:export-filename="C:\pas\mricron\btn\new\autoclose24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318"
     sodipodi:nodetypes="cc" />
  <path
     style="fill:#fb4100;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"
     d="M 561.65094,448.09913 C 571.11508,425.70443 587.40564,443.12995 599.35212,444.12377 C 609.74708,443.62687 610.83312,416.79324 630.53703,421.26553 C 639.69082,423.91576 637.21526,475.03199 624.02079,484.37417 C 605.55720,496.95021 552.18679,469.99689 561.65094,448.09913 z "
     id="path1196"
     sodipodi:nodetypes="cccsz"
     inkscape:export-filename="C:\pas\mricron\btn\path.png"
     inkscape:export-xdpi="21.807127"
     inkscape:export-ydpi="21.807127" />
  <path
     style="font-size:12;fill:url(#radialGradient1140);fill-opacity:0.99;stroke:#0c1dfb;stroke-width:2.47208;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99;"
     d="M 555.37415,438.95253 C 566.02431,447.52015 591.18209,448.17514 604.56628,448.38069 C 617.95046,448.58624 641.07727,445.71069 647.53136,437.79076 L 639.22369,509.12451 C 628.37584,514.24774 616.58726,517.38839 602.91722,517.02493 C 589.24718,516.66148 572.12780,514.45376 562.84783,509.43353 L 555.37415,438.95253 z "
     id="path1199"
     sodipodi:nodetypes="czcczcc"
     inkscape:export-xdpi="21.807127"
     inkscape:export-ydpi="21.807127"
     inkscape:export-filename="C:\pas\mricron\btn\path.png" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect983"
     width="106.29922"
     height="106.29922"
     x="229.68997"
     y="308.89271" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect984"
     width="106.29922"
     height="106.29922"
     x="335.98920"
     y="308.89271" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;"
     d="M 279.95280,346.67442 C 280.29433,345.98764 279.36877,338.54690 277.95386,336.62391 C 276.53895,334.70092 274.43956,335.54857 274.09803,336.23535 C 273.75651,336.92213 275.86774,336.00777 277.28264,337.93076 C 278.69755,339.85374 279.61128,347.36120 279.95280,346.67442 z "
     id="path1018"
     sodipodi:nodetypes="czzzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.76453004pt;"
     d="M 273.63423,385.40914 C 270.65408,385.12172 270.05831,378.23536 267.98919,382.43631 C 265.82503,386.71235 270.28496,395.88181 270.67731,391.14244 C 270.97461,386.40309 276.51934,385.77163 273.63423,385.40914 z "
     id="path1019"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;"
     d="M 288.50077,346.53195 C 288.15924,345.84516 289.08480,338.40442 290.49971,336.48144 C 291.91461,334.55844 294.01401,335.40609 294.35554,336.09287 C 294.69706,336.77966 292.58583,335.86530 291.17093,337.78828 C 289.75602,339.71127 288.84229,347.21873 288.50077,346.53195 z "
     id="path1036"
     sodipodi:nodetypes="czzzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.76453004pt;"
     d="M 294.81934,385.26667 C 297.79949,384.97925 298.39526,378.09288 300.46438,382.29384 C 302.62854,386.56988 298.16861,395.73934 297.77626,390.99997 C 297.47896,386.26061 291.93423,385.62916 294.81934,385.26667 z "
     id="path1037"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0507082pt;fill-opacity:1.0000000;"
     d="M 409.23451,358.84667 C 408.54949,363.52087 396.22993,361.07089 396.03530,368.76520 C 395.84067,375.96034 411.64662,377.37220 417.55186,375.25440 C 423.45711,373.13660 427.32607,369.84225 426.71517,362.54762 C 426.10429,355.25299 424.14266,336.89820 402.58195,326.37323 C 381.45319,316.34743 357.52241,330.01251 349.87361,344.61299 C 342.22480,359.71267 341.61655,375.00482 350.68776,369.51396 C 359.32701,364.52225 369.86822,348.78540 385.68092,346.96694 C 401.06163,345.14847 409.91950,355.17081 409.23451,358.84667 z "
     id="path1045"
     sodipodi:nodetypes="czzzzzzzz" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0877723pt;fill-opacity:1.0000000;"
     d="M 373.63251,370.33086 C 372.33483,368.22505 372.73946,360.23826 365.81846,361.79098 C 358.89746,363.34369 351.38109,370.76217 349.29735,373.43628 C 347.21361,376.11041 348.32990,380.85478 349.29735,381.97618 C 350.26481,383.09758 355.77183,383.70140 357.33465,385.08158 C 358.89746,386.46177 362.54401,391.63747 364.47891,391.29243 C 366.41382,390.94738 370.35806,386.80682 370.50689,385.08160 C 370.65573,383.35636 374.93016,372.43670 373.63251,370.33086 z "
     id="path1049"
     sodipodi:nodetypes="czzzzzzz" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:none;stroke-width:1.0507082pt;fill-opacity:1.0000000;"
     d="M 369.80420,399.98508 C 370.22508,395.78373 374.95545,379.12917 375.72069,374.09587 C 376.48592,369.06258 373.57804,371.60003 374.80242,369.35376 C 376.02678,367.10748 380.15902,361.82463 383.06689,360.61829 C 385.97478,359.41197 390.10702,360.11025 392.24966,361.23339 C 394.39230,362.35653 395.73146,366.10916 395.92276,367.35707 C 396.11406,368.60500 394.43057,370.01932 393.39750,369.60335 C 392.36444,369.18737 394.01446,362.68044 391.51002,364.68476 C 389.00558,366.86555 385.84845,370.56008 384.21474,372.09919 C 382.90569,373.63828 386.12783,372.84795 386.74001,374.09587 C 387.35219,375.34380 388.50003,377.42367 387.88785,379.58674 C 387.27565,381.74980 384.63561,385.70156 383.06689,387.07427 C 381.49816,388.44699 380.12076,385.78476 378.47552,387.82304 C 376.83027,389.86131 374.60431,398.21199 373.22688,400.16706 L 369.80420,399.98508 z "
     id="path1050"
     sodipodi:nodetypes="czzzzzzzzzzzzcc" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;fill-opacity:1.0000000;stroke-dasharray:none;"
     d="M 368.64815,355.65182 C 369.07734,357.32494 370.41856,361.26175 371.38424,362.14751 C 372.34992,363.03329 374.41542,363.29574 374.76413,362.14751 C 375.11285,360.99928 372.77913,355.22533 378.62686,352.10871 C 384.63554,348.99209 394.02411,349.71383 396.97480,351.12452 C 399.92548,352.53519 404.88802,357.78424 400.19374,361.36016 C 396.30418,364.93605 405.74639,365.03448 407.75823,363.52538 C 409.77007,362.01628 412.69261,356.42939 410.09064,353.73925 C 407.48867,351.04912 400.89223,344.62204 394.77625,343.96592 C 388.66028,343.30978 374.03986,350.59961 372.02803,351.12452 C 369.85526,351.64942 368.21896,353.97868 368.64815,355.65182 z "
     id="path1051"
     sodipodi:nodetypes="czzzzzzzzzz" />
  <g
     id="g1422">
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.1655209pt;"
       d="M 500.15302,318.39576 C 498.63090,318.58535 497.62728,319.44559 497.45659,321.35308 L 496.27180,334.48360 L 495.12787,321.15593 C 494.44510,313.52598 480.11544,322.81032 474.82299,326.00594 C 463.97441,332.55643 453.12906,348.90299 453.12904,365.27921 C 453.12904,369.37327 450.53202,374.85695 458.19505,375.61014 C 471.12797,372.25560 475.71395,368.40706 475.88521,364.72718 C 475.97004,366.73597 472.22575,370.99591 477.19257,377.85771 C 471.88006,374.61864 449.68734,372.98113 454.59982,385.78334 C 460.64344,396.79407 487.30926,400.22178 487.52886,393.43295 C 487.74845,386.64413 493.79077,380.76155 483.19824,381.13048 C 485.89452,378.43241 492.43160,379.68832 495.12787,376.99022 L 496.31266,372.81053 L 497.66087,376.55648 C 500.35715,379.25456 506.64909,378.23526 509.34537,380.93333 C 500.48613,379.72791 504.79515,386.40754 505.01475,393.19637 C 505.23437,399.98518 531.94102,396.59692 537.98464,385.58618 C 542.89711,372.78397 520.66354,374.42148 515.35103,377.66055 C 520.31782,370.79874 516.57357,366.49938 516.65839,364.49060 C 516.82967,368.17046 521.41564,372.05845 534.34856,375.41298 C 542.01160,374.65978 539.45542,369.17610 539.45542,365.08206 C 539.45542,348.70583 528.61005,332.35928 517.76147,325.80879 C 513.79214,323.41205 504.71936,317.82698 500.15302,318.39576 z "
       id="path1060"
       sodipodi:nodetypes="cccccccccccccccccccccccc" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.98194113pt;"
       d="M 501.66595,339.08941 C 507.48057,336.85763 507.44235,336.64611 505.77764,338.68995 C 504.31721,340.73379 502.98053,336.92565 501.65049,348.68951 C 500.11618,360.84766 495.64707,341.51834 501.66595,339.08941 z "
       id="path1057"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.98194113pt;"
       d="M 491.59647,339.30071 C 485.78186,337.06892 485.82008,336.85741 487.48479,338.90125 C 488.94522,340.94509 490.28190,337.13695 491.61194,348.90080 C 493.14625,361.05897 497.61536,341.72965 491.59647,339.30071 z "
       id="path1059"
       sodipodi:nodetypes="czzz" />
  </g>
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:url(#radialGradient983);fill-opacity:0.50000000;fill-rule:evenodd;stroke:none;stroke-width:1.875;stroke-dasharray:none;"
     id="path1065"
     sodipodi:cx="271.35836792"
     sodipodi:cy="796.11926270"
     sodipodi:rx="37.42873764"
     sodipodi:ry="37.42873764"
     d="M 308.787106 796.119263 A 37.428738 37.428738 0 1 0 233.929630,796.119263 A 37.4287 37.4287 0 1 0 308.787 796.119 L 271.358368 796.119263 z"
     transform="matrix(1.269231,0.000000,0.000000,1.209574,153.7331,-282.7179)" />
  <rect
     style="fill:#9999ff;fill-rule:evenodd;stroke-width:0.84895535pt;"
     id="rect1074"
     width="42.038873"
     height="31.251435"
     x="577.48017"
     y="355.15182"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 590.00000,364.23718 C 600.00000,365.07051 608.75000,368.82051 614.37500,377.36218 C 620.00000,386.52885 619.37500,387.36218 619.37500,387.36218 C 619.37500,387.36218 620.62500,396.11218 608.75000,397.36218 C 596.87500,397.98718 583.56694,385.77747 569.81694,385.77747 C 556.69194,385.77747 551.87500,383.73242 553.75000,372.36218 C 555.62500,360.55000 569.06250,334.86218 591.87500,334.23718 C 614.68750,332.98718 635.31250,340.38301 643.75000,355.48718 C 651.56250,370.59135 647.81250,382.36218 643.12500,386.11218 C 638.43750,389.86218 627.70833,384.86218 619.37500,386.73718"
     id="path1067"
     sodipodi:nodetypes="czzzzzzzzz"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 605.62500,385.48718 C 598.12500,382.98718 595.00000,382.98718 588.12500,376.73718 C 581.25000,370.48718 580.00000,364.23718 580.00000,364.23718"
     id="path1068"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 597.50000,334.86218 C 598.12500,347.36218 604.92417,355.07014 602.71447,365.23480"
     id="path1069"
     sodipodi:nodetypes="cc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 610.90476,341.83916 C 625.49682,341.59591 628.11190,344.21099 630.20397,355.19433 C 635.95715,352.05623 638.95397,353.81615 640.20397,366.31615"
     id="path1070"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 620.21706,362.57924 C 620.21706,362.57924 610.95580,381.48089 620.33080,380.85589 C 629.70580,380.23089 626.05002,380.28181 628.70167,379.17696"
     id="path1071"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 565.74009,361.50702 C 565.74009,361.50702 568.88733,353.92082 576.86459,349.47516 C 584.84184,345.55251 590.33862,342.77797 590.55959,337.25370 L 589.89668,342.92311 C 589.16881,349.14804 598.53331,356.11130 595.55959,362.81588"
     id="path1072"
     sodipodi:nodetypes="czczz"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 606.88925,334.11254 C 612.15464,344.40283 608.33289,359.63174 612.31037,370.45931"
     id="path1073"
     sodipodi:nodetypes="cc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="59.518364"
     inkscape:export-ydpi="59.518364" />
  <g
     id="g1132"
     transform="matrix(1.069142,0.000000,0.000000,1.032969,-32.93548,-15.76150)">
    <g
       id="g1107"
       transform="matrix(0.841944,0.000000,0.000000,0.873445,74.35371,56.03641)">
      <g
         id="g1099"
         transform="translate(1.325825,9.280777)">
        <path
           style="fill-rule:evenodd;stroke:#000000;stroke-width:0.65628657pt;"
           d="M 496.65430,493.31750 C 496.65430,484.55800 490.15222,466.98787 483.70730,461.72195 C 477.26238,456.45602 464.41541,456.46624 457.98479,461.72195 C 451.55416,466.97766 445.12353,484.49668 445.12353,493.25619 C 445.12353,502.01571 451.55416,510.77522 457.98479,514.27903 C 464.41541,517.78283 477.26238,517.77261 483.70730,514.27903 C 490.15222,510.78544 496.65430,502.07702 496.65430,493.31750 z "
           id="path1075"
           sodipodi:nodetypes="czzzzzz" />
        <g
           id="g1093">
          <path
             style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.60115390pt;"
             d="M 471.91942,460.57627 C 471.83583,460.57625 471.75443,460.59340 471.67084,460.59426 L 471.67084,460.61224 C 471.60863,460.60733 471.54725,460.59423 471.48442,460.59426 C 471.33798,460.59430 471.19580,460.62750 471.04941,460.63023 L 471.04941,460.70216 C 470.96017,460.69182 470.87062,460.68420 470.78013,460.68418 C 470.71728,460.68416 470.65591,460.69725 470.59369,460.70216 L 470.59369,460.68418 C 470.51011,460.68333 470.42871,460.66617 470.34512,460.66619 C 465.94290,460.66736 461.53595,461.88424 458.60004,464.29896 C 457.13209,465.50632 448.73018,475.46378 451.55713,477.17551 C 458.59260,481.68638 464.69200,468.40765 458.18575,479.42351 C 457.53016,483.20728 457.36165,485.18018 457.31574,486.16752 C 457.22303,484.35884 456.45624,480.11665 452.42714,478.05673 C 449.06128,476.37130 446.85496,491.25894 446.85496,493.27120 C 446.85496,501.32028 452.72823,509.36640 458.60004,512.58603 C 461.57796,514.21889 466.06655,515.00265 470.53155,514.97790 L 470.53155,514.99589 C 470.75985,514.99753 470.98688,514.98046 471.21513,514.97790 L 471.21513,514.88798 C 471.38776,514.89378 471.55999,514.90723 471.73299,514.90597 L 471.73299,514.88798 C 476.19799,514.91273 480.68658,514.12899 483.66451,512.49611 C 489.53631,509.27648 495.40958,501.23035 495.40958,493.18128 C 495.40958,491.16902 493.20325,476.28138 489.83741,477.96681 C 485.80830,480.02673 485.04151,484.26892 484.94880,486.07760 C 484.90289,485.09026 484.73439,483.11735 484.07879,479.33359 C 477.57255,468.31773 483.67194,481.59646 490.70741,477.08559 C 493.53436,475.37386 485.13245,465.41639 483.66451,464.20904 C 480.72859,461.79432 476.32164,460.57744 471.91942,460.57627 z "
             id="path1076" />
          <path
             style="fill-rule:evenodd;stroke:#000000;stroke-width:0.60115390pt;"
             d="M 468.10796,477.26953 C 468.34963,476.84360 467.69470,472.22898 466.69350,471.03637 C 465.69229,469.84376 464.20675,470.36946 463.96508,470.79539 C 463.72341,471.22132 465.21734,470.65425 466.21853,471.84686 C 467.21974,473.03946 467.86630,477.69546 468.10796,477.26953 z "
             id="path1077"
             sodipodi:nodetypes="czzzz" />
          <path
             style="fill-rule:evenodd;stroke:#000000;stroke-width:0.50646687pt;"
             d="M 463.63689,501.29214 C 461.52811,501.11389 461.10654,496.84308 459.64241,499.44844 C 458.11103,502.10037 461.26692,507.78711 461.54455,504.84784 C 461.75492,501.90857 465.67842,501.51695 463.63689,501.29214 z "
             id="path1078"
             sodipodi:nodetypes="czzz" />
          <path
             style="fill-rule:evenodd;stroke:#000000;stroke-width:0.60115390pt;"
             d="M 474.15658,477.18117 C 473.91491,476.75523 474.56985,472.14061 475.57105,470.94801 C 476.57224,469.75540 478.05780,470.28110 478.29947,470.70703 C 478.54113,471.13296 477.04720,470.56589 476.04601,471.75849 C 475.04481,472.95110 474.39824,477.60710 474.15658,477.18117 z "
             id="path1079"
             sodipodi:nodetypes="czzzz" />
          <path
             style="fill-rule:evenodd;stroke:#000000;stroke-width:0.50646687pt;"
             d="M 478.62766,501.20378 C 480.73643,501.02553 481.15801,496.75472 482.62213,499.36008 C 484.15351,502.01201 480.99763,507.69875 480.72000,504.75948 C 480.50963,501.82021 476.58613,501.42859 478.62766,501.20378 z "
             id="path1080"
             sodipodi:nodetypes="czzz" />
        </g>
      </g>
      <g
         id="g1088"
         transform="matrix(0.528836,0.000000,0.000000,0.528836,234.0955,290.1247)">
        <path
           style="fill-rule:evenodd;stroke:#000000;stroke-width:1.2724125pt;"
           d="M 448.76081,243.24146 C 439.85333,243.24406 424.56825,250.36055 418.62774,255.70706 C 406.74669,266.40004 400.09103,294.23271 400.09103,312.05436 C 400.09103,317.48652 400.10693,322.81569 400.33616,327.94505 L 494.99693,327.94505 C 495.23807,322.86048 495.28292,317.60716 495.28292,312.21208 C 495.28288,294.39046 491.62713,267.53611 479.71970,256.82234 C 473.76599,251.46545 457.66829,243.23886 448.76081,243.24146 z "
           id="path1084"
           sodipodi:nodetypes="cccccccc" />
        <path
           style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.1655209pt;"
           d="M 452.30358,246.20459 C 450.78146,246.39418 449.77784,247.25442 449.60715,249.16191 L 448.42236,262.29243 L 447.27843,248.96476 C 446.59566,241.33481 432.26600,250.61915 426.97355,253.81477 C 416.12497,260.36526 405.27962,276.71182 405.27960,293.08804 C 405.27960,297.18210 402.68258,302.66578 410.34561,303.41897 C 423.27853,300.06443 427.86451,296.21589 428.03577,292.53601 C 428.12060,294.54480 424.37631,298.80474 429.34313,305.66654 C 424.03062,302.42747 401.83790,300.78996 406.75038,313.59217 C 412.79400,324.60290 439.45982,328.03061 439.67942,321.24178 C 439.89901,314.45296 445.94133,308.57038 435.34880,308.93931 C 438.04508,306.24124 444.58216,307.49715 447.27843,304.79905 L 448.46322,300.61936 L 449.81143,304.36531 C 452.50771,307.06339 458.79965,306.04409 461.49593,308.74216 C 452.63669,307.53674 456.94571,314.21637 457.16531,321.00520 C 457.38493,327.79401 484.09158,324.40575 490.13520,313.39501 C 495.04767,300.59280 472.81410,302.23031 467.50159,305.46938 C 472.46838,298.60757 468.72413,294.30821 468.80895,292.29943 C 468.98023,295.97929 473.56620,299.86728 486.49912,303.22181 C 494.16216,302.46861 491.60598,296.98493 491.60598,292.89089 C 491.60598,276.51466 480.76061,260.16811 469.91203,253.61762 C 465.94270,251.22088 456.86992,245.63581 452.30358,246.20459 z "
           id="path1085"
           sodipodi:nodetypes="cccccccccccccccccccccccc" />
        <path
           style="fill-rule:evenodd;stroke:#000000;stroke-width:0.98194113pt;"
           d="M 453.81651,266.89824 C 459.63113,264.66646 459.59291,264.45494 457.92820,266.49878 C 456.46777,268.54262 455.13109,264.73448 453.80105,276.49834 C 452.26674,288.65649 447.79763,269.32717 453.81651,266.89824 z "
           id="path1086"
           sodipodi:nodetypes="czzz" />
        <path
           style="fill-rule:evenodd;stroke:#000000;stroke-width:0.98194113pt;"
           d="M 443.74703,267.10954 C 437.93242,264.87775 437.97064,264.66624 439.63535,266.71008 C 441.09578,268.75392 442.43246,264.94578 443.76250,276.70963 C 445.29681,288.86780 449.76592,269.53848 443.74703,267.10954 z "
           id="path1087"
           sodipodi:nodetypes="czzz" />
      </g>
    </g>
    <g
       id="g1126"
       transform="matrix(0.495484,0.000000,0.000000,0.495484,300.5956,311.9146)">
      <path
         style="fill-rule:evenodd;stroke:none;stroke-width:0.91963024pt;"
         d="M 390.65866,301.36656 L 482.41318,302.01909 L 481.02775,293.60154 C 479.75571,289.61717 475.40700,285.24242 474.55998,280.76456 C 473.27101,276.28670 479.48325,279.16416 478.73371,271.80959 C 477.98416,264.45501 476.57776,244.93064 465.94662,234.62235 C 455.00298,224.62656 445.86383,218.21008 426.46718,221.36127 C 408.32053,223.26246 397.91045,231.92586 390.51069,247.21043 C 382.91955,262.49500 391.32345,281.51355 391.08480,288.64061 L 390.65866,301.36656 z "
         id="path1121"
         sodipodi:nodetypes="ccczzzzzzc" />
      <path
         style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0507082pt;fill-opacity:1.0000000;"
         d="M 456.91427,260.35297 C 456.22925,265.02717 443.90969,262.57719 443.71506,270.27150 C 443.52043,277.46664 459.32638,278.87850 465.23162,276.76070 C 471.13687,274.64290 475.00583,271.34855 474.39493,264.05392 C 473.78405,256.75929 471.82242,238.40450 450.26171,227.87953 C 429.13295,217.85373 405.20217,231.51881 397.55337,246.11929 C 389.90456,261.21897 389.29631,276.51112 398.36752,271.02026 C 407.00677,266.02855 417.54798,250.29170 433.36068,248.47324 C 448.74139,246.65477 457.59926,256.67711 456.91427,260.35297 z "
         id="path1122"
         sodipodi:nodetypes="czzzzzzzz" />
      <path
         style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0877723pt;fill-opacity:1.0000000;"
         d="M 421.31227,271.83716 C 420.01459,269.73135 420.41922,261.74456 413.49822,263.29728 C 406.57722,264.84999 399.06085,272.26847 396.97711,274.94258 C 394.89337,277.61671 396.00966,282.36108 396.97711,283.48248 C 397.94457,284.60388 403.45159,285.20770 405.01441,286.58788 C 406.57722,287.96807 410.22377,293.14377 412.15867,292.79873 C 414.09358,292.45368 418.03782,288.31312 418.18665,286.58790 C 418.33549,284.86266 422.60992,273.94300 421.31227,271.83716 z "
         id="path1123"
         sodipodi:nodetypes="czzzzzzz" />
      <path
         style="fill:#9999ff;fill-rule:evenodd;stroke:none;stroke-width:1.0507082pt;fill-opacity:1.0000000;"
         d="M 417.48396,301.49138 C 417.90484,297.29003 422.63521,280.63547 423.40045,275.60217 C 424.16568,270.56888 421.25780,273.10633 422.48218,270.86006 C 423.70654,268.61378 427.83878,263.33093 430.74665,262.12459 C 433.65454,260.91827 437.78678,261.61655 439.92942,262.73969 C 442.07206,263.86283 443.41122,267.61546 443.60252,268.86337 C 443.79382,270.11130 442.11033,271.52562 441.07726,271.10965 C 440.04420,270.69367 441.69422,264.18674 439.18978,266.19106 C 436.68534,268.37185 433.52821,272.06638 431.89450,273.60549 C 430.58545,275.14458 433.80759,274.35425 434.41977,275.60217 C 435.03195,276.85010 436.17979,278.92997 435.56761,281.09304 C 434.95541,283.25610 432.31537,287.20786 430.74665,288.58057 C 429.17792,289.95329 427.80052,287.29106 426.15528,289.32934 C 424.51003,291.36761 422.28407,299.71829 420.90664,301.67336 L 417.48396,301.49138 z "
         id="path1124"
         sodipodi:nodetypes="czzzzzzzzzzzzcc" />
      <path
         style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.1391397pt;fill-opacity:1.0000000;"
         d="M 416.32791,257.15812 C 416.75710,258.83124 418.09832,262.76805 419.06400,263.65381 C 420.02968,264.53959 422.09518,264.80204 422.44389,263.65381 C 422.79261,262.50558 420.45889,256.73163 426.30662,253.61501 C 432.31530,250.49839 441.70387,251.22013 444.65456,252.63082 C 447.60524,254.04149 452.56778,259.29054 447.87350,262.86646 C 443.98394,266.44235 453.42615,266.54078 455.43799,265.03168 C 457.44983,263.52258 460.37237,257.93569 457.77040,255.24555 C 455.16843,252.55542 448.57199,246.12834 442.45601,245.47222 C 436.34004,244.81608 421.71962,252.10591 419.70779,252.63082 C 417.53502,253.15572 415.89872,255.48498 416.32791,257.15812 z "
         id="path1125"
         sodipodi:nodetypes="czzzzzzzzzz" />
    </g>
  </g>
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect1173"
     width="106.29922"
     height="106.29922"
     x="442.28839"
     y="202.59353" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect1174"
     width="106.29922"
     height="106.29922"
     x="548.58759"
     y="202.59353" />
  <rect
     style="fill:url(#linearGradient701);fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-dasharray:none;"
     id="rect1204"
     width="91.250000"
     height="30.000000"
     x="-328.75000"
     y="241.11218"
     ry="12.500000"
     transform="scale(-1.000000,1.000000)"
     inkscape:export-xdpi="24"
     inkscape:export-ydpi="24" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:1.2724125pt;"
     d="M 388.57383,213.13538 C 379.66635,213.13798 364.38127,220.25447 358.44076,225.60098 C 346.55971,236.29396 339.90405,264.12663 339.90405,281.94828 C 339.90405,287.38044 339.91995,292.70961 340.14918,297.83897 L 434.80995,297.83897 C 435.05109,292.75440 435.09594,287.50108 435.09594,282.10600 C 435.09590,264.28438 431.44015,237.43003 419.53272,226.71626 C 413.57901,221.35937 397.48131,213.13278 388.57383,213.13538 z "
     id="path1205"
     sodipodi:nodetypes="cccccccc" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.1655209pt;"
     d="M 392.11660,216.09851 C 390.59448,216.28810 389.59086,217.14834 389.42017,219.05583 L 388.23538,232.18635 L 387.09145,218.85868 C 386.40868,211.22873 372.07902,220.51307 366.78657,223.70869 C 355.93799,230.25918 345.09264,246.60574 345.09262,262.98196 C 345.09262,267.07602 342.49560,272.55970 350.15863,273.31289 C 363.09155,269.95835 367.67753,266.10981 367.84879,262.42993 C 367.93362,264.43872 364.18933,268.69866 369.15615,275.56046 C 363.84364,272.32139 341.65092,270.68388 346.56340,283.48609 C 352.60702,294.49682 379.27284,297.92453 379.49244,291.13570 C 379.71203,284.34688 385.75435,278.46430 375.16182,278.83323 C 377.85810,276.13516 384.39518,277.39107 387.09145,274.69297 L 388.27624,270.51328 L 389.62445,274.25923 C 392.32073,276.95731 398.61267,275.93801 401.30895,278.63608 C 392.44971,277.43066 396.75873,284.11029 396.97833,290.89912 C 397.19795,297.68793 423.90460,294.29967 429.94822,283.28893 C 434.86069,270.48672 412.62712,272.12423 407.31461,275.36330 C 412.28140,268.50149 408.53715,264.20213 408.62197,262.19335 C 408.79325,265.87321 413.37922,269.76120 426.31214,273.11573 C 433.97518,272.36253 431.41900,266.87885 431.41900,262.78481 C 431.41900,246.40858 420.57363,230.06203 409.72505,223.51154 C 405.75572,221.11480 396.68294,215.52973 392.11660,216.09851 z "
     id="path1206"
     sodipodi:nodetypes="cccccccccccccccccccccccc" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.98194113pt;"
     d="M 393.62953,236.79216 C 399.44415,234.56038 399.40593,234.34886 397.74122,236.39270 C 396.28079,238.43654 394.94411,234.62840 393.61407,246.39226 C 392.07976,258.55041 387.61065,239.22109 393.62953,236.79216 z "
     id="path1207"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.98194113pt;"
     d="M 383.56005,237.00346 C 377.74544,234.77167 377.78366,234.56016 379.44837,236.60400 C 380.90880,238.64784 382.24548,234.83970 383.57552,246.60355 C 385.10983,258.76172 389.57894,239.43240 383.56005,237.00346 z "
     id="path1209"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#00ff00;stroke-width:8.1250000;stroke-linecap:round;stroke-linejoin:bevel;stroke-dashoffset:12.500000;stroke-dasharray:none;"
     d="M 428.23716,300.72398 L 352.16975,226.74092"
     id="path1210" />
  <path
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ff0000;stroke-width:5;stroke-dasharray:none;stroke-opacity:1"
     d="M 845.47619,180.57813 C 845.47619,194.72313 833.99619,206.20313 819.85119,206.20313 C 805.70619,206.20313 794.22619,194.72313 794.22619,180.57813 C 794.22619,166.43313 805.70619,154.95313 819.85119,154.95313 C 833.99619,154.95313 845.47619,166.43313 845.47619,180.57813 z"
     id="path1291"
     inkscape:export-filename="C:\pas\mricron\btn\new\ellipse.png"
     inkscape:export-xdpi="23.179588"
     inkscape:export-ydpi="23.179588" />
  <rect
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ff0000;stroke-width:4.56593418"
     id="rect1303"
     width="48.979599"
     height="47.110672"
     x="834.32587"
     y="135.24585"
     inkscape:export-filename="C:\pas\mricron\btn\new\ellipse.png"
     inkscape:export-xdpi="23.179588"
     inkscape:export-ydpi="23.179588" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect1092"
     width="106.29922"
     height="106.29922"
     x="549.21260"
     y="95.669265" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect1093"
     width="106.29922"
     height="106.29922"
     x="442.91338"
     y="95.669265" />
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect1094"
     width="106.29922"
     height="106.29922"
     x="336.61417"
     y="95.669265" />
  <rect
     style="font-size:12.000000;fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;"
     id="rect1095"
     width="106.29922"
     height="106.29922"
     x="230.31496"
     y="95.669269" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59819369pt;"
     d="M 307.52069,149.83649 C 307.73008,149.34971 307.16264,144.07588 306.29519,142.71291 C 305.42774,141.34993 304.14065,141.95073 303.93127,142.43750 C 303.72189,142.92428 305.01624,142.27620 305.88368,143.63917 C 306.75113,145.00214 307.31131,150.32326 307.52069,149.83649 z "
     id="path1097"
     sodipodi:nodetypes="czzzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.50397291pt;"
     d="M 303.64692,177.29080 C 301.81986,177.08709 301.45461,172.20619 300.18608,175.18373 C 298.85928,178.21449 301.59356,184.71360 301.83410,181.35444 C 302.01637,177.99529 305.41572,177.54773 303.64692,177.29080 z "
     id="path1098"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59819369pt;"
     d="M 312.76126,149.73551 C 312.55187,149.24873 313.11931,143.97489 313.98676,142.61193 C 314.85420,141.24895 316.14130,141.84974 316.35068,142.33652 C 316.56006,142.82330 315.26571,142.17522 314.39827,143.53819 C 313.53082,144.90116 312.97063,150.22228 312.76126,149.73551 z "
     id="path1099"
     sodipodi:nodetypes="czzzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.50397291pt;"
     d="M 316.63503,177.18982 C 318.46209,176.98611 318.82734,172.10520 320.09587,175.08275 C 321.42267,178.11351 318.68839,184.61262 318.44784,181.25346 C 318.26558,177.89431 314.86623,177.44675 316.63503,177.18982 z "
     id="path1100"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill-rule:evenodd;stroke:none;stroke-width:0.99068832pt;fill:#f30000;fill-opacity:1.0000000;"
     d="M 277.51799,168.04576 C 277.51799,158.03493 271.88453,137.95486 266.30062,131.93668 C 260.71669,125.91850 249.58599,125.93017 244.01446,131.93668 C 238.44291,137.94318 232.87137,157.96485 232.87137,167.97569 C 232.87137,177.98652 238.44291,187.99735 244.01446,192.00169 C 249.58599,196.00603 260.71669,195.99435 266.30062,192.00169 C 271.88453,188.00903 277.51799,178.05659 277.51799,168.04576 z "
     id="path1101"
     sodipodi:nodetypes="czzzzzz" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.59819369pt;"
     d="M 256.08751,130.62734 C 256.01509,130.62732 255.94457,130.64692 255.87215,130.64789 L 255.87215,130.66845 C 255.81824,130.66283 255.76507,130.64786 255.71062,130.64789 C 255.58375,130.64794 255.46056,130.68588 255.33374,130.68900 L 255.33374,130.77121 C 255.25641,130.75940 255.17883,130.75069 255.10042,130.75066 C 255.04598,130.75064 254.99280,130.76560 254.93890,130.77121 L 254.93890,130.75066 C 254.86648,130.74969 254.79596,130.73008 254.72353,130.73010 C 250.90942,130.73144 247.09120,132.12216 244.54751,134.88183 C 243.27567,136.26166 235.99620,147.64157 238.44549,149.59783 C 244.54107,154.75309 249.82562,139.57745 244.18857,152.16697 C 243.62056,156.49125 243.47456,158.74599 243.43479,159.87438 C 243.35446,157.80732 242.69011,152.95912 239.19927,150.60493 C 236.28307,148.67874 234.37149,165.69312 234.37149,167.99284 C 234.37149,177.19175 239.46014,186.38729 244.54751,190.06685 C 247.12760,191.93297 251.01655,192.82869 254.88505,192.80041 L 254.88505,192.82096 C 255.08285,192.82284 255.27955,192.80333 255.47731,192.80041 L 255.47731,192.69764 C 255.62688,192.70426 255.77610,192.71964 255.92599,192.71820 L 255.92599,192.69764 C 259.79450,192.72592 263.68345,191.83022 266.26354,189.96409 C 271.35091,186.28452 276.43955,177.08898 276.43955,167.89007 C 276.43955,165.59035 274.52797,148.57597 271.61178,150.50217 C 268.12094,152.85635 267.45658,157.70455 267.37626,159.77161 C 267.33648,158.64323 267.19049,156.38848 266.62248,152.06420 C 260.98542,139.47469 266.26998,154.65032 272.36556,149.49507 C 274.81485,147.53880 267.53538,136.15888 266.26354,134.77906 C 263.71984,132.01939 259.90163,130.62867 256.08751,130.62734 z "
     id="path1102" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59819369pt;"
     d="M 252.78524,149.70528 C 252.99463,149.21850 252.42719,143.94467 251.55974,142.58169 C 250.69229,141.21872 249.40520,141.81952 249.19582,142.30629 C 248.98644,142.79307 250.28079,142.14499 251.14823,143.50796 C 252.01568,144.87093 252.57586,150.19205 252.78524,149.70528 z "
     id="path1103"
     sodipodi:nodetypes="czzzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.50397291pt;"
     d="M 248.91147,177.15959 C 247.08441,176.95588 246.71916,172.07498 245.45063,175.05252 C 244.12383,178.08328 246.85811,184.58239 247.09865,181.22323 C 247.28092,177.86408 250.68027,177.41652 248.91147,177.15959 z "
     id="path1104"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59819369pt;"
     d="M 258.02581,149.60430 C 257.81642,149.11751 258.38386,143.84368 259.25131,142.48072 C 260.11875,141.11774 261.40585,141.71853 261.61523,142.20531 C 261.82461,142.69209 260.53026,142.04401 259.66282,143.40697 C 258.79537,144.76995 258.23518,150.09107 258.02581,149.60430 z "
     id="path1105"
     sodipodi:nodetypes="czzzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.50397291pt;"
     d="M 261.89958,177.05861 C 263.72664,176.85490 264.09189,171.97399 265.36042,174.95154 C 266.68722,177.98230 263.95294,184.48141 263.71239,181.12225 C 263.53013,177.76310 260.13078,177.31554 261.89958,177.05861 z "
     id="path1106"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.37908139pt;fill:#00f300;fill-opacity:1.0000000;"
     d="M 284.46583,153.19549 L 284.66716,159.20701 L 284.66716,159.51930 L 270.26011,159.51930 L 270.26011,172.16691 L 284.52875,172.16691 L 284.46583,178.49072 L 298.73447,165.84310 L 284.46583,153.19549 z "
     id="path1197" />
  <g
     id="g1218"
     transform="matrix(0.937345,0.000000,-0.521597,0.915342,103.6709,16.62999)">
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.99068832pt;"
       d="M 420.68026,157.78820 C 420.68026,143.66413 411.49144,115.33358 402.38342,106.84266 C 393.27539,98.351740 375.11992,98.368210 366.03210,106.84266 C 356.94426,115.31711 347.85643,143.56526 347.85643,157.68934 C 347.85643,171.81342 356.94426,185.93749 366.03210,191.58713 C 375.11992,197.23676 393.27539,197.22028 402.38342,191.58713 C 411.49144,185.95397 420.68026,171.91228 420.68026,157.78820 z "
       id="path1198"
       sodipodi:nodetypes="czzzzzz" />
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;fill-opacity:1.0000000;"
       d="M 385.72466,104.99534 C 385.60653,104.99531 385.49150,105.02296 385.37337,105.02434 L 385.37337,105.05334 C 385.28545,105.04542 385.19871,105.02430 385.10991,105.02434 C 384.90297,105.02441 384.70203,105.07794 384.49516,105.08234 L 384.49516,105.19833 C 384.36904,105.18166 384.24249,105.16937 384.11460,105.16933 C 384.02579,105.16930 383.93906,105.19041 383.85113,105.19833 L 383.85113,105.16933 C 383.73301,105.16796 383.61798,105.14030 383.49985,105.14033 C 377.27858,105.14222 371.05063,107.10435 366.90157,110.99791 C 364.82705,112.94468 352.95338,129.00036 356.94846,131.76041 C 366.89106,139.03386 375.51079,117.62287 366.31609,135.38515 C 365.38960,141.48619 365.15147,144.66736 365.08659,146.25937 C 364.95557,143.34300 363.87193,136.50278 358.17796,133.18131 C 353.42130,130.46368 350.30330,154.46891 350.30330,157.71354 C 350.30330,170.69209 358.60347,183.66588 366.90157,188.85730 C 371.11000,191.49017 377.45333,192.75392 383.76331,192.71402 L 383.76331,192.74302 C 384.08594,192.74567 384.40678,192.71814 384.72935,192.71402 L 384.72935,192.56903 C 384.97331,192.57837 385.21671,192.60006 385.46120,192.59803 L 385.46120,192.56903 C 391.77118,192.60893 398.11451,191.34520 402.32294,188.71231 C 410.62104,183.52089 418.92121,170.54709 418.92121,157.56855 C 418.92121,154.32392 415.80320,130.31868 411.04655,133.03632 C 405.35258,136.35779 404.26894,143.19801 404.13792,146.11438 C 404.07304,144.52237 403.83491,141.34119 402.90841,135.24016 C 393.71372,117.47788 402.33345,138.88886 412.27605,131.61542 C 416.27113,128.85537 404.39746,112.79968 402.32294,110.85292 C 398.17388,106.95936 391.94593,104.99722 385.72466,104.99534 z "
       id="path1201" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;"
       d="M 380.33827,131.91200 C 380.67980,131.22522 379.75424,123.78448 378.33933,121.86149 C 376.92442,119.93850 374.82503,120.78615 374.48350,121.47293 C 374.14198,122.15971 376.25321,121.24535 377.66811,123.16834 C 379.08302,125.09132 379.99675,132.59878 380.33827,131.91200 z "
       id="path1202"
       sodipodi:nodetypes="czzzz" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.76453004pt;"
       d="M 374.01970,170.64672 C 371.03955,170.35930 370.44378,163.47294 368.37466,167.67389 C 366.21050,171.94993 370.67043,181.11939 371.06278,176.38002 C 371.36008,171.64067 376.90481,171.00921 374.01970,170.64672 z "
       id="path1203"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.90746355pt;"
       d="M 388.88624,131.76953 C 388.54471,131.08274 389.47027,123.64200 390.88518,121.71902 C 392.30008,119.79602 394.39948,120.64367 394.74101,121.33045 C 395.08253,122.01724 392.97130,121.10288 391.55640,123.02586 C 390.14149,124.94885 389.22776,132.45631 388.88624,131.76953 z "
       id="path1216"
       sodipodi:nodetypes="czzzz" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.76453004pt;"
       d="M 395.20481,170.50425 C 398.18496,170.21683 398.78073,163.33046 400.84985,167.53142 C 403.01401,171.80746 398.55408,180.97692 398.16173,176.23755 C 397.86443,171.49819 392.31970,170.86674 395.20481,170.50425 z "
       id="path1217"
       sodipodi:nodetypes="czzz" />
  </g>
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.37908139pt;fill:#00f300;fill-opacity:1.0000000;"
     d="M 428.01911,162.01828 L 423.37484,168.02980 L 423.12311,168.34209 L 408.71606,168.34209 L 398.52142,180.98970 L 412.79006,180.98970 L 407.62982,187.31351 L 432.09311,174.66589 L 428.01911,162.01828 z "
     id="path1225" />
  <path
     style="fill-rule:evenodd;stroke:#000000;stroke-width:0.37908139pt;fill:#00f300;fill-opacity:1.0000000;"
     d="M 354.54175,137.59503 L 359.18602,131.58351 L 359.43775,131.27122 L 373.84480,131.27122 L 384.03944,118.62361 L 369.77080,118.62361 L 374.93104,112.29980 L 350.46775,124.94742 L 354.54175,137.59503 z "
     id="path1226" />
  <path
     style="fill:url(#linearGradient1273);fill-rule:evenodd;stroke-width:0.70212674pt;fill-opacity:1.0000000;"
     d="M 467.37635,98.353752 C 463.50624,98.508099 459.42100,99.228043 455.01853,100.26653 C 449.14858,101.65118 445.35681,115.09401 447.03802,123.34197 C 448.71924,131.58992 453.74697,146.51332 454.11773,158.09757 L 460.40924,157.95512 C 460.70198,148.86493 458.20224,140.91179 457.10163,132.39714 C 456.41064,127.05144 453.86311,111.80425 462.99904,111.80425 L 470.06467,111.80425 L 470.06467,111.84495 L 478.04518,111.84495 C 487.18110,111.84495 484.61950,127.11248 483.92851,132.45819 C 482.82791,140.97284 480.32815,148.90562 480.62089,157.99581 L 486.91240,158.13826 C 487.28316,146.55402 492.31090,131.63062 493.99211,123.38267 C 495.67333,115.13471 491.88156,101.69188 486.01161,100.30723 C 480.65069,99.042651 475.78320,98.287415 471.17659,98.414798 L 471.17659,98.394449 C 469.92961,98.310515 468.66639,98.302304 467.37635,98.353752 z "
     id="path1231"
     transform="translate(43.75223,40.21670)" />
  <rect
     style="fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.87235308pt;"
     id="rect1232"
     width="5.7452426"
     height="5.3810821"
     x="454.09512"
     y="152.41942"
     transform="translate(43.75223,40.21670)" />
  <rect
     style="fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.87235308pt;"
     id="rect1233"
     width="5.7452426"
     height="5.3810821"
     x="481.16409"
     y="152.41943"
     transform="translate(43.75223,40.21670)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ff0000;stroke-width:5.0000000;stroke-opacity:1.0000000;stroke-linecap:round;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:0.00000000;"
     d="M 555.46141,176.42468 C 559.55050,176.42960 566.62926,182.31051 567.72869,176.43945 C 568.82812,170.88089 576.44823,114.43157 580.80799,105.57330 C 585.16775,96.715032 581.98180,115.22882 595.40407,119.22734 C 609.13884,122.91336 613.18611,180.92271 621.29587,184.46848 C 629.40563,187.70175 630.95289,182.51721 635.31265,179.56445 C 639.67241,176.61170 641.84468,176.43945 646.20445,176.43945"
     id="path1280"
     sodipodi:nodetypes="czzzzzz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#040600;stroke-width:3.7500000;stroke-opacity:1.0000000;stroke-linecap:butt;stroke-dasharray:3.7500000,3.7500000;stroke-dashoffset:0.00000000;"
     d="M 555.25347,176.62690 C 559.34256,176.63182 566.42132,180.01273 567.52075,174.14167 C 568.62018,168.58311 571.24029,134.00879 575.60005,125.15052 C 579.95981,116.29225 583.02386,104.80604 596.13363,110.67956 C 608.93090,123.74058 622.04067,188.31243 625.15043,189.67070 C 627.32269,190.40397 630.74495,182.71943 635.10471,179.76667 C 639.46447,176.81392 641.63674,176.64167 645.99651,176.64167"
     id="path1281"
     sodipodi:nodetypes="czzzzzz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#040600;stroke-width:3.7500000;stroke-opacity:1.0000000;stroke-linecap:butt;stroke-dasharray:3.7500000,3.7500000;stroke-dashoffset:0.00000000;"
     d="M 557.12849,76.779411 C 561.21758,76.784331 568.29634,80.165241 569.39577,74.294181 C 570.49520,68.735621 573.11531,34.161301 577.47507,25.303031 C 581.83483,16.444761 584.89888,4.9585510 598.00865,10.832071 C 610.80592,23.893091 623.91569,88.464940 627.02545,89.823210 C 629.19771,90.556480 632.61997,82.871941 636.97973,79.919181 C 641.33949,76.966431 643.51176,76.794181 647.87153,76.794181"
     id="path1282"
     sodipodi:nodetypes="czzzzzz" />
  <text
     xml:space="preserve"
     style="fill:#ff0000;fill-opacity:1.0000000;stroke:none;font-family:Arial;font-style:normal;font-weight:bold;font-size:36.000000;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;font-stretch:normal;font-variant:normal;text-anchor:start;writing-mode:lr;"
     x="383.35034"
     y="50.653559"
     id="text1283"
     sodipodi:linespacing="100%"
     transform="scale(1.505663,1.564296)"><tspan
       id="tspan1284"
       style="fill:#ff0000;fill-opacity:1.0000000;">?</tspan></text>
  <g
     id="g1163"
     transform="matrix(1.152996,0.000000,0.000000,1.000000,-68.02037,0.000000)">
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:2.0770883;stroke-dasharray:none;"
       d="M 472.42571,238.27147 C 472.33405,238.27145 472.24478,238.29291 472.15311,238.29398 L 472.15311,238.31648 C 472.08489,238.31034 472.01758,238.29395 471.94867,238.29398 C 471.78809,238.29403 471.63216,238.33557 471.47163,238.33899 L 471.47163,238.42899 C 471.37376,238.41606 471.27556,238.40652 471.17632,238.40649 C 471.10740,238.40647 471.04010,238.42285 470.97187,238.42899 L 470.97187,238.40649 C 470.88021,238.40543 470.79094,238.38396 470.69928,238.38399 C 465.87162,238.38545 461.03877,239.90805 457.81913,242.92943 C 456.20932,244.44011 446.99543,256.89920 450.09559,259.04098 C 457.81097,264.68512 464.49982,248.07035 457.36480,261.85375 C 456.64585,266.58811 456.46107,269.05668 456.41072,270.29207 C 456.30905,268.02898 455.46815,262.72102 451.04967,260.14359 C 447.35854,258.03472 444.93899,276.66261 444.93899,279.18042 C 444.93899,289.25168 451.37986,299.31925 457.81913,303.34776 C 461.08484,305.39084 466.00722,306.37150 470.90372,306.34054 L 470.90372,306.36305 C 471.15408,306.36510 471.40305,306.34374 471.65336,306.34054 L 471.65336,306.22803 C 471.84267,306.23528 472.03155,306.25211 472.22127,306.25053 L 472.22127,306.22803 C 477.11777,306.25899 482.04015,305.27835 485.30586,303.23524 C 491.74513,299.20674 498.18600,289.13916 498.18600,279.06791 C 498.18600,276.55010 495.76645,257.92220 492.07532,260.03107 C 487.65684,262.60851 486.81594,267.91647 486.71427,270.17956 C 486.66392,268.94417 486.47914,266.47559 485.76018,261.74124 C 478.62517,247.95784 485.31402,264.57260 493.02940,258.92847 C 496.12956,256.78669 486.91567,244.32759 485.30586,242.81691 C 482.08622,239.79554 477.25337,238.27293 472.42571,238.27147 z "
       id="path1211"
       transform="matrix(0.896078,0.000000,0.000000,0.909383,46.81814,19.67645)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.70418520pt;"
       d="M 468.24591,259.15861 C 468.51094,258.62567 467.79271,252.85171 466.69475,251.35949 C 465.59679,249.86726 463.96768,250.52503 463.70265,251.05797 C 463.43764,251.59090 465.07594,250.88137 466.17389,252.37359 C 467.27185,253.86581 467.98090,259.69155 468.24591,259.15861 z "
       id="path1212"
       sodipodi:nodetypes="czzzz"
       transform="matrix(0.896078,0.000000,0.000000,0.909383,46.81814,19.67645)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59326982pt;"
       d="M 463.34275,289.21648 C 461.03017,288.99344 460.56786,283.64967 458.96224,286.90958 C 457.28286,290.22776 460.74374,297.34319 461.04820,293.66548 C 461.27890,289.98777 465.58157,289.49777 463.34275,289.21648 z "
       id="path1213"
       sodipodi:nodetypes="czzz"
       transform="matrix(0.896078,0.000000,0.000000,0.909383,46.81814,19.67645)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.70418520pt;"
       d="M 474.87908,259.04805 C 474.61405,258.51511 475.33228,252.74115 476.43024,251.24893 C 477.52819,249.75670 479.15731,250.41447 479.42234,250.94740 C 479.68735,251.48035 478.04905,250.77081 476.95110,252.26303 C 475.85314,253.75526 475.14409,259.58099 474.87908,259.04805 z "
       id="path1214"
       sodipodi:nodetypes="czzzz"
       transform="matrix(0.896078,0.000000,0.000000,0.909383,46.81814,19.67645)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59326982pt;"
       d="M 479.78224,289.10592 C 482.09482,288.88288 482.55713,283.53911 484.16275,286.79902 C 485.84213,290.11720 482.38125,297.23264 482.07679,293.55492 C 481.84609,289.87721 477.54342,289.38721 479.78224,289.10592 z "
       id="path1215"
       sodipodi:nodetypes="czzz"
       transform="matrix(0.896078,0.000000,0.000000,0.909383,46.81814,19.67645)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59326982pt;"
       d="M 479.78224,289.10592 C 482.09482,288.88288 482.55713,283.53911 484.16275,286.79902 C 485.84213,290.11720 482.38125,297.23264 482.07679,293.55492 C 481.84609,289.87721 477.54342,289.38721 479.78224,289.10592 z "
       id="path1245"
       sodipodi:nodetypes="czzz"
       transform="matrix(0.896078,0.000000,0.000000,0.909383,71.19322,13.47142)" />
    <path
       transform="matrix(0.820025,0.000000,0.000000,0.858963,104.9588,28.96850)"
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:2.0770884;"
       d="M 472.42572,238.27147 C 466.99935,238.34460 460.99557,239.27928 457.24200,243.60560 C 454.27786,247.05912 447.54300,265.39403 446.58800,268.07554 C 444.99506,275.03305 443.89364,282.61304 446.99670,289.34223 C 449.98685,297.12243 456.23622,304.66231 464.92263,305.85892 C 470.66585,306.65810 476.71462,306.56039 482.24009,304.66227 C 488.70615,302.32029 492.95294,296.28794 495.73557,290.27853 C 498.36218,284.49691 498.76947,277.90311 497.25994,271.76637 C 496.60360,267.85969 495.93735,263.78918 493.70802,260.42078 C 490.47721,259.07927 488.59909,263.53006 487.49637,265.86353 C 487.00972,267.33824 486.63024,271.50536 486.49583,267.70454 C 486.56751,263.78501 485.27565,260.09141 483.12367,256.86000 C 483.47775,256.38368 486.42646,260.44859 488.46678,259.99317 C 492.66404,261.29430 494.92727,256.76681 492.55453,253.62131 C 490.80672,249.96760 488.38631,246.65200 485.92858,243.45619 C 482.48414,239.81958 477.32986,238.26882 472.42572,238.27147 z "
       id="path1151"
       sodipodi:nodetypes="cccccccccccccccc" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.70418520pt;"
       d="M 469.29214,259.15861 C 471.28335,258.62567 470.01209,252.60872 468.91413,251.11650 C 467.81617,249.62427 460.51529,248.09514 463.70265,251.05797 C 467.13661,253.77781 467.05433,259.69155 469.29214,259.15861 z "
       id="path1242"
       sodipodi:nodetypes="czzz"
       transform="matrix(0.820025,0.000000,0.000000,0.858963,104.9588,28.96850)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59326982pt;"
       d="M 466.83017,280.96913 C 464.51759,280.74609 460.56786,283.64967 458.96224,286.90958 C 457.28286,290.22776 460.74374,297.34319 461.04820,293.66548 C 461.27890,289.98777 469.06899,281.25042 466.83017,280.96913 z "
       id="path1243"
       sodipodi:nodetypes="czzz"
       transform="matrix(0.820025,0.000000,0.000000,0.858963,104.9588,28.96850)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59100037pt;"
       d="M 493.43163,251.60533 C 491.79878,251.14755 492.84125,245.97921 493.74161,244.69745 C 494.64196,243.41568 500.62886,242.10222 498.01515,244.64717 C 495.19921,246.98342 495.26668,252.06310 493.43163,251.60533 z "
       id="path1152"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.5214069;"
       d="M 511.80663,239.60773 C 505.82577,239.32916 500.11547,244.27305 498.49491,246.98563 C 497.16791,249.22473 493.46139,261.39466 492.85327,264.14860 C 492.10462,268.10699 491.68917,272.26850 492.99906,276.15741 C 494.65527,281.44574 497.85490,286.62328 502.77269,289.10403 C 505.89347,290.48383 509.46589,290.71532 512.64653,290.47013 C 516.82711,290.39011 521.19160,289.06289 524.01723,285.66210 C 528.59029,280.58529 531.28514,273.27869 529.87427,266.31128 C 529.26796,262.87343 525.92547,250.57752 524.78129,248.36436 C 522.92298,245.30255 517.65774,239.61035 511.80663,239.60773 z "
       id="path1149"
       sodipodi:nodetypes="cccccccccc" />
  </g>
  <path
     style="fill:#cccccc;fill-rule:nonzero;stroke:none;fill-opacity:1.0000000;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;"
     id="path1142"
     d="M 154.48440,498.48337 C 154.25849,492.81414 161.38338,496.65143 161.80515,496.90392 C 164.78182,498.61634 170.39318,504.14280 173.95269,504.05991 C 175.95558,503.84576 177.63390,502.63440 179.05959,501.28272 C 180.33976,499.99776 181.20682,498.58127 182.06397,497.00066 C 183.44438,494.70321 187.18348,487.99384 189.77932,488.11380 C 192.16403,488.34388 196.44293,490.85911 198.63874,491.77507 C 200.34301,492.48848 203.47991,491.83913 205.21157,492.48524 C 206.51580,492.94214 202.88897,499.07531 204.26060,499.25768 C 205.40017,499.35058 206.09747,498.86094 206.93516,498.11576 C 207.57391,497.51451 211.51747,500.31315 210.70090,501.08164 C 208.56717,502.98125 206.27814,503.85683 203.40943,503.55889 C 201.58416,503.29953 199.79391,502.83223 198.06231,502.20168 C 196.27903,501.51624 194.58389,500.64017 192.82470,499.89873 C 191.28048,499.25617 189.66739,498.59467 187.99351,498.39461 C 187.36694,498.35913 187.14450,498.30179 186.79211,498.84177 C 185.67318,500.80361 184.50376,502.56949 182.88013,504.16267 C 180.31823,506.51125 177.42085,508.14583 173.89191,508.33224 C 169.23300,508.20987 162.04502,509.96482 156.25203,500.75392 C 155.96788,500.55562 159.95745,495.74444 159.84831,498.48337 L 154.48440,498.48337 z "
     sodipodi:nodetypes="ccccccccccccccccccccc" />
  <rect
     style="fill:#f9bac0;fill-rule:evenodd;stroke:#000000;stroke-width:0.49504948pt;"
     id="rect1120"
     width="12.250767"
     height="12.000593"
     x="141.62668"
     y="387.23074"
     ry="3.9226213"
     transform="matrix(0.801814,-0.889705,0.948595,0.752036,-334.0009,328.3647)" />
  <rect
     style="fill:url(#linearGradient1118);fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;"
     id="rect1117"
     width="53.347649"
     height="11.244847"
     x="150.89017"
     y="387.60864"
     transform="matrix(0.801814,-0.889705,0.948595,0.752036,-334.0009,328.3647)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.93750000;"
     d="M 153.76675,391.00825 L 202.40725,390.74674 L 202.40725,390.74674"
     id="path1126"
     transform="matrix(0.801814,-0.889705,0.948595,0.752036,-334.0009,328.3647)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.93750000;"
     d="M 153.76675,395.58464 L 202.40725,395.32313 L 202.40725,395.32313"
     id="path1128"
     transform="matrix(0.801814,-0.889705,0.948595,0.752036,-334.0009,328.3647)" />
  <path
     style="fill:#e49415;fill-rule:evenodd;stroke-width:1.0000000pt;fill-opacity:1.0000000;"
     d="M 204.76083,387.08564 L 226.72751,392.93844 L 205.02234,399.37652 L 204.76083,387.08564 z "
     id="path1129"
     transform="matrix(0.801814,-0.889705,0.948595,0.752036,-334.0009,328.3647)" />
  <path
     style="fill:#040023;fill-rule:evenodd;stroke-width:1.0000000pt;"
     d="M 219.01301,390.87754 L 227.25053,392.93225 L 219.11108,395.19241 L 219.01301,390.87754 z "
     id="path1132"
     transform="matrix(0.801814,-0.889705,0.948595,0.752036,-334.0009,328.3647)" />
  <g
     id="g1195"
     transform="matrix(0.789807,0.000000,0.000000,0.829148,40.60222,144.2242)">
    <path
       sodipodi:type="arc"
       style="font-size:12;fill:url(#radialGradient1169);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.87645;stroke-dasharray:none;"
       id="path1190"
       sodipodi:cx="271.35836792"
       sodipodi:cy="796.11926270"
       sodipodi:rx="37.42873764"
       sodipodi:ry="37.42873764"
       d="M 308.787106 796.119263 A 37.428738 37.428738 0 1 0 233.929630,796.119263 A 37.4287 37.4287 0 1 0 308.787 796.119 L 271.358368 796.119263 z"
       transform="matrix(1.269231,0.000000,0.000000,1.209574,-184.6799,-194.3941)" />
    <path
       style="font-size:12;fill:url(#linearGradient683);fill-opacity:0.38017;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
       d="M 159.72524,722.93003 C 140.50054,722.93003 124.04616,733.91302 116.57139,749.57844 C 122.48956,752.61039 129.09474,755.48259 136.87909,753.39616 C 151.49622,750.20385 156.06571,742.67836 163.37427,739.48607 C 178.69415,738.91352 186.03123,746.78366 201.13390,746.44112 C 193.03644,732.49107 177.62722,722.93004 159.72524,722.93003 z "
       id="path1191" />
    <text
       xml:space="preserve"
       style="fill:black;fill-opacity:1;stroke:none;font-family:Palatino Linotype;font-style:normal;font-weight:bold;font-size:48;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;"
       x="47.569456"
       y="419.89508"
       id="text1192"
       sodipodi:linespacing="100%"
       transform="scale(2.880225,1.909157)"><tspan
         x="47.569454"
         y="419.89508"
         sodipodi:role="line"
         id="tspan1193">i</tspan></text>
  </g>
  <path
     style="fill:#fb4100;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"
     d="M 157.91689,807.80962 C 166.13755,791.78371 180.28774,804.25361 190.66459,804.96480 C 199.69378,804.60921 200.63712,785.40677 217.75218,788.60718 C 225.70328,790.50372 223.55297,827.08308 212.09209,833.76845 C 196.05440,842.76799 149.69621,823.47991 157.91689,807.80962 z "
     id="path1179"
     sodipodi:nodetypes="cccsz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 135.72268,361.98087 C 134.67665,364.33444 139.37290,364.60684 143.68234,366.31209 C 147.99177,368.01734 152.43742,371.67846 155.07429,372.44119 C 160.34804,373.96665 169.84949,374.44608 173.64136,373.48722 C 177.43323,372.52836 177.12814,369.56460 177.82549,365.64199"
     id="path1135"
     sodipodi:nodetypes="cszzz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 163.44255,357.27376 C 158.21239,350.47455 167.88818,351.25907 168.41121,347.07494 C 171.02628,336.87613 161.08898,335.30708 161.08898,335.30708 C 161.08898,335.30708 167.10367,327.72334 168.67271,323.53921 C 163.44255,317.78603 163.96556,318.57056 155.85881,322.23167"
     id="path1138"
     sodipodi:nodetypes="ccccc" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 169.19573,382.90152 C 169.80591,375.31778 164.40140,374.66401 162.13500,373.48722"
     id="path1141"
     sodipodi:nodetypes="cz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 135.59193,366.63075 C 138.73003,373.95298 150.19280,376.35013 155.46655,377.87559"
     id="path1153"
     sodipodi:nodetypes="cz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 163.44255,357.27376 C 158.21239,350.47455 167.88818,351.25907 168.41121,347.07494 C 171.02628,336.87613 161.08898,335.30708 161.08898,335.30708 C 161.08898,335.30708 167.10367,327.72334 168.67271,323.53921 C 163.44255,317.78603 163.96556,318.57056 155.85881,322.23167"
     id="path1167"
     sodipodi:nodetypes="ccccc"
     transform="matrix(-1.000000,0.000000,0.000000,1.000000,355.9476,-0.390884)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 169.19573,382.90152 C 169.80591,375.31778 164.40140,374.66401 162.13500,373.48722"
     id="path1169"
     sodipodi:nodetypes="cz"
     transform="matrix(-1.000000,0.000000,0.000000,1.000000,355.9476,-0.390884)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 135.59193,366.63075 C 138.73003,373.95298 150.19280,376.35013 155.46655,377.87559"
     id="path1170"
     sodipodi:nodetypes="cz"
     transform="matrix(-1.000000,0.000000,0.000000,1.000000,355.9476,-0.390884)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 220.21273,361.50548 C 221.25876,363.85905 216.56251,364.13145 212.25307,365.83670 C 207.94364,367.54195 203.49799,371.20307 200.86112,371.96580 C 195.58737,373.49126 186.08592,373.97069 182.29405,373.01183 C 178.50218,372.05297 177.49973,366.73564 177.84841,362.29001"
     id="path1194"
     sodipodi:nodetypes="cszzz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 140.95285,349.68999 C 133.28195,370.78498 141.91171,361.71936 146.70603,361.98087"
     id="path1195"
     sodipodi:nodetypes="cz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 214.47932,349.22398 C 222.15022,370.31897 213.52046,361.25335 208.72614,361.51486"
     id="path1218"
     sodipodi:nodetypes="cz" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;fill-opacity:1.0000000;stroke-dasharray:none;"
     d="M 185.21408,214.81126 C 177.92178,214.84746 169.89667,216.34801 165.05912,222.33190 C 161.50198,226.47814 158.94781,231.38316 156.20835,236.05592 C 154.24583,240.57871 150.03197,261.81828 149.86587,269.23814 C 150.70984,281.21595 157.20263,293.02343 167.55100,299.31527 C 175.78925,303.36046 185.45955,303.01158 194.27144,301.44543 C 202.01619,299.89951 208.18824,294.32026 212.14021,287.69026 C 217.68379,279.16981 219.82461,268.45263 217.31152,258.53961 C 216.32638,253.20688 212.48476,234.67682 209.09445,230.93333 C 205.45913,224.31738 200.50275,217.42497 192.63972,215.77674 C 190.22232,215.12439 187.71654,214.81512 185.21408,214.81126 z "
     id="path1223"
     sodipodi:nodetypes="ccccccccccc" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 180.70208,215.01333 C 181.74811,215.62352 183.81774,213.67597 184.21000,227.75382 C 184.60226,241.83167 184.55612,297.03969 184.90479,299.48044 C 185.25346,301.65968 182.57494,302.51823 179.56086,302.28043"
     id="path1220"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 187.98937,214.98472 C 186.94334,215.59491 184.87371,213.64736 184.48145,227.72521 C 184.08919,241.80306 185.05990,297.38091 184.71123,299.82166 C 184.36256,302.00090 187.22600,302.30470 190.24007,302.06691"
     id="path1221"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 198.27418,254.64653 C 190.41203,244.47236 191.26648,241.49489 199.51959,235.25317 C 193.82983,232.56245 193.75599,229.68727 203.74206,223.38038"
     id="path1224"
     sodipodi:nodetypes="ccc" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
     d="M 168.46763,255.66748 C 176.32978,245.49331 175.47533,242.51584 167.22222,236.27412 C 172.91198,233.58340 172.98582,230.70822 162.99975,224.40133"
     id="path1227"
     sodipodi:nodetypes="ccc" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 180.29127,257.60125 C 177.08610,261.85427 169.96690,256.58422 168.45677,255.56719 C 166.94664,254.55016 164.75849,259.45038 160.32055,257.97107 C 156.06753,256.49176 156.62226,252.23874 156.62226,252.23874"
     id="path1228"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 178.41857,269.78296 C 174.28883,271.44718 168.21022,264.73499 166.70009,263.71796 C 165.18996,262.70093 163.00181,267.60115 158.56387,266.12184 C 154.31085,264.64253 152.09187,253.73260 152.09187,253.73260"
     id="path1229"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 172.80225,296.62724 C 163.12509,284.60782 172.09341,288.02873 172.43243,282.01902 C 173.14127,276.37914 178.61280,275.40749 174.54738,276.22889 C 171.53434,276.86667 168.64169,272.21856 159.85827,276.10176"
     id="path1230"
     sodipodi:nodetypes="czsz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 187.87277,256.20713 C 191.07794,260.46015 198.19714,255.19010 199.70727,254.17307 C 201.21740,253.15604 203.40555,258.05626 207.84349,256.57695 C 212.09651,255.09764 211.54178,250.84462 211.54178,250.84462"
     id="path1232"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 188.17642,268.38884 C 192.30616,270.05306 199.95382,263.34087 201.46395,262.32384 C 202.97408,261.30681 205.16223,266.20703 209.60017,264.72772 C 213.85319,263.24841 216.07217,252.33848 216.07217,252.33848"
     id="path1233"
     sodipodi:nodetypes="czzz" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 196.93084,294.71010 C 206.60800,282.69068 197.63968,286.11159 197.30066,280.10188 C 196.59182,274.46200 191.12029,273.49035 195.18571,274.31175 C 198.19875,274.94953 201.09140,270.30142 209.87482,274.18462"
     id="path1234"
     sodipodi:nodetypes="czsz" />
  <g
     id="g1278"
     transform="matrix(0.605285,0.000000,0.000000,0.597196,215.4523,158.0050)"
     style="">
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;fill-opacity:1.0000000;stroke-dasharray:none;"
       d="M 804.64950,250.44849 C 797.35720,250.48469 789.33209,251.98524 784.49454,257.96913 C 780.93740,262.11537 778.38323,267.02039 775.64377,271.69315 C 773.68125,276.21594 769.46739,297.45551 769.30129,304.87537 C 770.14526,316.85318 776.63805,328.66066 786.98642,334.95250 C 795.22467,338.99769 804.89497,338.64881 813.70686,337.08266 C 821.45161,335.53674 827.62366,329.95749 831.57563,323.32749 C 837.11921,314.80704 839.26003,304.08986 836.74694,294.17684 C 835.76180,288.84411 831.92018,270.31405 828.52987,266.57056 C 824.89455,259.95461 819.93817,253.06220 812.07514,251.41397 C 809.65774,250.76162 807.15196,250.45235 804.64950,250.44849 z "
       id="path1255"
       sodipodi:nodetypes="ccccccccccc" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 800.13750,250.65056 C 801.18353,251.26075 803.25316,249.31320 803.64542,263.39105 C 804.03768,277.46890 803.99154,332.67692 804.34021,335.11767 C 804.68888,337.29691 802.01036,338.15546 798.99628,337.91766"
       id="path1256"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 807.42479,250.62195 C 806.37876,251.23214 804.30913,249.28459 803.91687,263.36244 C 803.52461,277.44029 804.49532,333.01814 804.14665,335.45889 C 803.79798,337.63813 806.66142,337.94193 809.67549,337.70414"
       id="path1257"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 817.70960,290.28376 C 809.84745,280.10959 810.70190,277.13212 818.95501,270.89040 C 813.26525,268.19968 813.19141,265.32450 823.17748,259.01761"
       id="path1258"
       sodipodi:nodetypes="ccc" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 787.90305,291.30471 C 795.76520,281.13054 794.91075,278.15307 786.65764,271.91135 C 792.34740,269.22063 792.42124,266.34545 782.43517,260.03856"
       id="path1259"
       sodipodi:nodetypes="ccc" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 799.72669,293.23848 C 796.52152,297.49150 789.40232,292.22145 787.89219,291.20442 C 786.38206,290.18739 784.19391,295.08761 779.75597,293.60830 C 775.50295,292.12899 776.05768,287.87597 776.05768,287.87597"
       id="path1260"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 802.03812,301.75908 C 797.90838,303.42330 787.64564,300.37222 786.13551,299.35519 C 784.62538,298.33816 782.43723,303.23838 777.99929,301.75907 C 773.74627,300.27976 771.52729,289.36983 771.52729,289.36983"
       id="path1261"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 792.23767,329.12637 C 782.56051,317.10695 791.52883,320.52786 791.86785,314.51815 C 792.57669,308.87827 798.04822,307.90662 793.98280,308.72802 C 790.96976,309.36580 788.07711,304.71769 779.29369,308.60089"
       id="path1262"
       sodipodi:nodetypes="czsz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 807.30819,291.84436 C 810.51336,296.09738 817.63256,290.82733 819.14269,289.81030 C 820.65282,288.79327 822.84097,293.69349 827.27891,292.21418 C 831.53193,290.73487 830.97720,286.48185 830.97720,286.48185"
       id="path1263"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 804.99676,300.36496 C 809.12650,302.02918 819.38924,298.97810 820.89937,297.96107 C 822.40950,296.94404 824.59765,301.84426 829.03559,300.36495 C 833.28861,298.88564 835.50759,287.97571 835.50759,287.97571"
       id="path1264"
       sodipodi:nodetypes="czzz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 814.79721,327.73225 C 824.47437,315.71283 815.50605,319.13374 815.16703,313.12403 C 814.45819,307.48415 808.98666,306.51250 813.05208,307.33390 C 816.06512,307.97168 818.95777,303.32357 827.74119,307.20677"
       id="path1265"
       sodipodi:nodetypes="czsz" />
  </g>
  <g
     id="g1266"
     transform="matrix(0.487368,0.000000,0.000000,0.429443,313.4603,114.8768)"
     style="">
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 794.59961,348.91352 C 790.03327,348.45566 780.97520,354.26681 777.00586,356.66352 C 766.15728,363.21403 755.31838,379.56855 755.31836,395.94477 C 755.31836,400.03884 751.87463,403.64256 756.78711,416.44477 C 762.83073,427.45552 789.50501,430.88985 789.72461,424.10102 C 789.94420,417.31220 785.63328,420.68577 790.94336,415.50727 C 791.10542,425.53543 794.55927,425.71342 794.41211,431.63227 C 794.31794,435.15902 794.12648,443.04382 795.47461,441.69477 L 797.41211,442.00727 L 797.41211,442.13227 L 797.78711,442.06977 L 799.72461,441.75727 C 801.07274,443.10632 800.88128,435.22151 800.78711,431.69477 C 800.63995,425.77592 804.09380,425.59792 804.25586,415.56977 C 809.56594,420.74827 805.25502,417.37469 805.47461,424.16352 C 805.69421,430.95235 832.36849,427.51801 838.41211,416.50727 C 843.32459,403.70506 839.88086,400.10133 839.88086,396.00727 C 839.88084,379.63105 829.04194,363.27652 818.19336,356.72602 C 814.22402,354.32931 805.16595,348.51815 800.59961,348.97602 C 799.07750,349.12864 798.05155,349.97479 797.88086,351.88227 L 797.07659,404.26454 L 797.31836,351.81977 C 797.14767,349.91230 796.12172,349.06614 794.59961,348.91352 z "
       id="path1241"
       sodipodi:nodetypes="ccccccccccccccccccccccc" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 755.15810,397.61810 C 754.11207,399.97167 758.80832,400.24407 763.11776,401.94932 C 767.42719,403.65457 771.87284,407.31569 774.50971,408.07842 C 779.78346,409.60388 789.28491,410.08331 793.07678,409.12445 C 796.86865,408.16559 796.56356,405.20183 797.26091,401.27922"
       id="path1244"
       sodipodi:nodetypes="cszzz" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 782.87797,392.91099 C 777.64781,386.11178 787.32360,386.89630 787.84663,382.71217 C 790.46170,372.51336 780.52440,370.94431 780.52440,370.94431 C 780.52440,370.94431 786.53909,363.36057 788.10813,359.17644 C 782.87797,353.42326 783.40098,354.20779 775.29423,357.86890"
       id="path1246"
       sodipodi:nodetypes="ccccc" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 788.63115,418.53875 C 789.24133,410.95501 783.83682,410.30124 781.57042,409.12445"
       id="path1247"
       sodipodi:nodetypes="cz" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 755.02735,402.26798 C 758.16545,409.59021 769.62822,411.98736 774.90197,413.51282"
       id="path1248"
       sodipodi:nodetypes="cz" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 811.94047,392.52010 C 817.17063,385.72089 807.49484,386.50541 806.97181,382.32128 C 804.35674,372.12247 814.29404,370.55342 814.29404,370.55342 C 814.29404,370.55342 808.27935,362.96968 806.71031,358.78555 C 811.94047,353.03237 811.41746,353.81690 819.52421,357.47801"
       id="path1249"
       sodipodi:nodetypes="ccccc" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 806.18729,418.14786 C 805.57711,410.56412 810.98162,409.91035 813.24802,408.73356"
       id="path1250"
       sodipodi:nodetypes="cz" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 839.79109,401.87709 C 836.65299,409.19932 825.19022,411.59647 819.91647,413.12193"
       id="path1251"
       sodipodi:nodetypes="cz" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.7000000;stroke-dasharray:none;"
       d="M 839.64815,397.14271 C 840.69418,399.49628 835.99793,399.76868 831.68849,401.47393 C 827.37906,403.17918 822.93341,406.84030 820.29654,407.60303 C 815.02279,409.12849 805.52134,409.60792 801.72947,408.64906 C 797.93760,407.69020 796.93515,402.37287 797.28383,397.92724"
       id="path1252"
       sodipodi:nodetypes="cszzz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 760.38827,385.32722 C 752.71737,406.42221 761.34713,397.35659 766.14145,397.61810"
       id="path1253"
       sodipodi:nodetypes="cz" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.7000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
       d="M 833.91474,384.86121 C 841.58564,405.95620 832.95588,396.89058 828.16156,397.15209"
       id="path1254"
       sodipodi:nodetypes="cz" />
  </g>
  <rect
     style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;"
     id="rect1342"
     width="106.29922"
     height="106.29922"
     x="678.02699"
     y="257.57566" />
  <rect
     style="fill:#9999ff;fill-rule:evenodd;stroke-width:0.84895535pt;"
     id="rect1300"
     width="42.038873"
     height="31.251435"
     x="577.48017"
     y="355.15182"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 585.39981,368.71772 C 595.39981,369.55105 611.65089,374.39889 615.88182,379.14146 C 620.11275,384.31923 621.65174,382.78809 623.97519,388.42080 C 625.83395,393.88440 626.66596,396.13459 614.79096,397.38459 C 602.91596,398.00959 579.84943,391.38777 567.95818,382.48985 C 556.06694,374.46233 550.94562,372.94946 552.82062,361.57922 C 554.69562,349.76704 569.06250,334.86218 591.87500,334.23718 C 614.68750,332.98718 635.31250,340.38301 643.75000,355.48718 C 651.56250,370.59135 648.46967,378.29310 643.78217,382.04310 C 639.09467,385.79310 631.44519,384.45036 623.11186,386.32536"
     id="path1301"
     sodipodi:nodetypes="czzzzzzzzz"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 611.66596,385.50959 C 604.16596,383.00959 590.35311,382.60170 583.47811,376.35170"
     id="path1302"
     sodipodi:nodetypes="cc"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 592.66063,336.86850 C 598.86190,345.30503 604.92417,355.07014 602.71447,365.23480"
     id="path1303"
     sodipodi:nodetypes="cc"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 609.51069,344.81342 C 624.10275,344.57017 628.11190,344.21099 630.20397,355.19433 C 635.95715,352.05623 638.95397,353.81615 640.20397,366.31615"
     id="path1304"
     sodipodi:nodetypes="ccc"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 620.21706,362.57924 C 620.21706,362.57924 610.95580,381.48089 620.33080,380.85589 C 629.70580,380.23089 626.05002,380.28181 628.70167,379.17696"
     id="path1305"
     sodipodi:nodetypes="ccc"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 565.74009,361.50702 C 565.74009,361.50702 574.14469,356.44952 582.12195,352.00386 C 590.09920,348.08121 587.55049,347.42089 587.77146,341.89662 L 591.98094,350.60103 C 595.33715,357.54102 598.53331,356.11130 595.55959,362.81588"
     id="path1306"
     sodipodi:nodetypes="czczz"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.8750000;"
     d="M 601.31298,337.74082 C 614.47809,348.72995 606.47413,361.56650 612.31037,373.07050"
     id="path1307"
     sodipodi:nodetypes="cc"
     transform="matrix(0.562759,-0.218675,0.000000,0.600895,376.0347,349.5343)" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0903397;"
     d="M 707.72710,418.48163 C 703.50641,414.69683 702.27080,417.21075 699.44787,417.57363"
     id="path1387"
     sodipodi:nodetypes="cc" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0903397;"
     d="M 725.11736,413.48274 C 719.32763,412.83604 715.73844,415.08845 712.91551,415.45133"
     id="path1389"
     sodipodi:nodetypes="cc" />
  <path
     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0903397;"
     d="M 699.48958,421.09685 C 695.79191,420.95903 688.54161,427.33639 686.24170,435.60327"
     id="path1390"
     sodipodi:nodetypes="cc" />
  <path
     style="font-size:12;fill:url(#linearGradient639);fill-opacity:0.49999997;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
     d="M 282.25529,739.70004 C 263.03059,739.70004 246.57621,750.68303 239.10144,766.34845 C 245.01961,769.38040 251.62479,772.25260 259.40914,770.16617 C 274.02627,766.97386 278.59576,759.44837 285.90432,756.25608 C 301.22420,755.68353 308.56128,763.55367 323.66395,763.21113 C 315.56649,749.26108 300.15727,739.70005 282.25529,739.70004 z "
     id="path1561"
     inkscape:export-filename="C:\pas\mricron\btn\new\autocontrast.png"
     inkscape:export-xdpi="22.289494"
     inkscape:export-ydpi="22.289494" />
  <path
     sodipodi:type="arc"
     style="font-size:12px;fill:url(#radialGradient3181);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1.875;stroke-dasharray:none"
     id="path1562"
     sodipodi:cx="271.35837"
     sodipodi:cy="796.11926"
     sodipodi:rx="37.428738"
     sodipodi:ry="37.428738"
     d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
     transform="matrix(1.269231,0,0,1.209574,-59.82695,-177.4099)"
     inkscape:export-filename="C:\pas\mricron\btn\new\autocontrast.png"
     inkscape:export-xdpi="22.289494"
     inkscape:export-ydpi="22.289494" />
  <path
     sodipodi:type="arc"
     style="font-size:12;fill:url(#radialGradient983);fill-opacity:0.50000000;fill-rule:evenodd;stroke:none;stroke-width:1.875;stroke-dasharray:none;"
     id="path1574"
     sodipodi:cx="271.35836792"
     sodipodi:cy="796.11926270"
     sodipodi:rx="37.42873764"
     sodipodi:ry="37.42873764"
     d="M 308.787106 796.119263 A 37.428738 37.428738 0 1 0 233.929630,796.119263 A 37.4287 37.4287 0 1 0 308.787 796.119 L 271.358368 796.119263 z"
     transform="matrix(0.484769,0.000000,0.000000,0.461984,554.2006,323.4255)" />
  <rect
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:2.3750000;fill-opacity:1.0000000;"
     id="rect1280"
     width="69.963570"
     height="45.246185"
     x="128.72227"
     y="535.48883" />
  <rect
     style="fill:#9999ff;fill-rule:evenodd;stroke-width:0.84895535pt;"
     id="rect1278"
     width="42.038872"
     height="31.251434"
     x="158.54723"
     y="572.81548"
     transform="matrix(-0.578460,0.000000,0.000000,0.578460,265.2767,219.3138)" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:4.1057291;"
     d="M 163.87618,583.27959 C 173.87618,584.11292 182.62618,587.86292 188.25118,596.40459 C 193.87618,605.57126 193.25118,606.40459 193.25118,606.40459 C 193.25118,606.40459 194.50118,615.15459 182.62618,616.40459 C 170.75118,617.02959 157.44312,604.81988 143.69312,604.81988 C 130.56812,604.81988 125.75118,602.77483 127.62618,591.40459 C 129.50118,579.59241 142.93868,553.90459 165.75118,553.27959 C 188.56368,552.02959 209.18868,559.42542 217.62618,574.52959 C 225.43868,589.63376 221.68868,601.40459 217.00118,605.15459 C 212.31368,608.90459 201.58451,603.90459 193.25118,605.77959"
     id="path1279"
     sodipodi:nodetypes="czzzzzzzzz"
     transform="matrix(-0.578460,0.000000,0.000000,0.578460,265.2767,219.3138)" />
  <g
     id="g1249"
     transform="translate(-9.414290,-1.046033)"
     style="">
    <rect
       style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:2.3750000;stroke-dasharray:none;"
       id="rect1289"
       width="69.963570"
       height="45.246185"
       x="128.72227"
       y="535.48883"
       transform="matrix(-1.000000,0.000000,0.000000,1.000000,355.1279,42.36432)" />
    <rect
       style="fill:#9999ff;fill-rule:evenodd;stroke-width:0.84895535pt;"
       id="rect1291"
       width="42.038872"
       height="31.251434"
       x="158.54723"
       y="572.81548"
       transform="matrix(0.578460,0.000000,0.000000,0.578460,89.85120,261.6781)" />
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:4.1057290;stroke-dasharray:none;"
       d="M 163.87618,583.27959 C 173.87618,584.11292 182.62618,587.86292 188.25118,596.40459 C 193.87618,605.57126 193.25118,606.40459 193.25118,606.40459 C 193.25118,606.40459 194.50118,615.15459 182.62618,616.40459 C 170.75118,617.02959 157.44312,604.81988 143.69312,604.81988 C 130.56812,604.81988 125.75118,602.77483 127.62618,591.40459 C 129.50118,579.59241 142.93868,553.90459 165.75118,553.27959 C 188.56368,552.02959 209.18868,559.42542 217.62618,574.52959 C 225.43868,589.63376 221.68868,601.40459 217.00118,605.15459 C 212.31368,608.90459 201.58451,603.90459 193.25118,605.77959"
       id="path1292"
       sodipodi:nodetypes="czzzzzzzzz"
       transform="matrix(0.578460,0.000000,0.000000,0.578460,89.85120,261.6781)" />
  </g>
  <rect
     style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:2.3750000;"
     id="rect1268"
     width="69.963570"
     height="45.246185"
     x="128.72227"
     y="535.48883"
     transform="matrix(-1.000000,0.000000,0.000000,1.000000,254.4474,140.4299)" />
  <path
     sodipodi:type="arc"
     style="fill:#9999ff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
     id="path1285"
     sodipodi:cx="88.389725"
     sodipodi:cy="698.28027"
     sodipodi:rx="18.305565"
     sodipodi:ry="18.305565"
     d="M 106.69529 698.28027 A 18.305565 18.305565 0 1 0 70.084160,698.28027 A 18.305565 18.305565 0 1 0 106.69529 698.28027 z"
     transform="translate(3.138097,1.046032)" />
  <rect
     style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:2.3750000;"
     id="rect1290"
     width="69.963570"
     height="45.246185"
     x="-120.45193"
     y="551.95033"
     transform="scale(-1.000000,1.000000)" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-opacity:1.0000000;stroke-width:2.5000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 51.673228,577.76346 L 120.04088,577.76346"
     id="path1299" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-opacity:1.0000000;stroke-width:2.5000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
     d="M 88.241974,551.52936 L 87.447001,596.44531"
     id="path1300"
     sodipodi:nodetypes="cc" />
  <rect
     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.3750000;"
     id="rect1301"
     width="69.963570"
     height="45.246185"
     x="-120.25873"
     y="552.13202"
     transform="scale(-1.000000,1.000000)" />
  <rect
     style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
     id="rect1302"
     width="8.9940901"
     height="9.2751551"
     x="83.195328"
     y="573.14581" />
  <path
     style="font-size:12.000000;fill:url(#linearGradient968);fill-opacity:0.70196003;stroke:#1c66f9;stroke-width:1.9242834;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99000001;"
     d="M 37.920277,322.15339 C 38.332250,320.95292 39.768025,319.75197 40.999014,319.93377 L 78.169327,327.96556 C 81.048244,325.43887 85.262603,322.36297 89.606623,323.13302 L 95.922292,324.00942 L 103.90333,325.57660 C 108.56248,326.97946 112.24447,329.89321 112.63056,335.69148 L 112.58162,405.54600 L 37.627148,381.65255 L 37.920277,322.15339 z "
     id="path1266"
     sodipodi:nodetypes="cccccccccc" />
  <path
     style="font-size:12.000000;fill:#4789f7;stroke:#1c4ed9;stroke-width:1.7125434;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99216002;"
     d="M 37.528348,381.35197 L 112.74823,405.58198 L 109.98730,410.63535 L 35.227003,384.92024 L 37.528348,381.35197 z "
     id="path1271"
     sodipodi:nodetypes="ccccc" />
  <g
     id="g1279"
     transform="matrix(0.688750,0.000000,0.000000,0.640474,44.12231,204.0360)">
    <path
       style="fill-rule:evenodd;stroke:none;stroke-width:0.91963024pt;"
       d="M 15.411826,279.67519 L 107.16635,280.32772 L 105.78092,271.91017 C 104.50888,267.92580 100.16017,263.55105 99.313146,259.07319 C 98.024176,254.59533 104.23642,257.47279 103.48688,250.11822 C 102.73733,242.76364 101.33093,223.23927 90.699786,212.93098 C 79.756146,202.93519 70.616996,196.51871 51.220346,199.66990 C 33.073696,201.57109 22.663616,210.23449 15.263856,225.51906 C 7.6727159,240.80363 16.076616,259.82218 15.837966,266.94924 L 15.411826,279.67519 z "
       id="path1273"
       sodipodi:nodetypes="ccczzzzzzc" />
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0507082pt;fill-opacity:1.0000000;"
       d="M 81.667436,238.66160 C 80.982416,243.33580 68.662856,240.88582 68.468226,248.58013 C 68.273596,255.77527 84.079546,257.18713 89.984786,255.06933 C 95.890036,252.95153 99.758996,249.65718 99.148096,242.36255 C 98.537216,235.06792 96.575586,216.71313 75.014876,206.18816 C 53.886116,196.16236 29.955336,209.82744 22.306536,224.42792 C 14.657726,239.52760 14.049476,254.81975 23.120686,249.32889 C 31.759936,244.33718 42.301146,228.60033 58.113846,226.78187 C 73.494556,224.96340 82.352426,234.98574 81.667436,238.66160 z "
       id="path1274"
       sodipodi:nodetypes="czzzzzzzz" />
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0877723pt;fill-opacity:1.0000000;"
       d="M 46.065436,250.14579 C 44.767756,248.03998 45.172386,240.05319 38.251386,241.60591 C 31.330386,243.15862 23.814016,250.57710 21.730276,253.25121 C 19.646536,255.92534 20.762826,260.66971 21.730276,261.79111 C 22.697736,262.91251 28.204756,263.51633 29.767576,264.89651 C 31.330386,266.27670 34.976936,271.45240 36.911836,271.10736 C 38.846746,270.76231 42.790986,266.62175 42.939816,264.89653 C 43.088656,263.17129 47.363086,252.25163 46.065436,250.14579 z "
       id="path1275"
       sodipodi:nodetypes="czzzzzzz" />
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:none;stroke-width:1.0507082pt;fill-opacity:1.0000000;"
       d="M 42.237126,279.80001 C 42.658006,275.59866 47.388376,258.94410 48.153616,253.91080 C 48.918846,248.87751 46.010966,251.41496 47.235346,249.16869 C 48.459706,246.92241 52.591946,241.63956 55.499816,240.43322 C 58.407706,239.22690 62.539946,239.92518 64.682586,241.04832 C 66.825226,242.17146 68.164386,245.92409 68.355686,247.17200 C 68.546986,248.41993 66.863496,249.83425 65.830426,249.41828 C 64.797366,249.00230 66.447386,242.49537 63.942946,244.49969 C 61.438506,246.68048 58.281376,250.37501 56.647666,251.91412 C 55.338616,253.45321 58.560756,252.66288 59.172936,253.91080 C 59.785116,255.15873 60.932956,257.23860 60.320776,259.40167 C 59.708576,261.56473 57.068536,265.51649 55.499816,266.88920 C 53.931086,268.26192 52.553686,265.59969 50.908446,267.63797 C 49.263196,269.67624 47.037236,278.02692 45.659806,279.98199 L 42.237126,279.80001 z "
       id="path1276"
       sodipodi:nodetypes="czzzzzzzzzzzzcc" />
    <path
       style="fill:#9999ff;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1.875;stroke-dasharray:none"
       d="M 41.081076,235.46675 C 41.510266,237.13987 42.851486,241.07668 43.817166,241.96244 C 44.782846,242.84822 46.848346,243.11067 47.197056,241.96244 C 47.545776,240.81421 45.212056,235.04026 51.059786,231.92364 C 57.068466,228.80702 66.457036,229.52876 69.407726,230.93945 C 72.358406,232.35012 77.320946,237.59917 72.626666,241.17509 C 68.737106,244.75098 78.179316,244.84941 80.191156,243.34031 C 82.202996,241.83121 85.125536,236.24432 82.523566,233.55418 C 79.921596,230.86405 73.325156,224.43697 67.209176,223.78085 C 61.093206,223.12471 46.472786,230.41454 44.460956,230.93945 C 42.288186,231.46435 40.651886,233.79361 41.081076,235.46675 z"
       id="path1277"
       sodipodi:nodetypes="czzzzzzzzzz" />
  </g>
  <path
     style="font-size:12.000000;fill:url(#linearGradient967);fill-opacity:0.69929999;stroke:#1c66fb;stroke-width:1.7758849;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.99216002;"
     d="M 17.536640,337.89268 C 16.523741,335.20546 17.516336,332.64170 19.932441,332.91461 L 55.676174,340.52075 L 57.880936,348.26473 L 73.479955,351.89199 L 71.204233,343.73873 L 87.288253,346.49326 C 89.414399,347.18490 91.065826,348.61636 92.573252,351.89801 L 109.47210,409.98240 L 35.111516,384.77857 L 17.536640,337.89268 z "
     id="path1272"
     sodipodi:nodetypes="ccccccccccc" />
  <g
     id="g1317">
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:2.0770884;"
       d="M 472.42571,238.27147 C 472.33405,238.27145 472.24478,238.29291 472.15311,238.29398 L 472.15311,238.31648 C 472.08489,238.31034 472.01758,238.29395 471.94867,238.29398 C 471.78809,238.29403 471.63216,238.33557 471.47163,238.33899 L 471.47163,238.42899 C 471.37376,238.41606 471.27556,238.40652 471.17632,238.40649 C 471.10740,238.40647 471.04010,238.42285 470.97187,238.42899 L 470.97187,238.40649 C 470.88021,238.40543 470.79094,238.38396 470.69928,238.38399 C 465.87162,238.38545 461.03877,239.90805 457.81913,242.92943 C 456.20932,244.44011 446.99543,256.89920 450.09559,259.04098 C 457.81097,264.68512 464.49982,248.07035 457.36480,261.85375 C 456.64585,266.58811 456.46107,269.05668 456.41072,270.29207 C 456.30905,268.02898 455.46815,262.72102 451.04967,260.14359 C 447.35854,258.03472 444.93899,276.66261 444.93899,279.18042 C 444.93899,289.25168 451.37986,299.31925 457.81913,303.34776 C 461.08484,305.39084 466.00722,306.37150 470.90372,306.34054 L 470.90372,306.36305 C 471.15408,306.36510 471.40305,306.34374 471.65336,306.34054 L 471.65336,306.22803 C 471.84267,306.23528 472.03155,306.25211 472.22127,306.25053 L 472.22127,306.22803 C 477.11777,306.25899 482.04015,305.27835 485.30586,303.23524 C 491.74513,299.20674 498.18600,289.13916 498.18600,279.06791 C 498.18600,276.55010 495.76645,257.92220 492.07532,260.03107 C 487.65684,262.60851 486.81594,267.91647 486.71427,270.17956 C 486.66392,268.94417 486.47914,266.47559 485.76018,261.74124 C 478.62517,247.95784 485.31402,264.57260 493.02940,258.92847 C 496.12956,256.78669 486.91567,244.32759 485.30586,242.81691 C 482.08622,239.79554 477.25337,238.27293 472.42571,238.27147 z "
       id="path1267"
       transform="matrix(1.033174,0.000000,0.000000,0.909383,216.4479,268.3863)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.70418520pt;"
       d="M 468.24591,259.15861 C 468.51094,258.62567 467.79271,252.85171 466.69475,251.35949 C 465.59679,249.86726 463.96768,250.52503 463.70265,251.05797 C 463.43764,251.59090 465.07594,250.88137 466.17389,252.37359 C 467.27185,253.86581 467.98090,259.69155 468.24591,259.15861 z "
       id="path1270"
       sodipodi:nodetypes="czzzz"
       transform="matrix(1.033174,0.000000,0.000000,0.909383,216.4479,268.3863)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.59326982pt;"
       d="M 463.34275,289.21648 C 461.03017,288.99344 460.56786,283.64967 458.96224,286.90958 C 457.28286,290.22776 460.74374,297.34319 461.04820,293.66548 C 461.27890,289.98777 465.58157,289.49777 463.34275,289.21648 z "
       id="path1278"
       sodipodi:nodetypes="czzz"
       transform="matrix(1.033174,0.000000,0.000000,0.909383,216.4479,268.3863)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.68256974pt;"
       d="M 708.64967,503.43717 C 708.37585,502.95253 709.11791,497.70179 710.25229,496.34479 C 711.38666,494.98778 713.06983,495.58594 713.34365,496.07058 C 713.61745,496.55524 711.92480,495.90999 710.79043,497.26699 C 709.65604,498.62400 708.92347,503.92182 708.64967,503.43717 z "
       id="path1283"
       sodipodi:nodetypes="czzzz" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.57505898pt;"
       d="M 710.57739,531.81732 C 712.96669,531.61449 713.44433,526.75496 715.10322,529.71946 C 716.83831,532.73696 713.26262,539.20762 712.94806,535.86317 C 712.70970,532.51872 708.26430,532.07312 710.57739,531.81732 z "
       id="path1284"
       sodipodi:nodetypes="czzz" />
  </g>
  <g
     id="g1329"
     transform="translate(-104.0802,-97.80402)">
    <path
       style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:1.8718444;"
       d="M 841.03523,592.70109 C 835.90467,592.76390 830.22818,593.56676 826.67923,597.28291 C 823.87668,600.24935 817.50896,615.99836 816.60602,618.30168 C 815.09992,624.27793 814.05854,630.78886 816.99244,636.56898 C 819.81959,643.25189 825.72828,649.72836 833.94116,650.75621 C 839.37129,651.44267 845.09032,651.35874 850.31458,649.72833 C 856.42815,647.71665 860.44343,642.53509 863.07436,637.37323 C 865.55779,632.40703 865.94287,626.74320 864.51563,621.47197 C 863.89507,618.11627 856.12574,599.89965 853.80199,597.15457 C 850.54532,594.03086 845.67202,592.69881 841.03523,592.70109 z "
       id="path1288"
       sodipodi:nodetypes="cccccccccc"
       transform="translate(-3.661113,-7.322226)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.63460236pt;"
       d="M 838.07247,610.64237 C 839.95513,610.18459 838.75317,605.01626 837.71507,603.73449 C 836.67696,602.45272 829.77408,601.13926 832.78769,603.68422 C 836.03445,606.02046 835.95665,611.10014 838.07247,610.64237 z "
       id="path1289"
       sodipodi:nodetypes="czzz"
       transform="translate(-3.661113,-7.322226)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.53464689pt;"
       d="M 835.74471,629.37680 C 833.55820,629.18522 829.82379,631.67928 828.30569,634.47943 C 826.71786,637.32962 829.99008,643.44151 830.27794,640.28249 C 830.49606,637.12348 837.86149,629.61842 835.74471,629.37680 z "
       id="path1290"
       sodipodi:nodetypes="czzz"
       transform="translate(-3.661113,-7.322226)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.63460231pt;"
       d="M 842.27092,610.67154 C 840.38825,610.21376 841.59021,605.04542 842.62832,603.76366 C 843.66642,602.48189 850.56930,601.16843 847.55570,603.71338 C 844.30893,606.04963 844.38672,611.12931 842.27092,610.67154 z "
       id="path1293"
       sodipodi:nodetypes="czzz"
       transform="translate(-3.661113,-7.322226)" />
    <path
       style="fill-rule:evenodd;stroke:#000000;stroke-width:0.53464689pt;"
       d="M 844.89363,628.76239 C 847.08014,628.57081 850.81456,631.06487 852.33265,633.86502 C 853.92048,636.71521 850.64827,642.82710 850.36040,639.66808 C 850.14228,636.50907 842.77686,629.00401 844.89363,628.76239 z "
       id="path1310"
       sodipodi:nodetypes="czzz"
       transform="translate(-3.661113,-7.322226)" />
  </g>
  <path
     sodipodi:type="arc"
     style="font-size:12px;fill:url(#radialGradient704);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.87644994;stroke-dasharray:none"
     id="path1268"
     sodipodi:cx="271.35837"
     sodipodi:cy="796.11926"
     sodipodi:rx="37.428738"
     sodipodi:ry="37.428738"
     d="M 308.78711,796.11926 A 37.428738,37.428738 0 1 1 233.92963,796.11926 A 37.428738,37.428738 0 1 1 308.78711,796.11926 z"
     transform="matrix(1.269231,0,0,1.209574,239.61631,-65.007091)"
     inkscape:export-filename="C:\pas\mricron\btn\3dx.png"
     inkscape:export-xdpi="22.768808"
     inkscape:export-ydpi="22.768808" />
  <path
     style="font-size:12px;fill:url(#linearGradient1110);fill-opacity:0.38016998;fill-rule:evenodd;stroke:none;stroke-width:1pt"
     d="M 584.02153,852.31705 C 564.79683,852.31705 548.34245,863.30004 540.86768,878.96546 C 546.78585,881.99741 553.39103,884.86961 561.17538,882.78318 C 575.79251,879.59087 580.362,872.06538 587.67056,868.87309 C 602.99044,868.30054 610.32752,876.17068 625.43019,875.82814 C 617.33273,861.87809 601.92351,852.31706 584.02153,852.31705 z"
     id="path1269"
     inkscape:export-filename="C:\pas\mricron\btn\3dx.png"
     inkscape:export-xdpi="22.768808"
     inkscape:export-ydpi="22.768808" />
  <text
     xml:space="preserve"
     style="font-size:53.10573959px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial Black"
     x="467.65067"
     y="1061.1675"
     id="text1284"
     sodipodi:linespacing="100%"
     transform="scale(1.1590137,0.8628026)"
     inkscape:export-filename="C:\pas\mricron\btn\3dx.png"
     inkscape:export-xdpi="22.768808"
     inkscape:export-ydpi="22.768808"><tspan
       x="467.65067"
       y="1061.1675"
       sodipodi:role="line"
       id="tspan1287">3D</tspan></text>
  <path
     style="font-size:12px;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt"
     d="M 862.36154,831.74143 L 862.36154,924.49 C 889.80881,924.49 912.07889,903.73438 912.07886,878.13172 C 912.07886,852.52905 889.80879,831.74141 862.36154,831.74143 z "
     id="path3207" />
  <g
     id="g4179">
    <path
       transform="matrix(1.269231,0,0,1.209574,-252.0699,-51.3724)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path3205"
       style="font-size:12px;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
    <path
       sodipodi:nodetypes="csccccccc"
       id="path2293"
       d="M 121.04942,876.41746 C 115.9942,876.41746 85.290278,896.93033 69.807528,903.81184 C 65.343898,905.79576 131.15987,906.55128 131.15987,906.55128 L 82.62969,924.35764 L 92.74016,875.04774 L 51.091495,891.29811 L 65.441938,915.45446 L 113.97211,928.4668 L 82.951128,953.93266"
       style="fill:none;fill-rule:evenodd;stroke:red;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    <path
       id="path3209"
       d="M 92.371567,865.47065 C 73.146867,865.47065 56.692487,876.45364 49.217717,892.11906 C 55.135887,895.15101 61.741067,898.02321 69.525417,895.93678 C 84.142547,892.74447 88.712037,885.21898 96.020597,882.02669 C 111.34048,881.45414 118.67756,889.32428 133.78023,888.98174 C 125.68277,875.03169 110.27355,865.47066 92.371567,865.47065 z "
       style="font-size:12px;fill:url(#linearGradient3271);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1pt" />
    <path
       transform="matrix(1.269231,0,0,1.209574,-254.2131,-49.87948)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path3267"
       style="font-size:12px;fill:url(#radialGradient3289);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
  </g>
  <g
     id="g4185"
     transform="matrix(0.587317,0,0,0.587317,135.8273,373.3777)">
    <path
       transform="matrix(1.269231,0,0,1.209574,-252.0699,-51.3724)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path4187"
       style="font-size:12px;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
    <path
       sodipodi:nodetypes="csccccccc"
       id="path4189"
       d="M 121.04942,876.41746 C 115.9942,876.41746 85.290278,896.93033 69.807528,903.81184 C 65.343898,905.79576 131.15987,906.55128 131.15987,906.55128 L 82.62969,924.35764 L 92.74016,875.04774 L 51.091495,891.29811 L 65.441938,915.45446 L 113.97211,928.4668 L 82.951128,953.93266"
       style="fill:none;fill-rule:evenodd;stroke:red;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    <path
       id="path4191"
       d="M 92.371567,865.47065 C 73.146867,865.47065 56.692487,876.45364 49.217717,892.11906 C 55.135887,895.15101 61.741067,898.02321 69.525417,895.93678 C 84.142547,892.74447 88.712037,885.21898 96.020597,882.02669 C 111.34048,881.45414 118.67756,889.32428 133.78023,888.98174 C 125.68277,875.03169 110.27355,865.47066 92.371567,865.47065 z "
       style="font-size:12px;fill:url(#linearGradient4195);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1pt" />
    <path
       transform="matrix(1.269231,0,0,1.209574,-254.2131,-49.87948)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path4193"
       style="font-size:12px;fill:url(#radialGradient4197);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
  </g>
  <g
     id="g4199"
     transform="matrix(0.75239,0,0,0.75239,212.8041,226.4211)">
    <path
       transform="matrix(1.269231,0,0,1.209574,-252.0699,-51.3724)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path4201"
       style="font-size:12px;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
    <path
       sodipodi:nodetypes="csccccccc"
       id="path4203"
       d="M 121.04942,876.41746 C 115.9942,876.41746 85.290278,896.93033 69.807528,903.81184 C 65.343898,905.79576 131.15987,906.55128 131.15987,906.55128 L 82.62969,924.35764 L 92.74016,875.04774 L 51.091495,891.29811 L 65.441938,915.45446 L 113.97211,928.4668 L 82.951128,953.93266"
       style="fill:none;fill-rule:evenodd;stroke:red;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    <path
       id="path4205"
       d="M 92.371567,865.47065 C 73.146867,865.47065 56.692487,876.45364 49.217717,892.11906 C 55.135887,895.15101 61.741067,898.02321 69.525417,895.93678 C 84.142547,892.74447 88.712037,885.21898 96.020597,882.02669 C 111.34048,881.45414 118.67756,889.32428 133.78023,888.98174 C 125.68277,875.03169 110.27355,865.47066 92.371567,865.47065 z "
       style="font-size:12px;fill:url(#linearGradient4209);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1pt" />
    <path
       transform="matrix(1.269231,0,0,1.209574,-254.2131,-49.87948)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path4207"
       style="font-size:12px;fill:url(#radialGradient4211);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
  </g>
  <g
     id="g4213"
     transform="matrix(0.355527,0,0,1.090014,324.7627,-82.64672)">
    <path
       transform="matrix(1.269231,0,0,1.209574,-252.0699,-51.3724)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path4215"
       style="font-size:12px;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
    <path
       sodipodi:nodetypes="csccccccc"
       id="path4217"
       d="M 121.04942,876.41746 C 115.9942,876.41746 85.290278,896.93033 69.807528,903.81184 C 65.343898,905.79576 131.15987,906.55128 131.15987,906.55128 L 82.62969,924.35764 L 92.74016,875.04774 L 51.091495,891.29811 L 65.441938,915.45446 L 113.97211,928.4668 L 82.951128,953.93266"
       style="fill:none;fill-rule:evenodd;stroke:red;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    <path
       id="path4219"
       d="M 92.371567,865.47065 C 73.146867,865.47065 56.692487,876.45364 49.217717,892.11906 C 55.135887,895.15101 61.741067,898.02321 69.525417,895.93678 C 84.142547,892.74447 88.712037,885.21898 96.020597,882.02669 C 111.34048,881.45414 118.67756,889.32428 133.78023,888.98174 C 125.68277,875.03169 110.27355,865.47066 92.371567,865.47065 z "
       style="font-size:12px;fill:url(#linearGradient4223);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1pt" />
    <path
       transform="matrix(1.269231,0,0,1.209574,-254.2131,-49.87948)"
       d="M 308.78711 796.11926 A 37.428738 37.428738 0 1 1  233.92963,796.11926 A 37.428738 37.428738 0 1 1  308.78711 796.11926 z"
       sodipodi:ry="37.428738"
       sodipodi:rx="37.428738"
       sodipodi:cy="796.11926"
       sodipodi:cx="271.35837"
       id="path4221"
       style="font-size:12px;fill:url(#radialGradient4225);fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1.875;stroke-dasharray:none"
       sodipodi:type="arc" />
  </g>
  <flowRoot
     xml:space="preserve"
     id="flowRoot4227"
     style="font-size:36px;font-weight:bold;fill:navy"
     transform="translate(33.72834,142.0141)"><flowRegion
       id="flowRegion4229"><rect
         id="rect4231"
         width="361.5441"
         height="35.503513"
         x="42.604218"
         y="822.77283"
         style="font-size:36px;font-weight:bold;fill:navy" /></flowRegion><flowPara
       id="flowPara4233">A      B     C    D</flowPara></flowRoot>  <rect
     style="fill:#9999ff;fill-rule:evenodd;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     id="rect2823"
     width="42.038872"
     height="31.251434"
     x="844.13184"
     y="324.25101"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 856.65166,333.33636 C 866.65166,334.16969 875.40166,337.91969 881.02666,346.46136 C 886.65166,355.62803 886.02666,356.46136 886.02666,356.46136 C 886.02666,356.46136 887.27666,365.21136 875.40166,366.46136 C 863.52666,367.08636 850.2186,354.87665 836.4686,354.87665 C 823.3436,354.87665 818.52666,352.8316 820.40166,341.46136 C 822.27666,329.64918 835.71416,303.96136 858.52666,303.33636 C 881.33916,302.08636 901.96416,309.48219 910.40166,324.58636 C 918.21416,339.69053 914.46416,351.46136 909.77666,355.21136 C 905.08916,358.96136 894.35999,353.96136 886.02666,355.83636"
     id="path2825"
     sodipodi:nodetypes="czzzzzzzzz"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 872.27666,354.58636 C 864.77666,352.08636 861.65166,352.08636 854.77666,345.83636 C 847.90166,339.58636 846.65166,333.33636 846.65166,333.33636"
     id="path2827"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 864.15166,303.96136 C 864.77666,316.46136 871.57583,324.16932 869.36613,334.33398"
     id="path2829"
     sodipodi:nodetypes="cc"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 877.55642,310.93834 C 892.14848,310.69509 894.76356,313.31017 896.85563,324.29351 C 902.60881,321.15541 905.60563,322.91533 906.85563,335.41533"
     id="path2831"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 886.86872,331.67842 C 886.86872,331.67842 877.60746,350.58007 886.98246,349.95507 C 896.35746,349.33007 892.70168,349.38099 895.35333,348.27614"
     id="path2833"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 832.39175,330.6062 C 832.39175,330.6062 835.53899,323.02 843.51625,318.57434 C 851.4935,314.65169 856.99028,311.87715 857.21125,306.35288 L 856.54834,312.02229 C 855.82047,318.24722 865.18497,325.21048 862.21125,331.91506"
     id="path2835"
     sodipodi:nodetypes="czczz"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 873.54091,303.21172 C 878.8063,313.50201 874.98455,328.73092 878.96203,339.55849"
     id="path2837"
     sodipodi:nodetypes="cc"
     inkscape:export-filename="C:\pas\mricron\btn\mricrogl256.png"
     inkscape:export-xdpi="234.8979"
     inkscape:export-ydpi="234.8979" />
  <path
     style="fill:#000054;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 270.34766,432.89286 C 266.96559,425.47501 260.3235,438.26052 255.49727,449.30783 C 250.67104,460.73738 245.34246,489.00581 249.10203,493.65088 C 252.8616,498.29594 258.35056,495.22819 262.11012,491.11346 C 265.86969,486.99873 263.96524,466.06199 265.1515,456.9486 C 266.02526,447.83521 273.72973,440.31072 270.34766,432.89286 z"
     id="path3615"
     sodipodi:nodetypes="czzzzz"
     inkscape:export-filename="C:\pas\mricron\btn\pen24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="fill:url(#linearGradient3627);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 256.35392,455.89784 C 254.95394,460.00092 253.32225,462.82318 252.15398,468.20706 C 250.98572,473.77723 249.31762,487.55379 250.22768,489.81755 C 251.13775,492.08131 252.46644,490.58625 253.3765,488.58094 C 254.28656,486.57564 253.82556,476.37217 254.11271,471.93078 C 254.32422,467.48938 255.87513,463.1938 256.35392,455.89784 z"
     id="path3617"
     sodipodi:nodetypes="czzzzc"
     inkscape:export-filename="C:\pas\mricron\btn\pen24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="font-size:12px;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
     d="M 258.32385,516.10881 C 244.70346,512.53166 243.75131,505.12802 247.26278,500.13525 C 248.58676,498.73623 251.70024,496.59237 253.50771,496.72229 C 255.31518,496.85222 256.87341,497.76794 259.19467,499.43037 C 264.4622,503.38022 254.53224,505.09575 258.32385,516.10881 z"
     id="path3619"
     sodipodi:nodetypes="ccszc"
     inkscape:export-filename="C:\pas\mricron\btn\pen24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="font-size:12px;fill:url(#linearGradient3629);fill-rule:evenodd;stroke-width:1pt"
     d="M 253.87333,511.50807 C 250.61538,510.68643 249.08112,510.84383 247.06823,505.91817 C 245.05534,501.30501 250.05982,499.78929 250.6541,499.16357 C 251.24838,498.53784 252.11602,498.95109 252.7103,499.50538 C 253.30458,500.05966 253.00354,502.88001 253.19105,504.10765 C 253.32917,505.3353 251.06068,507.46014 253.87333,511.50807 z"
     id="path3621"
     sodipodi:nodetypes="czzzzc"
     inkscape:export-filename="C:\pas\mricron\btn\pen24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <path
     style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     id="path3623"
     d="M 326.05671,469.55122 C 326.88121,476.3815 303.915,485.28392 302.9894,489.2119 C 301.08731,493.55239 315.97044,503.85687 311.9364,508.99802 C 309.36025,516.74789 269.62905,520.69168 260.38548,518.28589 C 259.23168,516.89349 259.03156,513.70664 261.14461,511.80155 C 266.78432,508.49412 294.51355,511.32311 303.67001,506.3462 C 304.47331,504.25494 293.9717,493.73434 297.19274,488.16929 C 300.56999,481.31221 321.25824,474.15358 320.94168,470.1196 C 317.96164,465.56742 294.87588,458.40487 292.13778,454.47451 C 292.13778,454.47451 322.16638,463.8337 326.05671,469.55122 z"
     sodipodi:nodetypes="cccccccccc"
     inkscape:export-filename="C:\pas\mricron\btn\pen24.png"
     inkscape:export-xdpi="24.462318"
     inkscape:export-ydpi="24.462318" />
  <rect
     style="fill:url(#linearGradient3646);fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-dasharray:none"
     id="rect3644"
     width="91.25"
     height="30"
     x="-184.68044"
     y="63.382465"
     ry="12.5"
     transform="scale(-1,1)"
     inkscape:export-xdpi="22.535858"
     inkscape:export-ydpi="22.535858"
     inkscape:export-filename="C:\pas\mricron\btn\new\colorbarzero.png" />
  <path
     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.22945166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     d="M 103.12986,109.15218 C 103.12986,114.14532 100.93311,118.19773 98.226386,118.19773 C 95.519665,118.19773 93.322908,114.14532 93.322908,109.15218 C 93.322908,104.15903 95.519665,100.10663 98.226386,100.10663 C 100.93311,100.10663 103.12986,104.15903 103.12986,109.15218 z"
     id="path3648"
     inkscape:export-filename="C:\pas\mricron\btn\new\colorbarzero.png"
     inkscape:export-xdpi="22.535858"
     inkscape:export-ydpi="22.535858" />
  <path
     sodipodi:type="star"
     style="opacity:0.78534031000000004;fill:#0000c0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
     id="path3650"
     sodipodi:sides="3"
     sodipodi:cx="139.64716"
     sodipodi:cy="147.0226"
     sodipodi:r1="9.4676037"
     sodipodi:r2="4.7338018"
     sodipodi:arg1="-1.5707963"
     sodipodi:arg2="-0.52359878"
     inkscape:flatsided="false"
     inkscape:rounded="0"
     inkscape:randomized="0"
     d="M 139.64716,137.55499 L 143.74675,144.6557 L 147.84634,151.7564 L 139.64716,151.7564 L 131.44797,151.7564 L 135.54756,144.6557 L 139.64716,137.55499 z"
     transform="matrix(1,0,0,1.3333333,-15.384856,-87.864153)"
     inkscape:export-filename="C:\pas\mricron\btn\new\colorbarzero.png"
     inkscape:export-xdpi="22.535858"
     inkscape:export-ydpi="22.535858" />
  <path
     sodipodi:type="star"
     style="opacity:0.78534031000000004;fill:#0000c0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
     id="path3652"
     sodipodi:sides="3"
     sodipodi:cx="139.64716"
     sodipodi:cy="147.0226"
     sodipodi:r1="9.4676037"
     sodipodi:r2="4.7338018"
     sodipodi:arg1="-1.5707963"
     sodipodi:arg2="-0.52359878"
     inkscape:flatsided="false"
     inkscape:rounded="0"
     inkscape:randomized="0"
     d="M 139.64716,137.55499 L 143.74675,144.6557 L 147.84634,151.7564 L 139.64716,151.7564 L 131.44797,151.7564 L 135.54756,144.6557 L 139.64716,137.55499 z"
     transform="matrix(1,0,0,1.3333333,37.278685,-87.864153)"
     inkscape:export-filename="C:\pas\mricron\btn\new\colorbarzero.png"
     inkscape:export-xdpi="22.535858"
     inkscape:export-ydpi="22.535858" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:#0000c0;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     d="M 246.74941,-78.424713 L 339.05855,-78.424713"
     id="path3656"
     inkscape:export-filename="C:\pas\mricron\btn\new\crosshairs.png"
     inkscape:export-xdpi="20.607124"
     inkscape:export-ydpi="20.607124" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:#0000c0;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 269.23498,-111.56132 L 269.23498,-12.743213"
     id="path3660"
     inkscape:export-filename="C:\pas\mricron\btn\new\crosshairs.png"
     inkscape:export-xdpi="20.607124"
     inkscape:export-ydpi="20.607124" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     d="M 246.74941,-37.595672 L 339.05855,-37.595672"
     id="path3658"
     inkscape:export-filename="C:\pas\mricron\btn\new\crosshairs.png"
     inkscape:export-xdpi="20.607124"
     inkscape:export-ydpi="20.607124" />
  <path
     style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     d="M 301.18814,-111.56132 L 301.18814,-12.743208"
     id="path3662"
     inkscape:export-filename="C:\pas\mricron\btn\new\crosshairs.png"
     inkscape:export-xdpi="20.607124"
     inkscape:export-ydpi="20.607124" />
  <path
     sodipodi:type="arc"
     style="font-size:12px;fill:url(#linearGradient3670);fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#0050fb;stroke-width:5.21357274;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
     id="path3664"
     sodipodi:cx="604.88873"
     sodipodi:cy="441.2019"
     sodipodi:rx="44.214264"
     sodipodi:ry="13.483783"
     d="M 649.103,441.2019 A 44.214264,13.483783 0 1 1 560.67447,441.2019 A 44.214264,13.483783 0 1 1 649.103,441.2019 z"
     transform="matrix(1.042553,0,0,0.882208,-202.39952,-492.90915)"
     inkscape:export-filename="C:\pas\mricron\btn\bucket24.png"
     inkscape:export-xdpi="21.807127"
     inkscape:export-ydpi="21.807127" />
  <path
     style="fill:#fb4100;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 388.75413,-92.159361 C 398.21827,-114.55406 414.50883,-97.128541 426.45531,-96.134721 C 436.85027,-96.631621 437.93631,-123.46525 457.64022,-118.99296 C 466.79401,-116.34273 464.31845,-65.226501 451.12398,-55.884321 C 432.66039,-43.308281 379.28998,-70.261601 388.75413,-92.159361 z"
     id="path3666"
     sodipodi:nodetypes="cccsz"
     inkscape:export-filename="C:\pas\mricron\btn\bucket24.png"
     inkscape:export-xdpi="21.807127"
     inkscape:export-ydpi="21.807127" />
  <path
     style="font-size:12px;fill:url(#radialGradient3672);fill-opacity:0.98999999000000005;stroke:#0c1dfb;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.98999999000000005;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 382.47734,-101.30596 C 393.1275,-92.738341 418.28528,-92.083351 431.66947,-91.877801 C 445.05365,-91.672251 468.18046,-94.547801 474.63455,-102.46773 L 466.32688,-31.133981 C 455.47903,-26.010751 443.69045,-22.870101 430.02041,-23.233561 C 416.35037,-23.597011 399.23099,-25.804731 389.95102,-30.824961 L 382.47734,-101.30596 z"
     id="path3668"
     sodipodi:nodetypes="czcczcc"
     inkscape:export-xdpi="21.807127"
     inkscape:export-ydpi="21.807127"
     inkscape:export-filename="C:\pas\mricron\btn\bucket24.png" />
  <rect
     style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.89315641;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
     id="rect3682"
     width="19.872375"
     height="19.872383"
     x="575.12762"
     y="-127.5102"
     inkscape:export-filename="C:\pas\mricron\btn\hires.png"
     inkscape:export-xdpi="19.659172"
     inkscape:export-ydpi="19.659172" />
  <rect
     style="font-size:12px;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
     id="rect3684"
     width="106.29922"
     height="106.29922"
     x="375"
     y="6.0629654" />
  <rect
     style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.89315641;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
     id="rect3700"
     width="19.872375"
     height="19.872383"
     x="595.12762"
     y="-107.5102"
     inkscape:export-filename="C:\pas\mricron\btn\hires.png"
     inkscape:export-xdpi="19.659172"
     inkscape:export-ydpi="19.659172" />
  <rect
     style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.89315641;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
     id="rect3702"
     width="19.872375"
     height="19.872383"
     x="615.12762"
     y="-87.510201"
     inkscape:export-filename="C:\pas\mricron\btn\hires.png"
     inkscape:export-xdpi="19.659172"
     inkscape:export-ydpi="19.659172" />
  <rect
     style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.89315641;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
     id="rect3704"
     width="19.872375"
     height="19.872383"
     x="595.12762"
     y="-67.637817"
     inkscape:export-filename="C:\pas\mricron\btn\hires.png"
     inkscape:export-xdpi="19.659172"
     inkscape:export-ydpi="19.659172" />
  <rect
     style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.89315641;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
     id="rect3706"
     width="19.872375"
     height="19.872383"
     x="575.12762"
     y="-47.637817"
     inkscape:export-filename="C:\pas\mricron\btn\hires.png"
     inkscape:export-xdpi="19.659172"
     inkscape:export-ydpi="19.659172" />
  <path
     style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 625,-127.63782 L 665,-77.637811 L 625,-27.637811 L 645,-27.637811 L 685,-77.637811 L 645,-127.63782 L 625,-127.63782 z"
     id="path3708"
     inkscape:export-filename="C:\pas\mricron\btn\hires.png"
     inkscape:export-xdpi="19.659172"
     inkscape:export-ydpi="19.659172" />
  <rect
     style="fill:#9999ff;fill-rule:evenodd;stroke-width:0.84895535pt"
     id="rect2871"
     width="42.038872"
     height="31.251434"
     x="545.31689"
     y="-195.52676"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:#9999ff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
     d="M 557.83671,-186.4414 C 567.83671,-185.60807 576.58671,-181.85807 582.21171,-173.3164 C 587.83671,-164.14973 587.21171,-163.3164 587.21171,-163.3164 C 587.21171,-163.3164 588.46171,-154.5664 576.58671,-153.3164 C 564.71171,-152.6914 551.40365,-164.90111 537.65365,-164.90111 C 524.52865,-164.90111 519.71171,-166.94616 521.58671,-178.3164 C 523.46171,-190.12858 536.89921,-215.8164 559.71171,-216.4414 C 582.52421,-217.6914 603.14921,-210.29557 611.58671,-195.1914 C 619.39921,-180.08723 615.64921,-168.3164 610.96171,-164.5664 C 606.27421,-160.8164 595.54504,-165.8164 587.21171,-163.9414"
     id="path2873"
     sodipodi:nodetypes="czzzzzzzzz"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875"
     d="M 573.46171,-165.1914 C 565.96171,-167.6914 562.83671,-167.6914 555.96171,-173.9414 C 549.08671,-180.1914 547.83671,-186.4414 547.83671,-186.4414"
     id="path2875"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875"
     d="M 565.33671,-215.8164 C 565.96171,-203.3164 572.76088,-195.60844 570.55118,-185.44378"
     id="path2877"
     sodipodi:nodetypes="cc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875"
     d="M 578.74147,-208.83942 C 593.33353,-209.08267 595.94861,-206.46759 598.04068,-195.48425 C 603.79386,-198.62235 606.79068,-196.86243 608.04068,-184.36243"
     id="path2879"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875"
     d="M 588.05377,-188.09934 C 588.05377,-188.09934 578.79251,-169.19769 588.16751,-169.82269 C 597.54251,-170.44769 593.88673,-170.39677 596.53838,-171.50162"
     id="path2881"
     sodipodi:nodetypes="ccc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875"
     d="M 533.5768,-189.17156 C 533.5768,-189.17156 536.72404,-196.75776 544.7013,-201.20342 C 552.67855,-205.12607 558.17533,-207.90061 558.3963,-213.42488 L 557.73339,-207.75547 C 557.00552,-201.53054 566.37002,-194.56728 563.3963,-187.8627"
     id="path2883"
     sodipodi:nodetypes="czczz"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875"
     d="M 574.72596,-216.56604 C 579.99135,-206.27575 576.1696,-191.04684 580.14708,-180.21927"
     id="path2885"
     sodipodi:nodetypes="cc"
     inkscape:export-filename="C:\pas\mricron\btn\icon.png"
     inkscape:export-xdpi="58.834469"
     inkscape:export-ydpi="58.834469" />
  <path
     style="fill:#000054;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 870,132.36218 C 866.61793,124.94433 859.97584,137.72984 855.14961,148.77715 C 850.32338,160.2067 844.9948,188.47513 848.75437,193.1202 C 852.51394,197.76526 858.0029,194.69751 861.76246,190.58278 C 865.52203,186.46805 863.61758,165.53131 864.80384,156.41792 C 865.6776,147.30453 873.38207,139.78004 870,132.36218 z"
     id="path3649"
     sodipodi:nodetypes="czzzzz"
     inkscape:export-filename="C:\pas\mricron\btn\new\ellipse.png"
     inkscape:export-xdpi="23.179588"
     inkscape:export-ydpi="23.179588" />
  <path
     style="fill:url(#linearGradient3657);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 856.00626,155.36716 C 854.60628,159.47024 852.97459,162.2925 851.80632,167.67638 C 850.63806,173.24655 848.96996,187.02311 849.88002,189.28687 C 850.79009,191.55063 852.11878,190.05557 853.02884,188.05026 C 853.9389,186.04496 853.4779,175.84149 853.76505,171.4001 C 853.97656,166.9587 855.52747,162.66312 856.00626,155.36716 z"
     id="path3651"
     sodipodi:nodetypes="czzzzc"
     inkscape:export-filename="C:\pas\mricron\btn\new\ellipse.png"
     inkscape:export-xdpi="23.179588"
     inkscape:export-ydpi="23.179588" />
  <path
     style="font-size:12px;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
     d="M 857.97619,215.57813 C 844.3558,212.00098 843.40365,204.59734 846.91512,199.60457 C 848.2391,198.20555 851.35258,196.06169 853.16005,196.19161 C 854.96752,196.32154 856.52575,197.23726 858.84701,198.89969 C 864.11454,202.84954 854.18458,204.56507 857.97619,215.57813 z"
     id="path3653"
     sodipodi:nodetypes="ccszc"
     inkscape:export-filename="C:\pas\mricron\btn\new\ellipse.png"
     inkscape:export-xdpi="23.179588"
     inkscape:export-ydpi="23.179588" />
  <path
     style="font-size:12px;fill:url(#linearGradient3659);fill-rule:evenodd;stroke-width:1pt"
     d="M 853.52567,210.97739 C 850.26772,210.15575 848.73346,210.31315 846.72057,205.38749 C 844.70768,200.77433 849.71216,199.25861 850.30644,198.63289 C 850.90072,198.00716 851.76836,198.42041 852.36264,198.9747 C 852.95692,199.52898 852.65588,202.34933 852.84339,203.57697 C 852.98151,204.80462 850.71302,206.92946 853.52567,210.97739 z"
     id="path3655"
     sodipodi:nodetypes="czzzzc"
     inkscape:export-filename="C:\pas\mricron\btn\new\ellipse.png"
     inkscape:export-xdpi="23.179588"
     inkscape:export-ydpi="23.179588" />
  <path
     style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.17575848000000010px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 390.65262,1036.0046 C 384.32806,1048.6538 406.61585,1048.812 395.65262,1051.0046 C 370.65262,1056.0046 308.87744,994.76187 378.01952,968.07569 C 382.21768,966.45536 370.65262,961.00465 370.65262,961.00465 L 390.65262,966.00465 L 382.4278,982.48397 C 382.4278,982.48397 383.01418,970.71107 380.38642,972.15844 C 327.10227,1001.5074 370.65262,1026.0046 390.65262,1036.0046 z"
     id="path2868"
     sodipodi:nodetypes="csscccsc"
     inkscape:export-filename="C:\pas\mricron\btn\new\refresh.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864" />
  <path
     style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.17575848000000010px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     d="M 398.44156,972.80163 C 404.76612,960.15252 382.47833,959.99427 393.44156,957.80163 C 418.44156,952.80163 480.21674,1014.0444 411.07466,1040.7306 C 406.8765,1042.3509 418.44156,1047.8016 418.44156,1047.8016 L 398.44156,1042.8016 L 406.66638,1026.3223 C 406.66638,1026.3223 406.08,1038.0952 408.70776,1036.6478 C 461.99191,1007.2989 418.44156,982.80163 398.44156,972.80163 z"
     id="path2884"
     sodipodi:nodetypes="csscccsc"
     inkscape:export-filename="C:\pas\mricron\btn\new\refresh.png"
     inkscape:export-xdpi="22.14864"
     inkscape:export-ydpi="22.14864" />
</svg>