aboutsummaryrefslogtreecommitdiff
blob: ff238f970ef04e7f14dac99f7389b0727e0c3dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<!-- Created with gnuclad 0.2.4 -->

<svg
  xmlns='http://www.w3.org/2000/svg'
  xmlns:svg='http://www.w3.org/2000/svg'
  xmlns:xlink='http://www.w3.org/1999/xlink'
  xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'
  xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'
  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#'
  version='1.1'
  width='2420'
  height='982'
>

<title>The Gentoo Ecosystem</title>

<defs>

  <linearGradient id='__yearline' x1='0' y1='0' x2='1' y2='0'>
    <stop stop-color='#00316e' offset='0' stop-opacity='1' />
    <stop stop-color='#2c72c7' offset='1' stop-opacity='1' />
  </linearGradient>

  <linearGradient id='__infobox_fill' x1='0' y1='0' x2='0' y2='1'>
    <stop stop-color='#b9d5ff' offset='0' stop-opacity='1' />
    <stop stop-color='#70b3f2' offset='1' stop-opacity='1' />
  </linearGradient>
  <linearGradient id='__infobox_stroke' x1='0' y1='0' x2='0' y2='1'>
    <stop stop-color='#70b3f2' offset='0' stop-opacity='1' />
    <stop stop-color='#b9d5ff' offset='1' stop-opacity='1' />
  </linearGradient>
  <filter id='__infobox_shadow' color-interpolation-filters='sRGB'>
    <feGaussianBlur stdDeviation='5' />
  </filter>


  <circle id='__connectors_start' cx='0' cy='0' r='4' stroke='none' />
  <marker id='__connector_0' stroke='none' markerUnits='userSpaceOnUse' style='overflow:visible;'>
    <use xlink:href='#__connectors_start' fill='#a0a0f0'  />
  </marker>
  <marker id='__connector_1' stroke='none' markerUnits='userSpaceOnUse' style='overflow:visible;'>
    <use xlink:href='#__connectors_start' fill='#000000'  />
  </marker>
  <marker id='__connector_2' stroke='none' markerUnits='userSpaceOnUse' style='overflow:visible;'>
    <use xlink:href='#__connectors_start' fill='#000000'  />
  </marker>
  <marker id='__connector_3' stroke='none' markerUnits='userSpaceOnUse' style='overflow:visible;'>
    <use xlink:href='#__connectors_start' fill='#000000'  />
  </marker>
  <marker id='__connector_4' stroke='none' markerUnits='userSpaceOnUse' style='overflow:visible;'>
    <use xlink:href='#__connectors_start' fill='#000000'  />
  </marker>
  <marker id='__connector_5' stroke='none' markerUnits='userSpaceOnUse' style='overflow:visible;'>
    <use xlink:href='#__connectors_start' fill='#000000'  />
  </marker>
  <marker id='__connector_6' stroke='none' markerUnits='userSpaceOnUse' style='overflow:visible;'>
    <use xlink:href='#__connectors_start' fill='#000000'  />
  </marker>
<rect id='__fadeout' height='1' width='6' y='-0.5' x='0'/>  <linearGradient id='__fadeout_Jollix' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#ffee55' offset='0' stop-opacity='1' />
    <stop stop-color='#ffee55' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Jollix' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Jollix)' />
  </marker>
  <linearGradient id='__fadeout_Knopperdisk' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#06C000' offset='0' stop-opacity='1' />
    <stop stop-color='#06C000' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Knopperdisk' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Knopperdisk)' />
  </marker>
  <linearGradient id='__fadeout_Pardus' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#FDB500' offset='0' stop-opacity='1' />
    <stop stop-color='#FDB500' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Pardus' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Pardus)' />
  </marker>
  <linearGradient id='__fadeout_Bintoo' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#89c8e9' offset='0' stop-opacity='1' />
    <stop stop-color='#89c8e9' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Bintoo' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Bintoo)' />
  </marker>
  <linearGradient id='__fadeout_Papug' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#0082ff' offset='0' stop-opacity='1' />
    <stop stop-color='#0082ff' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Papug' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Papug)' />
  </marker>
  <linearGradient id='__fadeout_Liberté' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#114488' offset='0' stop-opacity='1' />
    <stop stop-color='#114488' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Liberté' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Liberté)' />
  </marker>
  <linearGradient id='__fadeout_VLOS' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#718969' offset='0' stop-opacity='1' />
    <stop stop-color='#718969' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_VLOS' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_VLOS)' />
  </marker>
  <linearGradient id='__fadeout_Kororaa' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#706f7f' offset='0' stop-opacity='1' />
    <stop stop-color='#706f7f' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Kororaa' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Kororaa)' />
  </marker>
  <linearGradient id='__fadeout_epiOS' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#2181B0' offset='0' stop-opacity='1' />
    <stop stop-color='#2181B0' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_epiOS' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_epiOS)' />
  </marker>
  <linearGradient id='__fadeout_VidaLinux' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#718969' offset='0' stop-opacity='1' />
    <stop stop-color='#718969' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_VidaLinux' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_VidaLinux)' />
  </marker>
  <linearGradient id='__fadeout_Navyn__OS' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#224488' offset='0' stop-opacity='1' />
    <stop stop-color='#224488' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Navyn__OS' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Navyn__OS)' />
  </marker>
  <linearGradient id='__fadeout_SLS' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#9c8ac4' offset='0' stop-opacity='1' />
    <stop stop-color='#9c8ac4' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_SLS' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_SLS)' />
  </marker>
  <linearGradient id='__fadeout_Stampede' x1='0' y1='0' x2='6' y2='0' gradientUnits='userSpaceOnUse'>
    <stop stop-color='#866846' offset='0' stop-opacity='1' />
    <stop stop-color='#866846' offset='1' stop-opacity='0' />
  </linearGradient>
  <marker id='__stop_Stampede' markerWidth='6' markerHeight='1' style='overflow:visible;'>
    <use xlink:href='#__fadeout' style='fill:url(#__fadeout_Stampede)' />
  </marker>

<!-- BEGIN additional SVG images - definitions -->
    <linearGradient
       id="linearGradient4036">
      <stop
         style="stop-color:#7b7bdf;stop-opacity:1;"
         offset="0"
         id="stop4038" />
      <stop
         style="stop-color:#a6a6e9;stop-opacity:1;"
         offset="1"
         id="stop4040" />
    </linearGradient>
    <linearGradient
       id="linearGradient3933">
      <stop
         id="stop3935"
         offset="0.0000000"
         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.48660609"
         id="stop3937" />
      <stop
         style="stop-color:#d9d9f6;stop-opacity:1;"
         offset="0.59311914"
         id="stop3939" />
      <stop
         id="stop3941"
         offset="1"
         style="stop-color:#adadeb;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3915">
      <stop
         id="stop3917"
         offset="0.0000000"
         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
      <stop
         id="stop3919"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4049">
      <stop
         style="stop-color:#000000;stop-opacity:0.45918366;"
         offset="0.0000000"
         id="stop4050" />
      <stop
         style="stop-color:#9999e6;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop4051" />
    </linearGradient>
    <linearGradient
       id="linearGradient2797">
      <stop
         style="stop-color:#000000;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop2798" />
      <stop
         style="stop-color:#9999e6;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop2799" />
    </linearGradient>
    <linearGradient
       id="linearGradient2791">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop2792" />
      <stop
         id="stop3931"
         offset="0.30357143"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop3921"
         offset="0.60714287"
         style="stop-color:#e6e6f9;stop-opacity:1;" />
      <stop
         style="stop-color:#9999e6;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop2793" />
    </linearGradient>
    <linearGradient
       id="linearGradient2791-7">
      <stop
         id="stop2792-2"
         offset="0.0000000"
         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
      <stop
         id="stop2793-7"
         offset="1"
         style="stop-color:#c0c0c0;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2797-8">
      <stop
         id="stop2798-7"
         offset="0.0000000"
         style="stop-color:#000000;stop-opacity:1.0000000;" />
      <stop
         id="stop2799-1"
         offset="1"
         style="stop-color:#c0c0c0;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4049-5">
      <stop
         id="stop4050-0"
         offset="0.0000000"
         style="stop-color:#000000;stop-opacity:0.45918366;" />
      <stop
         id="stop4051-4"
         offset="1"
         style="stop-color:#c0c0c0;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2791-5">
      <stop
         id="stop2792-6"
         offset="0.0000000"
         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
      <stop
         id="stop2793-3"
         offset="1"
         style="stop-color:#c0c0c0;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2797-6">
      <stop
         id="stop2798-73"
         offset="0.0000000"
         style="stop-color:#000000;stop-opacity:1.0000000;" />
      <stop
         id="stop2799-6"
         offset="1"
         style="stop-color:#c0c0c0;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4049-59">
      <stop
         id="stop4050-7"
         offset="0.0000000"
         style="stop-color:#000000;stop-opacity:0.45918366;" />
      <stop
         id="stop4051-7"
         offset="1"
         style="stop-color:#c0c0c0;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3933"
       id="radialGradient3135"
       cx="240.19441"
       cy="350.79166"
       fx="240.19441"
       fy="350.79166"
       r="303.34283"
       gradientTransform="matrix(0.69099478,1.0116748,-0.81542574,0.5569526,374.42974,-116.469)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2791"
       id="radialGradient3137"
       cx="402.91514"
       cy="273.53453"
       fx="402.91515"
       fy="273.53453"
       r="77.791385"
       gradientTransform="scale(1.0948953,0.91332936)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2797"
       id="radialGradient3139"
       cx="363.31471"
       cy="343.67726"
       fx="362.55895"
       fy="342.73846"
       r="35.682201"
       gradientTransform="scale(1.1116231,0.89958546)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4049"
       id="linearGradient3141"
       x1="192.5567"
       y1="404.65598"
       x2="234.90553"
       y2="331.94254"
       gradientTransform="scale(1.083205,0.9231863)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4049"
       id="linearGradient3143"
       x1="188.64751"
       y1="785.09646"
       x2="450.44758"
       y2="519.51469"
       gradientTransform="scale(1.3482945,0.74167773)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3915"
       id="linearGradient3145"
       x1="508.15967"
       y1="428.62717"
       x2="271.03165"
       y2="659.76666"
       gradientTransform="scale(1.2005549,0.83294815)"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter3951">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.3094535"
         id="feGaussianBlur3953" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4036"
       id="linearGradient4042"
       x1="354.16965"
       y1="83.331688"
       x2="314.37476"
       y2="322.3338"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2797"
       id="radialGradient4049"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.5036118,-0.05644673,0.04112021,1.0953482,-156.89173,-46.745246)"
       cx="364.28299"
       cy="340.96454"
       fx="364.28299"
       fy="340.96454"
       r="35.682201" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2797"
       id="radialGradient3832"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.5036118,-0.05644673,0.04112021,1.0953482,-329.6866,-176.79092)"
       cx="364.28299"
       cy="340.96454"
       fx="364.28299"
       fy="340.96454"
       r="35.682201" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2791"
       id="radialGradient3840"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0948953,0,0,0.91332936,-172.79487,-130.04567)"
       cx="402.91514"
       cy="273.53453"
       fx="402.91515"
       fy="273.53453"
       r="77.791385" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3933"
       id="radialGradient3845"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.69099478,1.0116748,-0.81542574,0.5569526,201.63487,-246.51467)"
       cx="240.19441"
       cy="350.79166"
       fx="240.19441"
       fy="350.79166"
       r="303.34283" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4036"
       id="linearGradient3848"
       gradientUnits="userSpaceOnUse"
       x1="354.16965"
       y1="83.331688"
       x2="314.37476"
       y2="322.3338"
       gradientTransform="translate(-172.79487,-130.04567)" />

<!-- END additional SVG images - definitions -->

</defs>

<g inkscape:label='Background' inkscape:groupmode='layer' id='layer_background' >
  <rect x='0' y='0' width='2420' height='982' rx='11' ry='11' fill='#fff' />
</g>

<g inkscape:label='Year Rulers' inkscape:groupmode='layer' id='layer_yearrulers' stroke-width='1' stroke='#f0f0f0'>
  <line x1='10' y1='0' x2='10' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='18' y1='0' x2='18' y2='982' />
    <line x1='26' y1='0' x2='26' y2='982' />
    <line x1='35' y1='0' x2='35' y2='982' />
    <line x1='43' y1='0' x2='43' y2='982' />
    <line x1='51' y1='0' x2='51' y2='982' />
    <line x1='60' y1='0' x2='60' y2='982' />
    <line x1='68' y1='0' x2='68' y2='982' />
    <line x1='76' y1='0' x2='76' y2='982' />
    <line x1='85' y1='0' x2='85' y2='982' />
    <line x1='93' y1='0' x2='93' y2='982' />
    <line x1='101' y1='0' x2='101' y2='982' />
  <line x1='110' y1='0' x2='110' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='118' y1='0' x2='118' y2='982' />
    <line x1='126' y1='0' x2='126' y2='982' />
    <line x1='135' y1='0' x2='135' y2='982' />
    <line x1='143' y1='0' x2='143' y2='982' />
    <line x1='151' y1='0' x2='151' y2='982' />
    <line x1='160' y1='0' x2='160' y2='982' />
    <line x1='168' y1='0' x2='168' y2='982' />
    <line x1='176' y1='0' x2='176' y2='982' />
    <line x1='185' y1='0' x2='185' y2='982' />
    <line x1='193' y1='0' x2='193' y2='982' />
    <line x1='201' y1='0' x2='201' y2='982' />
  <line x1='210' y1='0' x2='210' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='218' y1='0' x2='218' y2='982' />
    <line x1='226' y1='0' x2='226' y2='982' />
    <line x1='235' y1='0' x2='235' y2='982' />
    <line x1='243' y1='0' x2='243' y2='982' />
    <line x1='251' y1='0' x2='251' y2='982' />
    <line x1='260' y1='0' x2='260' y2='982' />
    <line x1='268' y1='0' x2='268' y2='982' />
    <line x1='276' y1='0' x2='276' y2='982' />
    <line x1='285' y1='0' x2='285' y2='982' />
    <line x1='293' y1='0' x2='293' y2='982' />
    <line x1='301' y1='0' x2='301' y2='982' />
  <line x1='310' y1='0' x2='310' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='318' y1='0' x2='318' y2='982' />
    <line x1='326' y1='0' x2='326' y2='982' />
    <line x1='335' y1='0' x2='335' y2='982' />
    <line x1='343' y1='0' x2='343' y2='982' />
    <line x1='351' y1='0' x2='351' y2='982' />
    <line x1='360' y1='0' x2='360' y2='982' />
    <line x1='368' y1='0' x2='368' y2='982' />
    <line x1='376' y1='0' x2='376' y2='982' />
    <line x1='385' y1='0' x2='385' y2='982' />
    <line x1='393' y1='0' x2='393' y2='982' />
    <line x1='401' y1='0' x2='401' y2='982' />
  <line x1='410' y1='0' x2='410' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='418' y1='0' x2='418' y2='982' />
    <line x1='426' y1='0' x2='426' y2='982' />
    <line x1='435' y1='0' x2='435' y2='982' />
    <line x1='443' y1='0' x2='443' y2='982' />
    <line x1='451' y1='0' x2='451' y2='982' />
    <line x1='460' y1='0' x2='460' y2='982' />
    <line x1='468' y1='0' x2='468' y2='982' />
    <line x1='476' y1='0' x2='476' y2='982' />
    <line x1='485' y1='0' x2='485' y2='982' />
    <line x1='493' y1='0' x2='493' y2='982' />
    <line x1='501' y1='0' x2='501' y2='982' />
  <line x1='510' y1='0' x2='510' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='518' y1='0' x2='518' y2='982' />
    <line x1='526' y1='0' x2='526' y2='982' />
    <line x1='535' y1='0' x2='535' y2='982' />
    <line x1='543' y1='0' x2='543' y2='982' />
    <line x1='551' y1='0' x2='551' y2='982' />
    <line x1='560' y1='0' x2='560' y2='982' />
    <line x1='568' y1='0' x2='568' y2='982' />
    <line x1='576' y1='0' x2='576' y2='982' />
    <line x1='585' y1='0' x2='585' y2='982' />
    <line x1='593' y1='0' x2='593' y2='982' />
    <line x1='601' y1='0' x2='601' y2='982' />
  <line x1='610' y1='0' x2='610' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='618' y1='0' x2='618' y2='982' />
    <line x1='626' y1='0' x2='626' y2='982' />
    <line x1='635' y1='0' x2='635' y2='982' />
    <line x1='643' y1='0' x2='643' y2='982' />
    <line x1='651' y1='0' x2='651' y2='982' />
    <line x1='660' y1='0' x2='660' y2='982' />
    <line x1='668' y1='0' x2='668' y2='982' />
    <line x1='676' y1='0' x2='676' y2='982' />
    <line x1='685' y1='0' x2='685' y2='982' />
    <line x1='693' y1='0' x2='693' y2='982' />
    <line x1='701' y1='0' x2='701' y2='982' />
  <line x1='710' y1='0' x2='710' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='718' y1='0' x2='718' y2='982' />
    <line x1='726' y1='0' x2='726' y2='982' />
    <line x1='735' y1='0' x2='735' y2='982' />
    <line x1='743' y1='0' x2='743' y2='982' />
    <line x1='751' y1='0' x2='751' y2='982' />
    <line x1='760' y1='0' x2='760' y2='982' />
    <line x1='768' y1='0' x2='768' y2='982' />
    <line x1='776' y1='0' x2='776' y2='982' />
    <line x1='785' y1='0' x2='785' y2='982' />
    <line x1='793' y1='0' x2='793' y2='982' />
    <line x1='801' y1='0' x2='801' y2='982' />
  <line x1='810' y1='0' x2='810' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='818' y1='0' x2='818' y2='982' />
    <line x1='826' y1='0' x2='826' y2='982' />
    <line x1='835' y1='0' x2='835' y2='982' />
    <line x1='843' y1='0' x2='843' y2='982' />
    <line x1='851' y1='0' x2='851' y2='982' />
    <line x1='860' y1='0' x2='860' y2='982' />
    <line x1='868' y1='0' x2='868' y2='982' />
    <line x1='876' y1='0' x2='876' y2='982' />
    <line x1='885' y1='0' x2='885' y2='982' />
    <line x1='893' y1='0' x2='893' y2='982' />
    <line x1='901' y1='0' x2='901' y2='982' />
  <line x1='910' y1='0' x2='910' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='918' y1='0' x2='918' y2='982' />
    <line x1='926' y1='0' x2='926' y2='982' />
    <line x1='935' y1='0' x2='935' y2='982' />
    <line x1='943' y1='0' x2='943' y2='982' />
    <line x1='951' y1='0' x2='951' y2='982' />
    <line x1='960' y1='0' x2='960' y2='982' />
    <line x1='968' y1='0' x2='968' y2='982' />
    <line x1='976' y1='0' x2='976' y2='982' />
    <line x1='985' y1='0' x2='985' y2='982' />
    <line x1='993' y1='0' x2='993' y2='982' />
    <line x1='1001' y1='0' x2='1001' y2='982' />
  <line x1='1010' y1='0' x2='1010' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1018' y1='0' x2='1018' y2='982' />
    <line x1='1026' y1='0' x2='1026' y2='982' />
    <line x1='1035' y1='0' x2='1035' y2='982' />
    <line x1='1043' y1='0' x2='1043' y2='982' />
    <line x1='1051' y1='0' x2='1051' y2='982' />
    <line x1='1060' y1='0' x2='1060' y2='982' />
    <line x1='1068' y1='0' x2='1068' y2='982' />
    <line x1='1076' y1='0' x2='1076' y2='982' />
    <line x1='1085' y1='0' x2='1085' y2='982' />
    <line x1='1093' y1='0' x2='1093' y2='982' />
    <line x1='1101' y1='0' x2='1101' y2='982' />
  <line x1='1110' y1='0' x2='1110' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1118' y1='0' x2='1118' y2='982' />
    <line x1='1126' y1='0' x2='1126' y2='982' />
    <line x1='1135' y1='0' x2='1135' y2='982' />
    <line x1='1143' y1='0' x2='1143' y2='982' />
    <line x1='1151' y1='0' x2='1151' y2='982' />
    <line x1='1160' y1='0' x2='1160' y2='982' />
    <line x1='1168' y1='0' x2='1168' y2='982' />
    <line x1='1176' y1='0' x2='1176' y2='982' />
    <line x1='1185' y1='0' x2='1185' y2='982' />
    <line x1='1193' y1='0' x2='1193' y2='982' />
    <line x1='1201' y1='0' x2='1201' y2='982' />
  <line x1='1210' y1='0' x2='1210' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1218' y1='0' x2='1218' y2='982' />
    <line x1='1226' y1='0' x2='1226' y2='982' />
    <line x1='1235' y1='0' x2='1235' y2='982' />
    <line x1='1243' y1='0' x2='1243' y2='982' />
    <line x1='1251' y1='0' x2='1251' y2='982' />
    <line x1='1260' y1='0' x2='1260' y2='982' />
    <line x1='1268' y1='0' x2='1268' y2='982' />
    <line x1='1276' y1='0' x2='1276' y2='982' />
    <line x1='1285' y1='0' x2='1285' y2='982' />
    <line x1='1293' y1='0' x2='1293' y2='982' />
    <line x1='1301' y1='0' x2='1301' y2='982' />
  <line x1='1310' y1='0' x2='1310' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1318' y1='0' x2='1318' y2='982' />
    <line x1='1326' y1='0' x2='1326' y2='982' />
    <line x1='1335' y1='0' x2='1335' y2='982' />
    <line x1='1343' y1='0' x2='1343' y2='982' />
    <line x1='1351' y1='0' x2='1351' y2='982' />
    <line x1='1360' y1='0' x2='1360' y2='982' />
    <line x1='1368' y1='0' x2='1368' y2='982' />
    <line x1='1376' y1='0' x2='1376' y2='982' />
    <line x1='1385' y1='0' x2='1385' y2='982' />
    <line x1='1393' y1='0' x2='1393' y2='982' />
    <line x1='1401' y1='0' x2='1401' y2='982' />
  <line x1='1410' y1='0' x2='1410' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1418' y1='0' x2='1418' y2='982' />
    <line x1='1426' y1='0' x2='1426' y2='982' />
    <line x1='1435' y1='0' x2='1435' y2='982' />
    <line x1='1443' y1='0' x2='1443' y2='982' />
    <line x1='1451' y1='0' x2='1451' y2='982' />
    <line x1='1460' y1='0' x2='1460' y2='982' />
    <line x1='1468' y1='0' x2='1468' y2='982' />
    <line x1='1476' y1='0' x2='1476' y2='982' />
    <line x1='1485' y1='0' x2='1485' y2='982' />
    <line x1='1493' y1='0' x2='1493' y2='982' />
    <line x1='1501' y1='0' x2='1501' y2='982' />
  <line x1='1510' y1='0' x2='1510' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1518' y1='0' x2='1518' y2='982' />
    <line x1='1526' y1='0' x2='1526' y2='982' />
    <line x1='1535' y1='0' x2='1535' y2='982' />
    <line x1='1543' y1='0' x2='1543' y2='982' />
    <line x1='1551' y1='0' x2='1551' y2='982' />
    <line x1='1560' y1='0' x2='1560' y2='982' />
    <line x1='1568' y1='0' x2='1568' y2='982' />
    <line x1='1576' y1='0' x2='1576' y2='982' />
    <line x1='1585' y1='0' x2='1585' y2='982' />
    <line x1='1593' y1='0' x2='1593' y2='982' />
    <line x1='1601' y1='0' x2='1601' y2='982' />
  <line x1='1610' y1='0' x2='1610' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1618' y1='0' x2='1618' y2='982' />
    <line x1='1626' y1='0' x2='1626' y2='982' />
    <line x1='1635' y1='0' x2='1635' y2='982' />
    <line x1='1643' y1='0' x2='1643' y2='982' />
    <line x1='1651' y1='0' x2='1651' y2='982' />
    <line x1='1660' y1='0' x2='1660' y2='982' />
    <line x1='1668' y1='0' x2='1668' y2='982' />
    <line x1='1676' y1='0' x2='1676' y2='982' />
    <line x1='1685' y1='0' x2='1685' y2='982' />
    <line x1='1693' y1='0' x2='1693' y2='982' />
    <line x1='1701' y1='0' x2='1701' y2='982' />
  <line x1='1710' y1='0' x2='1710' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1718' y1='0' x2='1718' y2='982' />
    <line x1='1726' y1='0' x2='1726' y2='982' />
    <line x1='1735' y1='0' x2='1735' y2='982' />
    <line x1='1743' y1='0' x2='1743' y2='982' />
    <line x1='1751' y1='0' x2='1751' y2='982' />
    <line x1='1760' y1='0' x2='1760' y2='982' />
    <line x1='1768' y1='0' x2='1768' y2='982' />
    <line x1='1776' y1='0' x2='1776' y2='982' />
    <line x1='1785' y1='0' x2='1785' y2='982' />
    <line x1='1793' y1='0' x2='1793' y2='982' />
    <line x1='1801' y1='0' x2='1801' y2='982' />
  <line x1='1810' y1='0' x2='1810' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1818' y1='0' x2='1818' y2='982' />
    <line x1='1826' y1='0' x2='1826' y2='982' />
    <line x1='1835' y1='0' x2='1835' y2='982' />
    <line x1='1843' y1='0' x2='1843' y2='982' />
    <line x1='1851' y1='0' x2='1851' y2='982' />
    <line x1='1860' y1='0' x2='1860' y2='982' />
    <line x1='1868' y1='0' x2='1868' y2='982' />
    <line x1='1876' y1='0' x2='1876' y2='982' />
    <line x1='1885' y1='0' x2='1885' y2='982' />
    <line x1='1893' y1='0' x2='1893' y2='982' />
    <line x1='1901' y1='0' x2='1901' y2='982' />
  <line x1='1910' y1='0' x2='1910' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='1918' y1='0' x2='1918' y2='982' />
    <line x1='1926' y1='0' x2='1926' y2='982' />
    <line x1='1935' y1='0' x2='1935' y2='982' />
    <line x1='1943' y1='0' x2='1943' y2='982' />
    <line x1='1951' y1='0' x2='1951' y2='982' />
    <line x1='1960' y1='0' x2='1960' y2='982' />
    <line x1='1968' y1='0' x2='1968' y2='982' />
    <line x1='1976' y1='0' x2='1976' y2='982' />
    <line x1='1985' y1='0' x2='1985' y2='982' />
    <line x1='1993' y1='0' x2='1993' y2='982' />
    <line x1='2001' y1='0' x2='2001' y2='982' />
  <line x1='2010' y1='0' x2='2010' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='2018' y1='0' x2='2018' y2='982' />
    <line x1='2026' y1='0' x2='2026' y2='982' />
    <line x1='2035' y1='0' x2='2035' y2='982' />
    <line x1='2043' y1='0' x2='2043' y2='982' />
    <line x1='2051' y1='0' x2='2051' y2='982' />
    <line x1='2060' y1='0' x2='2060' y2='982' />
    <line x1='2068' y1='0' x2='2068' y2='982' />
    <line x1='2076' y1='0' x2='2076' y2='982' />
    <line x1='2085' y1='0' x2='2085' y2='982' />
    <line x1='2093' y1='0' x2='2093' y2='982' />
    <line x1='2101' y1='0' x2='2101' y2='982' />
  <line x1='2110' y1='0' x2='2110' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='2118' y1='0' x2='2118' y2='982' />
    <line x1='2126' y1='0' x2='2126' y2='982' />
    <line x1='2135' y1='0' x2='2135' y2='982' />
    <line x1='2143' y1='0' x2='2143' y2='982' />
    <line x1='2151' y1='0' x2='2151' y2='982' />
    <line x1='2160' y1='0' x2='2160' y2='982' />
    <line x1='2168' y1='0' x2='2168' y2='982' />
    <line x1='2176' y1='0' x2='2176' y2='982' />
    <line x1='2185' y1='0' x2='2185' y2='982' />
    <line x1='2193' y1='0' x2='2193' y2='982' />
    <line x1='2201' y1='0' x2='2201' y2='982' />
  <line x1='2210' y1='0' x2='2210' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='2218' y1='0' x2='2218' y2='982' />
    <line x1='2226' y1='0' x2='2226' y2='982' />
    <line x1='2235' y1='0' x2='2235' y2='982' />
    <line x1='2243' y1='0' x2='2243' y2='982' />
    <line x1='2251' y1='0' x2='2251' y2='982' />
    <line x1='2260' y1='0' x2='2260' y2='982' />
    <line x1='2268' y1='0' x2='2268' y2='982' />
    <line x1='2276' y1='0' x2='2276' y2='982' />
    <line x1='2285' y1='0' x2='2285' y2='982' />
    <line x1='2293' y1='0' x2='2293' y2='982' />
    <line x1='2301' y1='0' x2='2301' y2='982' />
  <line x1='2310' y1='0' x2='2310' y2='982' stroke-width='2' stroke='#e1e1e1' />
    <line x1='2318' y1='0' x2='2318' y2='982' />
    <line x1='2326' y1='0' x2='2326' y2='982' />
    <line x1='2335' y1='0' x2='2335' y2='982' />
    <line x1='2343' y1='0' x2='2343' y2='982' />
    <line x1='2351' y1='0' x2='2351' y2='982' />
    <line x1='2360' y1='0' x2='2360' y2='982' />
    <line x1='2368' y1='0' x2='2368' y2='982' />
    <line x1='2376' y1='0' x2='2376' y2='982' />
    <line x1='2385' y1='0' x2='2385' y2='982' />
    <line x1='2393' y1='0' x2='2393' y2='982' />
    <line x1='2401' y1='0' x2='2401' y2='982' />
  <line x1='2410' y1='0' x2='2410' y2='982' stroke-width='2' stroke='#e1e1e1' />
</g>

<g inkscape:label='Domains' inkscape:groupmode='layer' id='layer_domains' >
</g>

<g inkscape:label='Connectors' inkscape:groupmode='layer' id='layer_connectors'
style='opacity:0.6;' >
  <line x1='1026' y1='445' x2='1026' y2='73' stroke='#a0a0f0' stroke-width='2' stroke-dasharray='2,2' marker-start='url(#__connector_0)' />
  <line x1='1294' y1='445' x2='1294' y2='139' stroke='#000000' stroke-width='2' stroke-dasharray='2,2' marker-start='url(#__connector_1)' />
  <line x1='1648' y1='445' x2='1648' y2='161' stroke='#000000' stroke-width='2' stroke-dasharray='2,2' marker-start='url(#__connector_2)' />
  <line x1='1978' y1='251' x2='1978' y2='447' stroke='#000000' stroke-width='1' stroke-dasharray='1,1' marker-start='url(#__connector_3)' />
  <line x1='2239' y1='251' x2='2239' y2='711' stroke='#000000' stroke-width='2' stroke-dasharray='2,2' marker-start='url(#__connector_4)' />
  <line x1='793' y1='819' x2='793' y2='447' stroke='#000000' stroke-width='1' stroke-dasharray='1,1' marker-start='url(#__connector_5)' />
  <line x1='743' y1='907' x2='743' y2='447' stroke='#000000' stroke-width='1' stroke-dasharray='1,1' marker-start='url(#__connector_6)' />
</g>

<g inkscape:label='Lines' inkscape:groupmode='layer' id='layer_lines'
 style='fill:none;stroke-width:4;' >
  <path id='__line_Ututo-e' d='M 1176 73 C 1213.5,73 1188.5,95 1226,95 L 1226 95 L 2295 95' stroke='#d30110' style='stroke-width:4;' />
  <path id='__line_Ututo' d='M 885 73 L 2295 73' stroke='#ba3232' style='stroke-width:4;' />
  <path id='__line_GoboLinux' d='M 1294 139 L 2295 139' stroke='#B0E0F0' style='stroke-width:4;' />
  <path id='__line_Exherbo' d='M 1648 161 L 2295 161' stroke='#006600' style='stroke-width:4;' />
  <path id='__line_Jollix' d='M 974 447 C 1097.75,447 1015.25,205 1139,205 L 1139 205 L 1246 205' stroke='#ffee55' style='stroke-width:4;' marker-end='url(#__stop_Jollix)' />
  <path id='__line_Knopperdisk' d='M 1118 447 C 1236.5,447 1157.5,227 1276,227 L 1276 227 L 1531 227' stroke='#06C000' style='stroke-width:4;' marker-end='url(#__stop_Knopperdisk)' />
  <path id='__line_Pentoo' d='M 1168 447 C 1280.5,447 1205.5,249 1318,249 L 1318 249 L 2295 249' stroke='#000100' style='stroke-width:4;' />
  <path id='__line_Pardus' d='M 1202 447 C 1307.75,447 1237.25,271 1343,271 L 1343 271 L 2172 271' stroke='#FDB500' style='stroke-width:4;' marker-end='url(#__stop_Pardus)' />
  <path id='__line_Bintoo' d='M 1271 447 C 1370,447 1304,293 1403,293 L 1403 293 L 1510 293' stroke='#89c8e9' style='stroke-width:4;' marker-end='url(#__stop_Bintoo)' />
  <path id='__line_Papug' d='M 1371 447 C 1462.5,447 1401.5,315 1493,315 L 1493 315 L 2101 315' stroke='#0082ff' style='stroke-width:4;' marker-end='url(#__stop_Papug)' />
  <path id='__line_Toorox' d='M 1489 447 C 1572.25,447 1516.75,337 1600,337 L 1600 337 L 2295 337' stroke='#333333' style='stroke-width:4;' />
  <path id='__line_Tin__Hat__Linux' d='M 1567 447 C 1642,447 1592,359 1667,359 L 1667 359 L 2295 359' stroke='#929292' style='stroke-width:4;' />
  <path id='__line_Fireball' d='M 1640 447 C 1704.5,447 1661.5,381 1726,381 L 1726 381 L 2295 381' stroke='#ff0000' style='stroke-width:4;' />
  <path id='__line_Liberté' d='M 1774 447 C 1826.5,447 1791.5,403 1844,403 L 1844 403 L 2201 403' stroke='#114488' style='stroke-width:4;' marker-end='url(#__stop_Liberté)' />
  <path id='__line_Bicom__Systems__PBXware' d='M 2132 447 C 2169.5,447 2144.5,425 2182,425 L 2182 425 L 2295 425' stroke='#39C000' style='stroke-width:4;' />
  <path id='__line_Gentoox' d='M 933 447 C 1077.75,447 981.25,777 1126,777 L 1126 777 L 2295 777' stroke='#0050ff' style='stroke-width:4;' />
  <path id='__line_AnikOS' d='M 1898 447 C 1935.5,447 1910.5,469 1948,469 L 1948 469 L 2295 469' stroke='#333333' style='stroke-width:4;' />
  <path id='__line_CoreOS' d='M 2135 513 C 2172.5,513 2147.5,491 2185,491 L 2185 491 L 2295 491' stroke='#419EDA' style='stroke-width:4;' />
  <path id='__line_Google__Chrome__OS' d='M 1818 513 C 1818,513 1818,535 1818,535 L 1818 535 L 2295 535' stroke='#224488' style='stroke-width:4;' />
  <path id='__line_Chromium__OS' d='M 1732 447 C 1796.5,447 1753.5,513 1818,513 L 1818 513 L 2295 513' stroke='#224488' style='stroke-width:4;' />
  <path id='__line_GaryOS' d='M 2170 579 C 2207.5,579 2182.5,557 2220,557 L 2220 557 L 2295 557' stroke='#333333' style='stroke-width:4;' />
  <path id='__line_VLOS' d='M 1851 579 C 1888.5,579 1863.5,601 1901,601 L 1901 601 L 2101 601' stroke='#718969' style='stroke-width:4;' marker-end='url(#__stop_VLOS)' />
  <path id='__line_Funtoo' d='M 1554 447 C 1645.5,447 1584.5,579 1676,579 L 1676 579 L 2295 579' stroke='#333399' style='stroke-width:4;' />
  <path id='__line_SystemRescueCD' d='M 1485 447 C 1590.75,447 1520.25,623 1626,623 L 1626 623 L 2295 623' stroke='#508fee' style='stroke-width:4;' />
  <path id='__line_Calculate' d='M 1402 447 C 1514.5,447 1439.5,645 1552,645 L 1552 645 L 2295 645' stroke='#faa61a' style='stroke-width:4;' />
  <path id='__line_Kororaa' d='M 1246 447 C 1364.5,447 1285.5,667 1404,667 L 1404 667 L 1594 667' stroke='#706f7f' style='stroke-width:4;' marker-end='url(#__stop_Kororaa)' />
  <path id='__line_Spike' d='M 2189 689 C 2226.5,689 2201.5,711 2239,711 L 2239 711 L 2295 711' stroke='#000000' style='stroke-width:4;' />
  <path id='__line_RR4' d='M 1220 447 C 1343.75,447 1261.25,689 1385,689 L 1385 689 L 2295 689' stroke='#e9b689' style='stroke-width:4;' />
  <path id='__line_epiOS' d='M 1153 447 C 1282.75,447 1196.25,711 1326,711 L 1326 711 L 1585 711' stroke='#2181B0' style='stroke-width:4;' marker-end='url(#__stop_epiOS)' />
  <path id='__line_VidaLinux' d='M 1105 447 C 1240,447 1150,733 1285,733 L 1285 733 L 1801 733' stroke='#718969' style='stroke-width:4;' marker-end='url(#__stop_VidaLinux)' />
  <path id='__line_Navyn__OS' d='M 1064 447 C 1204.25,447 1110.75,755 1251,755 L 1251 755 L 1310 755' stroke='#224488' style='stroke-width:4;' marker-end='url(#__stop_Navyn__OS)' />
  <path id='__line_Enoch' d='M 735 447 L 2295 447' stroke='#a0a0f0' style='stroke-width:4;' />
  <path id='__line_FreeBSD' d='M 193 821 L 2295 821' stroke='#ff0000' style='stroke-width:4;' />
  <path id='__line_Stampede' d='M 551 887 C 588.5,887 563.5,909 601,909 L 601 909 L 1026 909' stroke='#866846' style='stroke-width:4;' marker-end='url(#__stop_Stampede)' />
  <path id='__line_Slackware' d='M 114 865 C 151.5,865 126.5,887 164,887 L 164 887 L 2295 887' stroke='#000' style='stroke-width:4;' />
  <path id='__line_SLS' d='M 51 865 L 210 865' stroke='#9c8ac4' style='stroke-width:4;' marker-end='url(#__stop_SLS)' />
</g>

<g inkscape:label='Dots' inkscape:groupmode='layer' id='layer_dots'
 style='stroke:none;' >
  <circle id='__dot_Ututo-e' cx='1226' cy='95' r='7' fill='#d30110' stroke='none' />
  <circle id='__dot_Ututo' cx='885' cy='73' r='7' fill='#ba3232' stroke='none' />
    <circle cx='1351' cy='73' r='5' fill='#ba3232' stroke='none' />
  <circle id='__dot_GoboLinux' cx='1294' cy='139' r='7' fill='#B0E0F0' stroke='none' />
  <circle id='__dot_Exherbo' cx='1648' cy='161' r='7' fill='#006600' stroke='none' />
  <circle id='__dot_Jollix' cx='1139' cy='205' r='7' fill='#ffee55' stroke='none' />
  <circle id='__dot_Knopperdisk' cx='1276' cy='227' r='7' fill='#06C000' stroke='none' />
  <circle id='__dot_Pentoo' cx='1318' cy='249' r='7' fill='#000100' stroke='none' />
  <circle id='__dot_Pardus' cx='1343' cy='271' r='7' fill='#FDB500' stroke='none' />
  <circle id='__dot_Bintoo' cx='1403' cy='293' r='7' fill='#89c8e9' stroke='none' />
  <circle id='__dot_Papug' cx='1493' cy='315' r='7' fill='#0082ff' stroke='none' />
  <circle id='__dot_Toorox' cx='1600' cy='337' r='7' fill='#333333' stroke='none' />
  <circle id='__dot_Tin__Hat__Linux' cx='1667' cy='359' r='7' fill='#929292' stroke='none' />
  <circle id='__dot_Fireball' cx='1726' cy='381' r='7' fill='#ff0000' stroke='none' />
  <circle id='__dot_Liberté' cx='1844' cy='403' r='7' fill='#114488' stroke='none' />
  <circle id='__dot_Bicom__Systems__PBXware' cx='2182' cy='425' r='7' fill='#39C000' stroke='none' />
  <circle id='__dot_Gentoox' cx='1126' cy='777' r='7' fill='#0050ff' stroke='none' />
  <circle id='__dot_AnikOS' cx='1948' cy='469' r='7' fill='#333333' stroke='none' />
  <circle id='__dot_CoreOS' cx='2185' cy='491' r='7' fill='#419EDA' stroke='none' />
  <circle id='__dot_Google__Chrome__OS' cx='1818' cy='535' r='7' fill='#224488' stroke='none' />
  <circle id='__dot_Chromium__OS' cx='1818' cy='513' r='7' fill='#224488' stroke='none' />
  <circle id='__dot_GaryOS' cx='2220' cy='557' r='7' fill='#333333' stroke='none' />
  <circle id='__dot_VLOS' cx='1901' cy='601' r='7' fill='#718969' stroke='none' />
  <circle id='__dot_Funtoo' cx='1676' cy='579' r='7' fill='#333399' stroke='none' />
  <circle id='__dot_SystemRescueCD' cx='1626' cy='623' r='7' fill='#508fee' stroke='none' />
  <circle id='__dot_Calculate' cx='1552' cy='645' r='7' fill='#faa61a' stroke='none' />
  <circle id='__dot_Kororaa' cx='1404' cy='667' r='7' fill='#706f7f' stroke='none' />
  <circle id='__dot_Spike' cx='2239' cy='711' r='7' fill='#000000' stroke='none' />
  <circle id='__dot_RR4' cx='1385' cy='689' r='7' fill='#e9b689' stroke='none' />
    <circle cx='1472' cy='689' r='5' fill='#e9b689' stroke='none' />
  <circle id='__dot_epiOS' cx='1326' cy='711' r='7' fill='#2181B0' stroke='none' />
  <circle id='__dot_VidaLinux' cx='1285' cy='733' r='7' fill='#718969' stroke='none' />
    <circle cx='1378' cy='733' r='5' fill='#718969' stroke='none' />
  <circle id='__dot_Navyn__OS' cx='1251' cy='755' r='7' fill='#224488' stroke='none' />
  <circle id='__dot_Enoch' cx='735' cy='447' r='7' fill='#a0a0f0' stroke='none' />
    <circle cx='801' cy='447' r='5' fill='#a0a0f0' stroke='none' />
    <circle cx='901' cy='447' r='5' fill='#a0a0f0' stroke='none' />
    <circle cx='1034' cy='447' r='5' fill='#a0a0f0' stroke='none' />
  <circle id='__dot_FreeBSD' cx='193' cy='821' r='7' fill='#ff0000' stroke='none' />
  <circle id='__dot_Stampede' cx='601' cy='909' r='7' fill='#866846' stroke='none' />
  <circle id='__dot_Slackware' cx='164' cy='887' r='7' fill='#000' stroke='none' />
  <circle id='__dot_SLS' cx='51' cy='865' r='7' fill='#9c8ac4' stroke='none' />
</g>

<g inkscape:label='Icons' inkscape:groupmode='layer' id='layer_icons'>
</g>

<g inkscape:label='Labels' inkscape:groupmode='layer' id='layer_labels' 
 style='font-size:14px;stroke:none;fill:#000;font-family:Liberation Sans, Arial, Helvetica;-inkscape-font-specification:Liberation Sans, Arial, Helvetica;' >
  <rect x='1231' y='78' width='48' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.ututo.org/'><text x='1233' y='90'  >Ututo-e</text></a>
  <rect x='890' y='56' width='35' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.ututo.org/'><text x='892' y='68'  >Ututo</text></a>
    <rect x='1354' y='56' width='59' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
    <a xlink:href='http://www.ututo.org/'><text x='1356' y='68' >Ututo XS</text></a>
  <rect x='1299' y='122' width='71' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://gobolinux.org'><text x='1301' y='134'  >GoboLinux</text></a>
  <rect x='1653' y='144' width='55' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://exherbo.org/'><text x='1655' y='156'  >Exherbo</text></a>
  <rect x='1144' y='188' width='33' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://jollix.berlios.de/de/'><text x='1146' y='200'  >Jollix</text></a>
  <rect x='1281' y='210' width='83' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://knopperdisk.knopper.tk/'><text x='1283' y='222'  >Knopperdisk</text></a>
  <rect x='1323' y='232' width='47' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.pentoo.ch/'><text x='1325' y='244'  >Pentoo</text></a>
  <rect x='1348' y='254' width='47' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.pardus.org.tr/'><text x='1350' y='266'  >Pardus</text></a>
  <rect x='1408' y='276' width='42' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://bintoo.sourceforge.net/'><text x='1410' y='288'  >Bintoo</text></a>
  <rect x='1498' y='298' width='43' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.papuglinux.net/'><text x='1500' y='310'  >Papug</text></a>
  <rect x='1605' y='320' width='46' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://toorox.de/'><text x='1607' y='332'  >Toorox</text></a>
  <rect x='1672' y='342' width='88' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://opensource.dyc.edu/tinhat'><text x='1674' y='354'  >Tin Hat Linux</text></a>
  <rect x='1731' y='364' width='49' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://fireballiso.sourceforge.net/'><text x='1733' y='376'  >Fireball</text></a>
  <rect x='1849' y='386' width='53' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://dee.su/liberte'><text x='1851' y='398'  >Liberté</text></a>
  <rect x='2187' y='408' width='168' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.bicomsystems.com/download/'><text x='2189' y='420'  >Bicom Systems PBXware</text></a>
  <rect x='1131' y='760' width='55' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://gentoox.shallax.com/'><text x='1133' y='772'  >Gentoox</text></a>
  <rect x='1953' y='452' width='49' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.anikos.org/'><text x='1955' y='464'  >AnikOS</text></a>
  <rect x='2190' y='474' width='53' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='https://coreos.com/'><text x='2192' y='486'  >CoreOS</text></a>
  <rect x='1823' y='518' width='130' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://dev.chromium.org/chromium-os'><text x='1825' y='530'  >Google Chrome OS</text></a>
  <rect x='1823' y='496' width='93' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://dev.chromium.org/chromium-os'><text x='1825' y='508'  >Chromium OS</text></a>
  <rect x='2225' y='540' width='51' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='https://github.com/garybgenett/gary-os'><text x='2227' y='552'  >GaryOS</text></a>
  <rect x='1906' y='584' width='38' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://os.vidalinux.org/'><text x='1908' y='596'  >VLOS</text></a>
  <rect x='1681' y='562' width='45' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.funtoo.org/'><text x='1683' y='574'  >Funtoo</text></a>
  <rect x='1631' y='606' width='119' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.sysresccd.org/'><text x='1633' y='618'  >SystemRescueCD</text></a>
  <rect x='1557' y='628' width='62' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.calculate-linux.org/'><text x='1559' y='640'  >Calculate</text></a>
  <rect x='1409' y='650' width='53' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://en.wikipedia.org/wiki/Kororaa'><text x='1411' y='662'  >Kororaa</text></a>
  <rect x='2244' y='694' width='37' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.spike-pentesting.org'><text x='2246' y='706'  >Spike</text></a>
  <rect x='1390' y='672' width='29' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://sabayonlinux.org/'><text x='1392' y='684'  >RR4</text></a>
    <rect x='1475' y='672' width='59' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
    <a xlink:href='http://sabayonlinux.org/'><text x='1477' y='684' >Sabayon</text></a>
  <rect x='1331' y='694' width='40' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://linux.wikia.com/wiki/EpiOS'><text x='1333' y='706'  >epiOS</text></a>
  <rect x='1290' y='716' width='66' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.vidalinux.com/'><text x='1292' y='728'  >VidaLinux</text></a>
    <rect x='1381' y='716' width='38' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
    <a xlink:href='http://www.vidalinux.com/'><text x='1383' y='728' >VLOS</text></a>
  <rect x='1256' y='738' width='67' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://distrowatch.com/table.php?distribution=navynos'><text x='1258' y='750'  >Navyn OS</text></a>
  <rect x='740' y='430' width='42' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.gentoo.org/'><text x='742' y='442'  >Enoch</text></a>
    <rect x='804' y='430' width='48' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
    <a xlink:href='http://www.gentoo.org/'><text x='806' y='442' >Gentoo</text></a>
    <rect x='904' y='430' width='101' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
    <a xlink:href='http://www.gentoo.org'><text x='906' y='442' >Gentoo 1.0_rc3</text></a>
    <rect x='1037' y='430' width='72' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
    <a xlink:href='http://www.gentoo.org'><text x='1039' y='442' >Gentoo 1.0</text></a>
  <rect x='198' y='804' width='60' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='https://en.wikipedia.org/wiki/FreeBSD'><text x='200' y='816'  >FreeBSD</text></a>
  <rect x='606' y='892' width='67' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.stampede.org/'><text x='608' y='904'  >Stampede</text></a>
  <rect x='169' y='870' width='69' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://www.slackware.com/'><text x='171' y='882'  >Slackware</text></a>
  <rect x='56' y='848' width='28' height='14' fill='#fff' opacity='0.6'  rx='5' ry='5' />
  <a xlink:href='http://en.wikipedia.org/wiki/Softlanding_Linux_System'><text x='58' y='860'  >SLS</text></a>
</g>

<g inkscape:label='Yearlines' inkscape:groupmode='layer' id='layer_yearlines' 
 style='stroke:none;fill:url(#__yearline);' >
  <rect x='0' y='0' rx='5' ry='5' width='2420' height='40' />
  <rect x='0' y='942' rx='5' ry='5' width='2420' height='40' />
  <g style='font-size:22px;stroke:none;fill:#fff;font-family:Liberation Sans, Arial, Helvetica;-inkscape-font-specification:Liberation Sans, Arial, Helvetica;text-anchor:middle;' >
    <text x='60' y='28'><tspan>1992</tspan></text>
    <text x='60' y='970'><tspan>1992</tspan></text>
    <text x='160' y='28'><tspan>1993</tspan></text>
    <text x='160' y='970'><tspan>1993</tspan></text>
    <text x='260' y='28'><tspan>1994</tspan></text>
    <text x='260' y='970'><tspan>1994</tspan></text>
    <text x='360' y='28'><tspan>1995</tspan></text>
    <text x='360' y='970'><tspan>1995</tspan></text>
    <text x='460' y='28'><tspan>1996</tspan></text>
    <text x='460' y='970'><tspan>1996</tspan></text>
    <text x='560' y='28'><tspan>1997</tspan></text>
    <text x='560' y='970'><tspan>1997</tspan></text>
    <text x='660' y='28'><tspan>1998</tspan></text>
    <text x='660' y='970'><tspan>1998</tspan></text>
    <text x='760' y='28'><tspan>1999</tspan></text>
    <text x='760' y='970'><tspan>1999</tspan></text>
    <text x='860' y='28'><tspan>2000</tspan></text>
    <text x='860' y='970'><tspan>2000</tspan></text>
    <text x='960' y='28'><tspan>2001</tspan></text>
    <text x='960' y='970'><tspan>2001</tspan></text>
    <text x='1060' y='28'><tspan>2002</tspan></text>
    <text x='1060' y='970'><tspan>2002</tspan></text>
    <text x='1160' y='28'><tspan>2003</tspan></text>
    <text x='1160' y='970'><tspan>2003</tspan></text>
    <text x='1260' y='28'><tspan>2004</tspan></text>
    <text x='1260' y='970'><tspan>2004</tspan></text>
    <text x='1360' y='28'><tspan>2005</tspan></text>
    <text x='1360' y='970'><tspan>2005</tspan></text>
    <text x='1460' y='28'><tspan>2006</tspan></text>
    <text x='1460' y='970'><tspan>2006</tspan></text>
    <text x='1560' y='28'><tspan>2007</tspan></text>
    <text x='1560' y='970'><tspan>2007</tspan></text>
    <text x='1660' y='28'><tspan>2008</tspan></text>
    <text x='1660' y='970'><tspan>2008</tspan></text>
    <text x='1760' y='28'><tspan>2009</tspan></text>
    <text x='1760' y='970'><tspan>2009</tspan></text>
    <text x='1860' y='28'><tspan>2010</tspan></text>
    <text x='1860' y='970'><tspan>2010</tspan></text>
    <text x='1960' y='28'><tspan>2011</tspan></text>
    <text x='1960' y='970'><tspan>2011</tspan></text>
    <text x='2060' y='28'><tspan>2012</tspan></text>
    <text x='2060' y='970'><tspan>2012</tspan></text>
    <text x='2160' y='28'><tspan>2013</tspan></text>
    <text x='2160' y='970'><tspan>2013</tspan></text>
    <text x='2260' y='28'><tspan>2014</tspan></text>
    <text x='2260' y='970'><tspan>2014</tspan></text>
    <text x='2360' y='28'><tspan>2015</tspan></text>
    <text x='2360' y='970'><tspan>2015</tspan></text>
  </g>
</g>

<g inkscape:label='Infobox' inkscape:groupmode='layer' id='layer_infobox'
 style='stroke:none;fill:#000;font-family:Liberation Sans, Arial, Helvetica;-inkscape-font-specification:Liberation Sans, Arial, Helvetica;' >
  <rect x='30' y='90' width='610' height='140' rx='10' ry='10' fill='#000' filter='url(#__infobox_shadow)' opacity='0.6' />
  <rect x='30' y='90' width='610' height='140' rx='10' ry='10' fill='url(#__infobox_fill)' stroke='url(#__infobox_stroke)' stroke-width='2' />
  <text x='41' y='128'><tspan style='font-size:32px;font-weight:bold;'>The Gentoo Ecosystem</tspan></text>
  <text x='41' y='151'><tspan style='font-size:16px;'>Version 14.11</tspan></text>
  <text x='41' y='171'><tspan style='font-size:16px;'>D. Robbins, mitzip - <tspan style='font-weight:bold'>funtoo.org</tspan></tspan></text>
  <text x='41' y='191'><tspan style='font-size:16px;'>Thanks A. Lundqvist, D. Rodic - <tspan style='font-weight:bold'>futurist.se/gldt</tspan> for gnuclad</tspan></text>
  <text x='41' y='211'><tspan style='font-size:16px;'>Published under the GNU Free Documentation License</tspan></text>
</g>

<!-- BEGIN additional images -->

<g inkscape:label='Included PNG Images' inkscape:groupmode='layer' id='layer_included_png'>
</g>

<g inkscape:label='Included SVG Images' inkscape:groupmode='layer' id='layer_included_svg'>
  <g transform='translate(40,273)' >

 <g id="connector legend">
  <g>
    <rect
       style="fill:#ffffff;fill-opacity:0.7;fill-rule:nonzero;stroke:#6fb3f2;stroke-width:2"
       width="359" height="69"
       x="2" y="2" rx="9" ry="9" />
  </g>
  <g>
    <line x1="20" y1="22" x2="64" y2="22"
       style="opacity:0.6;stroke:#00f;stroke-width:1;stroke-dasharray:1, 1" />
    <line x1="20" y1="37" x2="64" y2="37"
       style="opacity:0.6;stroke:#00f;stroke-width:2;stroke-dasharray:2, 2" />
    <line x1="20" y1="52" x2="64" y2="52"
       style="opacity:0.6;stroke:#00f;stroke-width:4;stroke-dasharray:4, 4" />
  </g>
  <g style='font-size:12px;stroke:none;fill:#000;font-family:Liberation Sans, Arial, Helvetica;-inkscape-font-specification:Liberation Sans, Arial, Helvetica;' >
    <text><tspan x="73" y="25.7">Influence, developer switching</tspan>
    <tspan x="73" y="40.7">Rebasing, substantial code flow, project overtaking</tspan>
    <tspan x="73" y="55.7">Developer &amp; code sharing, project merging</tspan></text>
  </g>
 </g>

  </g>
  <g transform='translate(510,73)' >
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:zoom="1"
     inkscape:cx="19.97278"
     inkscape:cy="309.06551"
     inkscape:window-width="1276"
     inkscape:window-height="761"
     inkscape:window-x="0"
     inkscape:window-y="18"
     showgrid="false"
     fit-margin-top="10"
     fit-margin-left="10"
     fit-margin-right="10"
     fit-margin-bottom="10"
     inkscape:window-maximized="0"
     inkscape:current-layer="layer1" />
  <metadata
     id="metadata4">
    <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>Gentoo Logo Vector</dc:title>
        <dc:creator>
          <cc:Agent>
            <dc:title>Matteo 'Peach' Pescarin</dc:title>
          </cc:Agent>
        </dc:creator>
        <dc:description />
        <cc:license
           rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
        <dc:contributor>
          <cc:Agent>
            <dc:title>Daniel Robbins as creator of the original logo</dc:title>
          </cc:Agent>
        </dc:contributor>
      </cc:Work>
      <cc:License
         rdf:about="http://creativecommons.org/licenses/by-sa/2.5/">
        <cc:permits
           rdf:resource="http://creativecommons.org/ns#Reproduction" />
        <cc:permits
           rdf:resource="http://creativecommons.org/ns#Distribution" />
        <cc:requires
           rdf:resource="http://creativecommons.org/ns#Notice" />
        <cc:requires
           rdf:resource="http://creativecommons.org/ns#Attribution" />
        <cc:permits
           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
        <cc:requires
           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
      </cc:License>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:groupmode="layer"
     id="layer1"
     inkscape:label="Logo"
     transform="translate(-151.98946,-138.96728)">
    <g
       id="g955"
       transform="matrix(0.5,0,0,0.5,57.34678,66.78899)">
      <path
         style="fill:url(#linearGradient3848);fill-opacity:1;fill-rule:evenodd;stroke:none"
         d="M 200.875,16.125 C 164.49064,16.232807 135.64208,27.308416 121.84375,34.90625 81.2986,57.23184 51.08503,91.48157 41.0625,112.625 c -20.59426,43.38522 -18.71212,64.41241 3.84375,91.6875 17.11978,20.70165 79.625,53.28125 79.625,53.28125 0,0 -53.81866,47.22952 -74.6875,67 -20.86883,19.77048 -37.32736,48.31561 -26.34375,92.25 10.98359,43.93438 45.03125,59.3125 45.03125,59.3125 0,0 44.47342,26.36986 110.375,-2.1875 65.90159,-28.55735 114.78125,-59.3125 114.78125,-59.3125 0,0 97.20187,-66.43343 123.5625,-97.1875 26.36064,-30.75408 62.06914,-60.98007 45.59375,-110.40625 C 446.36835,157.6363 372.78125,91.75 372.78125,91.75 c 0,0 -73.36088,-56.09916 -126.1875,-69.84375 C 230.49542,17.717734 215.11236,16.082815 200.875,16.125 z m 26.875,151.5 c 2.48438,0 5,0.1875 7.25,0.6875 6.29066,1.39792 15.91113,6.65064 21.1875,9.71875 -2.24834,0.8834 -4.91795,1.57926 -8.09375,2.125 -8.18606,1.40672 -21.88308,-3.8654 -32.625,-11.34375 2.76198,-0.49872 7.45896,-1.1875 12.28125,-1.1875 z"
         transform="translate(172.79487,130.04567)"
         id="path919"
         inkscape:connector-curvature="0" />
      <path
         style="fill:url(#radialGradient3845);fill-opacity:1;fill-rule:evenodd;stroke:none"
         d="m 204.03125,25.25 c -0.87015,2.62e-4 -1.72708,0.0055 -2.59375,0.03125 -55.46717,1.64754 -91.71875,28.5625 -91.71875,28.5625 -11.53279,9.88523 -51.63269,39.26231 -60.96875,64.25 -9.40505,25.17235 -4.93544,45.60093 13.1875,58.78125 18.12294,13.18033 75.78125,37.34375 75.78125,37.34375 L 166.28125,228.5 c 0,0 -20.87656,24.71621 -42.84375,43.9375 -21.96719,19.2213 -30.44395,27.95542 -53.15625,51.15625 -13.17508,13.45848 -24.45743,27.48457 -27.59375,53.75 -2.28539,19.13924 2.30981,37.45189 15.03125,48.21875 12.72144,10.76686 30.22588,20.98342 65.1875,14.28125 40.72427,-7.80687 71.53125,-24.71875 71.53125,-24.71875 0,0 92.89963,-46.98158 142.875,-84.875 49.97538,-37.89341 100.625,-94.625 100.625,-94.625 0,0 17.53538,-11.53163 -1.5625,-46.21875 -19.54322,-35.49598 -76.94828,-85.97133 -96.71875,-100.25 C 320.19467,75.100655 258.85099,25.233484 204.03125,25.25 z M 227.75,167.625 c 2.48438,0 5,0.1875 7.25,0.6875 6.29066,1.39792 15.91113,6.65064 21.1875,9.71875 -2.24834,0.8834 -4.91795,1.57926 -8.09375,2.125 -8.18606,1.40672 -21.88308,-3.8654 -32.625,-11.34375 2.76198,-0.49872 7.45896,-1.1875 12.28125,-1.1875 z"
         transform="translate(172.79487,130.04567)"
         id="path2165"
         inkscape:connector-curvature="0" />
      <path
         style="fill:url(#radialGradient3840);fill-opacity:0.75;fill-rule:evenodd;stroke:none"
         d="m 215.71875,106.5625 c -20.31966,0.54918 -39.54918,20.32379 -39,36.25 0.54918,15.92622 20.875,32.96875 20.875,32.96875 0,0 31.2864,26.88422 59.84375,24.6875 28.55736,-2.19672 30.75,-19.75 30.75,-19.75 0,0 6.58709,-23.07788 -10.4375,-41.75 -17.02457,-18.6721 -41.7116,-32.95543 -62.03125,-32.40625 z M 227.75,167.625 c 2.48438,0 5,0.1875 7.25,0.6875 6.29066,1.39792 15.91113,6.65064 21.1875,9.71875 -2.24834,0.8834 -4.91795,1.57926 -8.09375,2.125 -8.18606,1.40672 -21.88308,-3.8654 -32.625,-11.34375 2.76198,-0.49872 7.45896,-1.1875 12.28125,-1.1875 z"
         transform="translate(172.79487,130.04567)"
         id="path2166"
         inkscape:connector-curvature="0" />
      <path
         style="fill:url(#radialGradient3832);fill-opacity:0.75;fill-rule:evenodd;stroke:none"
         d="m 224.5,126.34375 c -18.12294,0.27458 -26.37437,8.4378 -24.71875,23.0625 0.72243,6.38149 7.29895,13.56628 15.6875,19.40625 2.76198,-0.49872 7.45896,-1.1875 12.28125,-1.1875 2.48438,0 5,0.1875 7.25,0.6875 6.28265,1.39614 15.87556,6.649 21.15625,9.71875 0.007,0.004 0.0245,-0.004 0.0312,0 8.45065,-3.32036 10.77611,-9.19378 10.03125,-18.75 -0.90047,-11.55277 -24.145,-33.21209 -41.71875,-32.9375 z m 8.25,51.46875 c 1.28033,0.45954 2.54356,0.87374 3.78125,1.21875 -1.24375,-0.34576 -2.49431,-0.75712 -3.78125,-1.21875 z m 23.1875,0.3125 c -0.37866,0.14463 -0.785,0.27173 -1.1875,0.40625 0.40474,-0.13519 0.80731,-0.26122 1.1875,-0.40625 z m -7.84375,2.03125 c -0.51163,0.0879 -1.04113,0.15067 -1.59375,0.1875 0.55373,-0.0368 1.08124,-0.0994 1.59375,-0.1875 z"
         transform="translate(172.79487,130.04567)"
         id="path2167"
         inkscape:connector-curvature="0" />
      <path
         style="fill:url(#linearGradient3141);fill-opacity:0.75;fill-rule:evenodd;stroke:none"
         d="m 207.81825,281.09986 c 0,0 3.29507,17.57377 25.81146,33.49998 22.51638,15.92622 64.22753,31.93931 86.13869,44.64151 4.19889,2.43415 4.91042,6.04898 -2.97209,13.06009 -7.55417,6.71907 -12.48494,10.97187 -12.48494,10.97187 0,0 -63.08933,-34.93175 -79.84094,-50.68249 -27.07688,-25.45908 -16.65218,-51.49096 -16.65218,-51.49096 z"
         id="path2168"
         sodipodi:nodetypes="ccsscsc"
         inkscape:connector-curvature="0" />
      <path
         style="fill:url(#linearGradient3143);fill-opacity:0.75;fill-rule:evenodd;stroke:none"
         d="m 202.28984,543.29529 c 0,0 20.58737,37.55172 69.23327,37.65681 39.23215,0.0847 76.55506,-11.62851 135.09824,-41.1885 82.88906,-41.85287 146.58187,-92.16386 178.4343,-120.17204 31.85243,-28.00817 49.18028,-50.48357 49.18028,-50.48357 0,0 -18.37703,42.6967 -44.73767,67.95898 -26.36063,25.26227 -91.71304,82.92616 -154.86873,117.52449 -63.15569,34.59834 -106.15746,58.39556 -150.29852,56.23083 -41.87578,-2.05364 -61.6849,-26.57512 -70.47178,-38.10789 -8.78687,-11.53278 -11.56939,-29.41911 -11.56939,-29.41911 z"
         id="path2169"
         sodipodi:nodetypes="cssccccscc"
         inkscape:connector-curvature="0" />
      <path
         style="fill:url(#linearGradient3145);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3951)"
         d="m 315.4575,562.82917 c 0,0 38.44259,-8.23772 111.48351,-48.32784 73.04093,-40.09014 103.48277,-66.84963 125.41795,-85.02452 21.93518,-18.17489 54.25353,-45.05573 64.68794,-57.68687 10.43442,-12.63113 7.49577,-21.39018 3.04751,-23.77266 -3.4232,-1.83346 -13.11663,5.8693 -18.59672,11.93117 -5.48009,6.06187 -46.59776,44.16773 -69.66332,63.9382 -23.06556,19.77047 -87.86877,71.39338 -126.86055,93.90976 -38.99177,22.51637 -89.51632,45.03276 -89.51632,45.03276 z"
         id="path3421"
         sodipodi:nodetypes="cczcszccc"
         inkscape:connector-curvature="0" />
    </g>
  </g>
  </g>
</g>

<!-- END additional images -->

</svg>