NoosferoTelaDeslogado.svg
189 KB
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
<?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="846.7807"
height="210.14145"
id="svg3922"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
version="1.0"
sodipodi:docname="NoosferoTelaDeslogado.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/valessio/Desktop/novabar.png"
inkscape:export-xdpi="86.513153"
inkscape:export-ydpi="86.513153">
<defs
id="defs3924">
<linearGradient
inkscape:collect="always"
id="linearGradient3462">
<stop
style="stop-color:#fcaf3e;stop-opacity:1;"
offset="0"
id="stop3464" />
<stop
style="stop-color:#fcaf3e;stop-opacity:0;"
offset="1"
id="stop3466" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3270">
<stop
style="stop-color:#3465a4;stop-opacity:1;"
offset="0"
id="stop3272" />
<stop
style="stop-color:#3465a4;stop-opacity:0;"
offset="1"
id="stop3274" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3234">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop3236" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop3238" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3223">
<stop
style="stop-color:#eeeeec;stop-opacity:1;"
offset="0"
id="stop3225" />
<stop
style="stop-color:#eeeeec;stop-opacity:0;"
offset="1"
id="stop3227" />
</linearGradient>
<linearGradient
id="linearGradient10411">
<stop
style="stop-color:#eeeeec;stop-opacity:1;"
offset="0"
id="stop10413" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop10415" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient10049">
<stop
style="stop-color:#204a87;stop-opacity:1;"
offset="0"
id="stop10051" />
<stop
style="stop-color:#3465a4;stop-opacity:1"
offset="1"
id="stop10053" />
</linearGradient>
<linearGradient
id="linearGradient10039"
inkscape:collect="always">
<stop
id="stop10041"
offset="0"
style="stop-color:#eeeeec;stop-opacity:1;" />
<stop
id="stop10043"
offset="1"
style="stop-color:#eeeeec;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient9586">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop9588" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop9590" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4424">
<stop
style="stop-color:#eeeeec;stop-opacity:1;"
offset="0"
id="stop4426" />
<stop
style="stop-color:#eeeeec;stop-opacity:0;"
offset="1"
id="stop4428" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4414">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4416" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4418" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4406">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4408" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4410" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4398">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4400" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4402" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4390">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4392" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4394" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4170">
<stop
style="stop-color:#5c3566;stop-opacity:1"
offset="0"
id="stop4172" />
<stop
style="stop-color:#ad7fa8;stop-opacity:1"
offset="1"
id="stop4174" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4162">
<stop
style="stop-color:#4e9a06;stop-opacity:1;"
offset="0"
id="stop4164" />
<stop
style="stop-color:#8ae234;stop-opacity:1"
offset="1"
id="stop4166" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4154">
<stop
style="stop-color:#ce5c00;stop-opacity:1;"
offset="0"
id="stop4156" />
<stop
style="stop-color:#fcaf3e;stop-opacity:1"
offset="1"
id="stop4158" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4146">
<stop
style="stop-color:#c4a000;stop-opacity:1;"
offset="0"
id="stop4148" />
<stop
style="stop-color:#fce94f;stop-opacity:1"
offset="1"
id="stop4150" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4074">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4076" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4078" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4059">
<stop
style="stop-color:#eeeeec;stop-opacity:1;"
offset="0"
id="stop4061" />
<stop
style="stop-color:#eeeeec;stop-opacity:0;"
offset="1"
id="stop4063" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4043">
<stop
style="stop-color:#cc0000;stop-opacity:1;"
offset="0"
id="stop4045" />
<stop
style="stop-color:#fce94f;stop-opacity:1"
offset="1"
id="stop4047" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3220">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop3222" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop3224" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3220"
id="linearGradient5242"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.9256704,0,0,0.3299691,18.150751,-324.9528)"
x1="40.077412"
y1="-28.61314"
x2="40.077412"
y2="-169.55635" />
<linearGradient
id="linearGradient5642">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop5644" />
<stop
style="stop-color:#eeeeec;stop-opacity:0;"
offset="1"
id="stop5646" />
</linearGradient>
<linearGradient
id="linearGradient4198">
<stop
id="stop4200"
offset="0"
style="stop-color:#588cb5;stop-opacity:1;" />
<stop
id="stop4202"
offset="1"
style="stop-color:#438cc4;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4198"
id="linearGradient7309"
gradientUnits="userSpaceOnUse"
x1="345.29486"
y1="216.60402"
x2="345.29486"
y2="659.35962" />
<linearGradient
id="linearGradient5654">
<stop
id="stop5656"
offset="0"
style="stop-color:#d3d7cf;stop-opacity:1" />
<stop
id="stop5658"
offset="1"
style="stop-color:#eeeeec;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4075">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4077" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4079" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4067">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4069" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4071" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3747"
id="linearGradient3753"
x1="-1523.9161"
y1="4.450161"
x2="-1523.9161"
y2="-19.423532"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(1690.0714,-52.285714)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3771">
<stop
style="stop-color:#3465a4;stop-opacity:1"
offset="0"
id="stop3773" />
<stop
style="stop-color:#729fcf;stop-opacity:1"
offset="1"
id="stop3775" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3771"
id="linearGradient3777"
x1="-1316"
y1="-39.381077"
x2="-1316"
y2="-17.386173"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(1690.0714,92.285714)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3747">
<stop
style="stop-color:#ffffff;stop-opacity:0.49264705"
offset="0"
id="stop3749" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3751" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3747"
id="linearGradient3904"
gradientUnits="userSpaceOnUse"
x1="-1523.9161"
y1="4.450161"
x2="-1523.9161"
y2="-19.423532"
gradientTransform="matrix(1,0,0,0.1099236,1690.0714,-48.330893)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4067"
id="linearGradient4073"
x1="176.05347"
y1="78.031708"
x2="176.05347"
y2="66.709282"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4075"
id="linearGradient4081"
x1="206.81261"
y1="78.031708"
x2="206.81261"
y2="66.707657"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4043"
id="linearGradient4049"
x1="615.18292"
y1="106.89743"
x2="615.18292"
y2="135.2424"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(15.540229,5.1825522)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4059"
id="linearGradient4065"
x1="643.01068"
y1="94.787857"
x2="643.01068"
y2="120.91283"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(15.540229,5.1825522)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4074"
id="linearGradient4080"
x1="686.58459"
y1="143.1387"
x2="686.58459"
y2="207.43913"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.3528644,0,68.6066)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4074"
id="linearGradient4102"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.3920848,0,156.77089)"
x1="686.58459"
y1="143.1387"
x2="686.58459"
y2="207.43913" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4043"
id="linearGradient4104"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(15.540229,100.06846)"
x1="615.18292"
y1="106.89743"
x2="615.18292"
y2="135.2424" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4059"
id="linearGradient4106"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(15.540229,100.06846)"
x1="643.01068"
y1="94.787857"
x2="643.01068"
y2="120.91283" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4146"
id="linearGradient4152"
x1="88.372231"
y1="128.94341"
x2="88.372231"
y2="210.26068"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4154"
id="linearGradient4160"
x1="242.5215"
y1="128.2363"
x2="242.5215"
y2="207.43225"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4162"
id="linearGradient4168"
x1="368.38651"
y1="129.57854"
x2="368.38651"
y2="208.14217"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4170"
id="linearGradient4176"
x1="494.25153"
y1="126.11497"
x2="494.25153"
y2="206.06615"
gradientUnits="userSpaceOnUse" />
<filter
inkscape:collect="always"
id="filter4374"
x="-0.096003279"
width="1.1920066"
y="-0.13908768"
height="1.2781754">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="6.3114656"
id="feGaussianBlur4376" />
</filter>
<filter
inkscape:collect="always"
id="filter4378"
x="-0.096003279"
width="1.1920066"
y="-0.13908768"
height="1.2781754">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="6.3114656"
id="feGaussianBlur4380" />
</filter>
<filter
inkscape:collect="always"
id="filter4382"
x="-0.096003279"
width="1.1920066"
y="-0.13908768"
height="1.2781754">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="6.3114656"
id="feGaussianBlur4384" />
</filter>
<filter
inkscape:collect="always"
id="filter4386"
x="-0.096003279"
width="1.1920066"
y="-0.13908768"
height="1.2781754">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="6.3114656"
id="feGaussianBlur4388" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4390"
id="linearGradient4396"
x1="451.11801"
y1="244.2018"
x2="552.4812"
y2="244.2018"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-4,-60)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4398"
id="linearGradient4404"
x1="333.03119"
y1="241.37338"
x2="433.92715"
y2="241.37338"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-4,-60)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4406"
id="linearGradient4412"
x1="203.63063"
y1="241.37338"
x2="301.21393"
y2="241.37338"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-4,-60)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4414"
id="linearGradient4420"
x1="69.98745"
y1="239.95917"
x2="164.04329"
y2="239.95917"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-4,-60)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4424"
id="linearGradient4430"
x1="253.14423"
y1="29.841927"
x2="253.14423"
y2="142.30373"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.9580838,0,0,0.5909091,24.495503,73.222189)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4059"
id="linearGradient2585"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-540.93439,131.76485)"
x1="643.01068"
y1="94.787857"
x2="643.01068"
y2="120.91283" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4043"
id="linearGradient2588"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-540.93439,131.76485)"
x1="615.18292"
y1="106.89743"
x2="615.18292"
y2="135.2424" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4074"
id="linearGradient2591"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.3920848,-556.47462,188.46728)"
x1="686.58459"
y1="143.1387"
x2="686.58459"
y2="207.43913" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient9592"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-263.7645)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10047"
gradientUnits="userSpaceOnUse"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038"
gradientTransform="translate(2,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10049"
id="linearGradient10055"
x1="-1060.4597"
y1="-24.275288"
x2="-1060.4597"
y2="-0.77528834"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10057"
gradientUnits="userSpaceOnUse"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038"
gradientTransform="translate(18,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10059"
gradientUnits="userSpaceOnUse"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038"
gradientTransform="translate(14,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10061"
gradientUnits="userSpaceOnUse"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038"
gradientTransform="translate(10,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10063"
gradientUnits="userSpaceOnUse"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038"
gradientTransform="translate(6,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10107"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,0)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10109"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(6,0)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10111"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(10,0)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10113"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(14,0)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10115"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(18,0)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10049"
id="linearGradient10117"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,0)"
x1="-1060.4597"
y1="-24.275288"
x2="-1060.4597"
y2="-0.77528834" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10260"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1235.7716,-263.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10263"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1243.7716,-263.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10266"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1251.7716,-263.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10269"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1259.7716,-263.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient10272"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-1264.8988,-250.98993)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10049"
id="linearGradient10279"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-1264.8988,-250.98993)"
x1="-1060.4597"
y1="-24.275288"
x2="-1060.4597"
y2="-0.77528834" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10375">
<path
id="path10377"
d="M -692.96875,188.5 C -700.7869,188.5 -707.1875,194.90055 -707.1875,202.71875 L -707.1875,261.75 C -707.1875,269.56821 -700.7869,275.96876 -692.96875,275.96875 L -448.9375,275.96875 C -441.11931,275.96875 -434.71875,269.56819 -434.71875,261.75 L -434.71875,202.71875 C -434.71875,194.90055 -441.11933,188.5 -448.9375,188.5 L -692.96875,188.5 z"
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.17599964;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10407">
<path
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.27600002;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -712.96875,231.09375 C -719.38754,231.09375 -724.5938,236.29997 -724.5938,242.71875 L -724.5938,301.75 C -724.5938,308.16879 -719.38752,313.37501 -712.96875,313.375 L -468.9375,313.375 C -462.51871,313.375 -457.3125,308.16879 -457.3125,301.75 L -457.3125,242.71875 C -457.3125,236.29996 -462.51874,231.09375 -468.9375,231.09375 L -712.96875,231.09375 z"
id="path10409" />
</clipPath>
<filter
inkscape:collect="always"
id="filter3274"
x="-0.040876122"
width="1.0817522"
y="-0.14321764"
height="1.2864353">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="2.0177276"
id="feGaussianBlur3276" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4198"
id="linearGradient2633"
gradientUnits="userSpaceOnUse"
x1="345.29486"
y1="216.60402"
x2="345.29486"
y2="659.35962" />
<filter
inkscape:collect="always"
id="filter3219">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.96718632"
id="feGaussianBlur3221" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3240"
x1="-1030.239"
y1="-23.721935"
x2="-1030.239"
y2="61.130878"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.1979062,-1269.7716,-291.36546)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3244"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.1979062,-1269.7716,-111.36546)"
x1="-1030.239"
y1="-23.721935"
x2="-1030.239"
y2="61.130878" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3276"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1269.7716,-263.7645)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3282"
gradientUnits="userSpaceOnUse"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195"
gradientTransform="matrix(1.1929267,0,0,0.9992603,-742.09563,-263.70621)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3284"
gradientUnits="userSpaceOnUse"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195"
gradientTransform="translate(-927.77164,-263.7645)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3288"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8597007,0,0,1.0005843,-886.66577,-263.81055)"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3290"
gradientUnits="userSpaceOnUse"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195"
gradientTransform="matrix(0.7983233,0,0,1.0008551,-1461.7057,-263.83189)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3302"
gradientUnits="userSpaceOnUse"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195"
gradientTransform="matrix(1.5261946,0,0,0.9981129,-678.49748,-217.61578)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3306"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1929267,0,0,0.9992602,-795.83574,-217.70621)"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3308"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1227698,0,0,0.9995218,-864.67352,-217.72682)"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3270"
id="linearGradient3310"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.087692,0,0,0.9996556,-706.45849,-217.73736)"
x1="-860.53339"
y1="110.62836"
x2="-859.1192"
y2="68.20195" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3312"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,0)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3314"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-263.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3316"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-263.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3318"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-263.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3380"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.1979062,-1269.7716,148.63454)"
x1="-1030.239"
y1="-23.721935"
x2="-1030.239"
y2="61.130878" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3384"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-3.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3386"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-3.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3388"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-3.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3392"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1251.7716,-3.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3394"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1243.7716,-3.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3396"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1235.7716,-3.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3398"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.1979062,-1269.7716,-31.36546)"
x1="-1030.239"
y1="-23.721935"
x2="-1030.239"
y2="61.130878" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3223"
id="linearGradient3430"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1269.7716,-263.7645)"
x1="-1028.0624"
y1="34.267963"
x2="-929.06238"
y2="92.267967" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3445"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,0)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10049"
id="linearGradient3447"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-1264.8988,9.01007)"
x1="-1060.4597"
y1="-24.275288"
x2="-1060.4597"
y2="-0.77528834" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3449"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-1264.8988,9.01007)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3223"
id="linearGradient3451"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1269.7716,-3.7645)"
x1="-1028.0624"
y1="34.267963"
x2="-929.06238"
y2="92.267967" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3458"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-3.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3460"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1259.7716,-3.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3468"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3470"
gradientUnits="userSpaceOnUse"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3472"
gradientUnits="userSpaceOnUse"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3474"
gradientUnits="userSpaceOnUse"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3476"
gradientUnits="userSpaceOnUse"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3478"
gradientUnits="userSpaceOnUse"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3480"
gradientUnits="userSpaceOnUse"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3482"
gradientUnits="userSpaceOnUse"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3484"
gradientUnits="userSpaceOnUse"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168"
gradientTransform="translate(3959.6338,1.2145996e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3578"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.1979062,-1269.7716,408.63454)"
x1="-1030.239"
y1="-23.721935"
x2="-1030.239"
y2="61.130878" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3580"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,256.2355)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3582"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,256.2355)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3584"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,256.2355)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3586"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1251.7716,256.2355)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3588"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1243.7716,256.2355)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3590"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1235.7716,256.2355)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3592"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.1979062,-1269.7716,228.63454)"
x1="-1030.239"
y1="-23.721935"
x2="-1030.239"
y2="61.130878" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3594"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,0)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10049"
id="linearGradient3596"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-1264.8988,9.01007)"
x1="-1060.4597"
y1="-24.275288"
x2="-1060.4597"
y2="-0.77528834" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3598"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-1264.8988,9.01007)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3600"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3602"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3604"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3606"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3608"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2312.8225"
y1="116.26797"
x2="-2312.8225"
y2="55.764168" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3610"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3612"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3614"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3462"
id="linearGradient3616"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(3959.6338,260)"
x1="-2315.0625"
y1="170.26796"
x2="-2314.0625"
y2="101.80026" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9586"
id="linearGradient3618"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1267.7716,-3.7645)"
x1="-1093"
y1="-52.84375"
x2="-1093"
y2="-77.84375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10039"
id="linearGradient3620"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1259.7716,-3.7645)"
x1="-1056.3192"
y1="18.037212"
x2="-1056.3192"
y2="-17.369038" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3223"
id="linearGradient3622"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1269.7716,-3.7645)"
x1="-1028.0624"
y1="34.267963"
x2="-929.06238"
y2="92.267967" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3223"
id="linearGradient3625"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1147.7716,290.2355)"
x1="-1028.0624"
y1="34.267963"
x2="-929.06238"
y2="92.267967" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="0.70710678"
inkscape:cx="-638.4138"
inkscape:cy="46.270677"
inkscape:document-units="px"
inkscape:current-layer="layer1"
height="700px"
width="746.73px"
inkscape:window-width="1280"
inkscape:window-height="727"
inkscape:window-x="0"
inkscape:window-y="25"
showguides="true"
inkscape:guide-bbox="true" />
<metadata
id="metadata3927">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Camada 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(1132.0624,35.873485)">
<g
transform="matrix(1,0,0,-1,0,270.94681)"
id="g3528">
<path
transform="matrix(1,0,0,-1,-1266.8988,9.01007)"
id="path3530"
d="M -1113.5536,-29.369038 L -1113.5536,-6.025288 C -1113.5535,-0.217267 -1108.8927,4.443462 -1103.0848,4.443462 L -1005.5536,4.443462 C -999.7457,4.443461 -995.08477,-0.21727 -995.08477,-6.025288 L -995.08477,-29.369038 L -1005.5536,-29.369038 L -1103.0848,-29.369038 L -1113.5536,-29.369038 z"
style="opacity:1;fill:url(#linearGradient3594);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate" />
<path
id="path3532"
d="M -2380.4394,44.38768 L -2380.4394,33.92205 L -2380.4394,23.53039 L -2380.4394,15.02476 C -2380.4394,9.21674 -2375.7818,4.55913 -2369.9739,4.55913 L -2272.4548,4.55913 C -2266.647,4.55913 -2261.9893,9.21674 -2261.9893,15.02476 L -2261.9893,23.53039 L -2261.9893,33.92205 L -2261.9893,44.38768 L -2272.4548,44.38768 L -2369.9739,44.38768 L -2380.4394,44.38768 z"
style="fill:url(#linearGradient3596);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path3534"
d="M -2380.4523,24.37911 L -2380.4523,15.03536 C -2380.4522,9.22734 -2375.7914,4.56661 -2369.9835,4.56661 L -2272.4523,4.56661 C -2266.6445,4.56661 -2261.9835,9.22734 -2261.9835,15.03536 L -2261.9835,24.37911 L -2272.4523,24.37911 L -2369.9835,24.37911 L -2380.4523,24.37911 z"
style="fill:url(#linearGradient3598);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<path
sodipodi:nodetypes="ccccc"
id="path3320"
d="M -2400.3976,142.87118 L -1557.208,142.87118 L -1557.208,163.10963 L -2400.3976,163.10963 L -2400.3976,142.87118 z"
style="fill:url(#linearGradient3380);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="ccccc"
id="path3348"
d="M -2400.3976,41.11382 L -1557.208,41.11382 L -1557.208,149.23452 L -2400.3976,149.23452 L -2400.3976,41.11382 z"
style="fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.07599998000000019;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:url(#linearGradient3244);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2400.3976,-117.12882 L -1557.208,-117.12882 L -1557.208,-96.890372 L -2400.3976,-96.890372 L -2400.3976,-117.12882 z"
id="path3242"
sodipodi:nodetypes="ccccc" />
<path
style="opacity:1;fill:url(#linearGradient9592);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -2255.3252,-293.13354 L -2255.3252,-269.78979 C -2255.3251,-263.98177 -2250.6643,-259.32104 -2244.8564,-259.32104 L -2147.3252,-259.32104 C -2141.5173,-259.32104 -2136.8564,-263.98177 -2136.8564,-269.78979 L -2136.8564,-293.13354 L -2147.3252,-293.13354 L -2244.8564,-293.13354 L -2255.3252,-293.13354 z"
id="path10021" />
<path
style="opacity:1;fill:url(#linearGradient3318);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -2127.3252,-293.13354 L -2127.3252,-269.78979 C -2127.3252,-263.98177 -2122.6643,-259.32104 -2116.8564,-259.32104 L -2019.3252,-259.32104 C -2013.5173,-259.32104 -2008.8564,-263.98177 -2008.8564,-269.78979 L -2008.8564,-293.13354 L -2019.3252,-293.13354 L -2116.8564,-293.13354 L -2127.3252,-293.13354 z"
id="path10019" />
<path
style="opacity:1;fill:url(#linearGradient3316);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -1999.3252,-293.13354 L -1999.3252,-269.78979 C -1999.3252,-263.98177 -1994.6643,-259.32104 -1988.8564,-259.32104 L -1891.3252,-259.32104 C -1885.5173,-259.32104 -1880.8564,-263.98177 -1880.8564,-269.78979 L -1880.8564,-293.13354 L -1891.3252,-293.13354 L -1988.8564,-293.13354 L -1999.3252,-293.13354 z"
id="path10017" />
<path
style="opacity:1;fill:url(#linearGradient3314);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -1871.3252,-293.13354 L -1871.3252,-269.78979 C -1871.3252,-263.98177 -1866.6643,-259.32104 -1860.8564,-259.32104 L -1763.3252,-259.32104 C -1757.5173,-259.32104 -1752.8564,-263.98177 -1752.8564,-269.78979 L -1752.8564,-293.13354 L -1763.3252,-293.13354 L -1860.8564,-293.13354 L -1871.3252,-293.13354 z"
id="path9584" />
<path
id="path9555"
d="M -2255.3123,-299.14211 L -2255.3123,-288.67649 L -2255.3123,-278.28482 L -2255.3123,-269.77919 C -2255.3123,-263.97117 -2250.6547,-259.31356 -2244.8468,-259.31356 L -2147.3277,-259.31356 C -2141.5198,-259.31356 -2136.8622,-263.97117 -2136.8622,-269.77919 L -2136.8622,-278.28482 L -2136.8622,-288.67649 L -2136.8622,-299.14211 L -2147.3277,-299.14211 L -2244.8468,-299.14211 L -2255.3123,-299.14211 z"
style="fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:#4e9a06;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2127.3123,-299.14211 L -2127.3123,-288.67649 L -2127.3123,-278.28482 L -2127.3123,-269.77919 C -2127.3123,-263.97117 -2122.6547,-259.31356 -2116.8468,-259.31356 L -2019.3277,-259.31356 C -2013.5198,-259.31356 -2008.8622,-263.97117 -2008.8622,-269.77919 L -2008.8622,-278.28482 L -2008.8622,-288.67649 L -2008.8622,-299.14211 L -2019.3277,-299.14211 L -2116.8468,-299.14211 L -2127.3123,-299.14211 z"
id="path9557" />
<path
id="path9559"
d="M -1999.3123,-299.14211 L -1999.3123,-288.67649 L -1999.3123,-278.28482 L -1999.3123,-269.77919 C -1999.3123,-263.97117 -1994.6547,-259.31356 -1988.8468,-259.31356 L -1891.3277,-259.31356 C -1885.5198,-259.31356 -1880.8622,-263.97117 -1880.8622,-269.77919 L -1880.8622,-278.28482 L -1880.8622,-288.67649 L -1880.8622,-299.14211 L -1891.3277,-299.14211 L -1988.8468,-299.14211 L -1999.3123,-299.14211 z"
style="fill:#5c3566;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:#a40000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1871.3123,-299.14211 L -1871.3123,-288.67649 L -1871.3123,-278.28482 L -1871.3123,-269.77919 C -1871.3123,-263.97117 -1866.6547,-259.31356 -1860.8468,-259.31356 L -1763.3277,-259.31356 C -1757.5198,-259.31356 -1752.8622,-263.97117 -1752.8622,-269.77919 L -1752.8622,-278.28482 L -1752.8622,-288.67649 L -1752.8622,-299.14211 L -1763.3277,-299.14211 L -1860.8468,-299.14211 L -1871.3123,-299.14211 z"
id="path9563" />
<path
style="fill:url(#linearGradient10269);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2255.3252,-279.13354 L -2255.3252,-269.78979 C -2255.3251,-263.98177 -2250.6643,-259.32104 -2244.8564,-259.32104 L -2147.3252,-259.32104 C -2141.5173,-259.32104 -2136.8564,-263.98177 -2136.8564,-269.78979 L -2136.8564,-279.13354 L -2147.3252,-279.13354 L -2244.8564,-279.13354 L -2255.3252,-279.13354 z"
id="path10031" />
<path
style="fill:url(#linearGradient10266);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2127.3252,-279.13354 L -2127.3252,-269.78979 C -2127.3252,-263.98177 -2122.6643,-259.32104 -2116.8564,-259.32104 L -2019.3252,-259.32104 C -2013.5173,-259.32104 -2008.8564,-263.98177 -2008.8564,-269.78979 L -2008.8564,-279.13354 L -2019.3252,-279.13354 L -2116.8564,-279.13354 L -2127.3252,-279.13354 z"
id="path10029" />
<path
style="fill:url(#linearGradient10263);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1999.3252,-279.13354 L -1999.3252,-269.78979 C -1999.3252,-263.98177 -1994.6643,-259.32104 -1988.8564,-259.32104 L -1891.3252,-259.32104 C -1885.5173,-259.32104 -1880.8564,-263.98177 -1880.8564,-269.78979 L -1880.8564,-279.13354 L -1891.3252,-279.13354 L -1988.8564,-279.13354 L -1999.3252,-279.13354 z"
id="path10027" />
<path
style="fill:url(#linearGradient10260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1871.3252,-279.13354 L -1871.3252,-269.78979 C -1871.3252,-263.98177 -1866.6643,-259.32104 -1860.8564,-259.32104 L -1763.3252,-259.32104 C -1757.5173,-259.32104 -1752.8564,-263.98177 -1752.8564,-269.78979 L -1752.8564,-279.13354 L -1763.3252,-279.13354 L -1860.8564,-279.13354 L -1871.3252,-279.13354 z"
id="path9565" />
<path
sodipodi:nodetypes="ccccc"
id="path3232"
d="M -2400.3976,-297.12882 L -1557.208,-297.12882 L -1557.208,-276.89037 L -2400.3976,-276.89037 L -2400.3976,-297.12882 z"
style="fill:url(#linearGradient3240);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
style="opacity:1;fill:#fce94f;fill-opacity:0.58088235;fill-rule:nonzero;stroke:#ef2929;stroke-width:0.57599998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.3039999, 2.3039999;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3452"
width="735.39105"
height="21.920309"
x="20.489977"
y="82.274353" />
<rect
y="-492.97644"
x="18.150757"
height="121.25689"
width="740.53632"
id="rect3446"
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.48559672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
transform="scale(1,-1)" />
<rect
style="opacity:1;fill:#edd400;fill-opacity:0.090535;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.70031846;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.48559672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect5706"
width="63.380981"
height="88.891418"
x="679.65576"
y="-458.01291"
transform="scale(1,-1)" />
<flowRoot
xml:space="preserve"
id="flowRoot5668"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans"
transform="matrix(0.7675217,0,0,0.7675217,618.44287,25.81861)"><flowRegion
id="flowRegion5670"><rect
id="rect5672"
width="70.694923"
height="101.93214"
x="84"
y="458"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Sans" /></flowRegion><flowPara
id="flowPara5676">Mudar Idioma:</flowPara><flowPara
id="flowPara5678"
style="fill:#3465a4"> English</flowPara><flowPara
id="flowPara5680"
style="fill:#3465a4"> Deutsch</flowPara><flowPara
id="flowPara5682"
style="fill:#2e3436"> Español</flowPara><flowPara
id="flowPara5684"
style="fill:#3465a4"> Français</flowPara><flowPara
id="flowPara5686"
style="fill:#3465a4"> Italiano</flowPara><flowPara
id="flowPara5688"
style="fill:#3465a4"> Polski</flowPara><flowPara
id="flowPara5690"
style="fill:#3465a4"> Português</flowPara><flowPara
id="flowPara5692"
style="fill:#3465a4"> Svenska</flowPara><flowPara
id="flowPara5694"
style="fill:#3465a4"> Türkçe</flowPara><flowPara
id="flowPara5700"
style="fill:#3465a4"> Руccкий</flowPara></flowRoot> <rect
transform="scale(1,-1)"
y="-381.00757"
x="18.150757"
height="9.0229483"
width="740.53632"
id="rect5240"
style="opacity:1;fill:url(#linearGradient5242);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.7881356;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.48559672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect6470"
width="740.53632"
height="7.2000256"
x="18.150757"
y="364.51953" />
<path
style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 0,1.78125 L 0,34.4375 L 0.09375,34.4375 L 0.09375,449.15625 L 746.09375,449.15625 L 746.09375,34.4375 L 746.125,34.4375 L 746.125,1.78125 L 0,1.78125 z M 3.09375,34.4375 L 743.09375,34.4375 L 743.09375,444.90625 L 3.09375,444.90625 L 3.09375,34.4375 z"
transform="translate(15.540229,46.068462)"
id="rect4484" />
<rect
style="opacity:1;fill:#ce5c00;fill-opacity:1;stroke:#ce5c00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect3912"
width="76.740646"
height="25.207016"
x="595.31812"
y="52.129669" />
<rect
y="52.129669"
x="435.31815"
height="25.207016"
width="76.740646"
id="rect3779"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.63230342;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect3783"
width="76.740646"
height="25.207016"
x="435.31815"
y="52.129669" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.63230342;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect3787"
width="76.740646"
height="25.207016"
x="515.31812"
y="52.129669" />
<rect
y="52.129669"
x="515.31812"
height="25.207016"
width="76.740646"
id="rect3789"
style="opacity:1;fill:#4e9a06;fill-opacity:1;stroke:#4e9a06;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path3781"
d="M 436.25273,53.40464 L 436.25273,76.052196 L 511.09723,76.052196 L 511.09723,53.40464 L 436.25273,53.40464 z"
style="fill:none;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-opacity:1;stroke:#8ae234;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 516.25273,53.40464 L 516.25273,76.052196 L 591.09723,76.052196 L 591.09723,53.40464 L 516.25273,53.40464 z"
id="path3795" />
<rect
y="52.129669"
x="355.31815"
height="25.207016"
width="76.740646"
id="rect3755"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.63230342;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path3757"
d="M 356.25273,53.404639 L 356.25273,76.052196 L 431.09723,76.052196 L 431.09723,53.404639 L 356.25273,53.404639 z"
style="fill:url(#linearGradient3777);fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="scale(1,-1)"
style="opacity:0.6925795;fill:url(#linearGradient3904);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3902"
width="746.71814"
height="1.9759846"
x="15.549334"
y="-49.818462" />
<path
style="opacity:0.6925795;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 0,0 L 0,1.78125 L 746.125,1.78125 L 746.125,0 L 0,0 z"
transform="translate(15.540229,46.068462)"
id="rect3906" />
<path
id="path3908"
d="M 596.25273,53.40464 L 596.25273,76.052196 L 671.09723,76.052196 L 671.09723,53.40464 L 596.25273,53.40464 z"
style="fill:none;fill-opacity:1;stroke:#fcaf3e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="52.129669"
x="675.31812"
height="25.207016"
width="76.740646"
id="rect4027"
style="opacity:1;fill:#c4a000;fill-opacity:1;stroke:#c4a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-opacity:1;stroke:#fcaf3e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 676.25273,53.40464 L 676.25273,76.052196 L 751.09723,76.052196 L 751.09723,53.40464 L 676.25273,53.40464 z"
id="path4033" />
<rect
y="-65.818459"
x="15.549334"
height="17.975985"
width="746.71814"
id="rect4342"
style="opacity:0.6925795;fill:url(#linearGradient3753);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
transform="scale(1,-1)" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#c4a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4035"
width="76.740646"
height="25.207016"
x="675.31812"
y="52.129669" />
<rect
y="52.129669"
x="435.31815"
height="25.207016"
width="76.740646"
id="rect3785"
style="opacity:1;fill:none;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#4e9a06;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect3797"
width="76.740646"
height="25.207016"
x="515.31812"
y="52.129669" />
<rect
y="52.129669"
x="595.31812"
height="25.207016"
width="76.740646"
id="rect3910"
style="opacity:1;fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#729fcf;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect3763"
width="76.740646"
height="25.207016"
x="355.31815"
y="52.129669" />
<text
sodipodi:linespacing="125%"
id="text3905"
y="59.435028"
x="160.29871"
style="font-size:8.83812141px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="59.435028"
x="160.29871"
id="tspan3907"
sodipodi:role="line">Acessibilidade Central de Buscas Ir para o conteúdo</tspan></text>
<path
sodipodi:type="star"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3914"
sodipodi:sides="3"
sodipodi:cx="-1604.4253"
sodipodi:cy="-101.63608"
sodipodi:r1="38.059162"
sodipodi:r2="19.029581"
sodipodi:arg1="2.0943951"
sodipodi:arg2="3.1415927"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M -1623.4549,-68.675877 L -1623.4549,-101.63608 L -1623.4549,-134.59628 L -1594.9105,-118.11618 L -1566.3661,-101.63608 L -1594.9105,-85.155977 L -1623.4549,-68.675877 z"
transform="matrix(7.2296136e-2,0,0,7.2296136e-2,139.4447,63.60444)" />
<path
transform="matrix(7.2296136e-2,0,0,7.2296136e-2,221.35747,63.60444)"
d="M -1623.4549,-68.675877 L -1623.4549,-101.63608 L -1623.4549,-134.59628 L -1594.9105,-118.11618 L -1566.3661,-101.63608 L -1594.9105,-85.155977 L -1623.4549,-68.675877 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="3.1415927"
sodipodi:arg1="2.0943951"
sodipodi:r2="19.029581"
sodipodi:r1="38.059162"
sodipodi:cy="-101.63608"
sodipodi:cx="-1604.4253"
sodipodi:sides="3"
id="path3916"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68420565;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="star" />
<path
sodipodi:type="star"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3918"
sodipodi:sides="3"
sodipodi:cx="-1604.4253"
sodipodi:cy="-101.63608"
sodipodi:r1="38.059162"
sodipodi:r2="19.029581"
sodipodi:arg1="2.0943951"
sodipodi:arg2="3.1415927"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M -1623.4549,-68.675877 L -1623.4549,-101.63608 L -1623.4549,-134.59628 L -1594.9105,-118.11618 L -1566.3661,-101.63608 L -1594.9105,-85.155977 L -1623.4549,-68.675877 z"
transform="matrix(7.2296136e-2,0,0,7.2296136e-2,316.60487,63.60444)" />
<rect
style="opacity:1;fill:url(#linearGradient4073);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.07590352;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect4053"
width="122.66666"
height="13.777778"
x="53.762451"
y="66.780266" />
<rect
y="66.775681"
x="200.41849"
height="13.786938"
width="94.687927"
id="rect4061"
style="opacity:1;fill:url(#linearGradient4081);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06670989;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
id="g4055"
transform="translate(8,0)">
<text
sodipodi:linespacing="125%"
id="text4037"
y="76.71209"
x="61.137688"
style="font-size:9.12277508px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="76.71209"
x="61.137688"
id="tspan4039"
sodipodi:role="line">Efetuar Login... Busca Rápida</tspan></text>
<path
transform="matrix(0,7.5903524e-2,-7.5903524e-2,0,145.38125,194.72849)"
d="M -1623.4549,-68.675877 L -1623.4549,-101.63608 L -1623.4549,-134.59628 L -1594.9105,-118.11618 L -1566.3661,-101.63608 L -1594.9105,-85.155977 L -1623.4549,-68.675877 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="3.1415927"
sodipodi:arg1="2.0943951"
sodipodi:r2="19.029581"
sodipodi:r1="38.059162"
sodipodi:cy="-101.63608"
sodipodi:cx="-1604.4253"
sodipodi:sides="3"
id="path4049"
style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:type="star" />
<path
sodipodi:type="star"
style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4051"
sodipodi:sides="3"
sodipodi:cx="-1604.4253"
sodipodi:cy="-101.63608"
sodipodi:r1="38.059162"
sodipodi:r2="19.029581"
sodipodi:arg1="2.0943951"
sodipodi:arg2="3.1415927"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M -1623.4549,-68.675877 L -1623.4549,-101.63608 L -1623.4549,-134.59628 L -1594.9105,-118.11618 L -1566.3661,-101.63608 L -1594.9105,-85.155977 L -1623.4549,-68.675877 z"
transform="matrix(0,7.5903524e-2,-7.5903524e-2,0,267.38125,194.72849)" />
</g>
<path
style="fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
d="M 448.24558,400.39078 C 448.21088,400.39912 448.16988,400.42906 448.13838,400.44434 C 448.02978,400.44566 447.90598,400.47829 447.79018,400.55146 C 447.47868,400.76218 447.48278,401.05104 447.60278,401.3817 C 447.55748,401.55642 447.52758,401.71728 447.49568,401.86376 L 446.34398,407.0862 C 445.72138,407.4303 445.14548,407.86693 444.52288,408.21103 C 443.84878,408.41563 443.11208,408.52533 442.43388,408.71989 L 437.96138,405.82746 C 437.79588,405.72087 437.60238,405.60405 437.42568,405.50607 C 437.26078,405.2205 437.03558,405.0701 436.67588,405.15791 C 436.55408,405.18375 436.47688,405.24348 436.40808,405.31861 C 436.31488,405.36222 436.21468,405.40068 436.14018,405.50607 C 435.94098,405.80738 436.03068,406.08597 436.24728,406.33632 C 436.27288,406.5338 436.29838,406.7098 436.32768,406.87194 L 437.26498,412.14794 C 436.82178,412.70443 436.44958,413.30547 436.00628,413.86197 C 435.46218,414.30932 434.84418,414.70783 434.29218,415.1475 L 429.04308,414.18335 C 428.86148,414.15053 428.66938,414.12605 428.48068,414.103 C 428.20978,413.88285 427.93418,413.79554 427.62358,414.02267 C 427.51948,414.09405 427.47078,414.19312 427.43618,414.29048 C 427.35708,414.36895 427.27958,414.47466 427.24868,414.61186 C 427.17728,414.98181 427.38438,415.18595 427.70398,415.33496 C 427.79548,415.49057 427.89078,415.63731 427.97178,415.76347 L 430.86418,420.2628 C 430.66728,420.94642 430.52558,421.64136 430.32858,422.32498 C 429.99658,422.94632 429.59938,423.55576 429.25728,424.17293 L 424.00808,425.29776 C 423.80788,425.34109 423.61998,425.39957 423.41898,425.45845 C 423.10028,425.37314 422.83448,425.40987 422.64228,425.72627 C 422.57258,425.83356 422.55548,425.94309 422.56188,426.04764 C 422.53378,426.13828 422.51508,426.22594 422.53518,426.34224 C 422.60478,426.68352 422.81218,426.82067 423.12428,426.8511 C 423.29178,426.98262 423.46178,427.09898 423.60638,427.19927 L 428.02538,430.22559 C 428.10538,430.93252 428.26668,431.66121 428.34668,432.36813 C 428.27818,433.06926 428.10468,433.75597 428.02538,434.4571 L 423.63318,437.51022 C 423.48158,437.61541 423.32758,437.71447 423.17788,437.83159 C 422.83018,437.86724 422.56738,438.0135 422.50828,438.39401 C 422.48408,438.52433 422.51228,438.64566 422.56188,438.74218 C 422.56538,438.84702 422.59858,438.95215 422.66898,439.06356 C 422.88618,439.38479 423.18238,439.38328 423.52608,439.25102 C 423.68308,439.29016 423.84918,439.35617 423.98138,439.38493 L 429.20378,440.50976 C 429.54788,441.13247 429.98448,441.73501 430.32858,442.35771 C 430.53318,443.03181 430.64288,443.74165 430.83748,444.4199 L 427.94508,448.91922 C 427.83378,449.09195 427.69768,449.2704 427.59688,449.45485 C 427.32868,449.61865 427.16368,449.85677 427.24868,450.20474 C 427.27528,450.32993 427.35768,450.40314 427.43618,450.47256 C 427.48008,450.56234 427.52148,450.64148 427.62358,450.7136 C 427.91418,450.90567 428.18478,450.83248 428.42708,450.63325 C 428.62568,450.60769 428.82638,450.55559 428.98948,450.52611 L 434.26548,449.58877 C 434.82198,450.03202 435.42308,450.40426 435.97948,450.8475 C 436.42688,451.39171 436.82548,452.00965 437.26498,452.56153 L 436.30098,457.83752 C 436.26958,458.01064 436.24358,458.193 436.22058,458.37316 C 436.00048,458.64399 435.91308,458.91969 436.14018,459.23018 C 436.20848,459.32965 436.28908,459.38203 436.38128,459.41766 C 436.46158,459.50677 436.55428,459.57172 436.70258,459.60512 C 437.06168,459.67446 437.27738,459.47944 437.42568,459.17662 C 437.58138,459.08513 437.72818,458.98982 437.85428,458.90879 L 442.38028,456.01638 C 443.06398,456.21337 443.75888,456.32823 444.44248,456.52523 C 445.06388,456.8572 445.64658,457.28125 446.26378,457.62329 L 447.41528,462.8457 C 447.45858,463.04586 447.51718,463.26056 447.57598,463.46169 C 447.49458,463.75059 447.51028,463.99541 447.79018,464.18479 C 447.88668,464.24577 447.99338,464.28182 448.08488,464.29193 C 448.19478,464.3465 448.30628,464.37192 448.45978,464.34548 C 448.80108,464.27584 448.93818,464.04169 448.96868,463.72951 C 449.09978,463.56662 449.22708,463.38852 449.34358,463.22065 L 452.39678,458.82845 C 453.09778,458.7491 453.81138,458.60234 454.51248,458.53385 C 455.21948,458.61394 455.92128,458.77517 456.62828,458.85524 L 459.68138,463.24743 C 459.76038,463.36136 459.85008,463.48893 459.94918,463.62238 C 459.95988,463.98629 460.08098,464.26805 460.45798,464.34548 C 460.59468,464.36922 460.70438,464.33351 460.80618,464.29193 C 460.91598,464.30228 461.01458,464.28503 461.12758,464.21158 C 461.45128,464.0149 461.48908,463.73621 461.39538,463.40812 C 461.44648,463.22501 461.49008,463.02601 461.52928,462.8457 L 462.65418,457.62329 C 463.27168,457.28206 463.88028,456.8564 464.50198,456.52523 C 465.18588,456.32913 465.88028,456.21247 466.56418,456.01638 L 471.06348,458.90879 C 471.20968,459.00295 471.38918,459.12661 471.57238,459.23018 C 471.71978,459.50706 471.92678,459.67116 472.26878,459.60512 C 472.40228,459.57506 472.48568,459.52028 472.56338,459.44443 C 472.65208,459.40834 472.73808,459.35326 472.80438,459.25697 C 473.02808,458.95192 472.96208,458.66698 472.75078,458.39994 C 472.72778,458.21125 472.70328,458.01911 472.67048,457.83752 L 471.73318,452.56153 C 472.17278,452.00965 472.54448,451.39171 472.99188,450.8475 C 473.54838,450.40426 474.14928,450.03202 474.70588,449.58877 L 479.98178,450.52611 C 480.12938,450.5528 480.31198,450.60817 480.49068,450.63325 C 480.74458,450.85856 481.01428,450.94254 481.32088,450.74038 C 481.47018,450.6353 481.55768,450.53271 481.58878,450.3922 C 481.63618,450.33184 481.70348,450.29516 481.72268,450.20474 C 481.81248,449.83706 481.61878,449.59374 481.32088,449.42808 C 481.22758,449.2625 481.12608,449.10127 481.02638,448.946 L 478.13398,444.44668 C 478.32938,443.76868 478.43738,443.05832 478.64288,442.38449 C 478.98778,441.76224 479.42268,441.1588 479.76758,440.53655 L 484.99008,439.41172 C 485.15278,439.37647 485.33128,439.3305 485.52568,439.27781 C 485.83848,439.3811 486.10068,439.36173 486.30238,439.06356 C 486.37278,438.95215 486.40598,438.84702 486.40948,438.74218 C 486.45168,438.65042 486.48548,438.56889 486.46298,438.44758 C 486.40868,438.09354 486.18428,437.93404 485.87388,437.88516 C 485.70338,437.74525 485.51608,437.63365 485.33818,437.51022 L 480.94598,434.4571 C 480.86658,433.75597 480.69308,433.06926 480.62468,432.36813 C 480.70468,431.66121 480.89278,430.93252 480.97278,430.22559 L 485.36498,427.19927 C 485.48818,427.11379 485.62258,427.01331 485.76678,426.90467 C 486.11558,426.88821 486.38768,426.76251 486.46298,426.39581 C 486.48678,426.25908 486.45108,426.14947 486.40948,426.04764 C 486.41628,425.94258 486.39918,425.83411 486.32918,425.72627 C 486.13248,425.40248 485.85378,425.36471 485.52568,425.45845 C 485.34258,425.4074 485.14358,425.36383 484.96328,425.32454 L 479.74088,424.19971 C 479.39958,423.5821 478.97398,423.00032 478.64288,422.37855 C 478.44668,421.69467 478.32998,420.97347 478.13398,420.28958 L 481.02638,415.79026 C 481.11648,415.6502 481.22088,415.4829 481.32088,415.30818 C 481.61028,415.16024 481.79038,414.9621 481.72268,414.61186 C 481.69258,414.4783 481.63788,414.36822 481.56198,414.29048 C 481.52588,414.20174 481.47088,414.11566 481.37448,414.04944 C 481.07538,413.83002 480.80658,413.90142 480.54428,414.103 C 480.33858,414.12557 480.12718,414.14741 479.92828,414.18335 L 474.67908,415.1475 C 474.12718,414.70783 473.50928,414.30932 472.96498,413.86197 C 472.52188,413.30547 472.14958,412.70443 471.70628,412.14794 L 472.64368,406.87194 C 472.67028,406.72441 472.69888,406.56863 472.72408,406.38988 C 472.95868,406.13174 473.06378,405.84518 472.85788,405.53286 C 472.78588,405.43064 472.70668,405.38942 472.61698,405.34538 C 472.54568,405.25298 472.43458,405.18743 472.29548,405.15791 C 471.92788,405.06812 471.71138,405.2351 471.54568,405.53286 C 471.37998,405.62625 471.21878,405.75453 471.06348,405.85424 L 466.56418,408.71989 C 465.88628,408.52444 465.17588,408.41651 464.50198,408.21103 C 463.87988,407.86612 463.27628,407.45789 462.65418,407.11298 L 461.52928,401.86376 C 461.49398,401.70115 461.44808,401.52226 461.39538,401.32813 C 461.48908,401.00006 461.45128,400.72137 461.12758,400.52469 C 461.02528,400.45826 460.93268,400.44127 460.83288,400.44434 C 460.74828,400.41191 460.67358,400.39748 460.56518,400.41756 C 460.18458,400.47606 460.03888,400.71267 460.00268,401.06031 C 459.88478,401.21427 459.77288,401.35689 459.68138,401.48881 L 456.62828,405.9078 C 455.92128,405.98788 455.21948,406.14911 454.51248,406.22919 C 453.81138,406.1607 453.09778,405.98716 452.39678,405.9078 L 449.34358,401.51561 C 449.23848,401.36399 449.13938,401.21003 449.02218,401.06031 C 448.98658,400.71262 448.84028,400.44977 448.45978,400.39078 C 448.37598,400.37514 448.31498,400.3741 448.24558,400.39078 z M 454.45898,402.58687 C 453.55258,402.58687 452.82518,403.31424 452.82518,404.22055 C 452.82518,405.12688 453.55258,405.85424 454.45898,405.85424 C 455.36528,405.85424 456.09258,405.12688 456.09258,404.22055 C 456.09258,403.31424 455.36528,402.58687 454.45898,402.58687 z M 448.72758,403.33676 L 451.43258,407.6754 C 451.43258,408.98289 453.48548,415.18929 454.59278,415.62956 C 455.69038,415.16748 457.59228,408.95611 457.59228,407.64861 L 460.29738,403.33676 L 461.10068,408.37172 C 460.59958,409.57937 459.96948,416.01405 460.80618,416.86152 C 461.99768,416.87931 466.27738,411.93616 466.77858,410.72851 L 470.92968,407.75575 L 469.77808,412.71036 C 468.85348,413.63491 465.79358,419.34742 466.24288,420.45027 C 467.33718,420.92197 473.19218,418.00032 474.11668,417.07578 L 479.12488,415.89738 L 476.15208,420.07532 C 474.94378,420.57489 469.91968,424.6961 469.91188,425.88695 C 470.74198,426.74209 477.27388,426.25262 478.48208,425.75304 L 483.54388,426.61006 L 479.20518,429.28824 C 477.89768,429.28824 471.68628,431.16342 471.22428,432.261 C 471.66448,433.36837 477.87098,435.42124 479.17838,435.42124 L 483.57058,438.15299 L 478.50888,438.98322 C 477.30118,438.48206 470.83978,437.85197 469.99228,438.68863 C 469.97448,439.88016 474.91768,444.15979 476.12538,444.66093 L 479.12488,448.8121 L 474.14338,447.66048 C 473.21888,446.73594 467.50638,443.67594 466.40348,444.12529 C 465.93188,445.21965 468.88028,451.07458 469.80478,451.99911 L 470.95638,457.03409 L 466.77858,454.03453 C 466.27898,452.82624 462.18448,447.80205 460.99358,447.79439 C 460.13848,448.62436 460.60128,455.15624 461.10068,456.36454 L 460.27048,461.39949 L 457.59228,457.08765 C 457.59228,455.78015 455.69038,449.56878 454.59278,449.10671 C 453.48548,449.54697 451.43258,455.75337 451.43258,457.06087 L 448.67398,461.47985 L 447.84378,456.36454 C 448.34498,455.15689 448.83178,448.62549 447.97778,447.79439 C 446.78678,447.80049 442.66728,452.8001 442.16608,454.00775 L 438.01498,456.98052 L 439.16658,451.99911 C 440.09108,451.07458 443.03948,445.21965 442.56778,444.12529 C 441.46498,443.67594 435.75248,446.73594 434.82788,447.66048 L 429.79288,448.83887 L 432.81928,444.63415 C 434.02758,444.13459 438.99538,439.85341 438.97918,438.66183 C 438.13268,437.82408 431.67078,438.45686 430.46248,438.95642 L 425.45428,438.1262 L 429.79288,435.42124 C 431.10038,435.42124 437.30688,433.36837 437.74718,432.261 C 437.28508,431.16342 431.07368,429.28824 429.76618,429.28824 L 425.40078,426.5565 L 430.51598,425.72627 C 431.72368,426.22742 438.25508,426.71423 439.08628,425.86018 C 439.08008,424.66931 434.05368,420.5497 432.84598,420.04855 L 429.87328,415.89738 L 434.85478,417.07578 C 435.77918,418.00032 441.63418,420.92197 442.72848,420.45027 C 443.17788,419.34742 440.11778,413.63491 439.19338,412.71036 L 438.04168,407.72897 L 442.21968,410.70173 C 442.71918,411.91003 447.00038,416.87775 448.19198,416.86152 C 449.02968,416.01514 448.39698,409.55324 447.89738,408.34494 L 448.72758,403.33676 z M 443.71938,404.72941 C 443.50628,404.72769 443.28608,404.74996 443.07668,404.83654 C 442.23908,405.18283 441.84658,406.14151 442.19288,406.97907 C 442.53918,407.81663 443.49778,408.23594 444.33538,407.88965 C 445.17298,407.54337 445.56548,406.58467 445.21918,405.74711 C 444.95948,405.11895 444.35888,404.73459 443.71938,404.72941 z M 465.30548,404.72941 C 464.66598,404.73375 464.03948,405.11929 463.77888,405.74711 C 463.43158,406.58423 463.82558,407.54227 464.66268,407.88965 C 465.49978,408.23704 466.48468,407.84297 466.83198,407.00585 C 467.17948,406.16875 466.75858,405.2107 465.92148,404.86332 C 465.71218,404.77647 465.51868,404.72797 465.30548,404.72941 z M 434.56008,410.83564 C 434.14008,410.83564 433.72888,410.99727 433.40858,411.3177 C 432.76758,411.95858 432.76758,413.00685 433.40858,413.64772 C 434.04938,414.28858 435.07088,414.28858 435.71168,413.64772 C 436.35258,413.00685 436.35258,411.95858 435.71168,411.3177 C 435.39118,410.99727 434.98008,410.83564 434.56008,410.83564 z M 474.41118,410.83564 C 473.99128,410.83564 473.58008,410.99727 473.25968,411.3177 C 472.61878,411.95858 472.61878,413.00685 473.25968,413.64772 C 473.90048,414.28858 474.92208,414.28858 475.56288,413.64772 C 476.20378,413.00685 476.20378,411.95858 475.56288,411.3177 C 475.24248,410.99727 474.83128,410.83564 474.41118,410.83564 z M 428.45378,419.9682 C 427.81428,419.97255 427.21468,420.35808 426.95408,420.98591 C 426.60668,421.82301 427.00078,422.78107 427.83788,423.12844 C 428.67508,423.47582 429.63308,423.08175 429.98038,422.24465 C 430.32778,421.40754 429.93378,420.4495 429.09668,420.10211 C 428.88728,420.01526 428.66708,419.96674 428.45378,419.9682 z M 480.51748,419.99499 C 480.30438,419.99326 480.11098,420.04232 479.90158,420.12889 C 479.06398,420.47518 478.64468,421.43387 478.99088,422.27143 C 479.33728,423.10898 480.29588,423.50152 481.13348,423.15521 C 481.97108,422.80894 482.39038,421.85026 482.04398,421.01269 C 481.78428,420.38452 481.15698,420.00016 480.51748,419.99499 z M 426.33808,430.76123 C 425.43178,430.76123 424.67758,431.48858 424.67758,432.39491 C 424.67758,433.30123 425.43178,434.0286 426.33808,434.0286 C 427.24448,434.0286 427.97178,433.30124 427.97178,432.39491 C 427.97178,431.48858 427.24448,430.76123 426.33808,430.76123 z M 482.63328,430.76123 C 481.72698,430.76123 480.99958,431.48858 480.99958,432.39491 C 480.99958,433.30124 481.72698,434.0286 482.63328,434.0286 C 483.53958,434.0286 484.29368,433.30123 484.29368,432.39491 C 484.29368,431.48858 483.53958,430.76123 482.63328,430.76123 z M 428.48068,441.50069 C 428.26748,441.49897 428.04728,441.54803 427.83788,441.63461 C 427.00038,441.9809 426.60778,442.93958 426.95408,443.77714 C 427.30038,444.61469 428.25908,445.00722 429.09668,444.66093 C 429.93418,444.31464 430.32668,443.35595 429.98038,442.51839 C 429.72068,441.89023 429.12018,441.50588 428.48068,441.50069 z M 480.46398,441.55425 C 479.82448,441.55859 479.22468,441.94413 478.96418,442.57195 C 478.61678,443.40907 479.01088,444.36712 479.84798,444.7145 C 480.68508,445.06188 481.64308,444.66781 481.99048,443.83071 C 482.33788,442.99359 481.94378,442.00877 481.10668,441.66139 C 480.89748,441.57453 480.67708,441.55281 480.46398,441.55425 z M 434.58688,450.66004 C 434.16688,450.66004 433.75578,450.82167 433.43528,451.14211 C 432.79438,451.78297 432.79438,452.83125 433.43528,453.47211 C 434.07608,454.11297 435.12438,454.11297 435.76528,453.47211 C 436.40608,452.83125 436.40608,451.78297 435.76528,451.14211 C 435.44488,450.82168 435.00688,450.66004 434.58688,450.66004 z M 474.38448,450.66004 C 473.96448,450.66004 473.52658,450.82168 473.20608,451.14211 C 472.56528,451.78297 472.56528,452.83125 473.20608,453.47211 C 473.84698,454.11297 474.89518,454.11297 475.53608,453.47211 C 476.17688,452.83125 476.17708,451.78297 475.53608,451.14211 C 475.21568,450.82167 474.80438,450.66004 474.38448,450.66004 z M 443.71938,456.73948 C 443.07998,456.74383 442.45338,457.12935 442.19288,457.75719 C 441.84548,458.59429 442.26628,459.55233 443.10338,459.89972 C 443.94048,460.24711 444.89868,459.85304 445.24598,459.01593 C 445.59338,458.17882 445.17248,457.22077 444.33538,456.87339 C 444.12618,456.78654 443.93268,456.73803 443.71938,456.73948 z M 465.22508,456.76627 C 465.01198,456.76454 464.79168,456.78682 464.58238,456.87339 C 463.74478,457.21968 463.35228,458.20515 463.69858,459.04271 C 464.04488,459.88026 465.00348,460.27279 465.84108,459.9265 C 466.67868,459.58021 467.07118,458.62153 466.72488,457.78397 C 466.46518,457.1558 465.86458,456.77145 465.22508,456.76627 z M 454.45898,458.88202 C 453.55258,458.88202 452.82518,459.63615 452.82518,460.54249 C 452.82518,461.4488 453.55258,462.17616 454.45898,462.17616 C 455.36528,462.17616 456.09258,461.4488 456.09258,460.54249 C 456.09258,459.63615 455.36528,458.88202 454.45898,458.88202 z"
id="path6947" />
<text
xml:space="preserve"
style="font-size:8.87493134px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="140.5471"
y="392.57733"
id="text6853"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6855"
x="140.5471"
y="392.57733">Sobre nós</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6857"
y="392.57733"
x="237.89221"
style="font-size:8.87493134px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="392.57733"
x="237.89221"
id="tspan6859"
sodipodi:role="line">Ajuda</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6861"
y="392.57733"
x="57.295403"
style="font-size:8.87493134px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="392.57733"
x="57.295403"
id="tspan6863"
sodipodi:role="line">Parceiros</tspan></text>
<text
xml:space="preserve"
style="font-size:7.05930567px;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:#888a85;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="51.508713"
y="403.40125"
id="text6865"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6867"
x="51.508713"
y="403.40125">Colivre</tspan><tspan
sodipodi:role="line"
x="51.508713"
y="412.22537"
id="tspan6869">Caritas</tspan><tspan
sodipodi:role="line"
x="51.508713"
y="421.0495"
id="tspan6871">ITI</tspan><tspan
sodipodi:role="line"
x="51.508713"
y="429.87363"
id="tspan6873">Gov.br</tspan><tspan
sodipodi:role="line"
x="51.508713"
y="438.69778"
id="tspan6875">EcoSol</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6877"
y="403.40125"
x="136.06911"
style="font-size:7.05930567px;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:#888a85;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
sodipodi:role="line"
id="tspan6889"
x="136.06911"
y="403.40125">Contato</tspan><tspan
sodipodi:role="line"
id="tspan6891"
x="136.06911"
y="412.22537">Anuncie</tspan><tspan
sodipodi:role="line"
id="tspan6893"
x="136.06911"
y="421.0495">Equipe</tspan><tspan
sodipodi:role="line"
id="tspan6895"
x="136.06911"
y="429.87363">Equipe internacional</tspan><tspan
sodipodi:role="line"
id="tspan6897"
x="136.06911"
y="438.69778">Vagas</tspan><tspan
sodipodi:role="line"
id="tspan6899"
x="136.06911"
y="447.52191">Blog</tspan><tspan
sodipodi:role="line"
id="tspan6901"
x="136.06911"
y="456.34604">Wiki</tspan></text>
<text
xml:space="preserve"
style="font-size:7.05930567px;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:#888a85;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="234.72293"
y="403.40125"
id="text6919"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6935"
x="234.72293"
y="403.40125">Perguntas freqüentes</tspan><tspan
sodipodi:role="line"
id="tspan6937"
x="234.72293"
y="412.22537">Suporte</tspan><tspan
sodipodi:role="line"
id="tspan6939"
x="234.72293"
y="421.0495">Novidades</tspan><tspan
sodipodi:role="line"
id="tspan6941"
x="234.72293"
y="429.87363">Grupo Anheteguá</tspan><tspan
sodipodi:role="line"
id="tspan6943"
x="234.72293"
y="438.69778">Fórum Anheteguá</tspan></text>
<g
id="g7103"
transform="matrix(6.6591594e-2,0,0,6.6591594e-2,415.50458,441.60674)">
<g
transform="translate(-127.71426,-219.17851)"
style="display:inline"
id="g7105"
inkscape:label="Water">
<g
style="display:inline"
inkscape:label="Shape"
id="g7107"
inkscape:groupmode="layer">
<path
transform="translate(375.02778,-361.64819)"
d="M 564.3755,441.46219 A 224.10817,224.10817 0 1 1 116.15916,441.46219 A 224.10817,224.10817 0 1 1 564.3755,441.46219 z"
sodipodi:ry="224.10817"
sodipodi:rx="224.10817"
sodipodi:cy="441.46219"
sodipodi:cx="340.26733"
id="path7109"
style="opacity:1;fill:url(#linearGradient7309);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path7111"
sodipodi:cx="340.26733"
sodipodi:cy="441.46219"
sodipodi:rx="224.10817"
sodipodi:ry="224.10817"
d="M 564.3755,441.46219 A 224.10817,224.10817 0 1 1 116.15916,441.46219 A 224.10817,224.10817 0 1 1 564.3755,441.46219 z"
transform="translate(375.02778,-361.64819)" />
</g>
<g
style="display:inline"
inkscape:label="Highlights-Water"
id="g7113"
inkscape:groupmode="layer" />
</g>
<g
transform="translate(235.75842,-582.65119)"
style="display:inline"
inkscape:label="Continents"
id="g7121">
<g
style="display:inline"
inkscape:label="Shapes"
id="g7123"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccscccccccccsccsccccccccccc"
id="path7125"
d="M 370.97959,650.97443 L 384.35918,642.46014 L 377.98518,635.79375 L 395.91429,598.67239 C 394.7174,587.90476 395.731,578.08449 398.9551,568.26422 L 389.22449,562.18259 L 373.04964,559.74994 L 370.68722,546.9317 L 361.3192,539.38818 L 360.64082,529.29496 L 349.08571,519.003 L 350.93361,508.05606 L 359.78709,505.30762 L 349.08571,494.67647 L 359.42449,486.77035 L 367.93878,484.94586 L 360.34844,476.1626 L 372.19592,466.70096 C 374.27377,458.14766 377.29898,450.85751 382.2189,442.93578 L 381.92653,430.81933 L 386.13686,430.50354 L 390.70978,421.38109 L 400.77959,419.87239 L 415.98367,422.9132 L 415.66788,428.36327 L 431.11753,426.90138 L 450.64898,435.07647 L 458.5551,442.37443 L 471.32653,442.98259 C 478.37553,448.41683 483.03543,453.14048 483.37024,455.27688 C 483.71044,457.44768 486.80596,462.53829 492.61224,467.30912 L 489.57143,477.6479 L 498.08571,485.55402 L 507.20816,486.16218 L 511.46531,491.02749 L 522.41224,491.02749 L 523.62857,498.32545 L 532.14286,498.32545 L 532.14286,511.09688 C 516.29146,525.34183 511.46766,556.78856 503.53578,565.2 C 497.62802,571.46495 488.01208,574.18215 477.40816,576.77851 L 471.27972,591.39783 C 461.54514,599.86928 460.60389,604.74285 453.76002,610.49646 C 450.98634,612.82828 447.67839,613.82965 443.69022,615.02257 L 441.52653,607.18667 L 443.95918,603.53769 L 437.26939,607.18667 L 433.62041,615.09279 L 432.98884,621.10421 L 419.97185,629.95768 L 403.48121,632.12137 L 401.9491,638.76435 C 391.2788,643.17357 389.45048,646.63543 389.83265,649.14994 L 370.97959,650.97443 z"
style="fill:#f4f6f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
id="path7127"
d="M 341.67947,438.79176 C 338.52161,431.84448 328.08926,428.93373 322.73236,423.63407 L 320.83765,412.26581 C 313.89038,413.21316 307.89046,413.52895 300.94319,411.31845 C 300.20636,408.89743 299.46952,406.47642 298.73269,404.0554 L 286.73286,397.10812 L 279.15402,403.73961 C 262.31215,401.95016 263.78581,396.05551 244.73344,384.16094 L 243.78609,370.89796 C 240.31245,362.58229 237.78617,354.26662 230.52311,346.8983 L 230.8389,337.74053 L 225.78634,334.89846 L 225.78634,352.58243 L 233.36518,363.00333 L 233.68097,371.84532 C 223.04954,357.42447 219.99695,344.58254 219.78642,329.53012 C 215.70366,319.54883 216.31279,322.58284 216.31279,322.58284 L 216.62858,311.84615 C 219.89169,298.7937 224.10215,291.42538 236.83882,278.37294 C 238.83879,265.95205 247.47025,260.79423 252.94386,252.47855 C 265.15422,244.89971 289.99598,234.4788 317.04823,231.63674 L 359.995,229.11046 L 378.94211,235.42616 L 381.1526,243.63657 L 374.52111,239.21558 L 361.57393,238.58401 L 358.73186,233.53145 L 347.67938,234.16302 L 347.99517,239.21558 L 332.5217,239.53136 L 318.94294,245.84707 C 319.67977,252.47856 337.469,253.7417 347.67938,258.16269 L 354.31087,264.47839 L 352.41616,256.26797 L 356.83715,251.84698 L 353.04773,247.74178 L 352.10037,240.47872 C 363.99494,241.21555 374.94216,243.8471 377.36318,248.37335 L 386.20516,246.79442 C 395.04714,255.84693 403.57334,259.2153 414.62582,262.58368 C 415.99422,269.21517 419.25734,272.05723 424.41516,273.95194 L 417.78367,275.84665 L 411.15219,272.37301 L 410.52061,264.1626 L 403.57334,269.21516 L 391.57351,267.00467 L 385.57359,270.16252 L 395.36293,269.21516 L 401.04706,283.10971 L 387.15252,285.3202 L 382.73153,290.05698 L 383.99467,295.42533 L 379.57368,296.0569 L 375.46847,302.3726 L 371.04748,299.53053 L 366.62649,302.05681 L 370.10012,311.21458 C 363.25811,319.53025 349.78462,327.84593 346.73203,339.95102 L 353.99508,349.10879 L 353.36351,359.84548 L 348.62674,360.47705 L 343.25839,352.58243 L 342.94261,343.10887 L 327.46914,334.58268 C 318.83768,334.89846 313.04828,335.84582 307.25889,340.26681 L 293.36435,338.3721 L 278.20666,350.37193 L 281.99608,356.37185 L 276.94352,369.31904 L 281.6803,381.95044 L 289.57492,389.84507 L 304.41683,386.68722 L 314.83773,375.31895 L 320.83765,375.63474 L 320.20608,383.52937 L 314.52195,388.58193 L 314.52195,400.58176 L 333.15327,400.26598 C 333.8901,405.31854 337.78478,406.58168 340.10054,409.73953 L 337.57426,426.16035 L 343.25839,432.79184 L 341.67947,438.79176 z"
style="fill:#f4f6f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
<g
style="display:inline"
inkscape:label="Highlights"
id="g7129"
inkscape:groupmode="layer" />
</g>
</g>
<text
xml:space="preserve"
style="font-size:28.97739983px;font-style:oblique;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;opacity:0.83539094;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="572.79059"
y="442.37625"
id="text7139"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7141"
x="572.79059"
y="442.37625"
style="fill:#204a87;fill-opacity:1">Noosfero</tspan></text>
<text
xml:space="preserve"
style="font-size:8.62691689px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="202.8591"
y="481.64468"
id="text2774"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan2778"
x="202.8591"
y="481.64468">© 2008 Noosfero Community Privacidade | Assinatura | Últimas atualizações</tspan></text>
<text
xml:space="preserve"
style="font-size:10.01584053px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="614.76593"
y="96.323204"
id="text3448"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3450"
x="614.76593"
y="96.323204">23,642 novos membros!</tspan></text>
<path
style="fill:#fce94f;fill-opacity:0.51838235;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 597.48913,112.09911 L 741.73892,112.09911 C 746.43976,112.09911 750.2242,115.88355 750.2242,120.58439 L 750.2242,136.22401 C 750.2242,140.92485 746.43976,144.70929 741.73892,144.70929 L 597.48913,144.70929 C 592.78828,144.70929 589.00385,140.92485 589.00385,136.22401 L 589.00385,120.58439 C 589.00385,115.88355 592.78828,112.09911 597.48913,112.09911 z"
id="rect4036"
sodipodi:nodetypes="ccccccccc" />
<path
style="opacity:1;fill:url(#linearGradient4080);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 589.00898,129.08083 L 589.00898,141.80447 L 750.22773,141.80447 L 750.22773,129.08083 L 589.00898,129.08083 z"
id="path4067" />
<path
style="opacity:1;fill:url(#linearGradient4049);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 597.47773,112.0888 C 592.77688,112.0888 589.00898,115.88795 589.00898,120.5888 L 589.00898,134.0263 L 750.22773,134.0263 L 750.22773,120.5888 C 750.22773,115.88795 746.4286,112.0888 741.72773,112.0888 L 597.47773,112.0888 z"
id="rect4038" />
<path
style="opacity:1;fill:url(#linearGradient4065);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 597.47773,112.0888 C 592.77688,112.0888 589.00898,115.88795 589.00898,120.5888 L 589.00898,121.99505 L 750.22773,121.99505 L 750.22773,120.5888 C 750.22773,115.88795 746.4286,112.0888 741.72773,112.0888 L 597.47773,112.0888 z"
id="path4052" />
<path
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 597.48913,112.09911 L 741.73892,112.09911 C 746.43976,112.09911 750.2242,115.88355 750.2242,120.58439 L 750.2242,136.22401 C 750.2242,140.92485 746.43976,144.70929 741.73892,144.70929 L 597.48913,144.70929 C 592.78828,144.70929 589.00385,140.92485 589.00385,136.22401 L 589.00385,120.58439 C 589.00385,115.88355 592.78828,112.09911 597.48913,112.09911 z"
id="rect4082"
sodipodi:nodetypes="ccccccccc" />
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="600.31757"
y="127.65547"
id="text4084"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4086"
x="600.31757"
y="127.65547">Login Box</tspan></text>
<path
id="path4190"
d="M 39.82148,111.63096 C 30.02805,111.63096 22.13397,119.52503 22.13398,129.31846 L 22.13398,202.84971 C 22.13398,212.64314 30.02804,220.53721 39.82148,220.53721 L 44.13398,220.53721 L 140.22773,220.53721 L 179.91523,220.53721 L 179.91523,111.63096 L 140.22773,111.63096 L 44.13398,111.63096 L 39.82148,111.63096 z"
style="opacity:1;fill:url(#linearGradient4420);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;filter:url(#filter4386);enable-background:accumulate" />
<path
style="opacity:1;fill:url(#linearGradient4152);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 43.82148,111.63096 C 34.02805,111.63096 26.13397,119.52503 26.13398,129.31846 L 26.13398,202.84971 C 26.13398,212.64314 34.02804,220.53721 43.82148,220.53721 L 48.13398,220.53721 L 144.22773,220.53721 L 183.91523,220.53721 L 183.91523,111.63096 L 144.22773,111.63096 L 48.13398,111.63096 L 43.82148,111.63096 z"
id="rect4134" />
<path
style="opacity:1;fill:url(#linearGradient4412);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;filter:url(#filter4382);enable-background:accumulate"
d="M 165.82148,111.63096 C 156.02805,111.63096 148.13397,119.52503 148.13398,129.31846 L 148.13398,202.84971 C 148.13398,212.64314 156.02804,220.53721 165.82148,220.53721 L 170.13398,220.53721 L 266.22773,220.53721 L 305.91523,220.53721 L 305.91523,111.63096 L 266.22773,111.63096 L 170.13398,111.63096 L 165.82148,111.63096 z"
id="path4192" />
<path
id="path4140"
d="M 169.82148,111.63096 C 160.02805,111.63096 152.13397,119.52503 152.13398,129.31846 L 152.13398,202.84971 C 152.13398,212.64314 160.02804,220.53721 169.82148,220.53721 L 174.13398,220.53721 L 270.22773,220.53721 L 309.91523,220.53721 L 309.91523,111.63096 L 270.22773,111.63096 L 174.13398,111.63096 L 169.82148,111.63096 z"
style="opacity:1;fill:url(#linearGradient4160);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path4194"
d="M 299.82148,111.63096 C 290.02805,111.63096 282.13397,119.52503 282.13398,129.31846 L 282.13398,202.84971 C 282.13398,212.64314 290.02804,220.53721 299.82148,220.53721 L 304.13398,220.53721 L 400.22773,220.53721 L 439.91523,220.53721 L 439.91523,111.63096 L 400.22773,111.63096 L 304.13398,111.63096 L 299.82148,111.63096 z"
style="opacity:1;fill:url(#linearGradient4404);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;filter:url(#filter4378);enable-background:accumulate" />
<path
style="opacity:1;fill:url(#linearGradient4168);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 303.82148,111.63096 C 294.02805,111.63096 286.13397,119.52503 286.13398,129.31846 L 286.13398,202.84971 C 286.13398,212.64314 294.02804,220.53721 303.82148,220.53721 L 308.13398,220.53721 L 404.22773,220.53721 L 443.91523,220.53721 L 443.91523,111.63096 L 404.22773,111.63096 L 308.13398,111.63096 L 303.82148,111.63096 z"
id="path4142" />
<path
style="opacity:1;fill:url(#linearGradient4396);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;filter:url(#filter4374);enable-background:accumulate"
d="M 431.82148,111.63096 C 422.02805,111.63096 414.13397,119.52503 414.13398,129.31846 L 414.13398,202.84971 C 414.13398,212.64314 422.02804,220.53721 431.82148,220.53721 L 436.13398,220.53721 L 532.22773,220.53721 L 571.91523,220.53721 L 571.91523,111.63096 L 532.22773,111.63096 L 436.13398,111.63096 L 431.82148,111.63096 z"
id="path4196" />
<path
id="path4144"
d="M 435.82148,111.63096 C 426.02805,111.63096 418.13397,119.52503 418.13398,129.31846 L 418.13398,202.84971 C 418.13398,212.64314 426.02804,220.53721 435.82148,220.53721 L 440.13398,220.53721 L 536.22773,220.53721 L 575.91523,220.53721 L 575.91523,111.63096 L 536.22773,111.63096 L 440.13398,111.63096 L 435.82148,111.63096 z"
style="opacity:1;fill:url(#linearGradient4176);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text3885"
y="68.682526"
x="474.32852"
style="font-size:10.8593092px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="68.682526"
x="474.32852"
id="tspan3887"
sodipodi:role="line">Temáticas</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3889"
y="68.465126"
x="555.01294"
style="font-size:10.8593092px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="68.465126"
x="555.01294"
id="tspan3891"
sodipodi:role="line">Territorios</tspan></text>
<text
sodipodi:linespacing="125%"
id="text4572"
y="69.268753"
x="393.40738"
style="font-size:12.17893124px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="69.268753"
x="393.40738"
id="tspan4574"
sodipodi:role="line">Noosfero</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3893"
y="68.465126"
x="633.9408"
style="font-size:10.8593092px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="68.465126"
x="633.9408"
id="tspan3895"
sodipodi:role="line">Redes</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3897"
y="68.465126"
x="715.716"
style="font-size:10.8593092px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="68.465126"
x="715.716"
id="tspan3899"
sodipodi:role="line">Cadeias</tspan></text>
<text
sodipodi:linespacing="125%"
id="text4432"
y="132.81236"
x="471.23553"
style="font-size:15.67592525px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="132.81236"
x="471.23553"
id="tspan4434"
sodipodi:role="line">Temáticas</tspan></text>
<text
sodipodi:linespacing="125%"
id="text4436"
y="133.61357"
x="339.8103"
style="font-size:16.88456726px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="133.61357"
x="339.8103"
id="tspan4438"
sodipodi:role="line">Territorios</tspan></text>
<text
sodipodi:linespacing="125%"
id="text4440"
y="133.34927"
x="186.69431"
style="font-size:15.05261421px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="133.34927"
x="186.69431"
id="tspan4442"
sodipodi:role="line">Redes</tspan></text>
<text
sodipodi:linespacing="125%"
id="text4444"
y="132.66225"
x="67.109543"
style="font-size:14.1483326px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="132.66225"
x="67.109543"
id="tspan4446"
sodipodi:role="line">Cadeias</tspan></text>
<rect
style="opacity:0.55830389;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999995;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect2526"
width="9.2609539"
height="4.630477"
x="732.49237"
y="121.58542" />
<g
id="g2537"
transform="translate(0.8859098,-48.725037)">
<path
sodipodi:nodetypes="ccccccccc"
id="rect4088"
d="M 597.48913,206.98502 L 741.73892,206.98502 C 746.43976,206.98502 750.2242,210.76945 750.2242,215.4703 L 750.2242,319.10991 C 750.2242,323.81076 746.43976,327.59519 741.73892,327.59519 L 597.48913,327.59519 C 592.78828,327.59519 589.00385,323.81076 589.00385,319.10991 L 589.00385,215.4703 C 589.00385,210.76945 592.78828,206.98502 597.48913,206.98502 z"
style="fill:#fce94f;fill-opacity:0.51838235;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="opacity:1;fill:url(#linearGradient4102);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 589.00898,223.96674 L 589.00898,238.10459 L 750.22773,238.10459 L 750.22773,223.96674 L 589.00898,223.96674 z"
id="path4090" />
<path
style="opacity:1;fill:url(#linearGradient4104);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 597.47773,206.97471 C 592.77688,206.97471 589.00898,210.77386 589.00898,215.47471 L 589.00898,228.91221 L 750.22773,228.91221 L 750.22773,215.47471 C 750.22773,210.77386 746.4286,206.97471 741.72773,206.97471 L 597.47773,206.97471 z"
id="path4092" />
<path
style="opacity:1;fill:url(#linearGradient4106);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 597.47773,206.97471 C 592.77688,206.97471 589.00898,210.77386 589.00898,215.47471 L 589.00898,216.88096 L 750.22773,216.88096 L 750.22773,215.47471 C 750.22773,210.77386 746.4286,206.97471 741.72773,206.97471 L 597.47773,206.97471 z"
id="path4094" />
<path
sodipodi:nodetypes="ccccccccc"
id="rect4096"
d="M 597.48913,206.98502 L 741.73892,206.98502 C 746.43976,206.98502 750.2242,210.76945 750.2242,215.4703 L 750.2242,319.10991 C 750.2242,323.81076 746.43976,327.59519 741.73892,327.59519 L 597.48913,327.59519 C 592.78828,327.59519 589.00385,323.81076 589.00385,319.10991 L 589.00385,215.4703 C 589.00385,210.76945 592.78828,206.98502 597.48913,206.98502 z"
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="600.31757"
y="222.54138"
id="text4098"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4100"
x="600.31757"
y="222.54138">Enquete</tspan></text>
<rect
style="opacity:0.55830389;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999995;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect2528"
width="9.2609539"
height="4.630477"
x="732.49237"
y="216.47133" />
</g>
<path
style="fill:#fce94f;fill-opacity:0.51838235;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 41.01451,238.68141 L 565.26428,238.68141 C 569.96518,238.68141 573.74958,242.46584 573.74958,247.16669 L 573.74958,350.8063 C 573.74958,355.50715 569.96518,359.29158 565.26428,359.29158 L 41.01451,359.29158 C 36.31366,359.29158 32.52923,355.50715 32.52923,350.8063 L 32.52923,247.16669 C 32.52923,242.46584 36.31366,238.68141 41.01451,238.68141 z"
id="path2558"
sodipodi:nodetypes="ccccccccc" />
<path
sodipodi:nodetypes="ccccc"
id="path2560"
d="M 32.53436,255.66313 L 32.53436,269.80098 L 573.75308,269.80098 L 573.75308,255.66313 L 32.53436,255.66313 z"
style="fill:url(#linearGradient2591);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="ccccccc"
id="path2562"
d="M 41.00311,238.6711 C 36.30226,238.6711 32.53436,242.47025 32.53436,247.1711 L 32.53436,260.6086 L 573.75308,260.6086 L 573.75308,247.1711 C 573.75308,242.47025 569.95398,238.6711 565.25308,238.6711 L 41.00311,238.6711 z"
style="fill:url(#linearGradient2588);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="ccccccc"
id="path2564"
d="M 41.00311,238.6711 C 36.30226,238.6711 32.53436,242.47025 32.53436,247.1711 L 32.53436,248.57735 L 573.75308,248.57735 L 573.75308,247.1711 C 573.75308,242.47025 569.95398,238.6711 565.25308,238.6711 L 41.00311,238.6711 z"
style="fill:url(#linearGradient2585);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.9000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.29044118;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 41.01451,238.68141 L 565.26428,238.68141 C 569.96518,238.68141 573.74958,242.46584 573.74958,247.16669 L 573.74958,350.8063 C 573.74958,355.50715 569.96518,359.29158 565.26428,359.29158 L 41.01451,359.29158 C 36.31366,359.29158 32.52923,355.50715 32.52923,350.8063 L 32.52923,247.16669 C 32.52923,242.46584 36.31366,238.68141 41.01451,238.68141 z"
id="path2566"
sodipodi:nodetypes="ccccccccc" />
<text
sodipodi:linespacing="125%"
id="text2568"
y="254.23776"
x="43.842945"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="254.23776"
x="43.842945"
id="tspan2570"
sodipodi:role="line">Algum conteudo</tspan></text>
<rect
y="248.16771"
x="552.01776"
height="4.630477"
width="9.2609539"
id="rect2572"
style="opacity:0.55830389;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999995;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2400.3976,-218.88618 L -1557.208,-218.88618 L -1557.208,-110.76548 L -2400.3976,-110.76548 L -2400.3976,-218.88618 z"
id="rect2629"
sodipodi:nodetypes="ccccc" />
<path
style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2401.834,-325.63799 L -2401.834,-292.17299 L -2401.7289,-292.17299 L -2401.7289,-89.496542 L -1555.0884,-89.496542 L -1555.0884,-292.17299 L -1555.0533,-292.17299 L -1555.0533,-325.63799 L -2401.834,-325.63799 z M -2398.3644,-292.17299 L -1558.4529,-292.17299 L -1558.4529,-94.262922 L -2398.3644,-94.262922 L -2398.3644,-292.17299 z"
id="path9539"
sodipodi:nodetypes="cccccccccccccc"
inkscape:export-filename="/home/valessio/Desktop/novabar1.png"
inkscape:export-xdpi="39.963123"
inkscape:export-ydpi="39.963123" />
<path
sodipodi:type="arc"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path2643"
sodipodi:cx="886.29395"
sodipodi:cy="420.71524"
sodipodi:rx="14.589674"
sodipodi:ry="14.589674"
d="M 900.88362,420.71524 A 14.589674,14.589674 0 1 1 871.70427,420.71524 A 14.589674,14.589674 0 1 1 900.88362,420.71524 z"
transform="matrix(1.4338904,0,0,1.5153444,-1309.6953,-563.93823)" />
<path
transform="matrix(1.5234881,0,0,1.5777908,-1389.1053,-579.26642)"
d="M 900.88362,420.71524 A 14.589674,14.589674 0 1 1 871.70427,420.71524 A 14.589674,14.589674 0 1 1 900.88362,420.71524 z"
sodipodi:ry="14.589674"
sodipodi:rx="14.589674"
sodipodi:cy="420.71524"
sodipodi:cx="886.29395"
id="path2641"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#5c3566;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#cc0000;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path2639"
sodipodi:cx="886.29395"
sodipodi:cy="420.71524"
sodipodi:rx="14.589674"
sodipodi:ry="14.589674"
d="M 900.88362,420.71524 A 14.589674,14.589674 0 1 1 871.70427,420.71524 A 14.589674,14.589674 0 1 1 900.88362,420.71524 z"
transform="matrix(1.4992278,0,0,1.4449252,-1372.8775,-528.64177)" />
<path
transform="matrix(1.3953173,0,0,1.3410147,-1270.2344,-484.92504)"
d="M 900.88362,420.71524 A 14.589674,14.589674 0 1 1 871.70427,420.71524 A 14.589674,14.589674 0 1 1 900.88362,420.71524 z"
sodipodi:ry="14.589674"
sodipodi:rx="14.589674"
sodipodi:cy="420.71524"
sodipodi:cx="886.29395"
id="path2637"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f57900;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path2635"
sodipodi:cx="886.29395"
sodipodi:cy="420.71524"
sodipodi:rx="14.589674"
sodipodi:ry="14.589674"
d="M 900.88362,420.71524 A 14.589674,14.589674 0 1 1 871.70427,420.71524 A 14.589674,14.589674 0 1 1 900.88362,420.71524 z"
transform="matrix(1.2274929,0,0,1.2274929,-1126.7665,-437.16469)" />
<g
id="g2611"
transform="matrix(7.4610672e-2,0,0,7.4610672e-2,-82.686883,89.658353)">
<g
transform="translate(-127.71426,-219.17851)"
style="display:inline"
id="g2613"
inkscape:label="Water">
<g
style="display:inline"
inkscape:label="Shape"
id="g2615"
inkscape:groupmode="layer">
<path
transform="translate(375.02778,-361.64819)"
d="M 564.3755,441.46219 A 224.10817,224.10817 0 1 1 116.15916,441.46219 A 224.10817,224.10817 0 1 1 564.3755,441.46219 z"
sodipodi:ry="224.10817"
sodipodi:rx="224.10817"
sodipodi:cy="441.46219"
sodipodi:cx="340.26733"
id="path2617"
style="opacity:1;fill:url(#linearGradient2633);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path2619"
sodipodi:cx="340.26733"
sodipodi:cy="441.46219"
sodipodi:rx="224.10817"
sodipodi:ry="224.10817"
d="M 564.3755,441.46219 A 224.10817,224.10817 0 1 1 116.15916,441.46219 A 224.10817,224.10817 0 1 1 564.3755,441.46219 z"
transform="translate(375.02778,-361.64819)" />
</g>
<g
style="display:inline"
inkscape:label="Highlights-Water"
id="g2621"
inkscape:groupmode="layer" />
</g>
<g
transform="translate(235.75842,-582.65119)"
style="display:inline"
inkscape:label="Continents"
id="g2623">
<g
style="display:inline"
inkscape:label="Shapes"
id="g2625"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccscccccccccsccsccccccccccc"
id="path2627"
d="M 370.97959,650.97443 L 384.35918,642.46014 L 377.98518,635.79375 L 395.91429,598.67239 C 394.7174,587.90476 395.731,578.08449 398.9551,568.26422 L 389.22449,562.18259 L 373.04964,559.74994 L 370.68722,546.9317 L 361.3192,539.38818 L 360.64082,529.29496 L 349.08571,519.003 L 350.93361,508.05606 L 359.78709,505.30762 L 349.08571,494.67647 L 359.42449,486.77035 L 367.93878,484.94586 L 360.34844,476.1626 L 372.19592,466.70096 C 374.27377,458.14766 377.29898,450.85751 382.2189,442.93578 L 381.92653,430.81933 L 386.13686,430.50354 L 390.70978,421.38109 L 400.77959,419.87239 L 415.98367,422.9132 L 415.66788,428.36327 L 431.11753,426.90138 L 450.64898,435.07647 L 458.5551,442.37443 L 471.32653,442.98259 C 478.37553,448.41683 483.03543,453.14048 483.37024,455.27688 C 483.71044,457.44768 486.80596,462.53829 492.61224,467.30912 L 489.57143,477.6479 L 498.08571,485.55402 L 507.20816,486.16218 L 511.46531,491.02749 L 522.41224,491.02749 L 523.62857,498.32545 L 532.14286,498.32545 L 532.14286,511.09688 C 516.29146,525.34183 511.46766,556.78856 503.53578,565.2 C 497.62802,571.46495 488.01208,574.18215 477.40816,576.77851 L 471.27972,591.39783 C 461.54514,599.86928 460.60389,604.74285 453.76002,610.49646 C 450.98634,612.82828 447.67839,613.82965 443.69022,615.02257 L 441.52653,607.18667 L 443.95918,603.53769 L 437.26939,607.18667 L 433.62041,615.09279 L 432.98884,621.10421 L 419.97185,629.95768 L 403.48121,632.12137 L 401.9491,638.76435 C 391.2788,643.17357 389.45048,646.63543 389.83265,649.14994 L 370.97959,650.97443 z"
style="fill:#f4f6f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
id="path2629"
d="M 341.67947,438.79176 C 338.52161,431.84448 328.08926,428.93373 322.73236,423.63407 L 320.83765,412.26581 C 313.89038,413.21316 307.89046,413.52895 300.94319,411.31845 C 300.20636,408.89743 299.46952,406.47642 298.73269,404.0554 L 286.73286,397.10812 L 279.15402,403.73961 C 262.31215,401.95016 263.78581,396.05551 244.73344,384.16094 L 243.78609,370.89796 C 240.31245,362.58229 237.78617,354.26662 230.52311,346.8983 L 230.8389,337.74053 L 225.78634,334.89846 L 225.78634,352.58243 L 233.36518,363.00333 L 233.68097,371.84532 C 223.04954,357.42447 219.99695,344.58254 219.78642,329.53012 C 215.70366,319.54883 216.31279,322.58284 216.31279,322.58284 L 216.62858,311.84615 C 219.89169,298.7937 224.10215,291.42538 236.83882,278.37294 C 238.83879,265.95205 247.47025,260.79423 252.94386,252.47855 C 265.15422,244.89971 289.99598,234.4788 317.04823,231.63674 L 359.995,229.11046 L 378.94211,235.42616 L 381.1526,243.63657 L 374.52111,239.21558 L 361.57393,238.58401 L 358.73186,233.53145 L 347.67938,234.16302 L 347.99517,239.21558 L 332.5217,239.53136 L 318.94294,245.84707 C 319.67977,252.47856 337.469,253.7417 347.67938,258.16269 L 354.31087,264.47839 L 352.41616,256.26797 L 356.83715,251.84698 L 353.04773,247.74178 L 352.10037,240.47872 C 363.99494,241.21555 374.94216,243.8471 377.36318,248.37335 L 386.20516,246.79442 C 395.04714,255.84693 403.57334,259.2153 414.62582,262.58368 C 415.99422,269.21517 419.25734,272.05723 424.41516,273.95194 L 417.78367,275.84665 L 411.15219,272.37301 L 410.52061,264.1626 L 403.57334,269.21516 L 391.57351,267.00467 L 385.57359,270.16252 L 395.36293,269.21516 L 401.04706,283.10971 L 387.15252,285.3202 L 382.73153,290.05698 L 383.99467,295.42533 L 379.57368,296.0569 L 375.46847,302.3726 L 371.04748,299.53053 L 366.62649,302.05681 L 370.10012,311.21458 C 363.25811,319.53025 349.78462,327.84593 346.73203,339.95102 L 353.99508,349.10879 L 353.36351,359.84548 L 348.62674,360.47705 L 343.25839,352.58243 L 342.94261,343.10887 L 327.46914,334.58268 C 318.83768,334.89846 313.04828,335.84582 307.25889,340.26681 L 293.36435,338.3721 L 278.20666,350.37193 L 281.99608,356.37185 L 276.94352,369.31904 L 281.6803,381.95044 L 289.57492,389.84507 L 304.41683,386.68722 L 314.83773,375.31895 L 320.83765,375.63474 L 320.20608,383.52937 L 314.52195,388.58193 L 314.52195,400.58176 L 333.15327,400.26598 C 333.8901,405.31854 337.78478,406.58168 340.10054,409.73953 L 337.57426,426.16035 L 343.25839,432.79184 L 341.67947,438.79176 z"
style="fill:#f4f6f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
<g
style="display:inline"
inkscape:label="Highlights"
id="g2631"
inkscape:groupmode="layer" />
</g>
</g>
<path
style="opacity:1;fill:url(#linearGradient3312);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -1113.5536,-29.369038 L -1113.5536,-6.025288 C -1113.5535,-0.217267 -1108.8927,4.443462 -1103.0848,4.443462 L -1005.5536,4.443462 C -999.7457,4.443461 -995.08477,-0.21727 -995.08477,-6.025288 L -995.08477,-29.369038 L -1005.5536,-29.369038 L -1103.0848,-29.369038 L -1113.5536,-29.369038 z"
id="path10023"
transform="matrix(1,0,0,-1,-1266.8988,-250.98993)" />
<path
style="fill:url(#linearGradient10279);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2380.4394,-215.61232 L -2380.4394,-226.07795 L -2380.4394,-236.46961 L -2380.4394,-244.97524 C -2380.4394,-250.78326 -2375.7818,-255.44087 -2369.9739,-255.44087 L -2272.4548,-255.44087 C -2266.647,-255.44087 -2261.9893,-250.78326 -2261.9893,-244.97524 L -2261.9893,-236.46961 L -2261.9893,-226.07795 L -2261.9893,-215.61232 L -2272.4548,-215.61232 L -2369.9739,-215.61232 L -2380.4394,-215.61232 z"
id="rect9541" />
<path
style="fill:url(#linearGradient10272);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2380.4523,-235.62089 L -2380.4523,-244.96464 C -2380.4522,-250.77266 -2375.7914,-255.43339 -2369.9835,-255.43339 L -2272.4523,-255.43339 C -2266.6445,-255.43339 -2261.9835,-250.77266 -2261.9835,-244.96464 L -2261.9835,-235.62089 L -2272.4523,-235.62089 L -2369.9835,-235.62089 L -2380.4523,-235.62089 z"
id="path10033" />
<rect
style="opacity:1;fill:url(#linearGradient3276);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3258"
width="161.1203"
height="38.251583"
x="-2393.3826"
y="-204.08174" />
<rect
y="-204.0981"
x="-2221.3989"
height="38.28429"
width="128.6261"
id="rect3260"
style="opacity:1;fill:url(#linearGradient3290);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.27547571;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
y="-204.0676"
x="-2082.4812"
height="38.223289"
width="192.20471"
id="rect3278"
style="opacity:1;fill:url(#linearGradient3282);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.33647633;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
style="opacity:1;fill:url(#linearGradient3284);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3280"
width="161.1203"
height="38.251583"
x="-1879.3827"
y="-204.08174" />
<rect
y="-204.09293"
x="-1704.7665"
height="38.273933"
width="138.51523"
id="rect3286"
style="opacity:1;fill:url(#linearGradient3288);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.28583065;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
y="-158.04565"
x="-2393.3464"
height="38.179398"
width="245.90092"
id="rect3292"
style="opacity:1;fill:url(#linearGradient3302);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.38036725;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
style="opacity:1;fill:url(#linearGradient3306);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.33647633;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3296"
width="192.20471"
height="38.223289"
x="-2136.2214"
y="-158.0676" />
<rect
y="-158.07262"
x="-1933.1136"
height="38.233292"
width="180.901"
id="rect3298"
style="opacity:1;fill:url(#linearGradient3308);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.32647491;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
style="opacity:1;fill:url(#linearGradient3310);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.32135606;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3300"
width="175.24925"
height="38.238407"
x="-1741.5183"
y="-158.07516" />
<path
id="path3324"
d="M -2127.3252,-33.13354 L -2127.3252,-9.78979 C -2127.3252,-3.98177 -2122.6643,0.67896 -2116.8564,0.67896 L -2019.3252,0.67896 C -2013.5173,0.67896 -2008.8564,-3.98177 -2008.8564,-9.78979 L -2008.8564,-33.13354 L -2019.3252,-33.13354 L -2116.8564,-33.13354 L -2127.3252,-33.13354 z"
style="opacity:1;fill:url(#linearGradient3384);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate" />
<path
id="path3326"
d="M -1999.3252,-33.13354 L -1999.3252,-9.78979 C -1999.3252,-3.98177 -1994.6643,0.67896 -1988.8564,0.67896 L -1891.3252,0.67896 C -1885.5173,0.67896 -1880.8564,-3.98177 -1880.8564,-9.78979 L -1880.8564,-33.13354 L -1891.3252,-33.13354 L -1988.8564,-33.13354 L -1999.3252,-33.13354 z"
style="opacity:1;fill:url(#linearGradient3386);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate" />
<path
id="path3328"
d="M -1871.3252,-33.13354 L -1871.3252,-9.78979 C -1871.3252,-3.98177 -1866.6643,0.67896 -1860.8564,0.67896 L -1763.3252,0.67896 C -1757.5173,0.67896 -1752.8564,-3.98177 -1752.8564,-9.78979 L -1752.8564,-33.13354 L -1763.3252,-33.13354 L -1860.8564,-33.13354 L -1871.3252,-33.13354 z"
style="opacity:1;fill:url(#linearGradient3388);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate" />
<path
id="path3332"
d="M -2127.3123,-39.14211 L -2127.3123,-28.67649 L -2127.3123,-18.28482 L -2127.3123,-9.77919 C -2127.3123,-3.97117 -2122.6547,0.68644 -2116.8468,0.68644 L -2019.3277,0.68644 C -2013.5198,0.68644 -2008.8622,-3.97117 -2008.8622,-9.77919 L -2008.8622,-18.28482 L -2008.8622,-28.67649 L -2008.8622,-39.14211 L -2019.3277,-39.14211 L -2116.8468,-39.14211 L -2127.3123,-39.14211 z"
style="fill:#4e9a06;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:#5c3566;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1999.3123,-39.14211 L -1999.3123,-28.67649 L -1999.3123,-18.28482 L -1999.3123,-9.77919 C -1999.3123,-3.97117 -1994.6547,0.68644 -1988.8468,0.68644 L -1891.3277,0.68644 C -1885.5198,0.68644 -1880.8622,-3.97117 -1880.8622,-9.77919 L -1880.8622,-18.28482 L -1880.8622,-28.67649 L -1880.8622,-39.14211 L -1891.3277,-39.14211 L -1988.8468,-39.14211 L -1999.3123,-39.14211 z"
id="path3334" />
<path
id="path3336"
d="M -1871.3123,-39.14211 L -1871.3123,-28.67649 L -1871.3123,-18.28482 L -1871.3123,-9.77919 C -1871.3123,-3.97117 -1866.6547,0.68644 -1860.8468,0.68644 L -1763.3277,0.68644 C -1757.5198,0.68644 -1752.8622,-3.97117 -1752.8622,-9.77919 L -1752.8622,-18.28482 L -1752.8622,-28.67649 L -1752.8622,-39.14211 L -1763.3277,-39.14211 L -1860.8468,-39.14211 L -1871.3123,-39.14211 z"
style="fill:#a40000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path3340"
d="M -2127.3252,-19.13354 L -2127.3252,-9.78979 C -2127.3252,-3.98177 -2122.6643,0.67896 -2116.8564,0.67896 L -2019.3252,0.67896 C -2013.5173,0.67896 -2008.8564,-3.98177 -2008.8564,-9.78979 L -2008.8564,-19.13354 L -2019.3252,-19.13354 L -2116.8564,-19.13354 L -2127.3252,-19.13354 z"
style="fill:url(#linearGradient3392);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path3342"
d="M -1999.3252,-19.13354 L -1999.3252,-9.78979 C -1999.3252,-3.98177 -1994.6643,0.67896 -1988.8564,0.67896 L -1891.3252,0.67896 C -1885.5173,0.67896 -1880.8564,-3.98177 -1880.8564,-9.78979 L -1880.8564,-19.13354 L -1891.3252,-19.13354 L -1988.8564,-19.13354 L -1999.3252,-19.13354 z"
style="fill:url(#linearGradient3394);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
id="path3344"
d="M -1871.3252,-19.13354 L -1871.3252,-9.78979 C -1871.3252,-3.98177 -1866.6643,0.67896 -1860.8564,0.67896 L -1763.3252,0.67896 C -1757.5173,0.67896 -1752.8564,-3.98177 -1752.8564,-9.78979 L -1752.8564,-19.13354 L -1763.3252,-19.13354 L -1860.8564,-19.13354 L -1871.3252,-19.13354 z"
style="fill:url(#linearGradient3396);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:url(#linearGradient3398);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2400.3976,-37.12882 L -1557.208,-37.12882 L -1557.208,-16.89037 L -2400.3976,-16.89037 L -2400.3976,-37.12882 z"
id="path3346"
sodipodi:nodetypes="ccccc" />
<path
inkscape:export-ydpi="39.963123"
inkscape:export-xdpi="39.963123"
inkscape:export-filename="/home/valessio/Desktop/novabar2.png"
sodipodi:nodetypes="cccccccccccccc"
id="path3350"
d="M -2401.834,-65.63799 L -2401.834,-32.17299 L -2401.7289,-32.17299 L -2401.7289,170.50346 L -1555.0884,170.50346 L -1555.0884,-32.17299 L -1555.0533,-32.17299 L -1555.0533,-65.63799 L -2401.834,-65.63799 z M -2398.3644,-32.17299 L -1558.4529,-32.17299 L -1558.4529,165.73708 L -2398.3644,165.73708 L -2398.3644,-32.17299 z"
style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
id="g3440"
transform="matrix(1,0,0,-1,0,10.94681)">
<path
style="opacity:1;fill:url(#linearGradient3445);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -1113.5536,-29.369038 L -1113.5536,-6.025288 C -1113.5535,-0.217267 -1108.8927,4.443462 -1103.0848,4.443462 L -1005.5536,4.443462 C -999.7457,4.443461 -995.08477,-0.21727 -995.08477,-6.025288 L -995.08477,-29.369038 L -1005.5536,-29.369038 L -1103.0848,-29.369038 L -1113.5536,-29.369038 z"
id="path3352"
transform="matrix(1,0,0,-1,-1266.8988,9.01007)" />
<path
style="fill:url(#linearGradient3447);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2380.4394,44.38768 L -2380.4394,33.92205 L -2380.4394,23.53039 L -2380.4394,15.02476 C -2380.4394,9.21674 -2375.7818,4.55913 -2369.9739,4.55913 L -2272.4548,4.55913 C -2266.647,4.55913 -2261.9893,9.21674 -2261.9893,15.02476 L -2261.9893,23.53039 L -2261.9893,33.92205 L -2261.9893,44.38768 L -2272.4548,44.38768 L -2369.9739,44.38768 L -2380.4394,44.38768 z"
id="path3354" />
<path
style="fill:url(#linearGradient3449);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2380.4523,24.37911 L -2380.4523,15.03536 C -2380.4522,9.22734 -2375.7914,4.56661 -2369.9835,4.56661 L -2272.4523,4.56661 C -2266.6445,4.56661 -2261.9835,9.22734 -2261.9835,15.03536 L -2261.9835,24.37911 L -2272.4523,24.37911 L -2369.9835,24.37911 L -2380.4523,24.37911 z"
id="path3356" />
</g>
<rect
y="55.918255"
x="1566.2512"
height="38.251583"
width="161.1203"
id="rect3362"
style="opacity:1;fill:url(#linearGradient3468);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
transform="scale(-1,1)" />
<rect
style="opacity:1;fill:url(#linearGradient3484);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3364"
width="128.6261"
height="38.28429"
x="1738.2349"
y="55.901897"
transform="scale(-1,1)" />
<rect
style="opacity:1;fill:url(#linearGradient3482);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3366"
width="192.20471"
height="38.223289"
x="1877.1526"
y="55.9324"
transform="scale(-1,1)" />
<rect
y="55.918255"
x="2080.2512"
height="38.251583"
width="161.1203"
id="rect3368"
style="opacity:1;fill:url(#linearGradient3480);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
transform="scale(-1,1)" />
<rect
style="opacity:1;fill:url(#linearGradient3478);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3370"
width="138.51523"
height="38.273933"
x="2254.8674"
y="55.90707"
transform="scale(-1,1)" />
<rect
style="opacity:1;fill:url(#linearGradient3470);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3372"
width="245.90092"
height="38.179398"
x="1566.2874"
y="101.95436"
transform="scale(-1,1)" />
<rect
y="101.9324"
x="1823.4124"
height="38.223289"
width="192.20471"
id="rect3374"
style="opacity:1;fill:url(#linearGradient3476);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
transform="scale(-1,1)" />
<rect
style="opacity:1;fill:url(#linearGradient3474);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3376"
width="180.901"
height="38.233292"
x="2026.5201"
y="101.92738"
transform="scale(-1,1)" />
<rect
y="101.92485"
x="2218.1155"
height="38.238407"
width="175.24925"
id="rect3378"
style="opacity:1;fill:url(#linearGradient3472);fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
transform="scale(-1,1)" />
<g
id="g3426"
transform="translate(50,58)">
<path
style="fill:#2e3436;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.61087209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3219)"
d="M -2295.0157,-201.76728 L -2305.9843,-242.70295 L -2268.8151,-221.24324 L -2282.52,-219.01083 L -2262.6395,-196.8803 C -2267.5948,-196.07158 -2271.3132,-194.02601 -2273.6022,-190.55093 L -2289.5178,-214.5956 L -2295.0157,-201.76728 z"
id="path2628"
sodipodi:nodetypes="cccccccc" />
<path
sodipodi:nodetypes="cccccccc"
id="path2626"
d="M -2295.0157,-205.76728 L -2305.9843,-246.70295 L -2268.8151,-225.24324 L -2282.52,-223.01083 L -2262.6395,-200.8803 C -2267.5948,-200.07158 -2271.3132,-198.02601 -2273.6022,-194.55093 L -2289.5178,-218.5956 L -2295.0157,-205.76728 z"
style="fill:url(#linearGradient3430);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.61087209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<text
xml:space="preserve"
style="font-size:22.87048911999999845px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="-2381.1294"
y="-175.88596"
id="text3432"><tspan
sodipodi:role="line"
id="tspan3434"
x="-2381.1294"
y="-175.88596">Blihhh</tspan></text>
<g
id="g3453"
transform="matrix(1,0,0,-1,0,3.54433)">
<path
style="opacity:1;fill:url(#linearGradient3458);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -2255.3252,-33.13354 L -2255.3252,-9.78979 C -2255.3251,-3.98177 -2250.6643,0.67896 -2244.8564,0.67896 L -2147.3252,0.67896 C -2141.5173,0.67896 -2136.8564,-3.98177 -2136.8564,-9.78979 L -2136.8564,-33.13354 L -2147.3252,-33.13354 L -2244.8564,-33.13354 L -2255.3252,-33.13354 z"
id="path3322" />
<path
id="path3330"
d="M -2255.3123,-39.14211 L -2255.3123,-28.67649 L -2255.3123,-18.28482 L -2255.3123,-9.77919 C -2255.3123,-3.97117 -2250.6547,0.68644 -2244.8468,0.68644 L -2147.3277,0.68644 C -2141.5198,0.68644 -2136.8622,-3.97117 -2136.8622,-9.77919 L -2136.8622,-18.28482 L -2136.8622,-28.67649 L -2136.8622,-39.14211 L -2147.3277,-39.14211 L -2244.8468,-39.14211 L -2255.3123,-39.14211 z"
style="fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:url(#linearGradient3460);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2255.3252,-19.13354 L -2255.3252,-9.78979 C -2255.3251,-3.98177 -2250.6643,0.67896 -2244.8564,0.67896 L -2147.3252,0.67896 C -2141.5173,0.67896 -2136.8564,-3.98177 -2136.8564,-9.78979 L -2136.8564,-19.13354 L -2147.3252,-19.13354 L -2244.8564,-19.13354 L -2255.3252,-19.13354 z"
id="path3338" />
</g>
<g
id="g3436"
transform="translate(120,-2)">
<path
sodipodi:nodetypes="cccccccc"
id="path3358"
d="M -2295.0157,58.23272 L -2305.9843,17.29705 L -2268.8151,38.75676 L -2282.52,40.98917 L -2262.6395,63.1197 C -2267.5948,63.92842 -2271.3132,65.97399 -2273.6022,69.44907 L -2289.5178,45.4044 L -2295.0157,58.23272 z"
style="fill:#2e3436;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.61087209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3219)" />
<path
style="fill:url(#linearGradient3451);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.61087209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -2295.0157,54.23272 L -2305.9843,13.29705 L -2268.8151,34.75676 L -2282.52,36.98917 L -2262.6395,59.1197 C -2267.5948,59.92842 -2271.3132,61.97399 -2273.6022,65.44907 L -2289.5178,41.4044 L -2295.0157,54.23272 z"
id="path3360"
sodipodi:nodetypes="cccccccc" />
</g>
<text
xml:space="preserve"
style="font-size:13.747612px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="-2391.2649"
y="-46.452698"
id="text3486"><tspan
sodipodi:role="line"
id="tspan3488"
x="-2391.2649"
y="-46.452698">Local / Blihhh</tspan></text>
<path
sodipodi:type="star"
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path3490"
sodipodi:sides="3"
sodipodi:cx="-1364"
sodipodi:cy="75.141449"
sodipodi:r1="42"
sodipodi:r2="20.999998"
sodipodi:arg1="0"
sodipodi:arg2="1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M -1322,75.141449 L -1353.5,93.327981 L -1385,111.51452 L -1385,75.141448 L -1385,38.768382 L -1353.5,56.954918 L -1322,75.141449 z"
transform="matrix(8.39776e-2,0,0,8.39776e-2,-1558.3987,-54.54224)" />
<text
xml:space="preserve"
style="font-size:12.70860195000000026px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="-1662.5679"
y="-44.242069"
id="text3492"><tspan
sodipodi:role="line"
id="tspan3494"
x="-1662.5679"
y="-44.242069">Acessibilidade</tspan></text>
<path
transform="matrix(8.39776e-2,0,0,8.39776e-2,-1558.3987,-314.54224)"
d="M -1322,75.141449 L -1353.5,93.327981 L -1385,111.51452 L -1385,75.141448 L -1385,38.768382 L -1353.5,56.954918 L -1322,75.141449 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="20.999998"
sodipodi:r1="42"
sodipodi:cy="75.141449"
sodipodi:cx="-1364"
sodipodi:sides="3"
id="path3496"
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="star" />
<text
id="text3498"
y="-304.24207"
x="-1662.5679"
style="font-size:12.70860195px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="-304.24207"
x="-1662.5679"
id="tspan3500"
sodipodi:role="line">Acessibilidade</tspan></text>
<path
style="opacity:1;fill:url(#linearGradient3580);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -2127.3252,226.86646 L -2127.3252,250.21021 C -2127.3252,256.01823 -2122.6643,260.67896 -2116.8564,260.67896 L -2019.3252,260.67896 C -2013.5173,260.67896 -2008.8564,256.01823 -2008.8564,250.21021 L -2008.8564,226.86646 L -2019.3252,226.86646 L -2116.8564,226.86646 L -2127.3252,226.86646 z"
id="path3506" />
<path
style="opacity:1;fill:url(#linearGradient3582);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -1999.3252,226.86646 L -1999.3252,250.21021 C -1999.3252,256.01823 -1994.6643,260.67896 -1988.8564,260.67896 L -1891.3252,260.67896 C -1885.5173,260.67896 -1880.8564,256.01823 -1880.8564,250.21021 L -1880.8564,226.86646 L -1891.3252,226.86646 L -1988.8564,226.86646 L -1999.3252,226.86646 z"
id="path3508" />
<path
style="opacity:1;fill:url(#linearGradient3584);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate"
d="M -1871.3252,226.86646 L -1871.3252,250.21021 C -1871.3252,256.01823 -1866.6643,260.67896 -1860.8564,260.67896 L -1763.3252,260.67896 C -1757.5173,260.67896 -1752.8564,256.01823 -1752.8564,250.21021 L -1752.8564,226.86646 L -1763.3252,226.86646 L -1860.8564,226.86646 L -1871.3252,226.86646 z"
id="path3510" />
<path
style="fill:#4e9a06;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2127.3123,220.85789 L -2127.3123,231.32351 L -2127.3123,241.71518 L -2127.3123,250.22081 C -2127.3123,256.02883 -2122.6547,260.68644 -2116.8468,260.68644 L -2019.3277,260.68644 C -2013.5198,260.68644 -2008.8622,256.02883 -2008.8622,250.22081 L -2008.8622,241.71518 L -2008.8622,231.32351 L -2008.8622,220.85789 L -2019.3277,220.85789 L -2116.8468,220.85789 L -2127.3123,220.85789 z"
id="path3512" />
<path
id="path3514"
d="M -1999.3123,220.85789 L -1999.3123,231.32351 L -1999.3123,241.71518 L -1999.3123,250.22081 C -1999.3123,256.02883 -1994.6547,260.68644 -1988.8468,260.68644 L -1891.3277,260.68644 C -1885.5198,260.68644 -1880.8622,256.02883 -1880.8622,250.22081 L -1880.8622,241.71518 L -1880.8622,231.32351 L -1880.8622,220.85789 L -1891.3277,220.85789 L -1988.8468,220.85789 L -1999.3123,220.85789 z"
style="fill:#5c3566;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:#a40000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1871.3123,220.85789 L -1871.3123,231.32351 L -1871.3123,241.71518 L -1871.3123,250.22081 C -1871.3123,256.02883 -1866.6547,260.68644 -1860.8468,260.68644 L -1763.3277,260.68644 C -1757.5198,260.68644 -1752.8622,256.02883 -1752.8622,250.22081 L -1752.8622,241.71518 L -1752.8622,231.32351 L -1752.8622,220.85789 L -1763.3277,220.85789 L -1860.8468,220.85789 L -1871.3123,220.85789 z"
id="path3516" />
<path
style="fill:url(#linearGradient3586);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2127.3252,240.86646 L -2127.3252,250.21021 C -2127.3252,256.01823 -2122.6643,260.67896 -2116.8564,260.67896 L -2019.3252,260.67896 C -2013.5173,260.67896 -2008.8564,256.01823 -2008.8564,250.21021 L -2008.8564,240.86646 L -2019.3252,240.86646 L -2116.8564,240.86646 L -2127.3252,240.86646 z"
id="path3518" />
<path
style="fill:url(#linearGradient3588);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1999.3252,240.86646 L -1999.3252,250.21021 C -1999.3252,256.01823 -1994.6643,260.67896 -1988.8564,260.67896 L -1891.3252,260.67896 C -1885.5173,260.67896 -1880.8564,256.01823 -1880.8564,250.21021 L -1880.8564,240.86646 L -1891.3252,240.86646 L -1988.8564,240.86646 L -1999.3252,240.86646 z"
id="path3520" />
<path
style="fill:url(#linearGradient3590);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1871.3252,240.86646 L -1871.3252,250.21021 C -1871.3252,256.01823 -1866.6643,260.67896 -1860.8564,260.67896 L -1763.3252,260.67896 C -1757.5173,260.67896 -1752.8564,256.01823 -1752.8564,250.21021 L -1752.8564,240.86646 L -1763.3252,240.86646 L -1860.8564,240.86646 L -1871.3252,240.86646 z"
id="path3522" />
<path
sodipodi:nodetypes="ccccc"
id="path3524"
d="M -2400.3976,222.87118 L -1557.208,222.87118 L -1557.208,243.10963 L -2400.3976,243.10963 L -2400.3976,222.87118 z"
style="fill:url(#linearGradient3592);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.07599998;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="opacity:1;fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2401.834,194.36201 L -2401.834,227.82701 L -2401.7289,227.82701 L -2401.7289,430.50346 L -1555.0884,430.50346 L -1555.0884,227.82701 L -1555.0533,227.82701 L -1555.0533,194.36201 L -2401.834,194.36201 z M -2398.3644,227.82701 L -1558.4529,227.82701 L -1558.4529,425.73708 L -2398.3644,425.73708 L -2398.3644,227.82701 z"
id="path3526"
sodipodi:nodetypes="cccccccccccccc"
inkscape:export-filename="/home/valessio/Desktop/novabar3.png"
inkscape:export-xdpi="39.963123"
inkscape:export-ydpi="39.963123" />
<g
transform="translate(0,266)"
id="g3554">
<path
id="path3556"
d="M -2255.3252,-33.13354 L -2255.3252,-9.78979 C -2255.3251,-3.98177 -2250.6643,0.67896 -2244.8564,0.67896 L -2147.3252,0.67896 C -2141.5173,0.67896 -2136.8564,-3.98177 -2136.8564,-9.78979 L -2136.8564,-33.13354 L -2147.3252,-33.13354 L -2244.8564,-33.13354 L -2255.3252,-33.13354 z"
style="opacity:1;fill:url(#linearGradient3618);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3274);enable-background:accumulate" />
<path
style="fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -2255.3123,-39.14211 L -2255.3123,-28.67649 L -2255.3123,-18.28482 L -2255.3123,-9.77919 C -2255.3123,-3.97117 -2250.6547,0.68644 -2244.8468,0.68644 L -2147.3277,0.68644 C -2141.5198,0.68644 -2136.8622,-3.97117 -2136.8622,-9.77919 L -2136.8622,-18.28482 L -2136.8622,-28.67649 L -2136.8622,-39.14211 L -2147.3277,-39.14211 L -2244.8468,-39.14211 L -2255.3123,-39.14211 z"
id="path3558" />
<path
id="path3560"
d="M -2255.3252,-19.13354 L -2255.3252,-9.78979 C -2255.3251,-3.98177 -2250.6643,0.67896 -2244.8564,0.67896 L -2147.3252,0.67896 C -2141.5173,0.67896 -2136.8564,-3.98177 -2136.8564,-9.78979 L -2136.8564,-19.13354 L -2147.3252,-19.13354 L -2244.8564,-19.13354 L -2255.3252,-19.13354 z"
style="fill:url(#linearGradient3620);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37599999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<path
sodipodi:nodetypes="cccccccc"
id="path3564"
d="M -2175.0157,346.23272 L -2185.9843,305.29705 L -2148.8151,326.75676 L -2162.52,328.98917 L -2142.6395,351.1197 C -2147.5948,351.92842 -2151.3132,353.97399 -2153.6022,357.44907 L -2169.5178,333.4044 L -2175.0157,346.23272 z"
style="fill:#2e3436;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.61087209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3219)" />
<path
style="fill:url(#linearGradient3625);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.61087209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -2173.0157,348.23272 L -2183.9843,307.29705 L -2146.8151,328.75676 L -2160.52,330.98917 L -2140.6395,353.1197 C -2145.5948,353.92842 -2149.3132,355.97399 -2151.6022,359.44907 L -2167.5178,335.4044 L -2173.0157,348.23272 z"
id="path3566"
sodipodi:nodetypes="cccccccc" />
<text
id="text3568"
y="213.5473"
x="-2391.2649"
style="font-size:13.747612px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="213.5473"
x="-2391.2649"
id="tspan3570"
sodipodi:role="line">Local / Blihhh</tspan></text>
<path
transform="matrix(8.39776e-2,0,0,8.39776e-2,-1558.3987,205.45776)"
d="M -1322,75.141449 L -1353.5,93.327981 L -1385,111.51452 L -1385,75.141448 L -1385,38.768382 L -1353.5,56.954918 L -1322,75.141449 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="20.999998"
sodipodi:r1="42"
sodipodi:cy="75.141449"
sodipodi:cx="-1364"
sodipodi:sides="3"
id="path3572"
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:0.30818275;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="star" />
<text
id="text3574"
y="215.75793"
x="-1662.5679"
style="font-size:12.70860195px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="215.75793"
x="-1662.5679"
id="tspan3576"
sodipodi:role="line">Acessibilidade</tspan></text>
</g>
</svg>