aboutsummaryrefslogblamecommitdiffstats
path: root/view/theme/darkbubble/icons.svg
blob: b435ba665374ddb03ab41a60390c2c558c9a35fb (plain) (tree)
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

































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="250"
   height="200"
   id="svg3403"
   version="1.1"
   inkscape:version="0.48.1 r9760"
   sodipodi:docname="icons.svg"
   inkscape:export-filename="/home/fabio/public_html/friendika/view/theme/dispy/icons.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs3405">
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter4064">
      <feBlend
         inkscape:collect="always"
         mode="lighten"
         in2="BackgroundImage"
         id="feBlend4066" />
    </filter>
    <inkscape:path-effect
       effect="gears"
       id="path-effect4050"
       is_visible="true"
       teeth="10"
       phi="10" />
    <inkscape:path-effect
       effect="gears"
       id="path-effect3436"
       is_visible="true"
       teeth="10"
       phi="10" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.9899495"
     inkscape:cx="43.010429"
     inkscape:cy="-67.661177"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="true"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:snap-global="false"
     inkscape:window-width="1534"
     inkscape:window-height="1067"
     inkscape:window-x="104"
     inkscape:window-y="63"
     inkscape:window-maximized="0">
    <inkscape:grid
       type="xygrid"
       id="grid4016"
       empspacing="5"
       visible="true"
       enabled="false"
       snapvisiblegridlinesonly="false"
       spacingx="20px"
       spacingy="20px"
       dotted="false"
       units="px"
       originx="50px"
       originy="200px" />
    <inkscape:grid
       type="xygrid"
       id="grid4018"
       empspacing="5"
       visible="true"
       enabled="true"
       snapvisiblegridlinesonly="false"
       color="#ff0000"
       opacity="0.1254902"
       empcolor="#ff0000"
       empopacity="0.25098039"
       originy="200px"
       spacingx="22px"
       spacingy="22px" />
  </sodipodi:namedview>
  <metadata
     id="metadata3408">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title></dc:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Livello 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(0,-852.36218)">
    <rect
       style="fill:#2e3436;fill-opacity:1;stroke:none;display:inline"
       id="rect4007"
       width="44"
       height="132"
       x="1.5883562e-17"
       y="852.36218"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       id="ico_dir"
       transform="matrix(0.43114968,0,0,0.43114968,-178.47604,867.63556)"
       style="stroke:#888a85;display:inline"
       inkscape:label="#g3846">
      <rect
         ry="6"
         rx="6"
         y="18.790752"
         x="417.14285"
         height="44.285713"
         width="44.285713"
         id="rect3820"
         style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         inkscape:connector-curvature="0"
         style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
         id="path3830" />
      <path
         id="path3832"
         d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
         style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path3822"
         d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z"
         style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
    </g>
    <g
       id="ico_search"
       transform="matrix(0.43114968,0,0,0.43114968,-201.41936,889.63556)"
       style="stroke:#888a85;display:inline"
       inkscape:label="#g3852">
      <rect
         style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="rect3837"
         width="44.285713"
         height="44.285713"
         x="470.35715"
         y="18.790752"
         rx="6"
         ry="6" />
      <path
         inkscape:connector-curvature="0"
         id="path3839"
         d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z"
         style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         transform="translate(-0.21428562,-0.35714286)"
         d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z"
         sodipodi:ry="7.3214288"
         sodipodi:rx="7.3214288"
         sodipodi:cy="33.612183"
         sodipodi:cx="485.17856"
         id="path3844"
         style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         sodipodi:type="arc" />
    </g>
    <g
       inkscape:label="#g3852"
       style="stroke:#888a85;display:inline"
       transform="matrix(0.43114968,0,0,0.43114968,-201.41936,845.63556)"
       id="ico_logout">
      <rect
         ry="6"
         rx="6"
         y="18.790752"
         x="470.35715"
         height="44.285713"
         width="44.285713"
         id="rect3995"
         style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         style="fill:#555753;fill-opacity:1;stroke:#888a85;stroke-width:2.31938004"
         d="M 504.69787,28.735741 480.30214,53.131477"
         id="path4003"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path4005"
         d="M 504.69787,53.131473 480.30214,28.735746"
         style="fill:#555753;fill-opacity:1;stroke:#888a85;stroke-width:2.31938004" />
    </g>
    <g
       inkscape:label="#g3846"
       style="stroke:#d3d7cf;display:inline"
       transform="matrix(0.43114968,0,0,0.43114968,-156.47604,867.63556)"
       id="ico_dir_on">
      <rect
         style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="rect4011"
         width="44.285713"
         height="44.285713"
         x="417.14285"
         y="18.790752"
         rx="6"
         ry="6" />
      <path
         id="path4013"
         d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
         style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
         id="path4015" />
      <path
         style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z"
         id="path4017"
         inkscape:connector-curvature="0" />
    </g>
    <g
       inkscape:label="#g3852"
       style="stroke:#d3d7cf;display:inline"
       transform="matrix(0.43114968,0,0,0.43114968,-179.41936,889.63556)"
       id="ico_search_on">
      <rect
         ry="6"
         rx="6"
         y="18.790752"
         x="470.35715"
         height="44.285713"
         width="44.285713"
         id="rect4021"
         style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z"
         id="path4023"
         inkscape:connector-curvature="0" />
      <path
         sodipodi:type="arc"
         style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4025"
         sodipodi:cx="485.17856"
         sodipodi:cy="33.612183"
         sodipodi:rx="7.3214288"
         sodipodi:ry="7.3214288"
         d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z"
         transform="translate(-0.21428562,-0.35714286)" />
    </g>
    <g
       id="ico_logout_on"
       transform="matrix(0.43114968,0,0,0.43114968,-179.41936,845.63556)"
       style="stroke:#d3d7cf;display:inline"
       inkscape:label="#g3852">
      <rect
         style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="rect4029"
         width="44.285713"
         height="44.285713"
         x="470.35715"
         y="18.790752"
         rx="6"
         ry="6" />
      <path
         inkscape:connector-curvature="0"
         id="path4031"
         d="M 504.69787,28.735741 480.30214,53.131477"
         style="fill:#555753;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004" />
      <path
         style="fill:#555753;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004"
         d="M 504.69787,53.131473 480.30214,28.735746"
         id="path4033"
         inkscape:connector-curvature="0" />
    </g>
    <g
       inkscape:label="#g3852"
       style="stroke:#888a85;display:inline;filter:url(#filter4064)"
       transform="matrix(0.43114968,0,0,0.43114968,-201.41936,911.63556)"
       id="g4040">
      <rect
         ry="6"
         rx="6"
         y="18.790752"
         x="470.35715"
         height="44.285713"
         width="44.285713"
         id="rect4042"
         style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138"
         id="path4048"
         inkscape:connector-curvature="0"
         inkscape:path-effect="#path-effect4050"
         inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" />
    </g>
    <g
       id="g4068"
       transform="matrix(0.43114968,0,0,0.43114968,-179.41936,911.63556)"
       style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
       inkscape:label="#g3852">
      <rect
         style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="rect4070"
         width="44.285713"
         height="44.285713"
         x="470.35715"
         y="18.790752"
         rx="6"
         ry="6" />
      <path
         inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434"
         inkscape:path-effect="#path-effect4050"
         inkscape:connector-curvature="0"
         id="path4072"
         d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138"
         style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
    </g>
    <g
       id="g4074"
       transform="matrix(0.43114968,0,0,0.43114968,-201.41936,933.6356)"
       style="stroke:#888a85;display:inline;filter:url(#filter4064)"
       inkscape:label="#g3852">
      <rect
         style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="rect4076"
         width="44.285713"
         height="44.285713"
         x="470.35715"
         y="18.790752"
         rx="6"
         ry="6" />
      <path
         style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
         d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z"
         transform="matrix(2.3193801,0,0,2.3193801,-1519.671,-74.824492)"
         id="path3839-4"
         inkscape:connector-curvature="0" />
    </g>
    <g
       inkscape:label="#g3852"
       style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
       transform="matrix(0.43114968,0,0,0.43114968,-179.41936,933.6356)"
       id="g4106">
      <rect
         ry="6"
         rx="6"
         y="18.790752"
         x="470.35715"
         height="44.285713"
         width="44.285713"
         id="rect4108"
         style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         id="path4110"
         transform="matrix(2.3193801,0,0,2.3193801,-1519.671,-74.824492)"
         d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z"
         style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
         inkscape:connector-curvature="0" />
    </g>
    <g
       id="g4031-9"
       transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-2.7897502,485.71067)"
       style="display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         sodipodi:type="arc"
         style="fill:#555753;fill-opacity:1;stroke:none"
         id="path4002-3"
         sodipodi:cx="559.67499"
         sodipodi:cy="21.754047"
         sodipodi:rx="0.88388348"
         sodipodi:ry="0.88388348"
         d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
         transform="matrix(2.8,0,0,2.8,-999.63682,-35.444974)" />
      <path
         transform="matrix(2.1,0,0,2.1,-600.17454,-24.194616)"
         d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
         sodipodi:ry="0.88388348"
         sodipodi:rx="0.88388348"
         sodipodi:cy="21.754047"
         sodipodi:cx="559.67499"
         id="path4004-9"
         style="fill:#555753;fill-opacity:1;stroke:none"
         sodipodi:type="arc" />
      <path
         sodipodi:type="arc"
         style="fill:#555753;fill-opacity:1;stroke:none"
         id="path4006-4"
         sodipodi:cx="559.67499"
         sodipodi:cy="21.754047"
         sodipodi:rx="0.88388348"
         sodipodi:ry="0.88388348"
         d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
         transform="matrix(2.2,0,0,2.2,-671.07968,-28.226177)" />
      <path
         style="fill:none;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184"
         id="path4010-56"
         inkscape:connector-curvature="0" />
      <path
         transform="matrix(2.4,0,0,2.4,-780.18625,-20.379394)"
         d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
         sodipodi:ry="0.88388348"
         sodipodi:rx="0.88388348"
         sodipodi:cy="21.754047"
         sodipodi:cx="559.67499"
         id="path4008-8"
         style="fill:#555753;fill-opacity:1;stroke:none"
         sodipodi:type="arc" />
      <path
         style="fill:none;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="m 567.45319,25.466358 7.6014,-4.065864"
         id="path4012-5"
         inkscape:connector-curvature="0" />
    </g>
    <path
       style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       d="m 218.00001,881.25007 -5.8125,0 0,9.1875 10.53125,0 0,-5.2187"
       id="rect4432"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccccc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4387-8"
       width="14.5"
       height="9"
       x="173.12502"
       y="858.11218"
       rx="2.9268293"
       ry="2.9268293"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       sodipodi:type="arc"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="path4391-3"
       sodipodi:cx="408.8125"
       sodipodi:cy="220.26843"
       sodipodi:rx="2.6875"
       sodipodi:ry="2.71875"
       d="m 411.5,220.26843 a 2.6875,2.71875 0 1 1 -5.375,0 2.6875,2.71875 0 1 1 5.375,0 z"
       transform="matrix(1.1489362,0,0,1.1489362,-286.13697,609.51131)"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       d="m 242.44524,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70235,0 c 0.51967,0 0.94448,0.2879 0.94448,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94448,0.672 l -3.70235,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z"
       id="rect4397-0"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:connector-curvature="0"
       id="path4418-4"
       d="m 232.97199,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70236,0 c 0.51966,0 0.94447,0.2879 0.94447,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94447,0.672 l -3.70236,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z"
       style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4395-0"
       width="6.7246785"
       height="1.6362466"
       x="236.7028"
       y="861.57312"
       rx="1.0135853"
       ry="0.81812328"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
       id="rect4416-1"
       width="14.495689"
       height="6.5407376"
       x="132.5179"
       y="901.32971"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <text
       xml:space="preserve"
       style="font-size:5.54432058px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"
       x="139.36653"
       y="900.60059"
       id="text4406-9"
       sodipodi:linespacing="100%"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90"><tspan
         sodipodi:role="line"
         id="tspan4408-6"
         x="139.36653"
         y="900.60059">You</tspan><tspan
         sodipodi:role="line"
         x="139.36653"
         y="906.1449"
         id="tspan4410-2"
         style="fill:#eeeeec">Tube</tspan></text>
    <path
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       d="m 118.03127,895.15627 0,0.3125 c 0,1.2601 -0.0643,3.4345 -0.35937,5.75 l -1.5625,1e-4 c -0.80183,0.011 -1.64766,4.0737 -1.60938,8.0625 l 8.25,0 c -0.057,-5.5479 1.56902,-11.5211 1.75,-5.6563 0.21453,6.9525 1.74237,-5.1823 1.75,-8.4687 z"
       id="rect4428-4"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="csccccscc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       d="m 124.78127,905.73727 -1.9375,-0.063"
       id="path4440-4"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       d="m 117.59377,901.20597 6.4375,0"
       id="path4442-9"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4446-9"
       width="1.0625"
       height="0.375"
       x="115.28126"
       y="908.11218"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="906.51843"
       x="115.34376"
       height="0.375"
       width="1.0625"
       id="rect4448-3"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4450-6"
       width="1.0625"
       height="0.375"
       x="115.50001"
       y="904.89343"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="903.42468"
       x="115.81251"
       height="0.375"
       width="1.0625"
       id="rect4452-0"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4454-5"
       width="1.0625"
       height="0.375"
       x="116.21876"
       y="902.17468"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="900.17468"
       x="118.50001"
       height="0.375"
       width="1.0625"
       id="rect4456-0"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4458-2"
       width="1.0625"
       height="0.375"
       x="118.68751"
       y="898.70593"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="897.20593"
       x="118.75001"
       height="0.375"
       width="1.0625"
       id="rect4460-9"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4462-4"
       width="1.0625"
       height="0.375"
       x="118.75001"
       y="895.79968"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="908.11218"
       x="120.84376"
       height="0.375"
       width="1.0625"
       id="rect4464-3"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4466-5"
       width="1.0625"
       height="0.375"
       x="120.90627"
       y="906.51843"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="904.89343"
       x="121.06252"
       height="0.375"
       width="1.0625"
       id="rect4468-1"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4470-7"
       width="1.0625"
       height="0.375"
       x="121.37502"
       y="903.42468"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="902.17468"
       x="121.78127"
       height="0.375"
       width="1.0625"
       id="rect4472-4"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4474-3"
       width="1.0625"
       height="0.375"
       x="124.06252"
       y="900.17468"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="898.70593"
       x="124.25002"
       height="0.375"
       width="1.0625"
       id="rect4476-1"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="rect4478-4"
       width="1.0625"
       height="0.375"
       x="124.31252"
       y="897.20593"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="895.79968"
       x="124.31252"
       height="0.375"
       width="1.0625"
       id="rect4480-6"
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       style="display:inline"
       id="g4507-4"
       transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         sodipodi:nodetypes="csc"
         inkscape:connector-curvature="0"
         id="path4491-2"
         d="m 310.75659,223.79453 c 0.76095,-0.8373 1.2453,-2.02269 1.2453,-3.35786 0,-1.33796 -0.48156,-2.54257 -1.2453,-3.38009"
         style="fill:none;stroke:#555753;stroke-width:0.35579938;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         style="fill:none;stroke:#555753;stroke-width:0.47089946;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 311.49266,224.75938 c 1.00712,-1.10816 1.64816,-2.67702 1.64816,-4.44411 0,-1.77079 -0.63735,-3.36509 -1.64816,-4.47354"
         id="path4496-2"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="csc" />
      <path
         sodipodi:nodetypes="csc"
         inkscape:connector-curvature="0"
         id="path4498-6"
         d="m 312.78041,226.18348 c 1.3429,-1.47763 2.19766,-3.56956 2.19766,-5.9258 0,-2.36118 -0.84984,-4.48703 -2.19766,-5.96505"
         style="fill:none;stroke:#555753;stroke-width:0.62789989;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         sodipodi:nodetypes="ccccccc"
         inkscape:connector-curvature="0"
         id="path4500-4"
         d="m 309.34375,224.125 0,-7.375 -3.78125,2.07812 -3.4375,-0.10937 0,3.46875 3.4375,-0.125 z"
         style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
    </g>
    <path
       sodipodi:type="arc"
       style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="path4515-2"
       sodipodi:cx="284.78726"
       sodipodi:cy="220.62782"
       sodipodi:rx="7.4246211"
       sodipodi:ry="7.4246211"
       d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
       transform="translate(-224.73743,661.76263)"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
       d="m 53.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563"
       id="path4517-8"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="csc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       sodipodi:nodetypes="csc"
       inkscape:connector-curvature="0"
       id="path4528-8"
       d="m 60.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063"
       style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <text
       xml:space="preserve"
       style="font-size:3.72799897px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#555753;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"
       x="51.803352"
       y="859.21899"
       id="text4532-2"
       sodipodi:linespacing="100%"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90"><tspan
         sodipodi:role="line"
         id="tspan4534-8"
         x="51.803352"
         y="859.21899"
         style="font-weight:bold;fill:#555753;-inkscape-font-specification:Liberation Sans Bold">Lorem Ip</tspan></text>
    <path
       style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
       d="m 52.25001,862.61227 15.25,0"
       id="path4536-8"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:connector-curvature="0"
       id="path4538-8"
       d="m 52.25001,864.86227 15.25,0"
       style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
       d="m 52.25001,867.11227 15.25,0"
       id="path4540-6"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       d="m 242.49116,907.21887 5.125,-5.125 -5.125,-5.0937"
       id="rect4544-3"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       sodipodi:nodetypes="ccc"
       inkscape:connector-curvature="0"
       id="path4549-8"
       d="m 237.98183,907.21887 -5.125,-5.125 5.125,-5.0937"
       style="fill:none;stroke:#555753;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       style="display:inline"
       id="g4213"
       transform="translate(49.48448,-140.79121)"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         sodipodi:type="star"
         style="fill:#555753;fill-opacity:1;stroke:none"
         id="path4802"
         sodipodi:sides="8"
         sodipodi:cx="98.48214"
         sodipodi:cy="-10.267858"
         sodipodi:r1="9.1071424"
         sodipodi:r2="8.4139032"
         sodipodi:arg1="-1.5707963"
         sodipodi:arg2="-1.1780972"
         inkscape:flatsided="true"
         inkscape:rounded="0"
         inkscape:randomized="0"
         d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z"
         transform="matrix(0.92307692,0.3846154,-0.3846154,0.92307692,-44.340246,974.7537)" />
      <path
         transform="matrix(0.74691191,0.31121331,-0.31121331,0.74691191,-26.237457,980.1736)"
         d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z"
         inkscape:randomized="0"
         inkscape:rounded="0"
         inkscape:flatsided="true"
         sodipodi:arg2="-1.1780972"
         sodipodi:arg1="-1.5707963"
         sodipodi:r2="8.4139032"
         sodipodi:r1="9.1071424"
         sodipodi:cy="-10.267858"
         sodipodi:cx="98.48214"
         sodipodi:sides="8"
         id="path4804"
         style="fill:none;stroke:#d3d7cf;stroke-width:2.47171569;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         sodipodi:type="star" />
      <path
         style="fill:none;stroke:#555753;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m 53.26552,1056.9525 -5.5,6.2008 5.5,6.2009"
         id="rect4806"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccc" />
      <path
         id="path4812"
         d="m 67.781143,1069.3407 5.46875,-6.2009 -5.46875,-6.1736"
         style="fill:none;stroke:#555753;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccc" />
    </g>
    <path
       style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
       id="path4257"
       d="m 115.39024,855.00555 c 0.0904,0.0266 0.18708,0.0371 0.27111,0.0797 0.24682,0.12501 0.80382,0.53514 1.00046,0.67918 0.72548,0.53142 1.43751,1.08068 2.14837,1.63134 1.22364,0.99003 2.36274,2.09287 3.41202,3.2665 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01074 -1.92636,-2.0326 -2.54392,-3.28422 -0.14292,-0.18424 2.46273,-2.20539 2.60565,-2.02115 z"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
       id="path4259"
       d="m 112.109,867.43007 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40989 3.17698,-2.9167 4.78859,-4.3486 0.46305,-0.4369 0.97793,-0.80137 1.52221,-1.12653 0.15824,-0.21119 3.14491,2.0267 2.98666,2.23789 l 0,0 c -0.2952,0.52243 -0.62275,1.02042 -1.01852,1.47475 -0.88192,1.11919 -1.78212,2.22369 -2.79371,3.23049 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:connector-curvature="0"
       d="m 135.39024,855.00555 c 0.0904,0.027 0.18708,0.037 0.27111,0.08 0.24682,0.125 0.80382,0.5352 1.00046,0.6792 0.72548,0.5314 1.43751,1.0807 2.14837,1.6314 1.22364,0.99 2.36274,2.0928 3.41202,3.26652 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01082 -1.92636,-2.03262 -2.54392,-3.28432 -0.14292,-0.1842 2.46273,-2.2054 2.60565,-2.0211 z"
       id="path4263"
       style="fill:#d3d7cf;fill-opacity:1;stroke:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:connector-curvature="0"
       d="m 132.109,867.43017 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40992 3.17698,-2.91672 4.78859,-4.34862 0.46305,-0.4369 0.97793,-0.8014 1.52221,-1.1266 0.15824,-0.2112 3.14491,2.0267 2.98666,2.2379 l 0,0 c -0.2952,0.5224 -0.62275,1.0204 -1.01852,1.4748 -0.88192,1.11922 -1.78212,2.22372 -2.79371,3.23052 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z"
       id="path4265"
       style="fill:#d3d7cf;fill-opacity:1;stroke:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       style="display:inline"
       id="g4283"
       transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         sodipodi:nodetypes="ccccccc"
         inkscape:connector-curvature="0"
         id="path4269"
         d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         inkscape:connector-curvature="0"
         id="path4271"
         d="m -44.467884,1124.9404 4.644661,0"
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m -42.239747,1107.2336 0,17.6813"
         id="path4275"
         inkscape:connector-curvature="0" />
      <path
         sodipodi:nodetypes="cccc"
         inkscape:connector-curvature="0"
         id="path4279"
         d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
         style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
      <rect
         ry="0.42804927"
         rx="0.37616169"
         y="1105.3309"
         x="-44.73621"
         height="1.8614606"
         width="5.1800866"
         id="rect4281"
         style="fill:#555753;fill-opacity:1;stroke:none" />
    </g>
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       id="rect4290"
       width="3.5355339"
       height="1.8561553"
       x="174.89275"
       y="859.06403"
       rx="1"
       ry="1"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
       d="m 214.75589,862.65317 c 3.31942,-0.632 4.06019,-2.1721 5.3033,-4.08897 0.42304,-0.6524 -0.64726,-2.63586 0,-3.13491 0.10703,-0.0825 0.93192,0 1.06066,0 2.52315,0 1.41421,3.50161 1.41421,4.77048 0,0.2317 -0.47723,0.6815 -0.17677,0.6815 2.44972,0 2.94209,0.3603 4.41942,1.4993 0.0697,0.054 0.31741,3.8443 0.17677,3.9527 -0.26074,0.201 -0.49042,0.5145 -0.7071,0.6815 -0.13627,0.105 0.38563,0.7684 0.17677,1.0904 -0.17664,0.2724 -0.85358,0.8061 -1.23743,0.9541 -0.36233,0.1398 -0.89015,0 -1.23744,0.1363 -1.96875,0.759 -2.1166,-0.9523 -3.18198,-1.363 -0.34866,-0.1344 -0.63592,-0.1088 -1.06066,-0.2726 -0.99671,-0.3842 -3.88909,0.6704 -3.88909,-0.2726 0,-1.2852 -0.2556,-3.5996 -1.06066,-4.6342 z"
       id="path4292"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:connector-curvature="0"
       id="path4294"
       d="m 205.42921,862.12677 c -3.31942,0.632 -4.06019,2.1721 -5.3033,4.089 -0.42304,0.6524 0.64726,2.6358 0,3.1349 -0.10703,0.082 -0.93192,0 -1.06066,0 -2.52315,0 -1.41421,-3.5016 -1.41421,-4.7705 0,-0.2317 0.47723,-0.6815 0.17677,-0.6815 -2.44972,0 -2.94209,-0.3603 -4.41942,-1.4993 -0.0697,-0.054 -0.31741,-3.84428 -0.17677,-3.95268 0.26074,-0.201 0.49042,-0.5145 0.7071,-0.6815 0.13627,-0.105 -0.38563,-0.7684 -0.17677,-1.0904 0.17664,-0.2724 0.85358,-0.8061 1.23743,-0.9541 0.36233,-0.1398 0.89015,0 1.23744,-0.1363 1.96875,-0.759 2.1166,0.9523 3.18198,1.363 0.34866,0.1344 0.63592,0.1088 1.06066,0.2726 0.99671,0.3842 3.88909,-0.6704 3.88909,0.2726 0,1.2852 0.2556,3.59958 1.06066,4.63418 z"
       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       transform="translate(-204.73743,661.76269)"
       d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
       sodipodi:ry="7.4246211"
       sodipodi:rx="7.4246211"
       sodipodi:cy="220.62782"
       sodipodi:cx="284.78726"
       id="path4298"
       style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       sodipodi:type="arc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       sodipodi:nodetypes="csc"
       inkscape:connector-curvature="0"
       id="path4300"
       d="m 73.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563"
       style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
       d="m 80.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063"
       id="path4302"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="csc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       transform="translate(-184.73743,661.76263)"
       d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
       sodipodi:ry="7.4246211"
       sodipodi:rx="7.4246211"
       sodipodi:cy="220.62782"
       sodipodi:cx="284.78726"
       id="path4306"
       style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       sodipodi:type="arc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       d="m 94.285536,887.89997 11.048544,-11.0485"
       id="path4308"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:#555753;stroke:none;display:inline"
       id="rect4310"
       width="3.3587573"
       height="12.020815"
       x="115.93771"
       y="876.12292"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       y="876.12292"
       x="120.53392"
       height="12.020815"
       width="3.3587573"
       id="rect4312"
       style="fill:#555753;stroke:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:#555753;stroke:none;display:inline"
       d="m 134.32248,876.12297 11.31371,6.0104 -11.31371,6.0104 z"
       id="rect4314"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cccc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       style="display:inline"
       transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)"
       id="g4317"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none"
         d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
         id="path4319"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccccc" />
      <path
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m -44.467884,1124.9404 4.644661,0"
         id="path4321"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path4323"
         d="m -42.239747,1107.2336 0,17.6813"
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
         d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
         id="path4325"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccc" />
      <rect
         style="fill:#555753;fill-opacity:1;stroke:none"
         id="rect4327"
         width="5.1800866"
         height="1.8614606"
         x="-44.73621"
         y="1105.3309"
         rx="0.37616169"
         ry="0.42804927" />
    </g>
    <g
       style="display:inline"
       id="g4329"
       transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,458.00011,612.37085)"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         sodipodi:nodetypes="ccccccc"
         inkscape:connector-curvature="0"
         id="path4331"
         d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         inkscape:connector-curvature="0"
         id="path4333"
         d="m -44.467884,1124.9404 4.644661,0"
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
      <path
         style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
         d="m -42.239747,1107.2336 0,17.6813"
         id="path4335"
         inkscape:connector-curvature="0" />
      <path
         sodipodi:nodetypes="cccc"
         inkscape:connector-curvature="0"
         id="path4337"
         d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
         style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
      <rect
         ry="0.42804927"
         rx="0.37616169"
         y="1105.3309"
         x="-44.73621"
         height="1.8614606"
         width="5.1800866"
         id="rect4339"
         style="fill:#555753;fill-opacity:1;stroke:none" />
    </g>
    <g
       id="layer1-2"
       transform="matrix(0.03334717,0,0,0.03334717,191.57984,885.59897)"
       style="fill:#555753;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         id="path11522"
         style="fill:#555753;fill-opacity:1"
         d="m 264.62704,45.67985 56.31152,-101.021534 0.2677,36.946034 118.51291,-0.267671 c 21.1765,-2.244605 39.74272,-10.852596 53.18801,-27.040291 C 449.99593,42.074998 437.6363,104.18491 348.60347,104.22236 l -27.39721,0 -0.2677,41.05114 -56.31152,-99.59365 z M 128.9798,105.11479 C 65.618201,85.84639 36.055796,7.7860213 7.07577,-47.220709 c 13.282679,12.076484 38.139773,29.363022 52.577167,29.364467 27.689982,0.06456 55.380063,0.116317 83.070083,0.174562 l 83.88712,0 -0.26776,122.43949 -0.26771,0.35698 -97.09487,0 z M 2.5,-79.206629 42.995596,-161.8012 3.5060915,-183.49253 l 118.3343785,0 57.2039,103.877161 -38.79429,-23.228801 c -12.44295,26.27544 -24.88589,52.550878 -37.32884,78.826316 C 88.601045,-24.268303 74.280847,-24.518751 59.960649,-24.769199 32.037317,-31.279427 12.61125,-53.254123 2.5,-79.206629 z m 395.45406,53.939396 -52.29561,-96.380927 105.66215,-63.98618 51.13531,102.449252 c 1.54832,24.517706 -38.03694,58.635841 -62.6066,58.370427 l -41.89525,-0.452572 z M 88.64259,-250.78088 l 53.98405,-80.90589 c 52.35957,-19.50079 82.68955,22.59846 101.8318,49.13587 l -50.86768,97.63029 -104.94817,-65.86027 z m 204.54178,43.54987 c -10.85783,-25.59753 -25.36515,-54.87764 -43.50654,-80.336 -16.24176,-22.7925 -35.86597,-42.67852 -50.7326,-51.5631 l 136.53974,-0.26767 c 24.52088,2.20137 36.43539,16.49668 49.43976,36.05358 l 19.63307,34.53651 30.34224,-19.3654 -57.11457,101.73554 -123.15347,0.26768 38.55237,-21.06114 z"
         inkscape:connector-curvature="0" />
    </g>
    <path
       style="fill:none;stroke:#555753;display:inline"
       d="m 219.92452,876.86347 1.33532,1.5307 -5.05101,4.4063 4.00584,4.592 5.05101,-4.4063 1.29423,1.4837 1.19091,-7.757 z"
       id="rect4425"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cccccccc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
       id="rect4564-9"
       width="10.935946"
       height="7.925663"
       x="71.833412"
       y="900.66992"
       rx="1.9019035"
       ry="2.3056474"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#555753;stroke-width:0.69802254;display:inline"
       id="rect4566-9"
       width="7.7661061"
       height="7.5413885"
       x="73.447395"
       y="896.3468"
       rx="1.9019035"
       ry="2.3056474"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       ry="2.3056474"
       rx="1.9019035"
       y="900.66992"
       x="92.208412"
       height="7.925663"
       width="10.935946"
       id="rect4506"
       style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:0.69802254;display:inline"
       d="m 108.78126,899.75007 0,-1.0938 c 0,-1.2773 -0.8526,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05366,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376"
       id="rect4508"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cssssc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:#555753;stroke:none;display:inline"
       id="rect4514"
       width="19.512196"
       height="19.512196"
       x="150.24391"
       y="892.60608"
       rx="2.9268293"
       ry="2.9268293"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       ry="2.9268293"
       rx="2.9268293"
       y="892.60608"
       x="170.24391"
       height="19.512196"
       width="19.512196"
       id="rect4516"
       style="fill:#555753;stroke:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       ry="2.3056474"
       rx="1.9019035"
       y="900.66992"
       x="151.83342"
       height="7.925663"
       width="10.935946"
       id="rect4518"
       style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       ry="2.3056474"
       rx="1.9019035"
       y="896.3468"
       x="153.4474"
       height="7.5413885"
       width="7.7661061"
       id="rect4520"
       style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline"
       id="rect4522"
       width="10.935946"
       height="7.925663"
       x="172.20842"
       y="900.66992"
       rx="1.9019035"
       ry="2.3056474"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       sodipodi:nodetypes="cssssc"
       inkscape:connector-curvature="0"
       id="path4524"
       d="m 188.78127,899.75007 0,-1.0938 c 0,-1.2773 -0.85259,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05365,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376"
       style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       d="m 61.2575,895.73577 c -0.85405,0.9453 -1.14575,2.2161 -0.88721,3.3884 l -8.17918,8.1791 c -0.14244,0.1425 -0.12201,0.3935 0.0507,0.5661 l 2.21807,2.2181 c 0.17268,0.1727 0.42791,0.1974 0.57035,0.055 l 8.13693,-8.1369 c 1.26093,0.3161 2.65155,-0.016 3.63762,-1.0013 0.66189,-0.6619 1.02334,-1.5095 1.09849,-2.3744 l -2.11666,2.1167 -3.2405,-0.8746 -0.87454,-3.2405 2.14201,-2.1419 c -0.88104,0.066 -1.74292,0.4331 -2.41663,1.1068 -0.0467,0.047 -0.0968,0.09 -0.13942,0.1395 z"
       id="path4529"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccsssscscccccsc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
       d="m 201.14016,895.80807 -8.25003,8.25 -0.94202,3.5156 2.58822,2.5882 3.10935,-0.8332 10.50754,-10.5075 -2e-5,-2.3881 -1.69404,-1.694 -1.94401,0 -9.97205,9.972 3e-5,1.972 0.61101,0.611 1.73597,0 9.36804,-9.368"
       id="path3395"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cccccccccccccc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:#555753;stroke:none;display:inline"
       id="rect3397"
       width="19.512196"
       height="19.512196"
       x="210.24391"
       y="892.60608"
       rx="2.9268293"
       ry="2.9268293"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       d="m 214.67284,895.14537 c 7.11789,-1.5098 3.04383,2.9586 9.72807,1.6024 0.48786,-0.099 0.94287,0.3982 0.94287,0.8928 0,0 0,6.7482 0,6.9956 0,0.2473 -0.31338,0.7228 -0.94287,0.8928 -6.70194,1.3208 -2.58353,-3.1887 -9.72807,-1.6024 -0.39933,0.17 -0.94286,-0.3982 -0.94286,-0.8928 l 0,-6.9955 c 0,-0.4947 0.45501,-0.776 0.94286,-0.8929 z"
       id="rect3409"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccscccssc"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
       id="rect4190"
       width="1.125"
       height="16.3125"
       x="212.62502"
       y="894.73718"
       ry="0.40000001"
       rx="0.40000001"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:export-ydpi="90"
       inkscape:export-xdpi="90"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       transform="translate(-224.73743,701.76263)"
       d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
       sodipodi:ry="7.4246211"
       sodipodi:rx="7.4246211"
       sodipodi:cy="220.62782"
       sodipodi:cx="284.78726"
       id="path4020"
       style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       sodipodi:type="arc" />
    <path
       sodipodi:type="arc"
       style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1.62554049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="path4022"
       sodipodi:cx="284.78726"
       sodipodi:cy="220.62782"
       sodipodi:rx="7.4246211"
       sodipodi:ry="7.4246211"
       d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
       transform="matrix(0.61517998,0,0,0.61517998,-115.14559,786.66463)"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:export-ydpi="90"
       inkscape:export-xdpi="90"
       inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
       sodipodi:type="arc"
       style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       id="path4024"
       sodipodi:cx="284.78726"
       sodipodi:cy="220.62782"
       sodipodi:rx="7.4246211"
       sodipodi:ry="7.4246211"
       d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
       transform="translate(-204.73743,701.76269)" />
    <g
       inkscape:label="#g3852"
       style="stroke:#888a85;display:inline;filter:url(#filter4064)"
       transform="matrix(0.43114968,0,0,0.43114968,-201.41936,955.6356)"
       id="g3139">
      <rect
         ry="6"
         rx="6"
         y="18.790752"
         x="470.35715"
         height="44.285713"
         width="44.285713"
         id="rect3141"
         style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
    </g>
    <g
       id="g3145"
       transform="matrix(0.43114968,0,0,0.43114968,-179.41936,955.6356)"
       style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
       inkscape:label="#g3852">
      <rect
         style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="rect3147"
         width="44.285713"
         height="44.285713"
         x="470.35715"
         y="18.790752"
         rx="6"
         ry="6" />
    </g>
    <text
       xml:space="preserve"
       style="font-size:17.09149551px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#888a85;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold"
       x="5.6234956"
       y="979.64215"
       id="text3151"
       sodipodi:linespacing="100%"><tspan
         sodipodi:role="line"
         id="tspan3153"
         x="5.6234956"
         y="979.64215">?</tspan></text>
    <text
       sodipodi:linespacing="100%"
       id="text3155"
       y="979.64215"
       x="27.623495"
       style="font-size:17.09149551000000145px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d3d7cf;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold"
       xml:space="preserve"><tspan
         y="979.64215"
         x="27.623495"
         id="tspan3157"
         sodipodi:role="line">?</tspan></text>
  </g>
</svg>