File: pixmaps.svg

package info (click to toggle)
fai 6.5.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,076 kB
  • sloc: sh: 6,720; perl: 5,622; makefile: 138
file content (1137 lines) | stat: -rw-r--r-- 53,424 bytes parent folder | download | duplicates (12)
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
<?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://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="200.09448"
   height="200.36221"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.45"
   sodipodi:docbase="/home/jerkeby/devel/faimond"
   sodipodi:docname="pixmaps.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0"
   sodipodi:modified="TRUE">
  <defs
     id="defs4">
    <linearGradient
       id="linearGradient3523">
      <stop
         style="stop-color:#76716f;stop-opacity:1;"
         offset="0"
         id="stop3525" />
      <stop
         style="stop-color:#000000;stop-opacity:0"
         offset="1"
         id="stop3527" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3262">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3264" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3266" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5173">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop5175" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop5177" />
    </linearGradient>
    <linearGradient
       id="linearGradient5155">
      <stop
         style="stop-color:#003f15;stop-opacity:1;"
         offset="0"
         id="stop5157" />
      <stop
         id="stop5161"
         offset="0.5"
         style="stop-color:#37c500;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop5159" />
    </linearGradient>
    <linearGradient
       id="linearGradient3545">
      <stop
         id="stop3547"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop3549"
         offset="1"
         style="stop-color:#000000;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       id="linearGradient3515">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3517" />
      <stop
         style="stop-color:#000000;stop-opacity:0"
         offset="1"
         id="stop3519" />
    </linearGradient>
    <linearGradient
       id="linearGradient3496">
      <stop
         id="stop3498"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop3500"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3477">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3479" />
      <stop
         id="stop3543"
         offset="0.5"
         style="stop-color:#000000;stop-opacity:0.49803922;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3481" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3483"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,1,60.601894,0.2142854)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3529"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,-0.4900172,0)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3533"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,34.108139,5.0512132e-2)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3537"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,68.958399,7.0815732e-2)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3553"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,1,95.226386,0.4562389)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3557"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,1,130.07664,0.2037029)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3630"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,1,60.244757,32.500007)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3634"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0085104,0,0,1.1048092,-1.263694,27.41782)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3654"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,34.152955,31.805462)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3658"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,95.244755,33.380746)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3668"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,69.100054,30.263754)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3672"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,130.24476,31.759585)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5155"
       id="linearGradient5145"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-4.3120993e-2,0.1445367,-0.1467237,-4.3773449e-2,113.79297,16.991553)"
       x1="663.31812"
       y1="107.56815"
       x2="503.37726"
       y2="158.34564" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5155"
       id="linearGradient5153"
       x1="76.854782"
       y1="99.407867"
       x2="75.099998"
       y2="83.687363"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="radialGradient5169"
       cx="56.114594"
       cy="84.46965"
       fx="56.114594"
       fy="84.46965"
       r="11.954593"
       gradientTransform="matrix(-1.5487036,-0.8473626,0.3334696,-0.6094742,128.91193,195.95811)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5173"
       id="linearGradient5179"
       x1="74.392166"
       y1="86.946312"
       x2="69.907143"
       y2="90.018211"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9347472,0.3553139,-0.3553139,0.9347472,37.169508,-15.150332)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient5183"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,-35.647403,32.244595)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient5187"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,1,25.244761,32.500011)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient2239"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,1,25.244762,67.500015)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient2243"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,-35.647403,67.137455)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5155"
       id="linearGradient2249"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-4.3120993e-2,0.1445367,-0.1467237,-4.3773449e-2,114.19805,52.268582)"
       x1="663.31812"
       y1="107.56815"
       x2="503.37726"
       y2="158.34564" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5173"
       id="linearGradient2253"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9347472,0.3553139,-0.3553139,0.9347472,37.574584,20.126697)"
       x1="74.392166"
       y1="86.946312"
       x2="69.907143"
       y2="90.018211" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="radialGradient2257"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.5120501,-0.9111589,0.3585758,-0.5950497,124.55347,234.14819)"
       cx="56.114594"
       cy="84.46965"
       fx="56.114594"
       fy="84.46965"
       r="11.954593" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="radialGradient3238"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.5120501,-0.9111589,0.3585758,-0.5950497,159.55347,234.14819)"
       cx="56.114594"
       cy="84.46965"
       fx="56.114594"
       fy="84.46965"
       r="11.954593" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5155"
       id="linearGradient3240"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-4.3120993e-2,0.1445367,-0.1467237,-4.3773449e-2,149.19805,52.268581)"
       x1="663.31812"
       y1="107.56815"
       x2="503.37726"
       y2="158.34564" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5155"
       id="linearGradient3242"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(35.405076,35.277027)"
       x1="76.854782"
       y1="99.407867"
       x2="75.099998"
       y2="83.687363" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5173"
       id="linearGradient3244"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9347472,0.3553139,-0.3553139,0.9347472,72.574585,20.126696)"
       x1="74.392166"
       y1="86.946312"
       x2="69.907143"
       y2="90.018211" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3248"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,1,60.244766,67.500011)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3260"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,-0.8470458,67.055463)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3262"
       id="linearGradient3268"
       x1="71.725212"
       y1="137.18341"
       x2="61.615475"
       y2="126.47744"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3523"
       id="linearGradient2550"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2966433,0,0,0.5270588,94.729355,90.905438)"
       x1="131.65155"
       y1="68.933052"
       x2="131.78522"
       y2="46.250366" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient2552"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,0.4141839,59.152961,113.72742)"
       x1="94.640762"
       y1="79.032967"
       x2="94.818581"
       y2="54.765705" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3523"
       id="linearGradient3535"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9763969,0,0,0.5252322,-32.128012,126.04218)"
       x1="131.65155"
       y1="68.933052"
       x2="131.78522"
       y2="46.250366" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3538"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(3.336928,0,0,0.5148583,-235.25155,124.24507)"
       x1="95.543297"
       y1="79.371407"
       x2="95.504555"
       y2="54.765682" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient2259"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,69.289455,67.074323)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient2267"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,130.24475,68.443924)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3249"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,130.24475,103.64867)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3253"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,69.08473,102.22675)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3523"
       id="linearGradient3287"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2966433,0,0,0.5270588,94.729355,90.905438)"
       x1="131.65155"
       y1="68.933052"
       x2="131.78522"
       y2="46.250366" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3289"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,130.24475,103.64867)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3291"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,69.08473,102.22675)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3294"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,34.084726,67.226747)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3297"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,95.244746,68.648667)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3308"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,95.24475,68.633367)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3324"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,130.24475,68.443924)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3326"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,69.289455,67.074323)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3329"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,69.289455,67.074323)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3332"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,130.24475,68.443924)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3496"
       id="linearGradient3343"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0042552,0,0,1,69.060447,102.29342)"
       x1="95.543297"
       y1="72.434685"
       x2="95.469437"
       y2="30.044283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3349"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,119.70903,81.112933)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3545"
       id="linearGradient3352"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.2937063,0,0,0.9882353,130.24475,103.64866)"
       x1="131.65155"
       y1="79.802452"
       x2="131.48323"
       y2="59.683605" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     gridtolerance="10000"
     guidetolerance="10"
     objecttolerance="10"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="11.2"
     inkscape:cx="154.57266"
     inkscape:cy="71.357553"
     inkscape:document-units="px"
     inkscape:current-layer="layer5"
     inkscape:window-width="1014"
     inkscape:window-height="718"
     inkscape:window-x="10"
     inkscape:window-y="50"
     showgrid="true"
     showguides="true"
     inkscape:guide-bbox="true" />
  <metadata
     id="metadata7">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:groupmode="layer"
     id="layer5"
     inkscape:label="pixmaps"
     style="display:inline">
    <rect
       style="opacity:1;fill:#6cb85a;fill-opacity:1;stroke:#000000;stroke-width:0.228571;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
       id="rect3586"
       width="30.000433"
       height="30.243076"
       x="154.88528"
       y="75.476501"
       ry="3.7359097"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="fill:#3c8baa;fill-opacity:1;stroke:#000000;stroke-width:0.22722755;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
       id="rect3580"
       width="30.001776"
       height="29.887272"
       x="84.999107"
       y="77.361298"
       ry="3.6919572"
       inkscape:export-filename="/home/jerkeby/devel/faimond/beg3d.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       id="g3618"
       transform="translate(-10.763703,-0.8065722)"
       inkscape:export-filename="/home/jerkeby/devel/faimond/beg3d.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         sodipodi:nodetypes="ccc"
         id="path3608"
         d="M 111.85,85.083644 L 119.58417,93.125478 L 111.86819,100.51218"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.19999981;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="ccc"
         id="path3610"
         d="M 100.50433,92.888217 L 116.4,92.962183 L 116.4,92.962183"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.19999981;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <rect
       style="fill:#942a2a;fill-opacity:0.99215686;stroke:#000000;stroke-width:0.228571;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
       id="rect3584"
       width="30.000433"
       height="30.243076"
       x="119.99979"
       y="77.004822"
       ry="3.7359097"
       inkscape:export-filename="/home/jerkeby/devel/faimond/fail3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.19999981;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 127.58929,99.86218 L 142.5,85.040754"
       id="path3638"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/fail3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.19999981;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 127.67857,84.951469 L 142.41071,99.951466"
       id="path3640"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/fail3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.19999981;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 177.11202,85.189462 L 168.66092,99.762183 L 163.61016,94.711421"
       id="path3664"
       sodipodi:nodetypes="ccc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="fill:#c6c5aa;fill-opacity:1;stroke:#000000;stroke-width:0.22722755;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect3694"
       width="30.001776"
       height="29.887272"
       x="50.113613"
       y="77.361298"
       ry="3.6919572"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#radialGradient5169);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
       d="M 50.541945,83.070919 L 52.206566,83.44608 L 54.123987,84.121524 L 56.803249,85.275263 L 59.032948,86.523129 L 60.304018,87.541216 L 62.262229,89.414082 L 63.606323,91.421738 L 64.44078,93.328285 L 64.822368,95.466503 L 61.924143,96.024341 L 70.043559,103.00966 L 74.45113,93.15704 L 71.895677,93.414705 L 71.760553,91.680524 L 71.321241,89.899551 L 70.597962,88.305292 L 69.47776,86.560168 L 68.060717,84.911786 L 66.939687,83.801436 L 65.638206,82.807877"
       id="path5163"
       sodipodi:nodetypes="ccccccccccccccccccccc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#linearGradient5145);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5153);stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
       d="M 51.090815,82.625225 L 52.755436,83.000386 L 54.672857,83.67583 L 57.352119,84.829569 L 59.581818,86.077435 L 60.852888,87.095522 L 62.811099,88.968388 L 64.155193,90.976044 L 64.98965,92.882591 L 65.371238,95.020809 L 62.473013,95.578647 L 70.592429,102.56395 L 75,92.711346 L 72.444547,92.969011 L 72.309423,91.23483 L 71.870111,89.453857 L 71.146832,87.859598 L 70.02663,86.114474 L 68.609587,84.466092 L 67.488557,83.355742 L 66.187076,82.362183"
       id="path5143"
       sodipodi:nodetypes="ccccccccccccccccccccc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5179);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:2.10000014;stroke-dasharray:none;stroke-opacity:1"
       d="M 69.243069,86.222942 L 69.243069,86.222942 C 69.243069,86.222942 70.105448,87.045057 70.649533,88.352725 C 71.181979,89.632422 71.286438,89.99417 71.598043,91.23496 C 71.909649,92.47575 71.904096,93.752089 71.904096,93.752089 L 74.090363,93.455715 L 70.914765,100.19038"
       id="path5171"
       sodipodi:nodetypes="czzcccc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="fill:#bfcbe6;fill-opacity:1;stroke:#000000;stroke-width:0.22722755;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect2228"
       width="30.001776"
       height="29.887272"
       x="49.884609"
       y="112.4758"
       ry="3.6919572"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="opacity:0.4623656;fill:url(#radialGradient2257);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
       d="M 50.955625,118.09346 L 52.603167,118.53765 L 54.490778,119.29241 L 57.119639,120.55678 L 59.295404,121.89648 L 60.522949,122.96665 L 62.40142,124.91948 L 63.66069,126.9814 L 64.414979,128.92106 L 64.707139,131.07331 L 61.788187,131.50991 L 69.609483,138.82748 L 74.42377,129.16708 L 71.859801,129.31804 L 71.797054,127.57974 L 71.432335,125.782 L 70.776114,124.15898 L 69.729602,122.3687 L 68.382475,120.66271 L 67.308686,119.50662 L 66.049735,118.45969"
       id="path2255"
       sodipodi:nodetypes="ccccccccccccccccccccc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       id="Swirl"
       style="fill:#a7053f"
       d="M 70.626349,122.02284 C 70.337809,119.81109 65.252631,120.29496 65.252631,120.29496 C 65.252631,120.29496 66.738561,120.46528 67.52459,120.67503 C 61.501572,123.0248 62.619641,126.48057 62.619641,126.48057 C 62.619641,126.48057 62.150871,126.44607 61.537678,125.99671 C 67.560689,135.6036 73.583707,129.90157 73.944451,129.59077 C 80.869195,119.74209 73.114922,114.45492 72.718072,114.24763 C 63.557473,110.58456 57.498364,115.73344 57.498364,115.73344 C 57.498364,115.73344 57.462258,115.18058 57.7147,114.38564 C 50.032639,123.99252 54.577113,134.18678 54.577113,134.18678 C 54.577113,134.18678 54.93758,133.49563 55.190021,133.18455 C 62.331101,143.06774 69.688802,141.06328 69.688802,141.06328 C 69.733999,141.12353 67.416565,141.13256 66.767273,140.51041 C 66.767273,140.51041 69.544386,139.78476 71.059021,138.50623 C 57.137612,144.31177 54.577113,126.27328 54.577113,125.8932 C 54.973686,126.1695 55.514667,126.61886 55.514667,126.61886 C 55.514667,126.61886 53.639281,117.87591 66.3707,114.8005 C 66.3707,114.8005 65.324558,115.90623 65.288737,116.4246 C 65.288737,116.4246 75.783732,113.34918 75.314962,123.16309 C 75.314962,123.16309 75.515377,131.6897 68.291569,130.25618 C 60.170012,128.45409 63.088704,120.08766 70.626349,122.02284 z "
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#linearGradient2249);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3268);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
       d="M 51.495891,117.90229 L 53.160512,118.27746 L 55.077933,118.9529 L 57.757195,120.10664 L 59.986894,121.3545 L 61.257964,122.37259 L 63.216175,124.24546 L 64.560269,126.25311 L 65.394726,128.15966 L 65.776314,130.29788 L 62.878089,130.85572 L 70.997505,137.84102 L 75.405076,127.98842 L 72.849623,128.24608 L 72.714499,126.5119 L 72.275187,124.73093 L 71.551908,123.13667 L 70.431706,121.39154 L 69.014663,119.74316 L 67.893633,118.63281 L 66.592152,117.63925"
       id="path2245"
       sodipodi:nodetypes="ccccccccccccccccccccc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient2253);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:2.10000014;stroke-dasharray:none;stroke-opacity:1;display:inline"
       d="M 69.648145,121.50001 L 69.648145,121.50001 C 69.648145,121.50001 70.510524,122.32213 71.054609,123.62979 C 71.587055,124.90949 71.691514,125.27124 72.003119,126.51203 C 72.314725,127.75282 72.309172,129.02916 72.309172,129.02916 L 74.495439,128.73278 L 71.319841,135.46745"
       id="path2247"
       sodipodi:nodetypes="czzcccc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="fill:#bfcbe6;fill-opacity:1;stroke:#000000;stroke-width:0.22722755;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect3228"
       width="30.001776"
       height="29.887272"
       x="84.884613"
       y="112.4758"
       ry="3.6919572"
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       id="path3232"
       style="fill:#a7053f;display:inline"
       d="M 105.62635,122.02284 C 105.33781,119.81109 100.25263,120.29496 100.25263,120.29496 C 100.25263,120.29496 101.73856,120.46528 102.52459,120.67503 C 96.501573,123.0248 97.619642,126.48057 97.619642,126.48057 C 97.619642,126.48057 97.150872,126.44607 96.537679,125.99671 C 102.56069,135.6036 108.58371,129.90157 108.94445,129.59077 C 115.8692,119.74209 108.11492,114.45492 107.71807,114.24763 C 98.557474,110.58456 92.498365,115.73344 92.498365,115.73344 C 92.498365,115.73344 92.462259,115.18058 92.714701,114.38564 C 85.03264,123.99252 89.577114,134.18678 89.577114,134.18678 C 89.577114,134.18678 89.937581,133.49563 90.190022,133.18455 C 97.331102,143.06774 104.6888,141.06328 104.6888,141.06328 C 104.734,141.12353 102.41657,141.13256 101.76727,140.51041 C 101.76727,140.51041 104.54439,139.78476 106.05902,138.50623 C 92.137613,144.31177 89.577114,126.27328 89.577114,125.8932 C 89.973687,126.1695 90.514668,126.61886 90.514668,126.61886 C 90.514668,126.61886 88.639282,117.87591 101.3707,114.8005 C 101.3707,114.8005 100.32456,115.90623 100.28874,116.4246 C 100.28874,116.4246 110.78373,113.34918 110.31496,123.16309 C 110.31496,123.16309 110.51538,131.6897 103.29157,130.25618 C 95.170013,128.45409 98.088705,120.08766 105.62635,122.02284 z "
       inkscape:export-filename="/home/jerkeby/devel/faimond/host3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="58.822266"
       y="50.192291"
       id="text3306"><tspan
         sodipodi:role="line"
         id="tspan3308"
         x="58.822266"
         y="50.192291">Pixmaps for faimond</tspan></text>
    <rect
       style="opacity:1;fill:#d8802f;fill-opacity:1;stroke:#000000;stroke-width:0.228571;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect2261"
       width="30.000433"
       height="30.243076"
       x="155.11429"
       y="112.2574"
       ry="3.7359097"
       inkscape:export-filename="/home/jerkeby/devel/faimond/minor3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="fill:#f1da3b;fill-opacity:1;stroke:#000000;stroke-width:0.228571;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect3242"
       width="30.000433"
       height="30.243076"
       x="119.88528"
       y="112.4765"
       ry="3.7359097"
       inkscape:export-filename="/home/jerkeby/devel/faimond/warning3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <g
       style="display:inline"
       id="g3259"
       transform="translate(-35.000004,-37.946431)"
       inkscape:export-filename="/home/jerkeby/devel/faimond/warning3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365">
      <path
         id="path3255"
         d="M 170,155.36221 C 170,160.36221 170,165.36221 170,170.36221"
         style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.83300018;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cc"
         id="path3257"
         d="M 170,175.36221 C 170,173.69555 170,173.10031 170,171.43364"
         style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.83300018;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <path
       sodipodi:type="arc"
       style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4.83300018;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="path3238"
       sodipodi:cx="169.70563"
       sodipodi:cy="129.90407"
       sodipodi:rx="7.5761442"
       sodipodi:ry="8.7125654"
       d="M 177.28177 129.90407 A 7.5761442 8.7125654 0 1 1  162.12948,129.90407 A 7.5761442 8.7125654 0 1 1  177.28177 129.90407 z"
       transform="translate(0.2870522,-1.6709557)" />
    <rect
       style="opacity:1;fill:#8c9166;fill-opacity:1;stroke:#000000;stroke-width:0.228571;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect3337"
       width="30.000433"
       height="30.243076"
       x="154.88528"
       y="147.4765"
       ry="3.7359097"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       sodipodi:type="arc"
       style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4.83300018;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:4.833, 4.833;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="path3339"
       sodipodi:cx="169.70563"
       sodipodi:cy="129.90407"
       sodipodi:rx="7.5761442"
       sodipodi:ry="7.9089942"
       d="M 177.28177 129.90407 A 7.5761442 7.9089942 0 1 1  162.12948,129.90407 A 7.5761442 7.9089942 0 1 1  177.28177 129.90407 z"
       transform="matrix(0.7853925,0.6189981,-0.6189981,0.7853925,117.00387,-44.511944)" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer2"
     inkscape:label="shadow"
     style="display:inline"
     sodipodi:insensitive="true">
    <rect
       style="opacity:1;fill:url(#linearGradient3630);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656"
       id="rect3628"
       width="30.000004"
       height="30.357143"
       x="85"
       y="77.005035"
       ry="3.7500002"
       inkscape:export-filename="/home/jerkeby/devel/faimond/beg3d.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <rect
       style="opacity:1;fill:url(#linearGradient3658);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656"
       id="rect3656"
       width="30.000004"
       height="30"
       x="120"
       y="77.362183"
       ry="3.7058825"
       inkscape:export-filename="/home/jerkeby/devel/faimond/fail3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="opacity:1;fill:url(#linearGradient3672);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656"
       id="rect3670"
       width="30.000004"
       height="30"
       x="155"
       y="75.741013"
       ry="3.7058825"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="opacity:1;fill:url(#linearGradient5187);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656"
       id="rect5185"
       width="30.000004"
       height="30.357143"
       x="50"
       y="77.005035"
       ry="3.7500002" />
    <rect
       style="opacity:1;fill:url(#linearGradient2239);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656"
       id="rect2237"
       width="30.000004"
       height="30.357143"
       x="50"
       y="112.00504"
       ry="3.7500002" />
    <rect
       style="opacity:1;fill:url(#linearGradient3248);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656"
       id="rect3246"
       width="30.000004"
       height="30.357143"
       x="85"
       y="112.00504"
       ry="3.7500002" />
    <rect
       style="fill:url(#linearGradient3308);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656;display:inline"
       id="rect3247"
       width="30.000004"
       height="30"
       x="120"
       y="112.61475"
       ry="3.7058825"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="fill:url(#linearGradient3332);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656;display:inline"
       id="rect2265"
       width="30.000004"
       height="30"
       x="155"
       y="112.42535"
       ry="3.7058825"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="fill:url(#linearGradient3352);fill-opacity:1;stroke:none;stroke-width:1.829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.98360656;display:inline"
       id="rect3347"
       width="30.000004"
       height="30"
       x="155"
       y="147.63005"
       ry="3.7058825"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer3"
     inkscape:label="hilight1"
     style="display:inline"
     sodipodi:insensitive="true">
    <path
       style="fill:url(#linearGradient3634);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 85.075315,98.464483 C 85.075315,98.464483 87.463009,93.302863 92.843278,91.628824 C 98.223548,89.954785 102.34407,93.096688 107.85169,89.992741 C 113.3593,86.888793 114.87373,79.213036 114.87373,79.213036 C 114.87373,79.213036 114.49171,77.713376 113.09093,77.538997 C 111.56436,77.348959 89.914375,77.399494 89.914375,77.399494 C 89.972955,77.33532 87.054313,77.393831 85.966721,78.655023 C 84.879129,79.916216 84.947972,83.25863 84.947972,83.25863 L 85.075315,98.464483 z "
       id="path3632"
       sodipodi:nodetypes="czzczczcc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/beg3d.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       style="fill:url(#linearGradient3654);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 120.12767,96.112186 C 120.12767,96.112186 122.50529,91.44023 127.86286,89.925001 C 133.22043,88.409772 137.32357,91.253614 142.80795,88.444127 C 148.29232,85.63464 149.80036,78.687054 149.80036,78.687054 C 149.80036,78.687054 149.41995,77.329661 148.02508,77.171825 C 146.50495,76.999815 124.94631,77.045556 124.94631,77.045556 C 125.00465,76.98747 122.09832,77.04043 121.01532,78.181978 C 119.93231,79.323526 120.00087,82.348857 120.00087,82.348857 L 120.12767,96.112186 z "
       id="path3652"
       sodipodi:nodetypes="czzczczcc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/fail3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#linearGradient3668);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 155.07477,94.570478 C 155.07477,94.570478 157.45239,89.898522 162.80996,88.383293 C 168.16753,86.868064 172.27067,89.711906 177.75505,86.902419 C 183.23942,84.092932 184.74746,77.145346 184.74746,77.145346 C 184.74746,77.145346 184.36705,75.787953 182.97218,75.630117 C 181.45205,75.458107 159.89341,75.503848 159.89341,75.503848 C 159.95175,75.445762 157.04542,75.498722 155.96242,76.64027 C 154.87941,77.781818 154.94797,80.807149 154.94797,80.807149 L 155.07477,94.570478 z "
       id="path3666"
       sodipodi:nodetypes="czzczczcc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#linearGradient5183);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 50.327314,96.551319 C 50.327314,96.551319 52.704934,91.879363 58.062502,90.364134 C 63.42007,88.848905 67.52321,91.692747 73.00759,88.88326 C 78.49196,86.073773 80,79.126187 80,79.126187 C 80,79.126187 79.61959,77.768794 78.22472,77.610958 C 76.70459,77.438948 55.145956,77.484689 55.145956,77.484689 C 55.204289,77.426603 52.297962,77.479563 51.214959,78.621111 C 50.131956,79.762659 50.200508,82.78799 50.200508,82.78799 L 50.327314,96.551319 z "
       id="path5181"
       sodipodi:nodetypes="czzczczcc" />
    <path
       style="fill:url(#linearGradient2243);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 50.327314,131.44418 C 50.327314,131.44418 52.704934,126.77223 58.062502,125.257 C 63.42007,123.74177 67.52321,126.58561 73.00759,123.77612 C 78.49196,120.96664 80,114.01905 80,114.01905 C 80,114.01905 79.61959,112.66165 78.22472,112.50382 C 76.70459,112.33181 55.145956,112.37755 55.145956,112.37755 C 55.204289,112.31946 52.297962,112.37242 51.214959,113.51397 C 50.131956,114.65552 50.200508,117.68085 50.200508,117.68085 L 50.327314,131.44418 z "
       id="path2241"
       sodipodi:nodetypes="czzczczcc" />
    <path
       style="fill:url(#linearGradient3260);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 85.127672,131.36218 C 85.127672,131.36218 87.505292,126.69023 92.86286,125.175 C 98.220428,123.65977 102.32357,126.50361 107.80795,123.69412 C 113.29232,120.88464 114.80036,113.93705 114.80036,113.93705 C 114.80036,113.93705 114.41995,112.57965 113.02508,112.42182 C 111.50495,112.24981 89.946314,112.29555 89.946314,112.29555 C 90.004647,112.23746 87.09832,112.29042 86.015317,113.43197 C 84.932314,114.57352 85.000866,117.59885 85.000866,117.59885 L 85.127672,131.36218 z "
       id="path3258"
       sodipodi:nodetypes="czzczczcc" />
    <g
       id="g3283"
       transform="translate(-70.032139,58.089284)">
      <rect
         inkscape:export-ydpi="148.86365"
         inkscape:export-xdpi="148.86365"
         inkscape:export-filename="/home/jerkeby/devel/faimond/action.png"
         ry="2.2128096"
         y="112.36096"
         x="119.85903"
         height="17.913221"
         width="30.052937"
         id="rect2542"
         style="fill:#bfcbe6;fill-opacity:1;stroke:#000000;stroke-width:0.17606567;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
      <rect
         inkscape:export-ydpi="148.86365"
         inkscape:export-xdpi="148.86365"
         inkscape:export-filename="/home/jerkeby/devel/faimond/action.png"
         ry="0"
         y="114.36221"
         x="119.73214"
         height="16"
         width="30.299999"
         id="rect2546"
         style="opacity:1;fill:url(#linearGradient3287);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
    </g>
    <rect
       style="fill:#bfcbe6;fill-opacity:1;stroke:#000000;stroke-width:0.219;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect3529"
       width="99.346695"
       height="17.770449"
       x="50.337757"
       y="147.43234"
       ry="2.1951728"
       inkscape:export-filename="/home/jerkeby/devel/faimond/hostname.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <rect
       style="opacity:1;fill:url(#linearGradient3535);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.20000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
       id="rect3531"
       width="99.732002"
       height="15.94455"
       x="50.168243"
       y="149.41766"
       ry="0"
       inkscape:export-filename="/home/jerkeby/devel/faimond/hostname.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#linearGradient3294);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 120.05944,131.5335 C 120.05944,131.5335 122.43706,126.86154 127.79463,125.34631 C 133.1522,123.83109 137.25534,126.67493 142.73972,123.86544 C 148.22409,121.05595 149.73213,114.10837 149.73213,114.10837 C 149.73213,114.10837 149.35172,112.75097 147.95685,112.59314 C 146.43672,112.42113 124.87808,112.46687 124.87808,112.46687 C 124.93642,112.40878 122.03009,112.46174 120.94709,113.60329 C 119.86408,114.74484 119.93264,117.77017 119.93264,117.77017 L 120.05944,131.5335 z "
       id="path3251"
       sodipodi:nodetypes="czzczczcc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#linearGradient3329);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
       d="M 155.26418,131.38108 C 155.26418,131.38108 157.6418,126.70912 162.99937,125.19389 C 168.35694,123.67867 172.46008,126.52251 177.94446,123.71302 C 183.42883,120.90353 184.93687,113.95595 184.93687,113.95595 C 184.93687,113.95595 184.55646,112.59855 183.16159,112.44072 C 181.64146,112.26871 160.08282,112.31445 160.08282,112.31445 C 160.14116,112.25636 157.23483,112.30932 156.15183,113.45087 C 155.06882,114.59242 155.13738,117.61775 155.13738,117.61775 L 155.26418,131.38108 z "
       id="path2257"
       sodipodi:nodetypes="czzczczcc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
    <path
       style="fill:url(#linearGradient3343);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
       d="M 155.03517,166.60018 C 155.03517,166.60018 157.41279,161.92822 162.77036,160.41299 C 168.12793,158.89777 172.23107,161.74161 177.71545,158.93212 C 183.19982,156.12263 184.70786,149.17505 184.70786,149.17505 C 184.70786,149.17505 184.32745,147.81765 182.93258,147.65982 C 181.41245,147.48781 159.85381,147.53355 159.85381,147.53355 C 159.91215,147.47546 157.00582,147.52842 155.92282,148.66997 C 154.83981,149.81152 154.90837,152.83685 154.90837,152.83685 L 155.03517,166.60018 z "
       id="path3341"
       sodipodi:nodetypes="czzczczcc"
       inkscape:export-filename="/home/jerkeby/devel/faimond/ok3d.png"
       inkscape:export-xdpi="148.86365"
       inkscape:export-ydpi="148.86365" />
  </g>
</svg>