Newer
Older
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="120.96888mm"
height="75.415146mm"
viewBox="0 0 120.96888 75.415146"
version="1.1"
id="svg1447"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="DD4hep_block_diagram2.svg">
<defs
id="defs1441">
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 0,0 H 793.998 V 494.999 H 0 Z"
id="path32"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath40">
<path
d="M 0,0 H 794 V 595 H 0 Z"
id="path42"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath48">
<path
d="M 0,0 H 794 V 595 H 0 Z"
id="path50"
inkscape:connector-curvature="0"
style="clip-rule:evenodd" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath620">
<path
d="m 397,8 v 0 579.1 0 z"
id="path622"
inkscape:connector-curvature="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="-311.39739"
inkscape:cy="-31.768907"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1025"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata1444">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-40.057225,-65.012663)">
<g
transform="matrix(0.15235414,0,0,-0.15235414,40.057225,140.42781)"
id="g22">
<g
id="g24">
<g
id="g26">
<g
clip-path="url(#clipPath30)"
id="g28">
<g
id="g34">
<g
id="g36">
<g
clip-path="url(#clipPath40)"
id="g38">
<g
id="g44">
<g
clip-path="url(#clipPath48)"
id="g46">
<path
inkscape:connector-curvature="0"
id="path52"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="M 0,595 H 794 V 0 H 0 Z" />
<path
inkscape:connector-curvature="0"
id="path54"
style="fill:#e6e64c;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="M 385.2,141.4 H 43.2 V 235 h 684 v -93.6 z" />
<g
id="g56">
<path
inkscape:connector-curvature="0"
id="path58"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 385.2,141.4 H 43.2 V 235 h 684 v -93.6 z" />
</g>
<g
id="g60">
<text
id="text62"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,50.3,192)">
<tspan
id="tspan64"
sodipodi:role="line"
y="0"
x="0 11.988 21.996 27.9 37.908001 48.888 58.896 63.882 74.970001 85.949997"
style="font-size:18px;line-height:1.25">Extensions</tspan>
</text>
</g>
<g
id="g66">
<text
id="text68"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,50.3,171.9)">
<tspan
id="tspan70"
sodipodi:role="line"
y="0"
x="0 13.986 25.073999 34.973999 41.976002"
style="font-size:18px;line-height:1.25">where</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path72"
style="fill:#ffffcc;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 191.3,390.7 c -4.5,0 -9.1,-4.6 -9.1,-9.1 v -36.7 c 0,-4.5 4.6,-9.1 9.1,-9.1 h 125.8 c 4.5,0 9.1,4.6 9.1,9.1 v 36.7 c 0,4.5 -4.6,9.1 -9.1,9.1 z" />
<g
id="g74">
<path
inkscape:connector-curvature="0"
id="path76"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 191.3,390.7 c -4.5,0 -9.1,-4.6 -9.1,-9.1 v -36.7 c 0,-4.5 4.6,-9.1 9.1,-9.1 h 125.8 c 4.5,0 9.1,4.6 9.1,9.1 v 36.7 c 0,4.5 -4.6,9.1 -9.1,9.1 z" />
</g>
<g
id="g78">
<path
inkscape:connector-curvature="0"
id="path80"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 182.2,390.7 Z" />
</g>
<g
id="g82">
<path
inkscape:connector-curvature="0"
id="path84"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 326.2,335.8 Z" />
</g>
<g
id="g86">
<text
id="text88"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,50.3,151.7)">
<tspan
id="tspan90"
sodipodi:role="line"
y="0"
x="0 7.0019999 16.902 27.882 38.970001 43.956001 50.958 60.966"
style="font-size:18px;line-height:1.25">required</tspan>
</text>
</g>
<g
id="g92">
<text
id="text94"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,197.9,375.8)">
<tspan
id="tspan96"
sodipodi:role="line"
y="0"
x="0 11.504 20.4 25.695999 34.495998 43.391998 48.688 58.383999 64.671997"
style="font-size:16px;line-height:1.25">Detector</tspan>
</text>
</g>
<g
id="g98">
<text
id="text100"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,197.9,357.8)">
<tspan
id="tspan102"
sodipodi:role="line"
y="0"
x="0 8.8959999 18.591999 28.288 37.183998 42.48 48.672001 58.368 67.264 72.559998 82.255997 88.447998"
style="font-size:16px;line-height:1.25">constructors</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path104"
style="fill:#c0f7c0;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 41.7,403.7 c 0,3.5 6.4,6.9 12.8,6.9 h 83.8 c 6.5,0 12.9,-3.4 12.9,-6.9 v -45.1 c 0,-3.4 -6.4,-6.9 -12.9,-6.9 H 54.5 c -6.4,0 -12.8,3.5 -12.8,6.9 z" />
<g
id="g106">
<path
inkscape:connector-curvature="0"
id="path108"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 41.7,403.7 c 0,3.5 6.4,6.9 12.8,6.9 h 83.8 c 6.5,0 12.9,-3.4 12.9,-6.9 v -45.1 c 0,-3.4 -6.4,-6.9 -12.9,-6.9 H 54.5 c -6.4,0 -12.8,3.5 -12.8,6.9 z" />
</g>
<g
id="g110">
<path
inkscape:connector-curvature="0"
id="path112"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 41.7,410.6 Z" />
</g>
<g
id="g114">
<path
inkscape:connector-curvature="0"
id="path116"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 151.2,351.7 Z" />
</g>
<g
id="g118">
<text
id="text120"
style="font-variant:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#b80047;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,269.9,339.8)">
<tspan
id="tspan122"
sodipodi:role="line"
y="0"
x="0 8.8959999 16.896 21.375999 30.176001 39.071999"
style="font-size:16px;line-height:1.25">python</tspan>
</text>
</g>
<g
id="g124">
<text
id="text126"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,46.7,393.8)">
<tspan
id="tspan128"
sodipodi:role="line"
y="0"
x="0 11.504 21.200001 35.391998 45.088001 53.984001 62.880001 68.176003"
style="font-size:16px;line-height:1.25">Compact</tspan>
</text>
</g>
<g
id="g130">
<text
id="text132"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,46.7,375.8)">
<tspan
id="tspan134"
sodipodi:role="line"
y="0"
x="0 9.6960001 18.591999 27.488001 36.383999 42.576 46.976002 56.672001 61.967999 66.447998 76.143997"
style="font-size:16px;line-height:1.25">description</tspan>
</text>
</g>
<g
id="g136" />
<path
inkscape:connector-curvature="0"
id="path138"
style="fill:#ffffcc;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 368.6,435.1 c -9,0 -18,-9 -18,-18 v -72 c 0,-9 9,-18.1 18,-18.1 h 176.8 c 8.9,0 18,9.1 18,18.1 v 72 c 0,9 -9.1,18 -18,18 z" />
<g
id="g140">
<path
inkscape:connector-curvature="0"
id="path142"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 368.6,435.1 c -9,0 -18,-9 -18,-18 v -72 c 0,-9 9,-18.1 18,-18.1 h 176.8 c 8.9,0 18,9.1 18,18.1 v 72 c 0,9 -9.1,18 -18,18 z" />
</g>
<g
id="g144">
<path
inkscape:connector-curvature="0"
id="path146"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 350.6,435.1 Z" />
</g>
<g
id="g148">
<path
inkscape:connector-curvature="0"
id="path150"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 563.4,327 Z" />
</g>
<g
id="g152">
<text
id="text154"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#b80047;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,118.7,357.8)">
<tspan
id="tspan156"
sodipodi:role="line"
y="0"
x="0 8.8959999 22.992001"
style="font-size:16px;line-height:1.25">xml</tspan>
</text>
</g>
<g
id="g158">
<text
id="text160"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,365.4,409.3)">
<tspan
id="tspan162"
sodipodi:role="line"
y="0"
x="0 17.006001 29.282 42.68 54.889999 63.470001 69.564003 81.774002 87.867996 103.752 115.962 123.266 135.54201 147.752 155.12199 168.52 177.01199"
style="font-size:22px;line-height:1.25">Generic Detector</tspan>
</text>
</g>
<g
id="g164">
<text
id="text166"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,365.4,384.7)">
<tspan
id="tspan168"
sodipodi:role="line"
y="0"
x="0 15.796 28.072001 40.282001 52.492001 61.071999 67.166 80.564003 87.867996 94.050003 107.448 120.846 127.028 145.222 158.70799 172.106 184.31599"
style="font-size:22px;line-height:1.25">Description Model</tspan>
</text>
</g>
<g
id="g170">
<text
id="text172"
style="font-variant:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,365.4,351.6)">
<tspan
id="tspan174"
sodipodi:role="line"
y="0"
x="0 9.2959995 17.08 24.164 31.948 39.731998 43.722 51.506001 59.290001 63.181999 73.374001 84.363998 95.255997 103.754 107.744 116.242 127.134 134.918"
style="font-size:14px;line-height:1.25">Based on ROOT TGeo</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path176"
style="fill:#ffffcc;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 184.1,407.8 c -4.5,0 -9.1,-4.6 -9.1,-9.1 V 362 c 0,-4.5 4.6,-9.1 9.1,-9.1 h 125.8 c 4.5,0 9.1,4.6 9.1,9.1 v 36.7 c 0,4.5 -4.6,9.1 -9.1,9.1 z" />
<g
id="g178">
<path
inkscape:connector-curvature="0"
id="path180"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 184.1,407.8 c -4.5,0 -9.1,-4.6 -9.1,-9.1 V 362 c 0,-4.5 4.6,-9.1 9.1,-9.1 h 125.8 c 4.5,0 9.1,4.6 9.1,9.1 v 36.7 c 0,4.5 -4.6,9.1 -9.1,9.1 z" />
</g>
<g
id="g182">
<path
inkscape:connector-curvature="0"
id="path184"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 175,407.8 Z" />
</g>
<g
id="g186">
<path
inkscape:connector-curvature="0"
id="path188"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 319,352.9 Z" />
</g>
<g
id="g190" />
<g
id="g192">
<text
id="text194"
style="font-variant:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#b80047;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,529.2,335.9)">
<tspan
id="tspan196"
sodipodi:role="line"
y="0"
x="0 7.0840001 15.274"
style="font-size:14px;line-height:1.25">c++</tspan>
</text>
</g>
<g
id="g198">
<text
id="text200"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,183.3,392.9)">
<tspan
id="tspan202"
sodipodi:role="line"
y="0"
x="0 11.504 20.4 25.695999 34.495998 43.391998 48.688 58.383999 64.671997"
style="font-size:16px;line-height:1.25">Detector</tspan>
</text>
</g>
<g
id="g204">
<text
id="text206"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,183.3,374.9)">
<tspan
id="tspan208"
sodipodi:role="line"
y="0"
x="0 8.8959999 18.591999 28.288 37.183998 42.48 48.672001 58.368 67.264 72.559998 82.255997 88.447998"
style="font-size:16px;line-height:1.25">constructors</tspan>
</text>
</g>
<g
id="g210">
<path
inkscape:connector-curvature="0"
id="path212"
style="fill:none;stroke:#000000;stroke-width:1.41499996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 319,380.4 16.2,0.3" />
</g>
<path
inkscape:connector-curvature="0"
id="path214"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 350.6,381.1 -16.3,5 0.3,-10.8 z" />
<g
id="g216">
<path
inkscape:connector-curvature="0"
id="path218"
style="fill:none;stroke:#000000;stroke-width:0.0849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 350.6,381.1 -16.3,5 0.3,-10.8 z" />
</g>
<g
id="g220">
<path
inkscape:connector-curvature="0"
id="path222"
style="fill:none;stroke:#000000;stroke-width:1.41499996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 151.2,381.2 h 14.2 l -3.3,-0.6" />
</g>
<path
inkscape:connector-curvature="0"
id="path224"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 175,380.4 -16,5.8 -0.3,-10.8 z" />
<g
id="g226">
<path
inkscape:connector-curvature="0"
id="path228"
style="fill:none;stroke:#000000;stroke-width:0.0849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 175,380.4 -16,5.8 -0.3,-10.8 z" />
</g>
<path
inkscape:connector-curvature="0"
id="path230"
style="fill:#83fdfd;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 165.6,301.9 c 0,2.6 6.4,5.1 12.9,5.1 h 83.8 c 6.4,0 12.9,-2.5 12.9,-5.1 v -33 c 0,-2.5 -6.5,-5.1 -12.9,-5.1 h -83.8 c -6.5,0 -12.9,2.6 -12.9,5.1 z" />
<g
id="g232">
<path
inkscape:connector-curvature="0"
id="path234"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 165.6,301.9 c 0,2.6 6.4,5.1 12.9,5.1 h 83.8 c 6.4,0 12.9,-2.5 12.9,-5.1 v -33 c 0,-2.5 -6.5,-5.1 -12.9,-5.1 h -83.8 c -6.5,0 -12.9,2.6 -12.9,5.1 z" />
</g>
<g
id="g236">
<path
inkscape:connector-curvature="0"
id="path238"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 165.6,307 Z" />
</g>
<g
id="g240">
<path
inkscape:connector-curvature="0"
id="path242"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 275.2,263.8 Z" />
</g>
<g
id="g244">
<text
id="text246"
style="font-variant:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#b80047;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,291.3,356.9)">
<tspan
id="tspan248"
sodipodi:role="line"
y="0"
x="0 8 17.392"
style="font-size:16px;line-height:1.25">c++</tspan>
</text>
</g>
<g
id="g250">
<text
id="text252"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,176.7,289)">
<tspan
id="tspan254"
sodipodi:role="line"
y="0"
x="0 12.304 21.200001 30.896 45.088001 53.984001 59.279999 65.472"
style="font-size:16px;line-height:1.25">Geometry</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path256"
style="fill:#ffffcc;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 306,217.1 c -3.6,0 -7.2,-3.6 -7.2,-7.2 v -28.8 c 0,-3.6 3.6,-7.2 7.2,-7.2 h 115.2 c 3.6,0 7.2,3.6 7.2,7.2 v 28.8 c 0,3.6 -3.6,7.2 -7.2,7.2 z" />
<g
id="g258">
<path
inkscape:connector-curvature="0"
id="path260"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 306,217.1 c -3.6,0 -7.2,-3.6 -7.2,-7.2 v -28.8 c 0,-3.6 3.6,-7.2 7.2,-7.2 h 115.2 c 3.6,0 7.2,3.6 7.2,7.2 v 28.8 c 0,3.6 -3.6,7.2 -7.2,7.2 z" />
</g>
<g
id="g262">
<path
inkscape:connector-curvature="0"
id="path264"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 298.8,217.1 Z" />
</g>
<g
id="g266">
<path
inkscape:connector-curvature="0"
id="path268"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 428.5,173.9 Z" />
</g>
<g
id="g270">
<text
id="text272"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,176.7,271)">
<tspan
id="tspan274"
sodipodi:role="line"
y="0"
x="0 11.504 15.904 24.799999 34.495998 38.976002 47.872002"
style="font-size:16px;line-height:1.25">Display</tspan>
</text>
</g>
<g
id="g276">
<text
id="text278"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,315.3,199.1)">
<tspan
id="tspan280"
sodipodi:role="line"
y="0"
x="0 9.6960001 22.096001 30.992001 40.688 49.487999 58.880001 68.272003 72.671997 85.071999"
style="font-size:16px;line-height:1.25">TGeo => G4</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path282"
style="fill:#ffffcc;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 440,217.1 c -3.6,0 -7.2,-3.6 -7.2,-7.2 v -28.8 c 0,-3.6 3.6,-7.2 7.2,-7.2 h 122.4 c 3.6,0 7.2,3.6 7.2,7.2 v 28.8 c 0,3.6 -3.6,7.2 -7.2,7.2 z" />
<g
id="g284">
<path
inkscape:connector-curvature="0"
id="path286"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 440,217.1 c -3.6,0 -7.2,-3.6 -7.2,-7.2 v -28.8 c 0,-3.6 3.6,-7.2 7.2,-7.2 h 122.4 c 3.6,0 7.2,3.6 7.2,7.2 v 28.8 c 0,3.6 -3.6,7.2 -7.2,7.2 z" />
</g>
<g
id="g288">
<path
inkscape:connector-curvature="0"
id="path290"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 432.8,217.1 Z" />
</g>
<g
id="g292">
<path
inkscape:connector-curvature="0"
id="path294"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 569.6,173.9 Z" />
</g>
<g
id="g296">
<text
id="text298"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,315.3,181.1)">
<tspan
id="tspan300"
sodipodi:role="line"
y="0"
x="0 8.8959999 18.591999 28.288 37.183998 46.080002 52.271999 57.568001 66.463997 72.655998"
style="font-size:16px;line-height:1.25">converters</tspan>
</text>
</g>
<g
id="g302">
<text
id="text304"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,449.3,199.1)">
<tspan
id="tspan306"
sodipodi:role="line"
y="0"
x="0 11.504 20.4 29.296 38.992001 48.688 57.584 62.880001 69.071999 78.767998 87.664001 92.959999 97.360001 107.056"
style="font-size:16px;line-height:1.25">Reconstruction</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path308"
style="fill:#ffffcc;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 581.6,217.1 c -3.6,0 -7.2,-3.6 -7.2,-7.2 v -28.8 c 0,-3.6 3.6,-7.2 7.2,-7.2 h 115.2 c 3.6,0 7.2,3.6 7.2,7.2 v 28.8 c 0,3.6 -3.6,7.2 -7.2,7.2 z" />
<g
id="g310">
<path
inkscape:connector-curvature="0"
id="path312"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 581.6,217.1 c -3.6,0 -7.2,-3.6 -7.2,-7.2 v -28.8 c 0,-3.6 3.6,-7.2 7.2,-7.2 h 115.2 c 3.6,0 7.2,3.6 7.2,7.2 v 28.8 c 0,3.6 -3.6,7.2 -7.2,7.2 z" />
</g>
<g
id="g314">
<path
inkscape:connector-curvature="0"
id="path316"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 574.4,217.1 Z" />
</g>
<g
id="g318">
<path
inkscape:connector-curvature="0"
id="path320"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 704,173.9 Z" />
</g>
<g
id="g322">
<text
id="text324"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,449.3,181.1)">
<tspan
id="tspan326"
sodipodi:role="line"
y="0"
x="0 10.688 19.584 24.784 33.68 43.375999 52.271999 56.672001 66.463997 76.160004"
style="font-size:16px;line-height:1.25">Extensions</tspan>
</text>
</g>
<g
id="g328">
<text
id="text330"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,590.9,199.1)">
<tspan
id="tspan332"
sodipodi:role="line"
y="0"
x="0 11.504 21.200001 30.096001 34.495998 43.391998 52.287998 56.688"
style="font-size:16px;line-height:1.25">Analysis</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path334"
style="fill:#83fdfd;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 434.3,109.6 c 0,3.4 7.9,6.7 15.8,6.7 H 553 c 7.9,0 15.8,-3.3 15.8,-6.7 V 65.5 c 0,-3.4 -7.9,-6.8 -15.8,-6.8 H 450.1 c -7.9,0 -15.8,3.4 -15.8,6.8 z" />
<g
id="g336">
<path
inkscape:connector-curvature="0"
id="path338"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 434.3,109.6 c 0,3.4 7.9,6.7 15.8,6.7 H 553 c 7.9,0 15.8,-3.3 15.8,-6.7 V 65.5 c 0,-3.4 -7.9,-6.8 -15.8,-6.8 H 450.1 c -7.9,0 -15.8,3.4 -15.8,6.8 z" />
</g>
<g
id="g340">
<path
inkscape:connector-curvature="0"
id="path342"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 434.3,116.3 Z" />
</g>
<g
id="g344">
<path
inkscape:connector-curvature="0"
id="path346"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 568.8,58.7 Z" />
</g>
<g
id="g348">
<text
id="text350"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,590.9,181.1)">
<tspan
id="tspan352"
sodipodi:role="line"
y="0"
x="0 10.688 19.488001 24.784 33.68 43.375999 52.271999 56.672001 66.463997 76.160004"
style="font-size:16px;line-height:1.25">Extensions</tspan>
</text>
</g>
<g
id="g354">
<text
id="text356"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,443.1,91.1)">
<tspan
id="tspan358"
sodipodi:role="line"
y="0"
x="0 11.504 20.4 29.296 38.992001 48.688 57.584 62.880001 69.071999 78.767998 87.664001 92.959999 97.360001 107.056"
style="font-size:16px;line-height:1.25">Reconstruction</tspan>
</text>
</g>
<path
inkscape:connector-curvature="0"
id="path360"
style="fill:#83fdfd;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 575.9,109.6 c 0,3.4 7.6,6.7 15.3,6.7 h 99.1 c 7.6,0 15.3,-3.3 15.3,-6.7 V 65.5 c 0,-3.4 -7.7,-6.8 -15.3,-6.8 h -99.1 c -7.7,0 -15.3,3.4 -15.3,6.8 z" />
<g
id="g362">
<path
inkscape:connector-curvature="0"
id="path364"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 575.9,109.6 c 0,3.4 7.6,6.7 15.3,6.7 h 99.1 c 7.6,0 15.3,-3.3 15.3,-6.7 V 65.5 c 0,-3.4 -7.7,-6.8 -15.3,-6.8 h -99.1 c -7.7,0 -15.3,3.4 -15.3,6.8 z" />
</g>
<g
id="g366">
<path
inkscape:connector-curvature="0"
id="path368"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 575.9,116.3 Z" />
</g>
<g
id="g370">
<path
inkscape:connector-curvature="0"
id="path372"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 705.6,58.7 Z" />
</g>
<g
id="g374">
<text
id="text376"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,443.1,73.1)">
<tspan
id="tspan378"
sodipodi:role="line"
y="0"
x="0 10.688 16.879999 26.576 36.368 42.560001 51.456001"
style="font-size:16px;line-height:1.25">Program</tspan>
</text>
</g>
<g
id="g380">
<text
id="text382"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,587.8,91.1)">
<tspan
id="tspan384"
sodipodi:role="line"
y="0"
x="0 11.504 21.200001 30.096001 34.495998 43.391998 52.287998 56.688"
style="font-size:16px;line-height:1.25">Analysis</tspan>
</text>
</g>
<g
id="g386">
<path
inkscape:connector-curvature="0"
id="path388"
style="fill:none;stroke:#000000;stroke-width:1.41499996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 457,327.1 290.2,288.9" />
</g>
<path
inkscape:connector-curvature="0"
id="path390"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 275.1,285.4 17,-1.6 -2.4,10.5 z" />
<g
id="g392">
<path
inkscape:connector-curvature="0"
id="path394"
style="fill:none;stroke:#000000;stroke-width:0.0849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 275.1,285.4 17,-1.6 -2.4,10.5 z" />
</g>
<path
inkscape:connector-curvature="0"
id="path396"
style="fill:#83fdfd;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 299.8,109.6 c 0,3.4 7.6,6.7 15.2,6.7 h 99.2 c 7.6,0 15.2,-3.3 15.2,-6.7 V 65.5 c 0,-3.4 -7.6,-6.8 -15.2,-6.8 H 315 c -7.6,0 -15.2,3.4 -15.2,6.8 z" />
<g
id="g398">
<path
inkscape:connector-curvature="0"
id="path400"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 299.8,109.6 c 0,3.4 7.6,6.7 15.2,6.7 h 99.2 c 7.6,0 15.2,-3.3 15.2,-6.7 V 65.5 c 0,-3.4 -7.6,-6.8 -15.2,-6.8 H 315 c -7.6,0 -15.2,3.4 -15.2,6.8 z" />
</g>
<g
id="g402">
<path
inkscape:connector-curvature="0"
id="path404"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 299.8,116.3 Z" />
</g>
<g
id="g406">
<path
inkscape:connector-curvature="0"
id="path408"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 429.4,58.7 Z" />
</g>
<g
id="g410">
<text
id="text412"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,587.8,73.1)">
<tspan
id="tspan414"
sodipodi:role="line"
y="0"
x="0 10.688 16.879999 26.576 36.368 42.560001 51.456001"
style="font-size:16px;line-height:1.25">Program</tspan>
</text>
</g>
<g
id="g416">
<text
id="text418"
style="font-variant:normal;font-weight:bold;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
transform="matrix(1,0,0,-1,311.7,91.1)">
<tspan
id="tspan420"
sodipodi:role="line"
y="0"
x="0 12.4 21.200001 30.096001 39.792 45.088001"
style="font-size:16px;line-height:1.25">Geant4</tspan>
</text>
</g>
<g
id="g422">
<path
inkscape:connector-curvature="0"
id="path424"
style="fill:none;stroke:#000000;stroke-width:1.41499996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 457,327.1 168.9,-102" />
</g>
<path
inkscape:connector-curvature="0"
id="path426"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 639.2,217.1 -11.1,13 -5.6,-9.2 z" />
<g
id="g428">
<path
inkscape:connector-curvature="0"
id="path430"
style="fill:none;stroke:#000000;stroke-width:0.0849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 639.2,217.1 -11.1,13 -5.6,-9.2 z" />
</g>
<g
id="g432">
<path
inkscape:connector-curvature="0"
id="path434"
style="fill:none;stroke:#000000;stroke-width:1.41499996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 457,327.1 38.4,-95.6" />
</g>
<path
inkscape:connector-curvature="0"
id="path436"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 501.2,217.1 -1,17.1 -10.1,-4 z" />
<g
id="g438">
<path
inkscape:connector-curvature="0"
id="path440"
style="fill:none;stroke:#000000;stroke-width:0.0849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 501.2,217.1 -1,17.1 -10.1,-4 z" />
</g>
<g
id="g442">
<path
inkscape:connector-curvature="0"
id="path444"
style="fill:none;stroke:#000000;stroke-width:1.41499996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="M 457,327.1 373.7,228.9" />
</g>
<path
inkscape:connector-curvature="0"
id="path446"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 363.6,217.1 14.6,8.9 -8.2,7 z" />
<g
id="g448">
<path
inkscape:connector-curvature="0"
id="path450"
style="fill:none;stroke:#000000;stroke-width:0.0849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 363.6,217.1 14.6,8.9 -8.2,7 z" />
</g>
<path
inkscape:connector-curvature="0"
id="path452"
style="fill:#ffffcc;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 164.3,209.5 c 0,3.8 7.6,7.6 15.2,7.6 h 99.2 c 7.6,0 15.2,-3.8 15.2,-7.6 v -49.6 c 0,-3.8 -7.6,-7.6 -15.2,-7.6 h -99.2 c -7.6,0 -15.2,3.8 -15.2,7.6 z" />
<g
id="g454">
<path
inkscape:connector-curvature="0"
id="path456"
style="fill:none;stroke:#808080;stroke-width:1.85240924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 164.3,209.5 c 0,3.8 7.6,7.6 15.2,7.6 h 99.2 c 7.6,0 15.2,-3.8 15.2,-7.6 v -49.6 c 0,-3.8 -7.6,-7.6 -15.2,-7.6 h -99.2 c -7.6,0 -15.2,3.8 -15.2,7.6 z" />