aboutsummaryrefslogtreecommitdiff
path: root/subsonic-graphics/android-buttons/media-buttons.svg
blob: 15bddfc115e0a543f69f08d9ac20ab1d3c9e3a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://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"
   width="286.34174"
   height="50.308388"
   id="svg9553"
   sodipodi:version="0.32"
   inkscape:version="0.47 r22583"
   version="1.0"
   sodipodi:docname="media-buttons.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape">
  <defs
     id="defs9555">
    <linearGradient
       id="linearGradient4773">
      <stop
         id="stop4775"
         offset="0"
         style="stop-color:#bac0b3;stop-opacity:1;" />
      <stop
         id="stop4777"
         offset="1"
         style="stop-color:#7d7878;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4606">
      <stop
         id="stop4608"
         offset="0"
         style="stop-color:#969696;stop-opacity:1;" />
      <stop
         id="stop4610"
         offset="1"
         style="stop-color:#393939;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient7428">
      <stop
         style="stop-color:#d385cd;stop-opacity:1;"
         offset="0"
         id="stop7430" />
      <stop
         style="stop-color:#d385cd;stop-opacity:0;"
         offset="1"
         id="stop7432" />
    </linearGradient>
    <marker
       inkscape:stockid="TriangleOutM"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="TriangleOutM"
       style="overflow:visible">
      <path
         id="path4732"
         d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
         transform="scale(0.4)" />
    </marker>
    <marker
       inkscape:stockid="TriangleOutS"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="TriangleOutS"
       style="overflow:visible">
      <path
         id="path4735"
         d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
         transform="scale(0.2)" />
    </marker>
    <marker
       inkscape:stockid="TriangleOutL"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="TriangleOutL"
       style="overflow:visible">
      <path
         id="path4729"
         d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
         transform="scale(0.8)" />
    </marker>
    <marker
       inkscape:stockid="Arrow2Send"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="Arrow2Send"
       style="overflow:visible;">
      <path
         id="path4619"
         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
         transform="scale(0.3) rotate(180) translate(-2.3,0)" />
    </marker>
    <marker
       inkscape:stockid="Arrow2Lend"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="Arrow2Lend"
       style="overflow:visible;">
      <path
         id="path4607"
         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
         transform="scale(1.1) rotate(180) translate(1,0)" />
    </marker>
    <marker
       inkscape:stockid="Arrow2Mend"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="Arrow2Mend"
       style="overflow:visible;">
      <path
         id="path4613"
         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
         transform="scale(0.6) rotate(180) translate(0,0)" />
    </marker>
    <marker
       inkscape:stockid="Arrow1Send"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="Arrow1Send"
       style="overflow:visible;">
      <path
         id="path4601"
         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
         transform="scale(0.2) rotate(180) translate(6,0)" />
    </marker>
    <marker
       inkscape:stockid="Arrow1Lend"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="Arrow1Lend"
       style="overflow:visible;">
      <path
         id="path4589"
         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
         transform="scale(0.8) rotate(180) translate(12.5,0)" />
    </marker>
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 25.154194 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="286.34174 : 25.154194 : 1"
       inkscape:persp3d-origin="143.17087 : 16.769463 : 1"
       id="perspective3615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient8412"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,-163.16902,170.10558)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient8410"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       id="linearGradient7704">
      <stop
         id="stop7706"
         offset="0"
         style="stop-color:#f5ce82;stop-opacity:1;" />
      <stop
         id="stop7708"
         offset="1"
         style="stop-color:#ab722a;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7704"
       id="radialGradient8408"
       gradientUnits="userSpaceOnUse"
       cx="806.78564"
       cy="331.073"
       fx="806.78564"
       fy="331.073"
       r="25.104692" />
    <linearGradient
       id="linearGradient7710">
      <stop
         id="stop7712"
         offset="0"
         style="stop-color:#fff2c9;stop-opacity:1;" />
      <stop
         id="stop7714"
         offset="1"
         style="stop-color:#ffd364;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7710"
       id="radialGradient8406"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20664"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4041691,-0.5488223,0.548827,1.4041569,-478.68844,681.21545)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20659"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20717"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2160944,0,0,1.2160944,-115.01063,-70.410931)"
       x1="442.75"
       y1="196.61053"
       x2="435.5"
       y2="188.11053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20715"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2160944,0,0,1.2160944,-115.31465,-70.714955)"
       x1="421.25"
       y1="169.11053"
       x2="433"
       y2="183.11053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient17830"
       id="linearGradient19806"
       x1="534.20374"
       y1="-76.368515"
       x2="532.73431"
       y2="-2.4499238"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12840"
       id="radialGradient20641"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20311"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4041691,-0.5488223,0.548827,1.4041569,-682.5238,681.21545)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20306"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient19289"
       gradientUnits="userSpaceOnUse"
       x1="387.125"
       y1="8.1730347"
       x2="397.9375"
       y2="17.048035" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient19287"
       gradientUnits="userSpaceOnUse"
       x1="409.23804"
       y1="-24.578386"
       x2="424.88281"
       y2="-12.999512" />
    <linearGradient
       id="linearGradient19119">
      <stop
         style="stop-color:#a0a0a0;stop-opacity:1;"
         offset="0"
         id="stop19121" />
      <stop
         style="stop-color:#cfcfcf;stop-opacity:1;"
         offset="1"
         id="stop19123" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient19119"
       id="linearGradient19285"
       gradientUnits="userSpaceOnUse"
       x1="374.625"
       y1="40.735535"
       x2="338"
       y2="23.735535" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20959"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="195.9496"
       x2="283.5498"
       y2="36.145363" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20957"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="193.69989"
       x2="283.5498"
       y2="38.395073" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20955"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="193.69989"
       x2="283.5498"
       y2="38.395073" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20953"
       gradientUnits="userSpaceOnUse"
       x1="283.47375"
       y1="192.81271"
       x2="283.47375"
       y2="38.23159" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20951"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="193.98363"
       x2="283.5498"
       y2="37.980637" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20949"
       gradientUnits="userSpaceOnUse"
       x1="284.53833"
       y1="194.66241"
       x2="284.53833"
       y2="37.334942" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20947"
       gradientUnits="userSpaceOnUse"
       x1="282.41711"
       y1="195.94958"
       x2="282.41711"
       y2="35.980045" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20945"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="211.7858"
       x2="283.5498"
       y2="19.853998" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20943"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="194.20903"
       x2="283.5498"
       y2="37.885929" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20941"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.88818"
       x2="283.5498"
       y2="192.20677" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20939"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.887543"
       x2="283.5498"
       y2="192.20741" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20937"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.889053"
       x2="283.5498"
       y2="192.2059" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient16839">
      <stop
         style="stop-color:#02ff00;stop-opacity:1;"
         offset="0"
         id="stop16841" />
      <stop
         style="stop-color:#02ff00;stop-opacity:0;"
         offset="1"
         id="stop16843" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient20935"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.887054"
       x2="283.5498"
       y2="192.2079" />
    <linearGradient
       id="linearGradient20906">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop20908" />
      <stop
         style="stop-color:#000000;stop-opacity:0.50943398;"
         offset="1"
         id="stop20910" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient20906"
       id="linearGradient20933"
       gradientUnits="userSpaceOnUse"
       x1="273.67322"
       y1="61.370007"
       x2="273.67322"
       y2="218.6286" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient17830"
       id="linearGradient19798"
       x1="523.26031"
       y1="-76.368515"
       x2="523.56433"
       y2="-2.4499066"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12840"
       id="radialGradient20288"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9656"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4041691,-0.5488223,0.548827,1.4041569,-1079.4341,306.30791)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9651"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9777"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7052696,0,0,0.9188911,-69.607083,47.46939)"
       x1="-182.95052"
       y1="124.43748"
       x2="-184.61259"
       y2="164.07884" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9775"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7375599,0.4847377,0.2431105,-0.3733385,-72.214023,380.83622)"
       x1="-86.334091"
       y1="151.50467"
       x2="-87.178772"
       y2="182.68356" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9773"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7668004,0.4370153,-0.2222323,0.386131,20.499849,228.93792)"
       x1="-86.699539"
       y1="164.99394"
       x2="-86.722046"
       y2="197.74132" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5151"
       id="linearGradient9771"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,76.635418,151.93436)"
       x1="-115"
       y1="182.61053"
       x2="-54"
       y2="181.57501" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9769"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7885752,-0.3963768,-0.2017654,-0.3972091,20.906044,172.00667)"
       x1="-86.334091"
       y1="151.50467"
       x2="-87.178772"
       y2="182.68356" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9767"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7618666,-0.445561,0.2232831,0.3855243,-64.284804,15.764956)"
       x1="-86.699539"
       y1="164.99394"
       x2="-86.722046"
       y2="197.74132" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5151"
       id="linearGradient9765"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8660254,-0.5,0.5,0.8660254,-102.90407,-71.351656)"
       x1="-115"
       y1="182.61053"
       x2="-54"
       y2="181.57501" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9763"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8811145,5.101524e-2,2.3870616e-2,-0.4448759,0.5435352,288.65955)"
       x1="-86.334091"
       y1="151.50467"
       x2="-87.178772"
       y2="182.68356" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9761"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8825763,-4.9338685e-3,6.0664503e-4,0.4455154,4.8869551,110.75483)"
       x1="-86.699539"
       y1="164.99394"
       x2="-86.722046"
       y2="197.74132" />
    <linearGradient
       id="linearGradient5151">
      <stop
         style="stop-color:#b9b69f;stop-opacity:1;"
         offset="0"
         id="stop5153" />
      <stop
         style="stop-color:#d3cb8b;stop-opacity:1;"
         offset="1"
         id="stop5155" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5151"
       id="linearGradient9759"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(15,16)"
       x1="-115"
       y1="182.61053"
       x2="-54"
       y2="181.57501" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4978"
       id="linearGradient9757"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-14.570823,35.310549)"
       x1="-189.96875"
       y1="122.9375"
       x2="-169.5625"
       y2="203.03125" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9755"
       gradientUnits="userSpaceOnUse"
       x1="-180.5"
       y1="140.86053"
       x2="-190"
       y2="193.36053" />
    <linearGradient
       id="linearGradient4937">
      <stop
         style="stop-color:#8f825c;stop-opacity:1;"
         offset="0"
         id="stop4939" />
      <stop
         style="stop-color:#dabf70;stop-opacity:1;"
         offset="1"
         id="stop4941" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4937"
       id="linearGradient9753"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-12.833386,35.310549)"
       x1="-156.46875"
       y1="202.78125"
       x2="-183.84375"
       y2="133.78125" />
    <linearGradient
       id="linearGradient4972">
      <stop
         id="stop4974"
         offset="0"
         style="stop-color:#6c6c6c;stop-opacity:1;" />
      <stop
         id="stop4976"
         offset="1"
         style="stop-color:#000000;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4972"
       id="linearGradient9751"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(12,14)"
       x1="-181.55379"
       y1="239.74805"
       x2="-196.80051"
       y2="131.49805" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9749"
       gradientUnits="userSpaceOnUse"
       x1="-140.11111"
       y1="173.50975"
       x2="-167.44444"
       y2="212.28461" />
    <linearGradient
       id="linearGradient4996">
      <stop
         style="stop-color:#c6c6c6;stop-opacity:1;"
         offset="0"
         id="stop4998" />
      <stop
         style="stop-color:#939393;stop-opacity:1;"
         offset="1"
         id="stop5000" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4996"
       id="radialGradient9747"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.809506,0,31.097546)"
       cx="-144.49149"
       cy="160.75241"
       fx="-144.49149"
       fy="160.75241"
       r="27.839727" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9745"
       gradientUnits="userSpaceOnUse"
       x1="-164.33012"
       y1="258.52438"
       x2="-164.33012"
       y2="192.41077" />
    <linearGradient
       id="linearGradient4978">
      <stop
         style="stop-color:#969696;stop-opacity:1;"
         offset="0"
         id="stop4980" />
      <stop
         style="stop-color:#393939;stop-opacity:1;"
         offset="1"
         id="stop4982" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4978"
       id="radialGradient9743"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.4518403,0.363005,-0.7115039,2.8626721,329.21397,-275.78253)"
       cx="-136.91986"
       cy="189.14322"
       fx="-136.91986"
       fy="189.14322"
       r="35.087574" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient17830"
       id="linearGradient20791"
       x1="533.89978"
       y1="-76.368515"
       x2="534.20374"
       y2="-2.3821282"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12840"
       id="radialGradient9633"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient17255"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4041691,-0.5488223,0.548827,1.4041569,-335.99333,403.21344)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient17253"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12794"
       id="radialGradient17251"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,3.2097274,0,60.747573)"
       cx="268.74478"
       cy="-27.49098"
       fx="268.74478"
       fy="-27.49098"
       r="6.3026948" />
    <linearGradient
       id="linearGradient12794">
      <stop
         style="stop-color:#7ea1ff;stop-opacity:1;"
         offset="0"
         id="stop12796" />
      <stop
         style="stop-color:#7ea1ff;stop-opacity:0;"
         offset="1"
         id="stop12798" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12794"
       id="radialGradient17249"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.9914286,0,0.1820154)"
       cx="236.88445"
       cy="21.23526"
       fx="236.88445"
       fy="21.23526"
       r="12.26" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient17247"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2461894,0,0,0.2461894,560.77892,-56.94159)"
       x1="-144.5"
       y1="94.110535"
       x2="-81"
       y2="-21.389465" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient17245"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2461894,0,0,0.2461894,560.77892,-56.94159)"
       x1="-113.5"
       y1="-118.88947"
       x2="-190"
       y2="110.11053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient17243"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2461894,0,0,0.2461894,560.77892,-56.94159)"
       x1="-213.5"
       y1="224.61053"
       x2="-229.60237"
       y2="193.61053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient17241"
       gradientUnits="userSpaceOnUse"
       x1="-281.00076"
       y1="72.685898"
       x2="-256.28723"
       y2="173.73639" />
    <linearGradient
       id="linearGradient11765">
      <stop
         style="stop-color:#172d61;stop-opacity:1;"
         offset="0"
         id="stop11767" />
      <stop
         style="stop-color:#4f68b9;stop-opacity:1;"
         offset="1"
         id="stop11769" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient11765"
       id="linearGradient17239"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-263.7364,35.465201)"
       x1="525.42212"
       y1="-80.734558"
       x2="529.08521"
       y2="9.0154457" />
    <linearGradient
       id="linearGradient8850">
      <stop
         style="stop-color:#0073f0;stop-opacity:1;"
         offset="0"
         id="stop8852" />
      <stop
         style="stop-color:#1b5dba;stop-opacity:1;"
         offset="1"
         id="stop8854" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8850"
       id="radialGradient17237"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.1011018,3.5243514e-2,-0.2092908,0.6003848,295.1102,-57.431429)"
       cx="-232.62001"
       cy="152.02754"
       fx="-232.62001"
       fy="152.02754"
       r="131.3125" />
    <linearGradient
       id="linearGradient17830">
      <stop
         style="stop-color:#226d81;stop-opacity:1;"
         offset="0"
         id="stop17832" />
      <stop
         style="stop-color:#004a53;stop-opacity:1;"
         offset="1"
         id="stop17834" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient17830"
       id="linearGradient19790"
       x1="519.61255"
       y1="-76.368515"
       x2="520.22052"
       y2="-2.4499066"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="linearGradient12840">
      <stop
         style="stop-color:#c4f6ff;stop-opacity:1;"
         offset="0"
         id="stop12842" />
      <stop
         style="stop-color:#0098b5;stop-opacity:1;"
         offset="1"
         id="stop12844" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12840"
       id="radialGradient17235"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9542"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8536894,-0.3336691,0.3336691,0.8536894,-61.771803,30.600315)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient9540"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <filter
       inkscape:collect="always"
       id="filter6084">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.54827"
         id="feGaussianBlur6086" />
    </filter>
    <linearGradient
       id="linearGradient10611">
      <stop
         style="stop-color:#286a27;stop-opacity:1;"
         offset="0"
         id="stop10613" />
      <stop
         style="stop-color:#264826;stop-opacity:1;"
         offset="1"
         id="stop10615" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10611"
       id="linearGradient10617"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="linearGradient5004">
      <stop
         style="stop-color:#8fe644;stop-opacity:1;"
         offset="0"
         id="stop5006" />
      <stop
         style="stop-color:#6a9c1f;stop-opacity:1;"
         offset="1"
         id="stop5008" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient9538"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10601"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,40.392578,169.9423)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10599"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <filter
       inkscape:collect="always"
       x="-0.10167765"
       width="1.2033553"
       y="-0.098376818"
       height="1.1967536"
       id="filter10685">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.75759177"
         id="feGaussianBlur10687" />
    </filter>
    <linearGradient
       id="linearGradient5431">
      <stop
         style="stop-color:#862c2c;stop-opacity:1;"
         offset="0"
         id="stop5433" />
      <stop
         style="stop-color:#621b1b;stop-opacity:1;"
         offset="1"
         id="stop5435" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5431"
       id="linearGradient9550"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       id="linearGradient5415">
      <stop
         style="stop-color:#ffdcdc;stop-opacity:1;"
         offset="0"
         id="stop5417" />
      <stop
         style="stop-color:#cf7575;stop-opacity:1;"
         offset="1"
         id="stop5419" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5415"
       id="radialGradient9548"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="347.26965"
       fx="814.5"
       fy="347.26965"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10551"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,-163.16902,170.10558)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10549"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient9554"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient9552"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10793"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,-163.16902,170.10558)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10791"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <filter
       inkscape:collect="always"
       x="-0.12886298"
       width="1.257726"
       y="-0.11280546"
       height="1.2256109"
       id="filter10591">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.0405015"
         id="feGaussianBlur10593" />
    </filter>
    <linearGradient
       id="linearGradient6468">
      <stop
         style="stop-color:#5e5e5e;stop-opacity:1;"
         offset="0"
         id="stop6470" />
      <stop
         style="stop-color:#363636;stop-opacity:1;"
         offset="1"
         id="stop6472" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient10789"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       id="linearGradient6460">
      <stop
         style="stop-color:#dedede;stop-opacity:1;"
         offset="0"
         id="stop6462" />
      <stop
         style="stop-color:#9d9d9d;stop-opacity:1;"
         offset="1"
         id="stop6464" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient10787"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10828"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3288094,-0.128299,0.1285169,0.3282518,124.9525,158.42572)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient10826"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       id="linearGradient7519">
      <stop
         style="stop-color:#428aa5;stop-opacity:1;"
         offset="0"
         id="stop7521" />
      <stop
         style="stop-color:#2b657a;stop-opacity:1;"
         offset="1"
         id="stop7523" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7519"
       id="linearGradient9536"
       gradientUnits="userSpaceOnUse"
       x1="817.56848"
       y1="363.39774"
       x2="817.56848"
       y2="312.36218" />
    <linearGradient
       id="linearGradient7511">
      <stop
         style="stop-color:#e4f8ff;stop-opacity:1;"
         offset="0"
         id="stop7513" />
      <stop
         style="stop-color:#85c1d7;stop-opacity:1;"
         offset="1"
         id="stop7515" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7511"
       id="radialGradient9534"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.90677"
       fx="814.5"
       fy="346.90677"
       r="25.5"
       gradientTransform="matrix(0.8944511,0,0,0.8944511,85.969598,36.615636)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient7231"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3439767,-0.1342171,0.1344451,0.3433933,684.17302,7.4807604)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient7226"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient30764"
       id="linearGradient7224"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient30756"
       id="radialGradient7222"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="347.26965"
       fx="814.5"
       fy="347.26965"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient11254"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3439767,-0.1342171,0.1344451,0.3433933,724.61244,-58.963037)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient11252"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient30764"
       id="linearGradient11250"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient30756"
       id="radialGradient11248"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="347.26965"
       fx="814.5"
       fy="347.26965"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient14222"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3439767,-0.1342171,0.1344451,0.3433933,741.16074,-67.085577)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient14220"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       id="linearGradient30764">
      <stop
         style="stop-color:#0b20c7;stop-opacity:1;"
         offset="0"
         id="stop30766" />
      <stop
         style="stop-color:#26318d;stop-opacity:1;"
         offset="1"
         id="stop30768" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient30764"
       id="linearGradient14218"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       id="linearGradient30756">
      <stop
         style="stop-color:#a2b7ff;stop-opacity:1;"
         offset="0"
         id="stop30758" />
      <stop
         style="stop-color:#4c54ce;stop-opacity:1;"
         offset="1"
         id="stop30760" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient30756"
       id="radialGradient14216"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="347.26965"
       fx="814.5"
       fy="347.26965"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient30526"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5124863,-0.1999683,0.200308,0.5116171,213.5464,-71.288195)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       id="linearGradient5037">
      <stop
         id="stop5039"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop5041"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient30511"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <filter
       inkscape:collect="always"
       x="-0.12895963"
       width="1.2579193"
       y="-0.11220445"
       height="1.2244089"
       id="filter31539">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.1173853"
         id="feGaussianBlur31541" />
    </filter>
    <linearGradient
       id="linearGradient9537">
      <stop
         style="stop-color:#c2ab45;stop-opacity:1;"
         offset="0"
         id="stop9539" />
      <stop
         style="stop-color:#8c7d3f;stop-opacity:1;"
         offset="1"
         id="stop9541" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9537"
       id="linearGradient30509"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       id="linearGradient9529">
      <stop
         style="stop-color:#f5e382;stop-opacity:1;"
         offset="0"
         id="stop9531" />
      <stop
         style="stop-color:#c3af3f;stop-opacity:1;"
         offset="1"
         id="stop9533" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9529"
       id="radialGradient30507"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20430"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2160944,0,0,1.2160944,-115.31465,-70.714955)"
       x1="421.25"
       y1="169.11053"
       x2="433"
       y2="183.11053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20432"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2160944,0,0,1.2160944,-115.01063,-70.410931)"
       x1="442.75"
       y1="196.61053"
       x2="435.5"
       y2="188.11053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20763"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20765"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4041691,-0.5488223,0.548827,1.4041569,-682.5238,681.21545)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8850"
       id="radialGradient20816"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.1011018,3.5243514e-2,-0.2092908,0.6003848,295.1102,-57.431429)"
       cx="-232.62001"
       cy="152.02754"
       fx="-232.62001"
       fy="152.02754"
       r="131.3125" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient11765"
       id="linearGradient20818"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-263.7364,35.465201)"
       x1="525.42212"
       y1="-80.734558"
       x2="529.08521"
       y2="9.0154457" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20820"
       gradientUnits="userSpaceOnUse"
       x1="-281.00076"
       y1="72.685898"
       x2="-256.28723"
       y2="173.73639" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20822"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2461894,0,0,0.2461894,560.77892,-56.94159)"
       x1="-213.5"
       y1="224.61053"
       x2="-229.60237"
       y2="193.61053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20824"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2461894,0,0,0.2461894,560.77892,-56.94159)"
       x1="-113.5"
       y1="-118.88947"
       x2="-190"
       y2="110.11053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20826"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2461894,0,0,0.2461894,560.77892,-56.94159)"
       x1="-144.5"
       y1="94.110535"
       x2="-81"
       y2="-21.389465" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12794"
       id="radialGradient20828"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.9914286,0,0.1820154)"
       cx="236.88445"
       cy="21.23526"
       fx="236.88445"
       fy="21.23526"
       r="12.26" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient12794"
       id="radialGradient20830"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,3.2097274,0,60.747573)"
       cx="268.74478"
       cy="-27.49098"
       fx="268.74478"
       fy="-27.49098"
       r="6.3026948" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20832"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient20834"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4041691,-0.5488223,0.548827,1.4041569,-335.99333,403.21344)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient20909"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient20911"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient20915"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient20917"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient20906"
       id="linearGradient22093"
       gradientUnits="userSpaceOnUse"
       x1="273.67322"
       y1="61.370007"
       x2="273.67322"
       y2="218.6286" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22095"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.887054"
       x2="283.5498"
       y2="192.2079" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22097"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.889053"
       x2="283.5498"
       y2="192.2059" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22099"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.887543"
       x2="283.5498"
       y2="192.20741" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22101"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.88818"
       x2="283.5498"
       y2="192.20677" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22103"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="194.20903"
       x2="283.5498"
       y2="37.885929" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22105"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="211.7858"
       x2="283.5498"
       y2="19.853998" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22107"
       gradientUnits="userSpaceOnUse"
       x1="282.41711"
       y1="195.94958"
       x2="282.41711"
       y2="35.980045" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22109"
       gradientUnits="userSpaceOnUse"
       x1="284.53833"
       y1="194.66241"
       x2="284.53833"
       y2="37.334942" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22111"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="193.98363"
       x2="283.5498"
       y2="37.980637" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22113"
       gradientUnits="userSpaceOnUse"
       x1="283.47375"
       y1="192.81271"
       x2="283.47375"
       y2="38.23159" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22115"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="193.69989"
       x2="283.5498"
       y2="38.395073" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22117"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="193.69989"
       x2="283.5498"
       y2="38.395073" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient22119"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="195.9496"
       x2="283.5498"
       y2="36.145363" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient23210"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient23212"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4978"
       id="radialGradient23214"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.4518403,0.363005,-0.7115039,2.8626721,329.21397,-275.78253)"
       cx="-136.91986"
       cy="189.14322"
       fx="-136.91986"
       fy="189.14322"
       r="35.087574" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23216"
       gradientUnits="userSpaceOnUse"
       x1="-164.33012"
       y1="258.52438"
       x2="-164.33012"
       y2="192.41077" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4996"
       id="radialGradient23218"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.809506,0,31.097546)"
       cx="-144.49149"
       cy="160.75241"
       fx="-144.49149"
       fy="160.75241"
       r="27.839727" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23220"
       gradientUnits="userSpaceOnUse"
       x1="-140.11111"
       y1="173.50975"
       x2="-167.44444"
       y2="212.28461" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4972"
       id="linearGradient23222"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(12,14)"
       x1="-181.55379"
       y1="239.74805"
       x2="-196.80051"
       y2="131.49805" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4937"
       id="linearGradient23224"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-12.833386,35.310549)"
       x1="-156.46875"
       y1="202.78125"
       x2="-183.84375"
       y2="133.78125" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23226"
       gradientUnits="userSpaceOnUse"
       x1="-180.5"
       y1="140.86053"
       x2="-190"
       y2="193.36053" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4978"
       id="linearGradient23228"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-14.570823,35.310549)"
       x1="-189.96875"
       y1="122.9375"
       x2="-169.5625"
       y2="203.03125" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5151"
       id="linearGradient23230"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(15,16)"
       x1="-115"
       y1="182.61053"
       x2="-54"
       y2="181.57501" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23232"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8825763,-4.9338685e-3,6.0664503e-4,0.4455154,4.8869551,110.75483)"
       x1="-86.699539"
       y1="164.99394"
       x2="-86.722046"
       y2="197.74132" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23234"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8811145,5.101524e-2,2.3870616e-2,-0.4448759,0.5435352,288.65955)"
       x1="-86.334091"
       y1="151.50467"
       x2="-87.178772"
       y2="182.68356" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5151"
       id="linearGradient23236"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8660254,-0.5,0.5,0.8660254,-102.90407,-71.351656)"
       x1="-115"
       y1="182.61053"
       x2="-54"
       y2="181.57501" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23238"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7618666,-0.445561,0.2232831,0.3855243,-64.284804,15.764956)"
       x1="-86.699539"
       y1="164.99394"
       x2="-86.722046"
       y2="197.74132" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23240"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7885752,-0.3963768,-0.2017654,-0.3972091,20.906044,172.00667)"
       x1="-86.334091"
       y1="151.50467"
       x2="-87.178772"
       y2="182.68356" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5151"
       id="linearGradient23242"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,76.635418,151.93436)"
       x1="-115"
       y1="182.61053"
       x2="-54"
       y2="181.57501" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23244"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7668004,0.4370153,-0.2222323,0.386131,20.499849,228.93792)"
       x1="-86.699539"
       y1="164.99394"
       x2="-86.722046"
       y2="197.74132" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23246"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7375599,0.4847377,0.2431105,-0.3733385,-72.214023,380.83622)"
       x1="-86.334091"
       y1="151.50467"
       x2="-87.178772"
       y2="182.68356" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23248"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7052696,0,0,0.9188911,-69.607083,47.46939)"
       x1="-182.95052"
       y1="124.43748"
       x2="-184.61259"
       y2="164.07884" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23250"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient23252"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4041691,-0.5488223,0.548827,1.4041569,-1079.4341,306.30791)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient20906"
       id="linearGradient23254"
       gradientUnits="userSpaceOnUse"
       x1="273.67322"
       y1="61.370007"
       x2="273.67322"
       y2="218.6286" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient16839"
       id="linearGradient23256"
       gradientUnits="userSpaceOnUse"
       x1="283.5498"
       y1="39.887054"
       x2="283.5498"
       y2="192.2079" />
    <linearGradient
       id="linearGradient6943">
      <stop
         id="stop6945"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0.97076023;" />
      <stop
         style="stop-color:#000000;stop-opacity:0.23529412;"
         offset="0.25"
         id="stop6947" />
      <stop
         id="stop6949"
         offset="0.80000001"
         style="stop-color:#000000;stop-opacity:0.23529412;" />
      <stop
         id="stop6951"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6962">
      <stop
         id="stop6964"
         offset="0"
         style="stop-color:#000000;stop-opacity:0.23529412" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.25"
         id="stop6966" />
      <stop
         id="stop6968"
         offset="0.80000001"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6970"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient6844">
      <stop
         style="stop-color:#d3d7cf;stop-opacity:1"
         offset="0"
         id="stop6846" />
      <stop
         style="stop-color:#92948f;stop-opacity:1"
         offset="1"
         id="stop6848" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient6866">
      <stop
         style="stop-color:#eeeeec;stop-opacity:1;"
         offset="0"
         id="stop6868" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1"
         offset="1"
         id="stop6870" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient6889">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop6891" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop6893" />
    </linearGradient>
    <linearGradient
       id="linearGradient7344"
       inkscape:collect="always">
      <stop
         id="stop7346"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         id="stop7348"
         offset="1"
         style="stop-color:#92948f;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7305"
       id="linearGradient7903"
       gradientUnits="userSpaceOnUse"
       x1="-8"
       y1="38.75"
       x2="53"
       y2="8.25" />
    <linearGradient
       id="linearGradient7305">
      <stop
         id="stop7307"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.20971029"
         id="stop7313" />
      <stop
         id="stop7329"
         offset="0.34936365"
         style="stop-color:#ffffff;stop-opacity:0.81065089;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.42850056"
         id="stop7321" />
      <stop
         id="stop7323"
         offset="0.52134049"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.55746967"
         id="stop7317" />
      <stop
         id="stop7319"
         offset="0.71001518"
         style="stop-color:#ffffff;stop-opacity:0.56804734;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.74394959"
         id="stop7416" />
      <stop
         id="stop7309"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6943"
       id="linearGradient3546"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,-1,-0.014831,49)"
       x1="27.621359"
       y1="17.067398"
       x2="27.621359"
       y2="24.501715" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6962"
       id="linearGradient3548"
       gradientUnits="userSpaceOnUse"
       x1="27.621359"
       y1="17.067398"
       x2="27.621359"
       y2="24.501715" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6844"
       id="radialGradient3550"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(3.9412413,0,0,1.7888825,-91.17848,-78.304525)"
       cx="31"
       cy="33.221592"
       fx="31"
       fy="33.221592"
       r="15.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6866"
       id="linearGradient3552"
       gradientUnits="userSpaceOnUse"
       x1="27.223612"
       y1="24.577087"
       x2="38.890873"
       y2="38.719223" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6889"
       id="radialGradient3554"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,2.2315271,0,-80.153171)"
       cx="21.578125"
       cy="24.484375"
       fx="21.578125"
       fy="24.484375"
       r="3.171875" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7344"
       id="radialGradient3556"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(4.0959826,0,0,2.2938294,-81.51235,-97.515235)"
       cx="26.328426"
       cy="34.209251"
       fx="26.328426"
       fy="34.209251"
       r="15.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7305"
       id="linearGradient3558"
       gradientUnits="userSpaceOnUse"
       x1="-8"
       y1="38.75"
       x2="53"
       y2="8.25" />
    <marker
       inkscape:stockid="TriangleOutS"
       orient="auto"
       refY="0"
       refX="0"
       id="TriangleOutS-1"
       style="overflow:visible">
      <path
         inkscape:connector-curvature="0"
         id="path4735-7"
         d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
         transform="scale(0.2,0.2)" />
    </marker>
    <marker
       inkscape:stockid="TriangleOutS"
       orient="auto"
       refY="0"
       refX="0"
       id="marker7358"
       style="overflow:visible">
      <path
         inkscape:connector-curvature="0"
         id="path7360"
         d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
         transform="scale(0.2,0.2)" />
    </marker>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7305-0"
       id="linearGradient3592-4"
       gradientUnits="userSpaceOnUse"
       x1="-8"
       y1="38.75"
       x2="53"
       y2="8.25" />
    <linearGradient
       id="linearGradient7305-0">
      <stop
         id="stop7307-9"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.20971029"
         id="stop7313-4" />
      <stop
         id="stop7329-8"
         offset="0.34936365"
         style="stop-color:#ffffff;stop-opacity:0.81065089;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.42850056"
         id="stop7321-8" />
      <stop
         id="stop7323-2"
         offset="0.52134049"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.55746967"
         id="stop7317-4" />
      <stop
         id="stop7319-5"
         offset="0.71001518"
         style="stop-color:#ffffff;stop-opacity:0.56804734;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.74394959"
         id="stop7416-5" />
      <stop
         id="stop7309-1"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7428"
       id="radialGradient7434"
       cx="111.875"
       cy="-70.869751"
       fx="111.875"
       fy="-70.869751"
       r="22.1875"
       gradientTransform="matrix(1,0,0,0.73638309,0,-18.682464)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4606"
       id="linearGradient4604"
       x1="12.175"
       y1="-47.044083"
       x2="0.76250076"
       y2="-61.283749"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4606"
       id="linearGradient4674"
       gradientUnits="userSpaceOnUse"
       x1="12.175"
       y1="-47.044083"
       x2="0.76250076"
       y2="-61.283749" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient4720"
       gradientUnits="userSpaceOnUse"
       x1="12.175"
       y1="-47.044083"
       x2="0.76250076"
       y2="-61.283749" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4765"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4787"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <inkscape:perspective
       id="perspective4830"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 0.5 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4845"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.129771,0,0,1.2,-192.84543,3.5944351)"
       x1="298.75262"
       y1="-87.754219"
       x2="298.75262"
       y2="-108.26031" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4847"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.129771,0,0,1.2,-192.84543,17.797215)"
       x1="298.75262"
       y1="-87.754219"
       x2="298.75262"
       y2="-108.26031" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4849"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.129771,0,0,1.2,-193.19898,32.000027)"
       x1="298.75262"
       y1="-87.754219"
       x2="298.75262"
       y2="-108.26031" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4857"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4859"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4861"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4863"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <inkscape:perspective
       id="perspective4888"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 0.5 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective4941"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 0.5 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient5244"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient5248"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient5280"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient5284"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient5308"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient5312"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <filter
       inkscape:collect="always"
       id="filter7135"
       x="-0.50540379"
       width="2.0108076"
       y="-0.57968066"
       height="2.1593613">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="11.970575"
         id="feGaussianBlur7137" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter7199"
       x="-0.45907817"
       width="1.9181563"
       y="-0.65555483"
       height="2.3111097">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="10.076663"
         id="feGaussianBlur7201" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient4190"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10611"
       id="linearGradient4192"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4194"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4196"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8536894,-0.3336691,0.3336691,0.8536894,-61.771803,30.600315)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <filter
       inkscape:collect="always"
       id="filter4222"
       x="-0.26612913"
       width="1.5322583"
       y="-0.26612913"
       height="1.5322583">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="7.9193138"
         id="feGaussianBlur4224" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient4246"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10611"
       id="linearGradient4248"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4250"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4252"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8536894,-0.3336691,0.3336691,0.8536894,-61.771803,30.600315)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <filter
       inkscape:collect="always"
       id="filter4298"
       x="-0.14032263"
       width="1.2806453"
       y="-0.14032263"
       height="1.2806453">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="4.1756382"
         id="feGaussianBlur4300" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient4314"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient4316"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4318"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4320"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,-163.16902,170.10558)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient4484"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient4486"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4488"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4490"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,-163.16902,170.10558)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient4763"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient4766"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4768"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4770"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,-163.16902,170.10558)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6460"
       id="radialGradient4784"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="346.19507"
       fx="814.5"
       fy="346.19507"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6468"
       id="linearGradient4786"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4788"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4790"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,-163.16902,170.10558)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9529"
       id="radialGradient4899"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9537"
       id="linearGradient4901"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4903"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4905"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5124863,-0.1999683,0.200308,0.5116171,213.5464,-71.288195)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9529"
       id="radialGradient4919"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9537"
       id="linearGradient4921"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4923"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4925"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5124863,-0.1999683,0.200308,0.5116171,213.5464,-71.288195)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient4965"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10611"
       id="linearGradient4967"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4969"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4971"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8536894,-0.3336691,0.3336691,0.8536894,-61.771803,30.600315)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient4973"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10611"
       id="linearGradient4975"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4977"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient4979"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8536894,-0.3336691,0.3336691,0.8536894,-61.771803,30.600315)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5415"
       id="radialGradient5005"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="347.26965"
       fx="814.5"
       fy="347.26965"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5431"
       id="linearGradient5007"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient5009"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient5011"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,40.392578,169.9423)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5415"
       id="radialGradient5013"
       gradientUnits="userSpaceOnUse"
       cx="814.5"
       cy="347.26965"
       fx="814.5"
       fy="347.26965"
       r="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5431"
       id="linearGradient5015"
       gradientUnits="userSpaceOnUse"
       x1="814.5"
       y1="363.36218"
       x2="814.5"
       y2="312.36218" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient5017"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient5019"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3810203,-0.1486713,0.1489238,0.3803741,40.392578,169.9423)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient3436"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10611"
       id="linearGradient3438"
       gradientUnits="userSpaceOnUse"
       x1="531.00635"
       y1="-1.2397567"
       x2="531.00635"
       y2="-76.400444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient3440"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient3442"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8536894,-0.3336691,0.3336691,0.8536894,-61.771803,30.600315)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient3519"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8705582,0,0,0.8705582,68.73839,-5.1011988)"
       cx="531.03717"
       cy="-27.63166"
       fx="531.03717"
       fy="-27.63166"
       r="37.708893" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient3523"
       gradientUnits="userSpaceOnUse"
       x1="557.55371"
       y1="-39.055664"
       x2="557.55371"
       y2="-3.3467712" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5037"
       id="linearGradient3528"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.57841708,-0.22569395,0.22607743,0.57743594,176.78486,86.198337)"
       x1="629.32501"
       y1="53.939373"
       x2="632.47821"
       y2="25.596931" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4972"
       id="radialGradient4388"
       cx="704.98547"
       cy="126.67593"
       fx="704.98547"
       fy="126.67593"
       r="72.831993"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1359613,-4.2769733e-7,3.5438615e-7,0.96113667,-308.19658,-36.549412)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient3671"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient3675"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       id="linearGradient7305-2">
      <stop
         style="stop-color:#ffffff;stop-opacity:1"
         offset="0"
         id="stop7307-4" />
      <stop
         id="stop7313-5"
         offset="0.20971029"
         style="stop-color:#ffffff;stop-opacity:0;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.81065089;"
         offset="0.34936365"
         id="stop7329-88" />
      <stop
         id="stop7321-1"
         offset="0.42850056"
         style="stop-color:#ffffff;stop-opacity:0;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.52134049"
         id="stop7323-21" />
      <stop
         id="stop7317-49"
         offset="0.55746967"
         style="stop-color:#ffffff;stop-opacity:0;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.56804734;"
         offset="0.71001518"
         id="stop7319-8" />
      <stop
         id="stop7416-2"
         offset="0.74394959"
         style="stop-color:#ffffff;stop-opacity:0;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0"
         offset="1"
         id="stop7309-4" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient7344-0">
      <stop
         style="stop-color:#eeeeec;stop-opacity:1"
         offset="0"
         id="stop7346-3" />
      <stop
         style="stop-color:#92948f;stop-opacity:1"
         offset="1"
         id="stop7348-6" />
    </linearGradient>
    <linearGradient
       id="linearGradient7277">
      <stop
         id="stop7279"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1" />
      <stop
         style="stop-color:#000000;stop-opacity:0.23529412;"
         offset="0.52083331"
         id="stop7285" />
      <stop
         id="stop7287"
         offset="0.80034721"
         style="stop-color:#000000;stop-opacity:0.23529412;" />
      <stop
         id="stop7281"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7305-2"
       id="linearGradient3800"
       gradientUnits="userSpaceOnUse"
       x1="-5.6568542"
       y1="41.63604"
       x2="64.346718"
       y2="3.0987194" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7344-0"
       id="radialGradient3805"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(8.1176979,0,0,3.8042832,-189.78962,-449.38754)"
       cx="32.631359"
       cy="33.584618"
       fx="32.631359"
       fy="33.584618"
       r="16" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="radialGradient4644"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(7.4547853,-0.08838835,0.04510266,3.8040158,-166.1371,-446.49433)"
       cx="30.92425"
       cy="33.544952"
       fx="30.92425"
       fy="33.544952"
       r="16" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4650"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4773"
       id="linearGradient4652"
       gradientUnits="userSpaceOnUse"
       x1="30.382999"
       y1="-43.154999"
       x2="8.5406752"
       y2="-66.11615" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient4658"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(7.4547853,-0.08838835,0.04510266,3.8040158,-36.736562,-445.08012)"
       cx="30.92425"
       cy="33.544952"
       fx="30.92425"
       fy="33.544952"
       r="16" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="radialGradient4664"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(7.4547853,-0.08838835,0.04510266,3.8040158,77.814734,-444.37301)"
       cx="30.92425"
       cy="33.544952"
       fx="30.92425"
       fy="33.544952"
       r="16" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5004"
       id="linearGradient4692"
       x1="533.45825"
       y1="-343.19653"
       x2="567.50696"
       y2="-343.19653"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     gridtolerance="10000"
     guidetolerance="10"
     objecttolerance="10"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.4142136"
     inkscape:cx="364.26016"
     inkscape:cy="-32.795796"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1440"
     inkscape:window-height="852"
     inkscape:window-x="0"
     inkscape:window-y="0"
     showgrid="false"
     inkscape:window-maximized="0" />
  <metadata
     id="metadata9558">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title></dc:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(152.69548,4.5768367)">
    <rect
       style="fill:#000000;fill-opacity:1;stroke:none"
       id="rect5294"
       width="530.38153"
       height="309.6069"
       x="-54.108532"
       y="306.92856"
       ry="11.152792" />
    <g
       id="Play"
       transform="matrix(0.6775498,0,0,0.6764005,-394.66231,131.9683)"
       inkscape:label="Play">
      <path
         sodipodi:open="true"
         sodipodi:end="6.2625697"
         sodipodi:start="0"
         transform="translate(-49.888429,-125.27271)"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         sodipodi:ry="35.708893"
         sodipodi:rx="35.708893"
         sodipodi:cy="-39.409218"
         sodipodi:cx="531.03717"
         id="path9472"
         style="opacity:1;fill:url(#radialGradient9538);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient10617);stroke-width:2.95431924;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         sodipodi:type="arc" />
      <g
         transform="translate(-54.858701,58.82327)"
         id="g9474">
        <path
           style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.07599998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter6084)"
           d="M 523.42302,-241.28365 L 523.42302,-202.95888 L 556.35974,-221.9749 L 523.42302,-241.28365 z "
           id="path9476" />
        <path
           id="path9478"
           d="M 521.65524,-243.05142 L 521.65524,-204.72664 L 554.59196,-223.74267 L 521.65524,-243.05142 z "
           style="fill:#d6ffdc;fill-opacity:1;fill-rule:nonzero;stroke:#33543c;stroke-width:3.07619143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
      </g>
      <path
         transform="matrix(1.0149254,0,0,1.039604,-84.726682,-157.13675)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path9480"
         style="opacity:1;fill:url(#linearGradient9540);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         sodipodi:type="arc" />
      <path
         id="path9482"
         d="M 451.4166,-150.26926 C 458.5178,-134.47141 476.85907,-126.84623 493.16944,-133.22123 C 509.47092,-139.59275 517.7814,-157.61841 512.30576,-174.03735 C 507.88172,-162.93148 499.03206,-153.62636 487.02784,-148.93445 C 475.01193,-144.23796 462.20568,-145.09352 451.4166,-150.26926 z "
         style="opacity:1;fill:url(#linearGradient9542);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    </g>
    <g
       id="Stop"
       transform="matrix(1.4667816,0,0,1.4667816,-365.11514,-101.40469)"
       inkscape:export-filename="/home/akiross/University/ium/progetto/main.png"
       inkscape:export-xdpi="77.809998"
       inkscape:export-ydpi="77.809998"
       inkscape:label="Stop">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient9548);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9550);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="path9492"
         sodipodi:cx="814.5"
         sodipodi:cy="337.86218"
         sodipodi:rx="24"
         sodipodi:ry="24"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         transform="matrix(0.6789216,0,0,0.6789216,-270.23606,-146.21887)" />
      <rect
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter10685)"
         id="rect10619"
         width="14.901835"
         height="15.401835"
         x="276.29468"
         y="76.462158"
         transform="matrix(1.1509881,0,0,1.1509881,-43.467212,-13.082624)" />
      <rect
         y="75.462158"
         x="275.29468"
         height="15.401835"
         width="14.901835"
         id="rect9494"
         style="fill:#ffe4e4;fill-opacity:1;fill-rule:nonzero;stroke:#9f2b2b;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
      <path
         transform="matrix(0.4529835,0,0,0.4632112,30.182952,86.293237)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path10595"
         style="opacity:1;fill:url(#linearGradient10599);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         sodipodi:type="arc" />
      <path
         id="path10597"
         d="M 269.43985,89.353147 C 272.60927,96.392115 280.79539,99.78963 288.07506,96.949151 C 295.35077,94.110227 299.05992,86.078622 296.61603,78.762918 C 294.64148,83.711305 290.69168,87.85734 285.33393,89.947891 C 279.97097,92.040485 274.25526,91.65928 269.43985,89.353147 z "
         style="opacity:1;fill:url(#linearGradient10601);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    </g>
    <g
       id="Previous"
       transform="matrix(1.4667816,0,0,1.4667816,-243.83709,-101.81498)"
       inkscape:export-filename="/home/akiross/University/ium/progetto/main.png"
       inkscape:export-xdpi="77.809998"
       inkscape:export-ydpi="77.809998"
       inkscape:label="Previous">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient9552);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9554);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="path9504"
         sodipodi:cx="814.5"
         sodipodi:cy="337.86218"
         sodipodi:rx="24"
         sodipodi:ry="24"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         transform="matrix(0.6789216,0,0,0.6789216,-473.86862,-145.93915)" />
      <path
         id="path10553"
         d="M 87.311637,92.882314 L 75.141727,85.760664 L 75.141727,92.859774 L 72.662677,92.859774 L 72.662677,76.700848 L 75.141727,76.700848 L 75.141727,82.988634 L 87.311637,75.934598 L 87.311637,92.882314 z "
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter10591)" />
      <path
         id="path9506"
         d="M 86.4375,91.916636 L 74.26759,84.794986 L 74.26759,91.894096 L 71.78854,91.894096 L 71.78854,75.73517 L 74.26759,75.73517 L 74.26759,82.022956 L 86.4375,74.96892 L 86.4375,91.916636 z "
         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
      <path
         transform="matrix(0.4529835,0,0,0.4632112,-173.44961,86.45652)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path10533"
         style="opacity:1;fill:url(#linearGradient10549);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         sodipodi:type="arc" />
      <path
         id="path10535"
         d="M 65.878254,89.51643 C 69.047677,96.555398 77.233788,99.952909 84.513466,97.112434 C 91.789176,94.27351 95.498326,86.241905 93.054428,78.926201 C 91.079879,83.874588 87.130082,88.020623 81.772335,90.111174 C 76.409369,92.203768 70.693658,91.822563 65.878254,89.51643 z "
         style="opacity:1;fill:url(#linearGradient10551);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    </g>
    <g
       id="Next"
       transform="matrix(1.4667816,0,0,1.4667816,-7.2951659,-101.81498)"
       inkscape:export-filename="/home/akiross/University/ium/progetto/main.png"
       inkscape:export-xdpi="77.809998"
       inkscape:export-ydpi="77.809998"
       inkscape:label="Next">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient10787);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient10789);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="path10777"
         sodipodi:cx="814.5"
         sodipodi:cy="337.86218"
         sodipodi:rx="24"
         sodipodi:ry="24"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         transform="matrix(0.6789216,0,0,0.6789216,-473.86862,-145.93915)" />
      <path
         id="path10779"
         d="M 87.311637,92.882314 L 75.141727,85.760664 L 75.141727,92.859774 L 72.662677,92.859774 L 72.662677,76.700848 L 75.141727,76.700848 L 75.141727,82.988634 L 87.311637,75.934598 L 87.311637,92.882314 z "
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter10591)"
         transform="matrix(-1,0,0,1,159.45373,0)" />
      <path
         id="path10781"
         d="M 71.95557,91.916636 L 84.12548,84.794986 L 84.12548,91.894096 L 86.60453,91.894096 L 86.60453,75.73517 L 84.12548,75.73517 L 84.12548,82.022956 L 71.95557,74.96892 L 71.95557,91.916636 z "
         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
      <path
         transform="matrix(0.4529835,0,0,0.4632112,-173.44961,86.45652)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path10783"
         style="opacity:1;fill:url(#linearGradient10791);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         sodipodi:type="arc" />
      <path
         id="path10785"
         d="M 65.878254,89.51643 C 69.047677,96.555398 77.233788,99.952909 84.513466,97.112434 C 91.789176,94.27351 95.498326,86.241905 93.054428,78.926201 C 91.079879,83.874588 87.130082,88.020623 81.772335,90.111174 C 76.409369,92.203768 70.693658,91.822563 65.878254,89.51643 z "
         style="opacity:1;fill:url(#linearGradient10793);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    </g>
    <g
       id="Pause"
       transform="matrix(1.1267673,0,0,1.1286805,-617.38416,233.13169)"
       inkscape:label="Pause">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient30507);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient30509);stroke-width:2.95674324;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="path30495"
         sodipodi:cx="531.03717"
         sodipodi:cy="-39.409218"
         sodipodi:rx="35.708893"
         sodipodi:ry="35.708893"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         transform="matrix(0.6003194,0,0,0.5993012,220.68022,-164.70309)"
         sodipodi:start="0"
         sodipodi:end="6.2625697"
         sodipodi:open="true" />
      <path
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.63936031;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter31539)"
         d="M 534.22565,-198.21413 C 532.31154,-198.21413 530.77816,-196.7304 530.77816,-194.88235 L 530.77816,-179.28492 C 530.77816,-177.43687 532.31153,-175.95315 534.22565,-175.95315 C 536.13978,-175.95315 537.67312,-177.43688 537.67316,-179.28492 L 537.67316,-194.88235 C 537.67316,-196.7304 536.13976,-198.21413 534.22565,-198.21413 z M 546.48639,-198.21413 C 544.57225,-198.21413 543.03889,-196.7304 543.03889,-194.88235 L 543.03889,-179.28492 C 543.03889,-177.43687 544.57225,-175.95315 546.48639,-175.95315 C 548.40051,-175.95315 549.93386,-177.43688 549.93387,-179.28492 L 549.93387,-194.88235 C 549.93387,-196.7304 548.40051,-198.21413 546.48639,-198.21413 z "
         id="path31509"
         sodipodi:nodetypes="cccsccccccsccc" />
      <path
         sodipodi:nodetypes="cccsccccccsccc"
         id="path30519"
         d="M 533.34177,-199.45157 C 531.42766,-199.45157 529.89428,-197.96784 529.89428,-196.11979 L 529.89428,-180.52236 C 529.89428,-178.67431 531.42765,-177.19059 533.34177,-177.19059 C 535.2559,-177.19059 536.78924,-178.67432 536.78928,-180.52236 L 536.78928,-196.11979 C 536.78928,-197.96784 535.25588,-199.45157 533.34177,-199.45157 z M 545.60251,-199.45157 C 543.68837,-199.45157 542.15501,-197.96784 542.15501,-196.11979 L 542.15501,-180.52236 C 542.15501,-178.67431 543.68837,-177.19059 545.60251,-177.19059 C 547.51663,-177.19059 549.04998,-178.67432 549.04999,-180.52236 L 549.04999,-196.11979 C 549.04999,-197.96784 547.51663,-199.45157 545.60251,-199.45157 z "
         style="fill:#fffae0;fill-opacity:1;fill-rule:nonzero;stroke:#88732a;stroke-width:1.63936031;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient30511);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="path30503"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(0.6092794,0,0,0.6230359,199.76614,-183.79924)" />
      <path
         style="fill:url(#linearGradient30526);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         d="M 521.62335,-179.68355 C 525.88634,-170.21588 536.89696,-165.6461 546.68839,-169.46664 C 556.47449,-173.2851 561.46343,-184.0879 558.1763,-193.92779 C 555.52046,-187.27203 550.20784,-181.69546 543.00147,-178.88359 C 535.78809,-176.06898 528.10025,-176.58172 521.62335,-179.68355 z "
         id="path30505" />
    </g>
    <g
       id="g7411"
       transform="translate(-151.65044,-246.83552)">
      <g
         transform="translate(0,-50)"
         style="opacity:0.5"
         id="g6954">
        <path
           inkscape:connector-curvature="0"
           style="fill:url(#linearGradient3546);fill-opacity:1;fill-rule:evenodd;stroke:none"
           d="M 31.235169,37.96875 C 30.525485,37.84123 30.01085,37.221028 30.016419,36.5 l 0,-1.53125 -1.53125,0 c -2.542448,-10e-7 -5.010883,-1.068219 -6.96875,-2.8125 -0.01143,-0.01019 -0.01988,-0.02102 -0.03125,-0.03125 -1.77977,1.668323 -3.979523,2.84375 -6.5,2.84375 -3.328382,0 -4.5,0 -4.5,0 l -2,0 C 7.6766974,34.962276 7.0228926,34.308472 7.016419,33.5 l 0,-4 c 0.00647,-0.808472 0.6602784,-1.462276 1.46875,-1.46875 l 2,0 c 0,0 1.171618,0 4.5,0 0.896746,0 1.610663,-0.288343 2.125,-0.8125 0.514337,-0.524157 0.90625,-1.352385 0.90625,-2.71875 l 6.9375,0 c 0,0.999884 0.460486,1.796614 1.25,2.5 0.734531,0.6544 1.95466,1.03125 2.28125,1.03125 l 1.53125,0 0,-1.53125 c -0.0059,-0.558001 0.30237,-1.071942 0.797466,-1.329392 0.495096,-0.25745 1.092887,-0.214676 1.546284,0.110642 l 7,5 C 39.760796,30.557645 40,31.01328 40,31.5 c 0,0.48672 -0.239204,0.942355 -0.639831,1.21875 l -7,5 c -0.325851,0.23184 -0.731626,0.322012 -1.125,0.25 z"
           id="path6939"
           sodipodi:nodetypes="ccccscsccccccssccscccsccsccc" />
        <path
           inkscape:connector-curvature="0"
           style="fill:url(#linearGradient3548);fill-opacity:1;fill-rule:evenodd;stroke:none"
           d="M 31.25,11.03125 C 30.540316,11.15877 30.025681,11.778972 30.03125,12.5 l 0,1.53125 -1.53125,0 c -2.542448,10e-7 -5.010883,1.068219 -6.96875,2.8125 C 21.51982,16.85394 21.51137,16.86477 21.5,16.875 19.72023,15.206677 17.520477,14.03125 15,14.03125 c -3.328382,0 -4.5,0 -4.5,0 l -2,0 C 7.6915284,14.037724 7.0377236,14.691528 7.03125,15.5 l 0,4 C 7.03772,20.308472 7.6915284,20.962276 8.5,20.96875 l 2,0 c 0,0 1.171618,0 4.5,0 0.896746,0 1.610663,0.288343 2.125,0.8125 0.514337,0.524157 0.90625,1.352385 0.90625,2.71875 l 6.9375,0 c 0,-0.999884 0.460486,-1.796614 1.25,-2.5 0.734531,-0.6544 1.95466,-1.03125 2.28125,-1.03125 l 1.53125,0 0,1.53125 c -0.0059,0.558001 0.30237,1.071942 0.797466,1.329392 0.495096,0.25745 1.092887,0.214676 1.546284,-0.110642 l 7,-5 c 0.400627,-0.276395 0.639831,-0.73203 0.639831,-1.21875 0,-0.48672 -0.239204,-0.942355 -0.639831,-1.21875 l -7,-5 c -0.325851,-0.23184 -0.731626,-0.322012 -1.125,-0.25 z"
           id="path6906"
           sodipodi:nodetypes="ccccscsccccccssccscccsccsccc" />
      </g>
      <path
         inkscape:connector-curvature="0"
         id="path6793"
         d="m 31.5,-13.5 0,-3 -3,0 c -2.12222,-1e-6 -4.24698,-0.903558 -5.96875,-2.4375 C 20.80948,-20.471442 19.5,-22.765079 19.5,-25.5 c 0,-3.33603 -2.03913,-5 -4.5,-5 -3.32838,0 -4.5,0 -4.5,0 l -2,0 0,-4 2,0 c 0,0 1.17162,0 4.5,0 4.53913,0 8.5,3.79144 8.5,9 0,1.465079 0.69052,2.677692 1.71875,3.59375 C 26.24698,-20.990192 27.62222,-20.5 28.5,-20.5 l 3,0 0,-3 7,5 -7,5 z"
         style="fill:url(#radialGradient3550);fill-opacity:1;fill-rule:evenodd;stroke:#41423f;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         transform="translate(0,-50)"
         d="m 9.3125,16.3125 0,2.375 1.1875,0 4.5,0 c 1.413566,0 2.766294,0.497513 3.75,1.5 0.983706,1.002487 1.5625,2.47894 1.5625,4.3125 0,2.475571 1.175817,4.566296 2.75,5.96875 1.592203,1.418508 3.545898,2.218749 5.4375,2.21875 l 3,0 A 0.81258125,0.81258125 0 0 1 32.3125,33.5 l 0,1.4375 4.8125,-3.4375 -4.8125,-3.4375 0,1.4375 A 0.81258125,0.81258125 0 0 1 31.5,30.3125 l -3,0 c -1.18027,0 -2.623091,-0.565344 -3.8125,-1.625 -1.159234,-1.032772 -2,-2.467122 -2,-4.1875 0,-4.796647 -3.600817,-8.1875 -7.6875,-8.1875 l -4.5,0 -1.1875,0 z"
         id="path6854"
         style="fill:none;stroke:url(#linearGradient3552);stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         inkscape:original="M 8.5 15.5 L 8.5 19.5 L 10.5 19.5 C 10.5 19.5 11.671618 19.5 15 19.5 C 17.460874 19.5 19.5 21.16397 19.5 24.5 C 19.5 27.234921 20.809478 29.528558 22.53125 31.0625 C 24.253022 32.596442 26.377778 33.499999 28.5 33.5 L 31.5 33.5 L 31.5 36.5 L 38.5 31.5 L 31.5 26.5 L 31.5 29.5 L 28.5 29.5 C 27.622222 29.5 26.246978 29.009808 25.21875 28.09375 C 24.190522 27.177692 23.5 25.965079 23.5 24.5 C 23.5 19.29144 19.539126 15.5 15 15.5 C 11.671618 15.5 10.5 15.5 10.5 15.5 L 8.5 15.5 z "
         inkscape:radius="-0.8125"
         sodipodi:type="inkscape:offset" />
      <path
         inkscape:connector-curvature="0"
         id="path6876"
         d="m 20.96875,-32.59375 c -1.15002,1.182769 -2.0687,2.667515 -2.5625,4.40625 0.40105,0.681118 0.625,1.561935 0.625,2.6875 0,2.887604 1.37884,5.294899 3.1875,6.90625 0.06175,0.05502 0.12476,0.10276 0.1875,0.15625 1.1268,-1.298561 1.95547,-2.918195 2.34375,-4.71875 -0.4785,-0.679136 -0.78125,-1.451225 -0.78125,-2.34375 0,-2.900128 -1.17337,-5.394254 -3,-7.09375 z"
         style="opacity:0.6;fill:url(#radialGradient3554);fill-opacity:1;fill-rule:evenodd;stroke:none" />
      <path
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccsssccccsssccccc"
         id="path6784"
         d="m 31.5,-37.5 0,3 -3,0 c -2.12222,10e-7 -4.24698,0.903558 -5.96875,2.4375 C 20.80948,-30.528558 19.5,-28.234921 19.5,-25.5 c 0,3.33603 -2.03913,5 -4.5,5 -3.32838,0 -4.5,0 -4.5,0 l -2,0 0,4 2,0 c 0,0 1.17162,0 4.5,0 4.53913,0 8.5,-3.79144 8.5,-9 0,-1.465079 0.69052,-2.677692 1.71875,-3.59375 C 26.24698,-30.009808 27.62222,-30.5 28.5,-30.5 l 3,0 0,3 7,-5 -7,-5 z"
         style="fill:url(#radialGradient3556);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         transform="translate(0,-50)"
         d="m 32.34375,14.15625 0,1.34375 A 0.85262163,0.85262163 0 0 1 31.5,16.34375 l -3,0 c -1.880238,1e-6 -3.820431,0.80593 -5.40625,2.21875 -1.566911,1.395975 -2.75,3.474708 -2.75,5.9375 0,1.841717 -0.570598,3.332911 -1.5625,4.34375 -0.991902,1.010839 -2.35866,1.5 -3.78125,1.5 l -4.5,0 -1.15625,0 0,2.3125 1.15625,0 4.5,0 c 4.064388,0 7.65625,-3.3799 7.65625,-8.15625 0,-1.732958 0.834311,-3.180226 2,-4.21875 1.197351,-1.066731 2.648575,-1.625 3.84375,-1.625 l 3,0 A 0.85262163,0.85262163 0 0 1 32.34375,19.5 l 0,1.34375 4.6875,-3.34375 -4.6875,-3.34375 z"
         id="path6816"
         style="fill:none;stroke:#ffffff;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         inkscape:original="M 31.5 12.5 L 31.5 15.5 L 28.5 15.5 C 26.377778 15.500001 24.253022 16.403558 22.53125 17.9375 C 20.809478 19.471442 19.5 21.765079 19.5 24.5 C 19.5 27.83603 17.460874 29.5 15 29.5 C 11.671618 29.5 10.5 29.5 10.5 29.5 L 8.5 29.5 L 8.5 33.5 L 10.5 33.5 C 10.5 33.5 11.671618 33.5 15 33.5 C 19.539126 33.5 23.5 29.70856 23.5 24.5 C 23.5 23.034921 24.190522 21.822308 25.21875 20.90625 C 26.246978 19.990192 27.622222 19.5 28.5 19.5 L 31.5 19.5 L 31.5 22.5 L 38.5 17.5 L 31.5 12.5 z "
         inkscape:radius="-0.85253638"
         sodipodi:type="inkscape:offset" />
      <path
         transform="translate(0,-50)"
         d="m 31.9375,13.375 0,2.125 A 0.44604702,0.44604702 0 0 1 31.5,15.9375 l -3,0 c -1.995629,10e-7 -4.036852,0.873173 -5.6875,2.34375 -1.640757,1.461765 -2.875,3.626193 -2.875,6.21875 0,1.758887 -0.528814,3.136466 -1.4375,4.0625 -0.908686,0.926034 -2.169038,1.375 -3.5,1.375 l -4.5,0 -1.5625,0 0,3.125 1.5625,0 4.5,0 c 4.290768,0 8.0625,-3.58005 8.0625,-8.5625 0,-1.605219 0.774859,-2.957374 1.875,-3.9375 1.116704,-0.994882 2.518676,-1.5 3.5625,-1.5 l 3,0 A 0.44604702,0.44604702 0 0 1 31.9375,19.5 l 0,2.125 5.78125,-4.125 -5.78125,-4.125 z"
         id="path6820"
         style="opacity:0.4;fill:url(#linearGradient3558);fill-opacity:1;fill-rule:evenodd;stroke:none"
         inkscape:original="M 31.5 12.5 L 31.5 15.5 L 28.5 15.5 C 26.377778 15.500001 24.253022 16.403558 22.53125 17.9375 C 20.809478 19.471442 19.5 21.765079 19.5 24.5 C 19.5 27.83603 17.460874 29.5 15 29.5 C 11.671618 29.5 10.5 29.5 10.5 29.5 L 8.5 29.5 L 8.5 33.5 L 10.5 33.5 C 10.5 33.5 11.671618 33.5 15 33.5 C 19.539126 33.5 23.5 29.70856 23.5 24.5 C 23.5 23.034921 24.190522 21.822308 25.21875 20.90625 C 26.246978 19.990192 27.622222 19.5 28.5 19.5 L 31.5 19.5 L 31.5 22.5 L 38.5 17.5 L 31.5 12.5 z "
         inkscape:radius="-0.44600242"
         sodipodi:type="inkscape:offset" />
    </g>
    <image
       y="-311.43497"
       x="-268.92264"
       id="image7139"
       xlink:href="data:image/png;base64,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 "
       height="72"
       width="72" />
    <g
       id="g4840"
       transform="translate(-80.180194,-125.99569)"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_toggle_list_normal.png"
       inkscape:export-xdpi="59.268303"
       inkscape:export-ydpi="59.268303">
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         ry="2.7"
         y="-117.62052"
         x="121.50941"
         height="8.485281"
         width="52.325909"
         id="rect4789"
         style="fill:url(#linearGradient4845);fill-opacity:1;stroke:none" />
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         style="fill:url(#linearGradient4847);fill-opacity:1;stroke:none"
         id="rect4799"
         width="52.325909"
         height="8.485281"
         x="121.50941"
         y="-103.41774"
         ry="2.7" />
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         ry="2.7"
         y="-89.214928"
         x="121.15585"
         height="8.485281"
         width="52.325909"
         id="rect4836"
         style="fill:url(#linearGradient4849);fill-opacity:1;stroke:none" />
    </g>
    <rect
       style="fill:none;stroke:#000000;stroke-width:1.04934024999999997;stroke-opacity:1"
       id="rect4865"
       width="80.950653"
       height="80.950661"
       x="24.216793"
       y="-137.45193"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_shuffle_normal.png"
       inkscape:export-xdpi="59.27"
       inkscape:export-ydpi="59.27" />
    <rect
       inkscape:export-ydpi="59.268303"
       inkscape:export-xdpi="59.268303"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_toggle_list_normal.png"
       ry="0"
       y="-264.95193"
       x="26.216797"
       height="80.950661"
       width="80.950653"
       id="rect4894"
       style="fill:none;stroke:#000000;stroke-width:1.04934024999999997;stroke-opacity:1" />
    <g
       inkscape:export-ydpi="59.27"
       inkscape:export-xdpi="59.27"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_shuffle_pressed.png"
       transform="translate(132.85817,2.43934)"
       id="g6625"
       style="fill:#3fffff;fill-opacity:1">
      <g
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="g6627"
         transform="translate(51.442018,-51.442019)"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         inkscape:export-xdpi="43.58292"
         inkscape:export-ydpi="43.58292">
        <path
           id="path6629"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z" />
      </g>
      <g
         transform="matrix(1,0,0,-1,51.442018,-144.72022)"
         id="g6631"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         inkscape:export-xdpi="43.58292"
         inkscape:export-ydpi="43.58292">
        <path
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           id="path6633" />
      </g>
    </g>
    <rect
       inkscape:export-ydpi="59.27"
       inkscape:export-xdpi="59.27"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_shuffle_pressed.png"
       ry="0"
       y="-136.07326"
       x="158.38867"
       height="80.950661"
       width="80.950653"
       id="rect6635"
       style="fill:none;stroke:#000000;stroke-width:1.04934024999999997;stroke-opacity:1" />
    <g
       style="fill:#3fffff;fill-opacity:1;filter:url(#filter7135)"
       id="g6665"
       transform="translate(132.85817,2.43934)"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
       inkscape:export-xdpi="39.509998"
       inkscape:export-ydpi="39.509998">
      <g
         inkscape:export-ydpi="43.58292"
         inkscape:export-xdpi="43.58292"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         transform="translate(51.442018,-51.442019)"
         id="g6667"
         style="fill:#3fffff;fill-opacity:1;stroke:none">
        <path
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           id="path6669" />
      </g>
      <g
         inkscape:export-ydpi="43.58292"
         inkscape:export-xdpi="43.58292"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="g6671"
         transform="matrix(1,0,0,-1,51.442018,-144.72022)">
        <path
           id="path6673"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z" />
      </g>
    </g>
    <g
       inkscape:export-ydpi="39.509998"
       inkscape:export-xdpi="39.509998"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
       transform="translate(132.85817,2.43934)"
       id="g7139"
       style="fill:#3fffff;fill-opacity:1;filter:url(#filter7135)">
      <g
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="g7141"
         transform="translate(51.442018,-51.442019)"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         inkscape:export-xdpi="43.58292"
         inkscape:export-ydpi="43.58292">
        <path
           id="path7143"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z" />
      </g>
      <g
         transform="matrix(1,0,0,-1,51.442018,-144.72022)"
         id="g7145"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         inkscape:export-xdpi="43.58292"
         inkscape:export-ydpi="43.58292">
        <path
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           id="path7147" />
      </g>
    </g>
    <g
       style="fill:#3fffff;fill-opacity:1;filter:url(#filter7135)"
       id="g7149"
       transform="translate(132.85817,2.43934)"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
       inkscape:export-xdpi="39.509998"
       inkscape:export-ydpi="39.509998">
      <g
         inkscape:export-ydpi="43.58292"
         inkscape:export-xdpi="43.58292"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         transform="translate(51.442018,-51.442019)"
         id="g7151"
         style="fill:#3fffff;fill-opacity:1;stroke:none">
        <path
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           id="path7153" />
      </g>
      <g
         inkscape:export-ydpi="43.58292"
         inkscape:export-xdpi="43.58292"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="g7155"
         transform="matrix(1,0,0,-1,51.442018,-144.72022)">
        <path
           id="path7157"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z" />
      </g>
    </g>
    <g
       inkscape:export-ydpi="59.268291"
       inkscape:export-xdpi="59.268291"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_toggle_list_pressed.png"
       transform="translate(51.31981,-130.49569)"
       id="g7159"
       style="fill:#3fffff;fill-opacity:1">
      <rect
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7161"
         width="52.325909"
         height="8.485281"
         x="121.50941"
         y="-117.62052"
         ry="2.7"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
      <rect
         ry="2.7"
         y="-103.41774"
         x="121.50941"
         height="8.485281"
         width="52.325909"
         id="rect7163"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
      <rect
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7165"
         width="52.325909"
         height="8.485281"
         x="121.15585"
         y="-89.214928"
         ry="2.7"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
    </g>
    <rect
       style="fill:none;stroke:#000000;stroke-width:1.04934024999999997;stroke-opacity:1"
       id="rect7167"
       width="80.950653"
       height="80.950661"
       x="157.7168"
       y="-269.45193"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_toggle_list_pressed.png"
       inkscape:export-xdpi="59.268291"
       inkscape:export-ydpi="59.268291" />
    <g
       style="fill:#3fffff;fill-opacity:1;filter:url(#filter7199)"
       id="g7175"
       transform="translate(51.31981,-130.49569)"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
       inkscape:export-xdpi="39.509998"
       inkscape:export-ydpi="39.509998">
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         ry="2.7"
         y="-117.62052"
         x="121.50941"
         height="8.485281"
         width="52.325909"
         id="rect7177"
         style="fill:#3fffff;fill-opacity:1;stroke:none" />
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7179"
         width="52.325909"
         height="8.485281"
         x="121.50941"
         y="-103.41774"
         ry="2.7" />
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         ry="2.7"
         y="-89.214928"
         x="121.15585"
         height="8.485281"
         width="52.325909"
         id="rect7181"
         style="fill:#3fffff;fill-opacity:1;stroke:none" />
    </g>
    <g
       inkscape:export-ydpi="39.509998"
       inkscape:export-xdpi="39.509998"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
       transform="translate(51.31981,-130.49569)"
       id="g7560"
       style="fill:#3fffff;fill-opacity:1;filter:url(#filter7199)">
      <rect
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7562"
         width="52.325909"
         height="8.485281"
         x="121.50941"
         y="-117.62052"
         ry="2.7"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
      <rect
         ry="2.7"
         y="-103.41774"
         x="121.50941"
         height="8.485281"
         width="52.325909"
         id="rect7564"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
      <rect
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7566"
         width="52.325909"
         height="8.485281"
         x="121.15585"
         y="-89.214928"
         ry="2.7"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
    </g>
    <g
       style="fill:#3fffff;fill-opacity:1;filter:url(#filter7199)"
       id="g7568"
       transform="translate(51.31981,-130.49569)"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
       inkscape:export-xdpi="39.509998"
       inkscape:export-ydpi="39.509998">
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         ry="2.7"
         y="-117.62052"
         x="121.50941"
         height="8.485281"
         width="52.325909"
         id="rect7570"
         style="fill:#3fffff;fill-opacity:1;stroke:none" />
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7572"
         width="52.325909"
         height="8.485281"
         x="121.50941"
         y="-103.41774"
         ry="2.7" />
      <rect
         inkscape:export-ydpi="58.551075"
         inkscape:export-xdpi="58.551075"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         ry="2.7"
         y="-89.214928"
         x="121.15585"
         height="8.485281"
         width="52.325909"
         id="rect7574"
         style="fill:#3fffff;fill-opacity:1;stroke:none" />
    </g>
    <g
       inkscape:export-ydpi="39.509998"
       inkscape:export-xdpi="39.509998"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle_focused.png"
       transform="translate(276.68629,11.06066)"
       id="g7576"
       style="fill:#3fffff;fill-opacity:1">
      <g
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="g7578"
         transform="translate(51.442018,-51.442019)"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         inkscape:export-xdpi="43.58292"
         inkscape:export-ydpi="43.58292">
        <path
           id="path7580"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z" />
      </g>
      <g
         transform="matrix(1,0,0,-1,51.442018,-144.72022)"
         id="g7582"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle.png"
         inkscape:export-xdpi="43.58292"
         inkscape:export-ydpi="43.58292">
        <path
           d="m 30.3125,-65.34375 c -5.799318,-0.02445 -10.29076,1.291269 -13.96875,3.53125 -3.67799,2.239981 -6.4984427,5.164169 -9.875,8.3125 -3.6079599,3.364093 -7.42397477,7.132931 -11.09375,9.90625 -3.6697752,2.773319 -7.068993,4.29712 -9.375,4.1875 l -0.375,7.53125 c 5.3357622,0.253643 10.0187601,-2.497505 14.28125,-5.71875 C 4.1687399,-40.814995 8.1472531,-44.757318 11.625,-48 c 3.501135,-3.264489 6.026982,-5.792747 8.625,-7.375 2.598018,-1.582253 5.296715,-2.45746 10.03125,-2.4375 l 0.03125,-7.53125 z m 12.156909,4.234142 -12.2225,10.160536 0.05943,-20.470379 12.16307,10.309843 z"
           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#3fffff;fill-opacity:1;stroke:none;stroke-width:1.39999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           id="path7584" />
      </g>
    </g>
    <g
       inkscape:export-ydpi="39.509998"
       inkscape:export-xdpi="39.509998"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list_focused.png"
       transform="translate(197.81981,-117.99569)"
       id="g7586"
       style="fill:#3fffff;fill-opacity:1">
      <rect
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7588"
         width="52.325909"
         height="8.485281"
         x="121.50941"
         y="-117.62052"
         ry="2.7"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
      <rect
         ry="2.7"
         y="-103.41774"
         x="121.50941"
         height="8.485281"
         width="52.325909"
         id="rect7590"
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
      <rect
         style="fill:#3fffff;fill-opacity:1;stroke:none"
         id="rect7592"
         width="52.325909"
         height="8.485281"
         x="121.15585"
         y="-89.214928"
         ry="2.7"
         inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list.png"
         inkscape:export-xdpi="58.551075"
         inkscape:export-ydpi="58.551075" />
    </g>
    <rect
       inkscape:export-ydpi="39.509998"
       inkscape:export-xdpi="39.509998"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_shuffle_focused.png"
       ry="0"
       y="-127.45193"
       x="302.2168"
       height="80.950661"
       width="80.950653"
       id="rect7594"
       style="fill:none;stroke:#000000;stroke-width:1.04934024999999997;stroke-opacity:1" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:1.04934024999999997;stroke-opacity:1"
       id="rect7596"
       width="80.950653"
       height="80.950661"
       x="304.2168"
       y="-256.95193"
       ry="0"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_toggle_list_focused.png"
       inkscape:export-xdpi="39.509998"
       inkscape:export-ydpi="39.509998" />
    <path
       sodipodi:open="true"
       sodipodi:end="6.2625697"
       sodipodi:start="0"
       transform="matrix(0.75550452,0,0,0.75422299,-518.8634,138.50097)"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       sodipodi:ry="35.708893"
       sodipodi:rx="35.708893"
       sodipodi:cy="-39.409218"
       sodipodi:cx="531.03717"
       id="path4116"
       style="fill:#3fffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4222)"
       sodipodi:type="arc" />
    <g
       inkscape:label="Play"
       transform="matrix(0.6775498,0,0,0.6764005,-443.66465,220.16858)"
       id="g4168"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_start_normal.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient4190);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4192);stroke-width:2.95431924;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="path4170"
         sodipodi:cx="531.03717"
         sodipodi:cy="-39.409218"
         sodipodi:rx="35.708893"
         sodipodi:ry="35.708893"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         transform="translate(-49.888429,-125.27271)"
         sodipodi:start="0"
         sodipodi:end="6.2625697"
         sodipodi:open="true" />
      <g
         id="g4172"
         transform="translate(-54.858701,58.82327)">
        <path
           id="path4174"
           d="m 523.42302,-241.28365 0,38.32477 32.93672,-19.01602 -32.93672,-19.30875 z"
           style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.07599998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter6084)" />
        <path
           style="fill:#d6ffdc;fill-opacity:1;fill-rule:nonzero;stroke:#33543c;stroke-width:3.07619143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
           d="m 521.65524,-243.05142 0,38.32478 32.93672,-19.01603 -32.93672,-19.30875 z"
           id="path4176" />
      </g>
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient4194);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path4178"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(1.0149254,0,0,1.039604,-84.726682,-157.13675)" />
      <path
         style="fill:url(#linearGradient4196);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 451.4166,-150.26926 c 7.1012,15.79785 25.44247,23.42303 41.75284,17.04803 16.30148,-6.37152 24.61196,-24.39718 19.13632,-40.81612 -4.42404,11.10587 -13.2737,20.41099 -25.27792,25.1029 -12.01591,4.69649 -24.82216,3.84093 -35.61124,-1.33481 z"
         id="path4180" />
    </g>
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4226"
       width="68.734642"
       height="68.73465"
       x="-152.02974"
       y="74.410309"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_start_normal.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999" />
    <path
       sodipodi:type="arc"
       style="fill:#ccffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4298)"
       id="path4228"
       sodipodi:cx="531.03717"
       sodipodi:cy="-39.409218"
       sodipodi:rx="35.708893"
       sodipodi:ry="35.708893"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       transform="matrix(0.84843717,0,0,0.846998,-567.50698,227.36353)"
       sodipodi:start="0"
       sodipodi:end="6.2625697"
       sodipodi:open="true" />
    <g
       inkscape:export-ydpi="174.50999"
       inkscape:export-xdpi="174.50999"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_start_pressed.png"
       id="g4230"
       transform="matrix(0.6775498,0,0,0.6764005,-442.95754,305.37494)"
       inkscape:label="Play">
      <path
         sodipodi:open="true"
         sodipodi:end="6.2625697"
         sodipodi:start="0"
         transform="translate(-49.888429,-125.27271)"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         sodipodi:ry="35.708893"
         sodipodi:rx="35.708893"
         sodipodi:cy="-39.409218"
         sodipodi:cx="531.03717"
         id="path4232"
         style="fill:url(#radialGradient4246);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4248);stroke-width:2.95431924;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         sodipodi:type="arc" />
      <g
         transform="translate(-54.858701,58.82327)"
         id="g4234">
        <path
           style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.07599998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter6084)"
           d="m 523.42302,-241.28365 0,38.32477 32.93672,-19.01602 -32.93672,-19.30875 z"
           id="path4236" />
        <path
           id="path4238"
           d="m 521.65524,-243.05142 0,38.32478 32.93672,-19.01603 -32.93672,-19.30875 z"
           style="fill:#d6ffdc;fill-opacity:1;fill-rule:nonzero;stroke:#33543c;stroke-width:3.07619143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      </g>
      <path
         transform="matrix(1.0149254,0,0,1.039604,-84.726682,-157.13675)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path4240"
         style="fill:url(#linearGradient4250);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         id="path4242"
         d="m 451.4166,-150.26926 c 7.1012,15.79785 25.44247,23.42303 41.75284,17.04803 16.30148,-6.37152 24.61196,-24.39718 19.13632,-40.81612 -4.42404,11.10587 -13.2737,20.41099 -25.27792,25.1029 -12.01591,4.69649 -24.82216,3.84093 -35.61124,-1.33481 z"
         style="fill:url(#linearGradient4252);fill-opacity:1;fill-rule:nonzero;stroke:none" />
    </g>
    <rect
       inkscape:export-ydpi="174.50999"
       inkscape:export-xdpi="174.50999"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_start_pressed.png"
       ry="0"
       y="159.61667"
       x="-151.32262"
       height="68.73465"
       width="68.734642"
       id="rect4244"
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1" />
    <rect
       inkscape:export-ydpi="174.50999"
       inkscape:export-xdpi="174.50999"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_start_normal.png"
       ry="0"
       y="74.410309"
       x="-152.02974"
       height="68.73465"
       width="68.734642"
       id="rect4336"
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1" />
    <path
       sodipodi:type="arc"
       style="fill:#3fffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4222)"
       id="path4396"
       sodipodi:cx="531.03717"
       sodipodi:cy="-39.409218"
       sodipodi:rx="35.708893"
       sodipodi:ry="35.708893"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       transform="matrix(0.75550452,0,0,0.75422299,-190.43211,129.79387)"
       sodipodi:start="0"
       sodipodi:end="6.2625697"
       sodipodi:open="true" />
    <rect
       inkscape:export-ydpi="116.34"
       inkscape:export-xdpi="116.34"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_forward_normal.png"
       ry="0"
       y="65.703201"
       x="176.40157"
       height="68.73465"
       width="68.734642"
       id="rect4412"
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4428"
       width="68.734642"
       height="68.73465"
       x="176.40157"
       y="65.703201"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_forward_normal.png"
       inkscape:export-xdpi="116.34"
       inkscape:export-ydpi="116.34" />
    <g
       inkscape:label="Next"
       inkscape:export-ydpi="116.34"
       inkscape:export-xdpi="116.34"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_forward_normal.png"
       transform="matrix(1.4667816,0,0,1.4667816,94.727336,-22.321813)"
       id="g4302">
      <path
         transform="matrix(0.6789216,0,0,0.6789216,-473.86862,-145.93915)"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         sodipodi:ry="24"
         sodipodi:rx="24"
         sodipodi:cy="337.86218"
         sodipodi:cx="814.5"
         id="path4304"
         style="fill:url(#radialGradient4314);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4316);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         sodipodi:type="arc" />
      <path
         transform="matrix(-1,0,0,1,159.45373,0)"
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter10591)"
         d="m 87.311637,92.882314 -12.16991,-7.12165 0,7.09911 -2.47905,0 0,-16.158926 2.47905,0 0,6.287786 12.16991,-7.054036 0,16.947716 z"
         id="path4306" />
      <path
         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m 71.95557,91.916636 12.16991,-7.12165 0,7.09911 2.47905,0 0,-16.158926 -2.47905,0 0,6.287786 -12.16991,-7.054036 0,16.947716 z"
         id="path4308" />
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient4318);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path4310"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(0.4529835,0,0,0.4632112,-173.44961,86.45652)" />
      <path
         style="fill:url(#linearGradient4320);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 65.878254,89.51643 c 3.169423,7.038968 11.355534,10.436479 18.635212,7.596004 7.27571,-2.838924 10.98486,-10.870529 8.540962,-18.186233 -1.974549,4.948387 -5.924346,9.094422 -11.282093,11.184973 -5.362966,2.092594 -11.078677,1.711389 -15.894081,-0.594744 z"
         id="path4312" />
    </g>
    <path
       sodipodi:open="true"
       sodipodi:end="6.2625697"
       sodipodi:start="0"
       transform="matrix(0.84843717,0,0,0.846998,-239.40943,226.4346)"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       sodipodi:ry="35.708893"
       sodipodi:rx="35.708893"
       sodipodi:cy="-39.409218"
       sodipodi:cx="531.03717"
       id="path4446"
       style="fill:#ccffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4298)"
       sodipodi:type="arc" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4462"
       width="68.734642"
       height="68.73465"
       x="176.77492"
       y="158.68773"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_forward_pressed.png"
       inkscape:export-xdpi="116.34"
       inkscape:export-ydpi="116.34" />
    <g
       id="g4472"
       transform="matrix(1.4667816,0,0,1.4667816,95.100716,70.662724)"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_forward_pressed.png"
       inkscape:export-xdpi="116.34"
       inkscape:export-ydpi="116.34"
       inkscape:label="Next">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient4484);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4486);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="path4474"
         sodipodi:cx="814.5"
         sodipodi:cy="337.86218"
         sodipodi:rx="24"
         sodipodi:ry="24"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         transform="matrix(0.6789216,0,0,0.6789216,-473.86862,-145.93915)" />
      <path
         id="path4476"
         d="m 87.311637,92.882314 -12.16991,-7.12165 0,7.09911 -2.47905,0 0,-16.158926 2.47905,0 0,6.287786 12.16991,-7.054036 0,16.947716 z"
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter10591)"
         transform="matrix(-1,0,0,1,159.45373,0)" />
      <path
         id="path4478"
         d="m 71.95557,91.916636 12.16991,-7.12165 0,7.09911 2.47905,0 0,-16.158926 -2.47905,0 0,6.287786 -12.16991,-7.054036 0,16.947716 z"
         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         transform="matrix(0.4529835,0,0,0.4632112,-173.44961,86.45652)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path4480"
         style="fill:url(#linearGradient4488);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         id="path4482"
         d="m 65.878254,89.51643 c 3.169423,7.038968 11.355534,10.436479 18.635212,7.596004 7.27571,-2.838924 10.98486,-10.870529 8.540962,-18.186233 -1.974549,4.948387 -5.924346,9.094422 -11.282093,11.184973 -5.362966,2.092594 -11.078677,1.711389 -15.894081,-0.594744 z"
         style="fill:url(#linearGradient4490);fill-opacity:1;fill-rule:nonzero;stroke:none" />
    </g>
    <flowRoot
       xml:space="preserve"
       id="flowRoot4492"
       style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
       transform="translate(-479.37881,-316.53225)"><flowRegion
         id="flowRegion4494"><rect
           id="rect4496"
           width="369.8168"
           height="193.04015"
           x="120.91526"
           y="93.441902"
           style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" /></flowRegion><flowPara
         id="flowPara4548">Only select content within black square when exporting bitmaps.</flowPara><flowPara
         id="flowPara4514">shuffle, toggle: 36x36 (mdpi), 54x54 (hdpi)</flowPara><flowPara
         id="flowPara4560">start, stop, pause:  90x90 (mdpi), 135x135 (hdpi)</flowPara><flowPara
         id="flowPara4556">backward, forward: 60x60 (mdpi), 90x90 (hdpi)</flowPara></flowRoot>    <flowRoot
       xml:space="preserve"
       id="flowRoot4500"
       style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:40px"><flowRegion
         id="flowRegion4502"><rect
           id="rect4504"
           width="118.79394"
           height="62.932503"
           x="128.69344"
           y="107.58404" /></flowRegion><flowPara
         id="flowPara4506" /></flowRoot>    <text
       xml:space="preserve"
       style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
       x="707.8139"
       y="-48.686562"
       id="text4542"
       transform="translate(-152.69548,-4.5768367)"><tspan
         sodipodi:role="line"
         id="tspan4544" /></text>
    <path
       sodipodi:open="true"
       sodipodi:end="6.2625697"
       sodipodi:start="0"
       transform="matrix(0.75550452,0,0,0.75422299,-94.125866,125.96113)"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       sodipodi:ry="35.708893"
       sodipodi:rx="35.708893"
       sodipodi:cy="-39.409218"
       sodipodi:cx="531.03717"
       id="path4699"
       style="fill:#3fffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4222)"
       sodipodi:type="arc" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4701"
       width="68.734642"
       height="68.73465"
       x="272.70779"
       y="61.870461"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_backward_normal.png"
       inkscape:export-xdpi="116.34"
       inkscape:export-ydpi="116.34" />
    <rect
       inkscape:export-ydpi="116.34"
       inkscape:export-xdpi="116.34"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_backward_normal.png"
       ry="0"
       y="61.870461"
       x="272.70779"
       height="68.73465"
       width="68.734642"
       id="rect4703"
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1" />
    <path
       sodipodi:type="arc"
       style="fill:#ccffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4298)"
       id="path4717"
       sodipodi:cx="531.03717"
       sodipodi:cy="-39.409218"
       sodipodi:rx="35.708893"
       sodipodi:ry="35.708893"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       transform="matrix(0.84843717,0,0,0.846998,-147.0121,226.49095)"
       sodipodi:start="0"
       sodipodi:end="6.2625697"
       sodipodi:open="true"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/media_backward_pressed.png"
       inkscape:export-xdpi="69.589996"
       inkscape:export-ydpi="69.589996" />
    <rect
       inkscape:export-ydpi="116.34"
       inkscape:export-xdpi="116.34"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_backward_pressed.png"
       ry="0"
       y="158.74408"
       x="269.17227"
       height="68.73465"
       width="68.734642"
       id="rect4719"
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1" />
    <g
       inkscape:label="Previous"
       inkscape:export-ydpi="116.34"
       inkscape:export-xdpi="116.34"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_backward_normal.png"
       transform="matrix(1.4667816,0,0,1.4667816,191.03359,-26.154554)"
       id="g4751">
      <path
         transform="matrix(0.6789216,0,0,0.6789216,-473.86862,-145.93915)"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         sodipodi:ry="24"
         sodipodi:rx="24"
         sodipodi:cy="337.86218"
         sodipodi:cx="814.5"
         id="path4753"
         style="fill:url(#radialGradient4763);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4766);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         sodipodi:type="arc" />
      <path
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter10591)"
         d="m 87.311637,92.882314 -12.16991,-7.12165 0,7.09911 -2.47905,0 0,-16.158926 2.47905,0 0,6.287786 12.16991,-7.054036 0,16.947716 z"
         id="path4755" />
      <path
         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m 86.4375,91.916636 -12.16991,-7.12165 0,7.09911 -2.47905,0 0,-16.158926 2.47905,0 0,6.287786 12.16991,-7.054036 0,16.947716 z"
         id="path4757" />
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient4768);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path4759"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(0.4529835,0,0,0.4632112,-173.44961,86.45652)" />
      <path
         style="fill:url(#linearGradient4770);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 65.878254,89.51643 c 3.169423,7.038968 11.355534,10.436479 18.635212,7.596004 7.27571,-2.838924 10.98486,-10.870529 8.540962,-18.186233 -1.974549,4.948387 -5.924346,9.094422 -11.282093,11.184973 -5.362966,2.092594 -11.078677,1.711389 -15.894081,-0.594744 z"
         id="path4761" />
    </g>
    <g
       id="g4772"
       transform="matrix(1.4667816,0,0,1.4667816,187.49806,70.719075)"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_backward_pressed.png"
       inkscape:export-xdpi="116.34"
       inkscape:export-ydpi="116.34"
       inkscape:label="Previous">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient4784);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4786);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="path4774"
         sodipodi:cx="814.5"
         sodipodi:cy="337.86218"
         sodipodi:rx="24"
         sodipodi:ry="24"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         transform="matrix(0.6789216,0,0,0.6789216,-473.86862,-145.93915)" />
      <path
         id="path4776"
         d="m 87.311637,92.882314 -12.16991,-7.12165 0,7.09911 -2.47905,0 0,-16.158926 2.47905,0 0,6.287786 12.16991,-7.054036 0,16.947716 z"
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter10591)" />
      <path
         id="path4778"
         d="m 86.4375,91.916636 -12.16991,-7.12165 0,7.09911 -2.47905,0 0,-16.158926 2.47905,0 0,6.287786 12.16991,-7.054036 0,16.947716 z"
         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         transform="matrix(0.4529835,0,0,0.4632112,-173.44961,86.45652)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path4780"
         style="fill:url(#linearGradient4788);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         id="path4782"
         d="m 65.878254,89.51643 c 3.169423,7.038968 11.355534,10.436479 18.635212,7.596004 7.27571,-2.838924 10.98486,-10.870529 8.540962,-18.186233 -1.974549,4.948387 -5.924346,9.094422 -11.282093,11.184973 -5.362966,2.092594 -11.078677,1.711389 -15.894081,-0.594744 z"
         style="fill:url(#linearGradient4790);fill-opacity:1;fill-rule:nonzero;stroke:none" />
    </g>
    <path
       sodipodi:type="arc"
       style="fill:#3fffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4222)"
       id="path4792"
       sodipodi:cx="531.03717"
       sodipodi:cy="-39.409218"
       sodipodi:rx="35.708893"
       sodipodi:ry="35.708893"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       transform="matrix(0.75550452,0,0,0.75422299,-407.19005,135.15351)"
       sodipodi:start="0"
       sodipodi:end="6.2625697"
       sodipodi:open="true" />
    <rect
       inkscape:export-ydpi="174.50999"
       inkscape:export-xdpi="174.50999"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_pause_normal.png"
       ry="0"
       y="71.062843"
       x="-40.356388"
       height="68.73465"
       width="68.734642"
       id="rect4808"
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1" />
    <path
       sodipodi:open="true"
       sodipodi:end="6.2625697"
       sodipodi:start="0"
       transform="matrix(0.84843717,0,0,0.846998,-455.12653,226.49094)"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       sodipodi:ry="35.708893"
       sodipodi:rx="35.708893"
       sodipodi:cy="-39.409218"
       sodipodi:cx="531.03717"
       id="path4810"
       style="fill:#ccffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4298)"
       sodipodi:type="arc" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4826"
       width="68.734642"
       height="68.73465"
       x="-38.942181"
       y="158.74408"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_pause_pressed.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4828"
       width="68.734642"
       height="68.73465"
       x="-40.356388"
       y="71.062843"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_pause_normal.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999" />
    <g
       inkscape:label="Pause"
       transform="matrix(1.1267673,0,0,1.1286805,-613.84863,317.9845)"
       id="g4887"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_pause_normal.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999">
      <path
         sodipodi:open="true"
         sodipodi:end="6.2625697"
         sodipodi:start="0"
         transform="matrix(0.6003194,0,0,0.5993012,220.68022,-164.70309)"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         sodipodi:ry="35.708893"
         sodipodi:rx="35.708893"
         sodipodi:cy="-39.409218"
         sodipodi:cx="531.03717"
         id="path4889"
         style="fill:url(#radialGradient4899);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4901);stroke-width:2.95674324;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         sodipodi:type="arc" />
      <path
         sodipodi:nodetypes="cccsccccccsccc"
         id="path4891"
         d="m 534.22565,-198.21413 c -1.91411,0 -3.44749,1.48373 -3.44749,3.33178 l 0,15.59743 c 0,1.84805 1.53337,3.33177 3.44749,3.33177 1.91413,0 3.44747,-1.48373 3.44751,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.5334,-3.33178 -3.44751,-3.33178 z m 12.26074,0 c -1.91414,0 -3.4475,1.48373 -3.4475,3.33178 l 0,15.59743 c 0,1.84805 1.53336,3.33177 3.4475,3.33177 1.91412,0 3.44747,-1.48373 3.44748,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.53336,-3.33178 -3.44748,-3.33178 z"
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.63936031;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter31539)" />
      <path
         style="fill:#fffae0;fill-opacity:1;fill-rule:nonzero;stroke:#88732a;stroke-width:1.63936031;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m 533.34177,-199.45157 c -1.91411,0 -3.44749,1.48373 -3.44749,3.33178 l 0,15.59743 c 0,1.84805 1.53337,3.33177 3.44749,3.33177 1.91413,0 3.44747,-1.48373 3.44751,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.5334,-3.33178 -3.44751,-3.33178 z m 12.26074,0 c -1.91414,0 -3.4475,1.48373 -3.4475,3.33178 l 0,15.59743 c 0,1.84805 1.53336,3.33177 3.4475,3.33177 1.91412,0 3.44747,-1.48373 3.44748,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.53336,-3.33178 -3.44748,-3.33178 z"
         id="path4893"
         sodipodi:nodetypes="cccsccccccsccc" />
      <path
         transform="matrix(0.6092794,0,0,0.6230359,199.76614,-183.79924)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path4895"
         style="fill:url(#linearGradient4903);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         id="path4897"
         d="m 521.62335,-179.68355 c 4.26299,9.46767 15.27361,14.03745 25.06504,10.21691 9.7861,-3.81846 14.77504,-14.62126 11.48791,-24.46115 -2.65584,6.65576 -7.96846,12.23233 -15.17483,15.0442 -7.21338,2.81461 -14.90122,2.30187 -21.37812,-0.79996 z"
         style="fill:url(#linearGradient4905);fill-opacity:1;fill-rule:nonzero;stroke:none" />
    </g>
    <g
       id="g4907"
       transform="matrix(1.1267673,0,0,1.1286805,-612.43442,405.66574)"
       inkscape:label="Pause"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_pause_pressed.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient4919);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4921);stroke-width:2.95674324;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="path4909"
         sodipodi:cx="531.03717"
         sodipodi:cy="-39.409218"
         sodipodi:rx="35.708893"
         sodipodi:ry="35.708893"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         transform="matrix(0.6003194,0,0,0.5993012,220.68022,-164.70309)"
         sodipodi:start="0"
         sodipodi:end="6.2625697"
         sodipodi:open="true" />
      <path
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.63936031;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter31539)"
         d="m 534.22565,-198.21413 c -1.91411,0 -3.44749,1.48373 -3.44749,3.33178 l 0,15.59743 c 0,1.84805 1.53337,3.33177 3.44749,3.33177 1.91413,0 3.44747,-1.48373 3.44751,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.5334,-3.33178 -3.44751,-3.33178 z m 12.26074,0 c -1.91414,0 -3.4475,1.48373 -3.4475,3.33178 l 0,15.59743 c 0,1.84805 1.53336,3.33177 3.4475,3.33177 1.91412,0 3.44747,-1.48373 3.44748,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.53336,-3.33178 -3.44748,-3.33178 z"
         id="path4911"
         sodipodi:nodetypes="cccsccccccsccc" />
      <path
         sodipodi:nodetypes="cccsccccccsccc"
         id="path4913"
         d="m 533.34177,-199.45157 c -1.91411,0 -3.44749,1.48373 -3.44749,3.33178 l 0,15.59743 c 0,1.84805 1.53337,3.33177 3.44749,3.33177 1.91413,0 3.44747,-1.48373 3.44751,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.5334,-3.33178 -3.44751,-3.33178 z m 12.26074,0 c -1.91414,0 -3.4475,1.48373 -3.4475,3.33178 l 0,15.59743 c 0,1.84805 1.53336,3.33177 3.4475,3.33177 1.91412,0 3.44747,-1.48373 3.44748,-3.33177 l 0,-15.59743 c 0,-1.84805 -1.53336,-3.33178 -3.44748,-3.33178 z"
         style="fill:#fffae0;fill-opacity:1;fill-rule:nonzero;stroke:#88732a;stroke-width:1.63936031;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient4923);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path4915"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(0.6092794,0,0,0.6230359,199.76614,-183.79924)" />
      <path
         style="fill:url(#linearGradient4925);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 521.62335,-179.68355 c 4.26299,9.46767 15.27361,14.03745 25.06504,10.21691 9.7861,-3.81846 14.77504,-14.62126 11.48791,-24.46115 -2.65584,6.65576 -7.96846,12.23233 -15.17483,15.0442 -7.21338,2.81461 -14.90122,2.30187 -21.37812,-0.79996 z"
         id="path4917" />
    </g>
    <path
       sodipodi:type="arc"
       style="fill:#3fffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4222)"
       id="path4927"
       sodipodi:cx="531.03717"
       sodipodi:cy="-39.409218"
       sodipodi:rx="35.708893"
       sodipodi:ry="35.708893"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       transform="matrix(0.75550452,0,0,0.75422299,-295.02156,134.44641)"
       sodipodi:start="0"
       sodipodi:end="6.2625697"
       sodipodi:open="true" />
    <rect
       inkscape:export-ydpi="174.50999"
       inkscape:export-xdpi="174.50999"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_stop_normal.png"
       ry="0"
       y="70.355743"
       x="71.812096"
       height="68.73465"
       width="68.734642"
       id="rect4943"
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1" />
    <path
       sodipodi:open="true"
       sodipodi:end="6.2625697"
       sodipodi:start="0"
       transform="matrix(0.84843717,0,0,0.846998,-343.66515,220.83409)"
       d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
       sodipodi:ry="35.708893"
       sodipodi:rx="35.708893"
       sodipodi:cy="-39.409218"
       sodipodi:cx="531.03717"
       id="path4945"
       style="fill:#ccffff;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4298)"
       sodipodi:type="arc" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4961"
       width="68.734642"
       height="68.73465"
       x="72.519211"
       y="153.08723"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_stop_pressed.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.89098752;stroke-opacity:1"
       id="rect4963"
       width="68.734642"
       height="68.73465"
       x="71.812096"
       y="70.355743"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_stop_normal.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999" />
    <g
       inkscape:label="Stop"
       inkscape:export-ydpi="174.50999"
       inkscape:export-xdpi="174.50999"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_stop_pressed.png"
       transform="matrix(1.4667816,0,0,1.4667816,-307.83949,65.47251)"
       id="g4981">
      <path
         transform="matrix(0.6789216,0,0,0.6789216,-270.23606,-146.21887)"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         sodipodi:ry="24"
         sodipodi:rx="24"
         sodipodi:cy="337.86218"
         sodipodi:cx="814.5"
         id="path4983"
         style="fill:url(#radialGradient5013);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5015);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         sodipodi:type="arc" />
      <rect
         transform="matrix(1.1509881,0,0,1.1509881,-43.467212,-13.082624)"
         y="76.462158"
         x="276.29468"
         height="15.401835"
         width="14.901835"
         id="rect4985"
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter10685)" />
      <rect
         style="fill:#ffe4e4;fill-opacity:1;fill-rule:nonzero;stroke:#9f2b2b;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="rect4987"
         width="14.901835"
         height="15.401835"
         x="275.29468"
         y="75.462158" />
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient5017);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path4989"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(0.4529835,0,0,0.4632112,30.182952,86.293237)" />
      <path
         style="fill:url(#linearGradient5019);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 269.43985,89.353147 c 3.16942,7.038968 11.35554,10.436483 18.63521,7.596004 7.27571,-2.838924 10.98486,-10.870529 8.54097,-18.186233 -1.97455,4.948387 -5.92435,9.094422 -11.2821,11.184973 -5.36296,2.092594 -11.07867,1.711389 -15.89408,-0.594744 z"
         id="path4991" />
    </g>
    <g
       id="g4993"
       transform="matrix(1.4667816,0,0,1.4667816,-308.5466,-17.258983)"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/media_stop_normal.png"
       inkscape:export-xdpi="174.50999"
       inkscape:export-ydpi="174.50999"
       inkscape:label="Stop">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient5005);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5007);stroke-width:2.00837541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="path4995"
         sodipodi:cx="814.5"
         sodipodi:cy="337.86218"
         sodipodi:rx="24"
         sodipodi:ry="24"
         d="m 838.5,337.86218 c 0,13.25484 -10.74517,24 -24,24 -13.25483,0 -24,-10.74516 -24,-24 0,-13.25483 10.74517,-24 24,-24 13.25483,0 24,10.74517 24,24 z"
         transform="matrix(0.6789216,0,0,0.6789216,-270.23606,-146.21887)" />
      <rect
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter10685)"
         id="rect4997"
         width="14.901835"
         height="15.401835"
         x="276.29468"
         y="76.462158"
         transform="matrix(1.1509881,0,0,1.1509881,-43.467212,-13.082624)" />
      <rect
         y="75.462158"
         x="275.29468"
         height="15.401835"
         width="14.901835"
         id="rect4999"
         style="fill:#ffe4e4;fill-opacity:1;fill-rule:nonzero;stroke:#9f2b2b;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         transform="matrix(0.4529835,0,0,0.4632112,30.182952,86.293237)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path5001"
         style="fill:url(#linearGradient5009);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         id="path5003"
         d="m 269.43985,89.353147 c 3.16942,7.038968 11.35554,10.436483 18.63521,7.596004 7.27571,-2.838924 10.98486,-10.870529 8.54097,-18.186233 -1.97455,4.948387 -5.92435,9.094422 -11.2821,11.184973 -5.36296,2.092594 -11.07867,1.711389 -15.89408,-0.594744 z"
         style="fill:url(#linearGradient5011);fill-opacity:1;fill-rule:nonzero;stroke:none" />
    </g>
    <g
       inkscape:label="Play"
       transform="matrix(0.6775498,0,0,0.6764005,152.63833,65.500269)"
       id="g3422"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/select_album_play_all.png"
       inkscape:export-xdpi="71.440002"
       inkscape:export-ydpi="71.440002">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient3436);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3438);stroke-width:2.95431924;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="path3424"
         sodipodi:cx="531.03717"
         sodipodi:cy="-39.409218"
         sodipodi:rx="35.708893"
         sodipodi:ry="35.708893"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         transform="translate(-49.888429,-125.27271)"
         sodipodi:start="0"
         sodipodi:end="6.2625697"
         sodipodi:open="true" />
      <g
         id="g3426"
         transform="translate(-54.858701,58.82327)">
        <path
           id="path3428"
           d="m 523.42302,-241.28365 0,38.32477 32.93672,-19.01602 -32.93672,-19.30875 z"
           style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.07599998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter6084)" />
        <path
           style="fill:#d6ffdc;fill-opacity:1;fill-rule:nonzero;stroke:#33543c;stroke-width:3.07619143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
           d="m 521.65524,-243.05142 0,38.32478 32.93672,-19.01603 -32.93672,-19.30875 z"
           id="path3430" />
      </g>
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient3440);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path3432"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(1.0149254,0,0,1.039604,-84.726682,-157.13675)" />
      <path
         style="fill:url(#linearGradient3442);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 451.4166,-150.26926 c 7.1012,15.79785 25.44247,23.42303 41.75284,17.04803 16.30148,-6.37152 24.61196,-24.39718 19.13632,-40.81612 -4.42404,11.10587 -13.2737,20.41099 -25.27792,25.1029 -12.01591,4.69649 -24.82216,3.84093 -35.61124,-1.33481 z"
         id="path3434" />
    </g>
    <flowRoot
       transform="translate(300.55995,-224.60837)"
       style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
       id="flowRoot3463"
       xml:space="preserve"><flowRegion
         id="flowRegion3465"><rect
           style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
           y="93.441902"
           x="120.91526"
           height="193.04015"
           width="369.8168"
           id="rect3467" /></flowRegion><flowPara
         id="flowPara3475">select_album_play_all: 40x40 (mdpi), 60x60 (hdpi)</flowPara></flowRoot>    <g
       inkscape:export-ydpi="107.17"
       inkscape:export-xdpi="107.17"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/select_album_play_all_normal.png"
       id="g3483"
       transform="matrix(0.6775498,0,0,0.6764005,152.63833,65.500269)"
       inkscape:label="Play">
      <path
         sodipodi:open="true"
         sodipodi:end="6.2625697"
         sodipodi:start="0"
         transform="translate(-49.888429,-125.27271)"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         sodipodi:ry="35.708893"
         sodipodi:rx="35.708893"
         sodipodi:cy="-39.409218"
         sodipodi:cx="531.03717"
         id="path3485"
         style="fill:url(#radialGradient3436);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3438);stroke-width:2.95431924;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         sodipodi:type="arc" />
      <g
         transform="translate(-54.858701,58.82327)"
         id="g3487">
        <path
           style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.07599998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter6084)"
           d="m 523.42302,-241.28365 0,38.32477 32.93672,-19.01602 -32.93672,-19.30875 z"
           id="path3489" />
        <path
           id="path3491"
           d="m 521.65524,-243.05142 0,38.32478 32.93672,-19.01603 -32.93672,-19.30875 z"
           style="fill:#d6ffdc;fill-opacity:1;fill-rule:nonzero;stroke:#33543c;stroke-width:3.07619143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      </g>
      <path
         transform="matrix(1.0149254,0,0,1.039604,-84.726682,-157.13675)"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         sodipodi:ry="17.854446"
         sodipodi:rx="23.688078"
         sodipodi:cy="-21.201218"
         sodipodi:cx="557.55371"
         id="path3493"
         style="fill:url(#linearGradient3440);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         id="path3495"
         d="m 451.4166,-150.26926 c 7.1012,15.79785 25.44247,23.42303 41.75284,17.04803 16.30148,-6.37152 24.61196,-24.39718 19.13632,-40.81612 -4.42404,11.10587 -13.2737,20.41099 -25.27792,25.1029 -12.01591,4.69649 -24.82216,3.84093 -35.61124,-1.33481 z"
         style="fill:url(#linearGradient3442);fill-opacity:1;fill-rule:nonzero;stroke:none" />
    </g>
    <g
       id="g3541"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable-hdpi-v4/select_album_play_all_pressed.png"
       inkscape:export-xdpi="107.17"
       inkscape:export-ydpi="107.17">
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient3519);fill-opacity:1;fill-rule:nonzero;stroke:#ff7f2a;stroke-width:2.95431923999999979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         id="path3507"
         sodipodi:cx="531.03717"
         sodipodi:cy="-39.409218"
         sodipodi:rx="35.708893"
         sodipodi:ry="35.708893"
         d="m 566.74606,-39.409218 c 0,19.721477 -15.98741,35.708893 -35.70889,35.708893 -19.72148,0 -35.70889,-15.987416 -35.70889,-35.708893 0,-19.721477 15.98741,-35.708893 35.70889,-35.708893 19.4346,0 35.30068,15.542316 35.70131,34.972785"
         transform="matrix(0.6775498,0,0,0.6764005,184.83643,-19.234255)"
         sodipodi:start="0"
         sodipodi:end="6.2625697"
         sodipodi:open="true" />
      <path
         transform="matrix(0.6775498,0,0,0.6764005,181.46883,105.28836)"
         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.07599998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter6084)"
         d="m 523.42302,-241.28365 0,38.32477 32.93672,-19.01602 -32.93672,-19.30875 z"
         id="path3511" />
      <path
         id="path3513"
         d="m 534.91623,-59.111742 0,25.9229 22.31627,-12.862452 -22.31627,-13.060448 z"
         style="fill:#d6ffdc;fill-opacity:1;fill-rule:nonzero;stroke:#33543c;stroke-width:2.08250451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         sodipodi:type="arc"
         style="fill:url(#linearGradient3523);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path3515"
         sodipodi:cx="557.55371"
         sodipodi:cy="-21.201218"
         sodipodi:rx="23.688078"
         sodipodi:ry="17.854446"
         d="m 581.24179,-21.201218 c 0,9.860739 -10.60551,17.8544468 -23.68808,17.8544468 -13.08256,0 -23.68808,-7.9937078 -23.68808,-17.8544468 0,-9.860738 10.60552,-17.854446 23.68808,-17.854446 13.08257,0 23.68808,7.993708 23.68808,17.854446 z"
         transform="matrix(0.6876625,0,0,0.70318867,161.23178,-40.787107)" />
      <path
         style="fill:url(#linearGradient3528);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 524.49556,-36.141934 c 4.81141,10.685674 17.23854,15.84335 28.28963,11.531296 11.04506,-4.309699 16.67582,-16.502264 12.96581,-27.608044 -2.99751,7.512016 -8.9936,13.806004 -17.12705,16.979615 -8.14138,3.176708 -16.81825,2.598007 -24.12839,-0.902867 z"
         id="path3517" />
    </g>
    <rect
       style="fill:url(#radialGradient4388);fill-opacity:1;stroke:none"
       id="rect3548"
       width="145.66399"
       height="145.66399"
       x="419.80762"
       y="24.391977"
       ry="0"
       inkscape:export-filename="/Users/sindre/Projects/subsonic/subsonic-android/res/drawable/album_art_background.png"
       inkscape:export-xdpi="158.17"
       inkscape:export-ydpi="158.17" />
    <image
       y="-263.23248"
       x="-101.74219"
       id="image3634"
       xlink:href="data:image/png;base64,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 D/BPyST3A2i12+UAAAAASUVORK5CYII= "
       height="48"
       width="48" />
    <image
       y="-309.90152"
       x="-66.38681"
       id="image3645"
       xlink:href="data:image/png;base64,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 QmCC "
       height="48"
       width="48" />
    <image
       y="-312.02286"
       x="-112.34879"
       id="image3656"
       xlink:href="data:image/png;base64,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 "
       height="48"
       width="48" />
    <path
       sodipodi:type="inkscape:offset"
       inkscape:radius="-0.90625"
       inkscape:original="M 13.5 14.5 C 10.764102 14.5 8.5 16.764102 8.5 19.5 L 8.5 28.5625 C 8.5 31.298398 10.764102 33.5625 13.5 33.5625 L 18.5 33.5625 L 18.5 29.5625 L 13.5 29.5625 C 12.910913 29.5625 12.5 29.151587 12.5 28.5625 L 12.5 19.5 C 12.5 18.910914 12.910913 18.5 13.5 18.5 L 34.5 18.5 C 35.089091 18.5 35.5 18.910913 35.5 19.5 L 35.5 28.5625 C 35.5 29.151586 35.089087 29.5625 34.5 29.5625 L 29.5 29.5625 L 29.5 26.5 L 22.5 31.5 L 29.5 36.5 L 29.5 33.5625 L 34.5 33.5625 C 37.235898 33.5625 39.499998 31.298398 39.5 28.5625 L 39.5 19.5 C 39.5 16.764102 37.235899 14.5 34.5 14.5 L 13.5 14.5 z "
       style="fill:none;stroke:#ffffff;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.7"
       id="path7239"
       d="m 13.5,15.40625 c -2.235918,0 -4.09375,1.857832 -4.09375,4.09375 l 0,9.0625 c 0,2.235918 1.857832,4.09375 4.09375,4.09375 l 4.09375,0 0,-2.1875 -4.09375,0 c -1.010519,0 -1.90625,-0.895731 -1.90625,-1.90625 l 0,-9.0625 c 0,-1.010518 0.89573,-1.90625 1.90625,-1.90625 l 21,0 c 1.01052,0 1.90625,0.895735 1.90625,1.90625 l 0,9.0625 c 0,1.010518 -0.89573,1.90625 -1.90625,1.90625 l -5,0 A 0.90634063,0.90634063 0 0 1 28.59375,29.5625 l 0,-1.28125 -4.5,3.21875 4.5,3.21875 0,-1.15625 A 0.90634063,0.90634063 0 0 1 29.5,32.65625 l 5,0 c 2.235918,0 4.093748,-1.857831 4.09375,-4.09375 l 0,-9.0625 c 0,-2.235918 -1.857831,-4.09375 -4.09375,-4.09375 l -21,0 z"
       transform="translate(-50,-50)" />
    <path
       sodipodi:type="inkscape:offset"
       inkscape:radius="-0.5"
       inkscape:original="M 13.5 14.5 C 10.764102 14.5 8.5 16.764102 8.5 19.5 L 8.5 28.5625 C 8.5 31.298398 10.764102 33.5625 13.5 33.5625 L 18.5 33.5625 L 18.5 29.5625 L 13.5 29.5625 C 12.910913 29.5625 12.5 29.151587 12.5 28.5625 L 12.5 19.5 C 12.5 18.910914 12.910913 18.5 13.5 18.5 L 34.5 18.5 C 35.089091 18.5 35.5 18.910913 35.5 19.5 L 35.5 28.5625 C 35.5 29.151586 35.089087 29.5625 34.5 29.5625 L 29.5 29.5625 L 29.5 26.5 L 22.5 31.5 L 29.5 36.5 L 29.5 33.5625 L 34.5 33.5625 C 37.235898 33.5625 39.499998 31.298398 39.5 28.5625 L 39.5 19.5 C 39.5 16.764102 37.235899 14.5 34.5 14.5 L 13.5 14.5 z "
       style="opacity:0.4;fill:url(#linearGradient3800);fill-opacity:1;stroke:none"
       id="path7247"
       d="M 13.5,15 C 11.039953,15 9,17.039953 9,19.5 l 0,9.0625 c 0,2.460047 2.039953,4.5 4.5,4.5 l 4.5,0 0,-3 -4.5,0 c -0.821601,0 -1.5,-0.678399 -1.5,-1.5 L 12,19.5 C 12,18.6784 12.678398,18 13.5,18 l 21,0 c 0.821603,0 1.5,0.678401 1.5,1.5 l 0,9.0625 c 0,0.8216 -0.678398,1.5 -1.5,1.5 l -5,0 a 0.50005,0.50005 0 0 1 -0.5,-0.5 L 29,27.46875 23.34375,31.5 29,35.53125 29,33.5625 a 0.50005,0.50005 0 0 1 0.5,-0.5 l 5,0 c 2.460047,0 4.499998,-2.039953 4.5,-4.5 L 39,19.5 C 39,17.039953 36.960048,15 34.5,15 l -21,0 z"
       transform="translate(-50,-50)" />
    <path
       inkscape:export-ydpi="40.02"
       inkscape:export-xdpi="40.02"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_off.png"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cccccccccccccccccccccccc"
       id="path4640"
       d="m 43.377555,-358.01162 c -5.92226,0 -10.82324,4.90098 -10.82324,10.82324 l 0,19.6171 c 0,5.92225 4.90098,10.82323 10.82324,10.82323 l 10.82323,0 0,-8.65858 -10.82323,0 c -1.27517,0 -2.16465,-0.88948 -2.16465,-2.16465 l 0,-19.6171 c 0,-1.27517 0.88948,-2.16465 2.16465,-2.16465 l 45.45757,0 c 1.27517,0 2.16464,0.88948 2.16464,2.16465 l 0,19.6171 c 0,1.27517 -0.88948,2.16465 -2.16464,2.16465 l -10.82324,0 0,-6.62923 -15.15251,10.82323 15.15251,10.82323 0,-6.35865 10.82324,0 c 5.92225,0 10.82323,-4.90098 10.82323,-10.82323 l 0,-19.6171 c 0,-5.92226 -4.90098,-10.82324 -10.82323,-10.82324 l -45.45757,0 z"
       style="fill:url(#radialGradient4644);fill-opacity:1;stroke:none" />
    <rect
       style="fill:none;stroke:none"
       id="rect4642"
       width="80.950653"
       height="80.950661"
       x="25.631012"
       y="-374.67584"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_off.png"
       inkscape:export-xdpi="40.02"
       inkscape:export-ydpi="40.02" />
    <path
       style="fill:url(#radialGradient4658);fill-opacity:1.0;stroke:none"
       d="m 172.77809,-356.59741 c -5.92226,0 -10.82324,4.90098 -10.82324,10.82324 l 0,19.6171 c 0,5.92225 4.90098,10.82323 10.82324,10.82323 l 10.82323,0 0,-8.65858 -10.82323,0 c -1.27517,0 -2.16465,-0.88948 -2.16465,-2.16465 l 0,-19.6171 c 0,-1.27517 0.88948,-2.16465 2.16465,-2.16465 l 45.45757,0 c 1.27517,0 2.16464,0.88948 2.16464,2.16465 l 0,19.6171 c 0,1.27517 -0.88948,2.16465 -2.16464,2.16465 l -10.82324,0 0,-6.62923 -15.15251,10.82323 15.15251,10.82323 0,-6.35865 10.82324,0 c 5.92225,0 10.82323,-4.90098 10.82323,-10.82323 l 0,-19.6171 c 0,-5.92226 -4.90098,-10.82324 -10.82323,-10.82324 l -45.45757,0 z"
       id="path4654"
       sodipodi:nodetypes="cccccccccccccccccccccccc"
       inkscape:connector-curvature="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_all.png"
       inkscape:export-xdpi="40.02"
       inkscape:export-ydpi="40.02" />
    <rect
       inkscape:export-ydpi="40.02"
       inkscape:export-xdpi="40.02"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_all.png"
       ry="0"
       y="-373.26163"
       x="155.03156"
       height="80.950661"
       width="80.950653"
       id="rect4656"
       style="fill:none;stroke:none" />
    <path
       inkscape:export-ydpi="40.02"
       inkscape:export-xdpi="40.02"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_single.png"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cccccccccccccccccccccccc"
       id="path4660"
       d="m 287.32939,-355.8903 c -5.92226,0 -10.82324,4.90098 -10.82324,10.82324 l 0,19.6171 c 0,5.92225 4.90098,10.82323 10.82324,10.82323 l 10.82323,0 0,-8.65858 -10.82323,0 c -1.27517,0 -2.16465,-0.88948 -2.16465,-2.16465 l 0,-19.6171 c 0,-1.27517 0.88948,-2.16465 2.16465,-2.16465 l 45.45757,0 c 1.27517,0 2.16464,0.88948 2.16464,2.16465 l 0,19.6171 c 0,1.27517 -0.88948,2.16465 -2.16464,2.16465 l -10.82324,0 0,-6.62923 -15.15251,10.82323 15.15251,10.82323 0,-6.35865 10.82324,0 c 5.92225,0 10.82323,-4.90098 10.82323,-10.82323 l 0,-19.6171 c 0,-5.92226 -4.90098,-10.82324 -10.82323,-10.82324 l -45.45757,0 z"
       style="fill:url(#radialGradient4664);fill-opacity:1;stroke:none" />
    <rect
       style="fill:none;stroke:none"
       id="rect4662"
       width="80.950653"
       height="80.950661"
       x="269.58286"
       y="-372.55453"
       ry="0"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_single.png"
       inkscape:export-xdpi="40.02"
       inkscape:export-ydpi="40.02" />
    <path
       sodipodi:type="arc"
       style="fill:url(#linearGradient4692);fill-opacity:1;stroke:none"
       id="path4666"
       sodipodi:cx="550.4826"
       sodipodi:cy="-343.19653"
       sodipodi:rx="12.374369"
       sodipodi:ry="12.374369"
       d="m 562.85697,-343.19653 c 0,6.83417 -5.54019,12.37437 -12.37437,12.37437 -6.83417,0 -12.37436,-5.5402 -12.37436,-12.37437 0,-6.83418 5.54019,-12.37437 12.37436,-12.37437 6.73477,0 12.23291,5.38595 12.37174,12.11928"
       transform="matrix(1.1246049,0,0,1.1246049,-309.1914,35.358717)"
       sodipodi:start="0"
       sodipodi:end="6.2625697"
       sodipodi:open="true"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_single.png"
       inkscape:export-xdpi="40.02"
       inkscape:export-ydpi="40.02" />
    <text
       xml:space="preserve"
       style="font-size:33.29558182px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
       x="301.47205"
       y="-341.0293"
       id="text4694"
       sodipodi:linespacing="125%"
       inkscape:export-filename="i:/Projects/subsonic/subsonic-android/res/drawable/media_repeat_single.png"
       inkscape:export-xdpi="40.02"
       inkscape:export-ydpi="40.02"><tspan
         sodipodi:role="line"
         id="tspan4696"
         x="301.47205"
         y="-341.0293"
         style="font-size:26.63646507px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Sans;-inkscape-font-specification:Sans">1</tspan></text>
  </g>
</svg>