aboutsummaryrefslogtreecommitdiffstats
path: root/doc/guides/sample_app_ug/img/ip_pipelines_2.svg
blob: 5252b1747ca567b2c50b44f6baf13ec8c615521e (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
<?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="520.43439"
   height="438.61716"
   id="svg5382"
   version="1.1"
   inkscape:version="0.48.4 r9939"
   sodipodi:docname="ipPipelines_2_update.svg">
  <defs
     id="defs5384">
    <marker
       inkscape:stockid="Arrow1Lstart"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="Arrow1Lstart"
       style="overflow:visible">
      <path
         id="path4018"
         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
         transform="scale(0.8) translate(12.5,0)" />
    </marker>
    <clipPath
       id="clipEmfPath1"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5395"
         height="465.83859"
         width="585"
         y="0"
         x="0" />
    </clipPath>
    <clipPath
       id="clipEmfPath2"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5398"
         height="0"
         width="37.650002"
         y="202.92325"
         x="120.9" />
    </clipPath>
    <clipPath
       id="clipEmfPath3"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5401"
         height="186.87537"
         width="391.64999"
         y="247.76733"
         x="49.650002" />
    </clipPath>
    <clipPath
       id="clipEmfPath4"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5404"
         height="93.137718"
         width="142.64999"
         y="280.01309"
         x="72.150002" />
    </clipPath>
    <clipPath
       id="clipEmfPath5"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5407"
         height="13.648201"
         width="45.900002"
         y="308.50934"
         x="76.650002" />
    </clipPath>
    <clipPath
       id="clipEmfPath6"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5410"
         height="13.648201"
         width="83.400002"
         y="308.50934"
         x="126.15" />
    </clipPath>
    <clipPath
       id="clipEmfPath7"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5413"
         height="90.888016"
         width="161.39999"
         y="333.25607"
         x="257.39999" />
    </clipPath>
    <clipPath
       id="clipEmfPath8"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5416"
         height="13.648201"
         width="54.599998"
         y="364.75192"
         x="262.64999" />
    </clipPath>
    <clipPath
       id="clipEmfPath9"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5419"
         height="13.648201"
         width="90.150002"
         y="364.75192"
         x="321.60001" />
    </clipPath>
    <clipPath
       id="clipEmfPath10"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5422"
         height="133.63239"
         width="240"
         y="75.590034"
         x="240" />
    </clipPath>
    <clipPath
       id="clipEmfPath11"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5425"
         height="137.3819"
         width="191.85001"
         y="20.847252"
         x="39.75" />
    </clipPath>
    <clipPath
       id="clipEmfPath12"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5428"
         height="93.137718"
         width="142.64999"
         y="54.592804"
         x="66.449997" />
    </clipPath>
    <clipPath
       id="clipEmfPath13"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5431"
         height="13.648201"
         width="45.900002"
         y="83.08905"
         x="70.949997" />
    </clipPath>
    <clipPath
       id="clipEmfPath14"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5434"
         height="13.648201"
         width="83.400002"
         y="83.08905"
         x="120.45" />
    </clipPath>
    <clipPath
       id="clipEmfPath15"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5437"
         height="90.888016"
         width="161.39999"
         y="107.83578"
         x="298.95001" />
    </clipPath>
    <clipPath
       id="clipEmfPath16"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5440"
         height="13.648201"
         width="54.599998"
         y="139.33163"
         x="304.20001" />
    </clipPath>
    <clipPath
       id="clipEmfPath17"
       clipPathUnits="userSpaceOnUse">
      <rect
         id="rect5443"
         height="13.648201"
         width="90.150002"
         y="139.33163"
         x="363.29999" />
    </clipPath>
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.8"
     inkscape:cx="223.36548"
     inkscape:cy="227.70504"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="false"
     inkscape:window-width="1083"
     inkscape:window-height="851"
     inkscape:window-x="40"
     inkscape:window-y="767"
     inkscape:window-maximized="0"
     fit-margin-top="0"
     fit-margin-left="0"
     fit-margin-right="0"
     fit-margin-bottom="0" />
  <metadata
     id="metadata5387">
    <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(-132.40505,-338.57503)">
    <text
       xml:space="preserve"
       x="652.83942"
       y="777.1922"
       style="font-size:13.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:#000000;font-family:Calibri"
       id="text5447"> </text>
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath2)"
       d="m 49.275,242.89298 0,196.4741 392.25,0 0,-196.4741 -392.25,0 z"
       id="path5449"
       transform="translate(112.83943,322.9021)" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:1.002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.006,1.002;stroke-dashoffset:0"
       id="rect4458-1-7"
       width="393.01892"
       height="197.3044"
       x="161.22458"
       y="565.61206" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-9"
       width="15.714286"
       height="18.571428"
       x="153.47649"
       y="664.6922" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-4"
       width="15.714286"
       height="18.571428"
       x="547.40503"
       y="689.6922" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath3)"
       d="m 71.775,275.13873 0,102.73646 143.25,0 0,-102.73646 -143.25,0 z"
       id="path5453"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 184.61443,598.04083 143.25,0 0,102.73646 -143.25,0 z"
       id="path5455" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath4)"
       d="m 76.275,303.63497 0,23.24694 46.5,0 0,-23.24694 -46.5,0 z"
       id="path5457"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 189.11443,626.53707 46.5,0 0,23.24694 -46.5,0 z"
       id="path5459" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath5)"
       d="m 125.775,303.63497 0,23.24694 84,0 0,-23.24694 -84,0 z"
       id="path5461"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 238.61443,626.53707 84,0 0,23.24694 -84,0 z"
       id="path5463" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath6)"
       d="m 76.275,329.88151 0,41.99447 46.5,0 0,-41.99447 -46.5,0 z"
       id="path5465"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 189.11443,652.78361 46.5,0 0,41.99447 -46.5,0 z"
       id="path5467" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 238.61443,652.78361 0,42.74437 84,0 0,-42.74437 -84,0 z"
       id="path5469" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 238.61443,652.78361 84,0 0,42.74437 -84,0 z"
       id="path5471" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 369.86443,651.28381 0,100.48676 162,0 0,-100.48676 -162,0 z"
       id="path5473" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 369.86443,651.28381 162,0 0,100.48676 -162,0 z"
       id="path5475" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath7)"
       d="m 262.275,359.87756 0,23.24694 55.2,0 0,-23.24694 -55.2,0 z"
       id="path5477"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 375.11443,682.77966 55.2,0 0,23.24694 -55.2,0 z"
       id="path5479" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath8)"
       d="m 321.225,359.87756 0,23.24694 90.9,0 0,-23.24694 -90.9,0 z"
       id="path5481"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 434.06443,682.77966 90.9,0 0,23.24694 -90.9,0 z"
       id="path5483" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath9)"
       d="m 261.525,386.874 0,36.74516 55.95,0 0,-36.74516 -55.95,0 z"
       id="path5485"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 374.36443,709.7761 55.95,0 0,36.74516 -55.95,0 z"
       id="path5487" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 434.81443,709.7761 0,36.74516 90.15,0 0,-36.74516 -90.15,0 z"
       id="path5489" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 434.81443,709.7761 90.15,0 0,36.74516 -90.15,0 z"
       id="path5491" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-0"
       width="15.714286"
       height="18.571428"
       x="152.76219"
       y="617.90649" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 155.21443,618.13818 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.74154 -3.9,0 z"
       id="path5493" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 159.11443,617.9882 3.13125,0 c 0.35625,0 0.61875,0.28121 0.61875,0.63742 l 0,16.91027 -3.75,0 z"
       id="path5495" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 162.86443,618.13818 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.74154 -3.9,0 z"
       id="path5497" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 159.11443,665.23197 3.13125,0 c 0.35625,0 0.61875,0.28122 0.61875,0.63742 l 0,16.91027 -3.75,0 z"
       id="path5501" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 162.86443,665.38195 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.74154 -3.9,0 z"
       id="path5503" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.05625,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 138.13318,627.94314 12.1125,-0.33746 -0.0375,-1.25608 -12.09375,0.33745 0.0188,1.25609 z m 12.09375,-0.95612 -2.4,3.80574 7.3875,-3.95573 -7.59375,-3.52453 2.60625,3.67452 z"
       id="path5505" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.05625,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 167.53318,627.94314 12.1125,-0.33746 -0.0375,-1.25608 -12.09375,0.33745 0.0187,1.25609 z m 12.09375,-0.95612 -2.4,3.80574 7.3875,-3.95573 -7.59375,-3.52453 2.60625,3.67452 z"
       id="path5507" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.05625,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 166.78318,674.43701 12.1125,-0.33746 -0.0375,-1.25608 -12.09375,0.33746 0.0187,1.25608 z m 12.09375,-0.95612 -2.4,3.80574 7.3875,-3.95572 -7.59375,-3.52454 2.60625,3.67452 z"
       id="path5509" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.05625,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 138.13318,674.43701 12.1125,-0.33746 -0.0375,-1.25608 -12.09375,0.33746 0.0188,1.25608 z m 12.09375,-0.95612 -2.4,3.80574 7.3875,-3.95572 -7.59375,-3.52454 2.60625,3.67452 z"
       id="path5511" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 155.21443,665.38195 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.74154 -3.9,0 z"
       id="path5499" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945"
       width="15.714286"
       height="18.571428"
       x="547.40509"
       y="612.90656" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 548.96443,613.33881 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.89152 -3.9,0 z"
       id="path5513" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 552.86443,613.33881 3.13125,0 c 0.35625,0 0.61875,0.28122 0.61875,0.63742 l 0,16.76029 -3.75,0 z"
       id="path5515" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 556.61443,613.33881 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.89152 -3.9,0 z"
       id="path5517" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.01875,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 328.76443,621.419 215.04375,0 0,1.25608 -215.04375,0 0,-1.25608 z m 215.04375,0.61867 -2.49375,-3.74951 7.5,3.74951 -7.5,3.7495 2.49375,-3.7495 z"
       id="path5519" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.05625,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 560.38318,623.14377 12.1125,-0.33745 -0.0375,-1.25609 -12.09375,0.33746 0.0188,1.25608 z m 12.09375,-0.95612 -2.4,3.80575 7.3875,-3.95573 -7.59375,-3.52454 2.60625,3.67452 z"
       id="path5521" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.01875,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 329.36443,682.16099 20.86875,0 0,29.93981 -0.61875,-0.63742 15.225,0 0,1.25608 -15.8625,0 0,-29.9398 0.6375,0.63742 -20.25,0 0,-1.25609 z m 35.475,29.93981 -2.49375,-3.74951 7.5,3.74951 -7.5,3.7495 2.49375,-3.7495 z"
       id="path5523" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 548.81443,690.57863 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.89152 -3.9,0 z"
       id="path5525" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 552.71443,690.57863 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65617 l 0,16.74154 -3.9,0 z"
       id="path5527" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 556.61443,690.57863 3.13125,0 c 0.35625,0 0.61875,0.28122 0.61875,0.63742 l 0,16.91027 -3.75,0 z"
       id="path5529" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.01875,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 530.98318,699.18375 12.1125,-0.33746 -0.0375,-1.25608 -12.09375,0.33745 0.0188,1.25609 z m 12.09375,-0.95613 -2.4,3.80575 7.3875,-3.95573 -7.59375,-3.52453 2.60625,3.67451 z"
       id="path5531" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.01875,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 561.88318,698.73381 12.1125,-0.33746 -0.0375,-1.25608 -12.09375,0.33745 0.0188,1.25609 z m 12.09375,-0.95613 -2.4,3.80575 7.3875,-3.95573 -7.59375,-3.52453 2.60625,3.67451 z"
       id="path5533" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:1.03885794;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11657381,1.03885794;stroke-dashoffset:0"
       id="rect4458-1"
       width="212.04707"
       height="146.38971"
       x="384.98563"
       y="391.8602" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-48"
       width="15.714286"
       height="18.571428"
       x="586.69073"
       y="463.62076" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath10)"
       d="m 39.225,15.972894 0,146.980626 192.6,0 0,-146.980626 -192.6,0 z"
       id="path5539"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath11)"
       d="m 66.075,49.718446 0,102.736454 143.25,0 0,-102.736454 -143.25,0 z"
       id="path5543"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 178.91443,372.62055 143.25,0 0,102.73645 -143.25,0 z"
       id="path5545" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath12)"
       d="m 70.575,78.21469 0,23.24694 46.5,0 0,-23.24694 -46.5,0 z"
       id="path5547"
       transform="translate(112.83943,322.9021)" />
    <rect
       style="fill:none;stroke:#000000;stroke-width:0.99358916;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.98076741, 0.99358914;stroke-dashoffset:0"
       id="rect4458"
       width="193.90961"
       height="146.43498"
       x="155.25899"
       y="342.90326" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 183.41443,401.11679 46.5,0 0,23.24694 -46.5,0 z"
       id="path5549" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath13)"
       d="m 120.075,78.21469 0,23.24694 84,0 0,-23.24694 -84,0 z"
       id="path5551"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 232.91443,401.11679 84,0 0,23.24694 -84,0 z"
       id="path5553" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath14)"
       d="m 70.575,104.46123 0,41.99446 46.5,0 0,-41.99446 -46.5,0 z"
       id="path5555"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 183.41443,427.36333 46.5,0 0,41.99446 -46.5,0 z"
       id="path5557" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 232.91443,427.36333 0,42.74437 84,0 0,-42.74437 -84,0 z"
       id="path5559" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 232.91443,427.36333 84,0 0,42.74437 -84,0 z"
       id="path5561" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 408.38397,422.83307 0,100.48675 162,0 0,-100.48675 -162,0 z"
       id="path5563" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 408.38397,422.83307 162,0 0,100.48675 -162,0 z"
       id="path5565" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath15)"
       d="m 303.825,134.45728 0,23.24693 55.2,0 0,-23.24693 -55.2,0 z"
       id="path5567"
       transform="translate(109.80897,319.87164)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 413.63397,454.32892 55.2,0 0,23.24693 -55.2,0 z"
       id="path5569" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath16)"
       d="m 362.775,134.45728 0,23.24693 90.9,0 0,-23.24693 -90.9,0 z"
       id="path5571"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 475.58964,454.32892 90.9,0 0,23.24693 -90.9,0 z"
       id="path5573" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       clip-path="url(#clipEmfPath17)"
       d="m 303.075,161.45372 0,36.74515 55.95,0 0,-36.74515 -55.95,0 z"
       id="path5575"
       transform="translate(112.83943,322.9021)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 412.88397,481.32536 55.95,0 0,36.74515 -55.95,0 z"
       id="path5577" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 473.33397,481.32536 0,36.74515 90.15,0 0,-36.74515 -90.15,0 z"
       id="path5579" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:0.60000002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:none"
       d="m 473.33397,481.32536 90.15,0 0,36.74515 -90.15,0 z"
       id="path5581" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-45"
       width="15.714286"
       height="18.571428"
       x="147.94077"
       y="392.37076" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 149.51443,392.7179 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.74154 -3.9,0 z"
       id="path5583" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 153.41443,392.56792 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.89152 -3.9,0 z"
       id="path5585" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 157.31443,392.7179 3.13125,0 c 0.34687,0 0.61875,0.28121 0.61875,0.62804 l 0,16.76966 -3.75,0 z"
       id="path5587" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-5"
       width="15.714286"
       height="18.571428"
       x="147.76219"
       y="439.6922" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 149.51443,439.96167 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.74155 -3.9,0 z"
       id="path5589" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 153.41443,439.81169 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.89153 -3.9,0 z"
       id="path5591" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 157.31443,439.96167 3.13125,0 c 0.34687,0 0.61875,0.28121 0.61875,0.62804 l 0,16.76967 -3.75,0 z"
       id="path5593" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.009;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.009,0.009;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 132.43318,402.51348 12.10312,-0.32808 -0.0375,-1.24671 -12.09375,0.32808 0.0281,1.24671 z m 12.08437,-0.95612 -2.39062,3.81512 7.3875,-3.95573 -7.59375,-3.53391 2.59687,3.67452 z"
       id="path5595" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.009;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.009,0.009;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 161.83318,402.51348 12.10312,-0.32808 -0.0375,-1.24671 -12.09375,0.32808 0.0281,1.24671 z m 12.08437,-0.95612 -2.39062,3.81512 7.3875,-3.95573 -7.59375,-3.53391 2.59687,3.67452 z"
       id="path5597" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.009375;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.009375,0.009375;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 161.08318,449.00735 12.10312,-0.32808 -0.0375,-1.24671 -12.09375,0.32808 0.0281,1.24671 z m 12.08437,-0.95612 -2.39062,3.81512 7.3875,-3.95573 -7.59375,-3.53391 2.59687,3.67452 z"
       id="path5599" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.009;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.009,0.009;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 132.43318,449.00735 12.10312,-0.32808 -0.0375,-1.24671 -12.09375,0.32808 0.0281,1.24671 z m 12.08437,-0.95612 -2.39062,3.81512 7.3875,-3.95573 -7.59375,-3.53391 2.59687,3.67452 z"
       id="path5601" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-2"
       width="15.714286"
       height="18.571428"
       x="341.36935"
       y="371.26364" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 343.61443,372.17061 3.13125,0 c 0.34687,0 0.61875,0.28121 0.61875,0.62804 l 0,16.76966 -3.75,0 z"
       id="path5603" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 347.36443,372.17061 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.74154 -3.9,0 z"
       id="path5605" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 351.26443,372.17061 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.74154 -3.9,0 z"
       id="path5607" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.009375;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.009375,0.009375;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 323.21443,378.75099 13.7625,0 0,1.24671 -13.7625,0 0,-1.24671 z m 13.7625,0.61867 -2.50312,-3.74951 7.5,3.74951 -7.5,3.7495 2.50312,-3.7495 z"
       id="path5609" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.009375;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.009375, 0.009375;stroke-dashoffset:0"
       d="m 356.53318,380.16643 259.24599,-0.32809 -0.0375,-1.24671 -259.23661,0.32809 0.0281,1.24671 z m 259.22723,-0.95613 -2.39062,3.81512 7.3875,-3.95572 -7.59375,-3.53391 z"
       id="path5611"
       sodipodi:nodetypes="ccccccccccc" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 590.51443,465.15835 3.13125,0 c 0.35625,0 0.61875,0.28121 0.61875,0.63741 l 0,16.91027 -3.75,0 z"
       id="path5613" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 594.26443,465.15835 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65616 l 0,16.74154 -3.9,0 z"
       id="path5615" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 598.16443,465.15835 3.2625,0 c 0.35625,0 0.6375,0.29996 0.6375,0.65616 l 0,16.89152 -3.9,0 z"
       id="path5617" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.01875,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 572.68318,473.76346 12.1125,-0.33745 -0.0375,-1.25609 -12.09375,0.33746 0.0188,1.25608 z m 12.09375,-0.95612 -2.4,3.80575 7.3875,-3.95573 -7.59375,-3.52454 2.60625,3.67452 z"
       id="path5619" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01875;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.01875,0.01875;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 603.43318,473.31352 12.1125,-0.33745 -0.0375,-1.25609 -12.09375,0.33746 0.0188,1.25608 z m 12.09375,-0.95612 -2.4,3.80575 7.3875,-3.95573 -7.59375,-3.52454 2.60625,3.67452 z"
       id="path5621" />
    <rect
       style="fill:#ffffff;fill-opacity:1;stroke:none"
       id="rect3945-8"
       width="15.714286"
       height="18.571428"
       x="342.40506"
       y="438.62076" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 343.61443,439.96167 3.13125,0 c 0.34687,0 0.61875,0.28121 0.61875,0.62804 l 0,16.76967 -3.75,0 z"
       id="path5623" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 347.36443,439.96167 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.74155 -3.9,0 z"
       id="path5625" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 351.26443,439.96167 3.25312,0 c 0.35625,0 0.64688,0.29996 0.64688,0.65616 l 0,16.74155 -3.9,0 z"
       id="path5627" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.009375;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-dasharray:0.009375,0.009375;stroke-miterlimit:4;stroke-dashoffset:0"
       d="m 323.21443,446.54205 13.7625,0 0,1.24671 -13.7625,0 0,-1.24671 z m 13.7625,0.61867 -2.50312,-3.74951 7.5,3.74951 -7.5,3.74951 2.50312,-3.74951 z"
       id="path5629" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.01777934;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.01777934, 0.01777934;stroke-dashoffset:0"
       d="m 356.50859,445.94165 25.2708,0 0,30.18438 -0.55633,-0.61869 20.19642,0 0,1.23737 -20.7696,0 0,-30.18438 0.57318,0.63744 -24.71447,0 0,-1.25612 z m 44.91089,30.18438 -2.24217,-3.74961 6.74338,3.74961 -6.74338,3.74961 2.24217,-3.74961 z"
       id="path5631" />
    <path
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 256.12693,502.50342 0,36.37021 2.4375,0 -4.875,4.87436 -4.875,-4.87436 2.4375,0 0,-36.37021 z"
       id="path5633" />
    <path
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#000000;stroke-width:1.20000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 256.12693,502.50342 0,36.37021 2.4375,0 -4.875,4.87436 -4.875,-4.87436 2.4375,0 0,-36.37021 z"
       id="path5635" />
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="224.7719"
       y="353.7381"
       id="text4458-5-6-8-7"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="224.7719"
         y="353.7381"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5">Pipeline 1</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="233.06458"
       y="387.51147"
       id="text4458-5-6-8-7-0"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="233.06458"
         y="387.51147"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6">Table 1</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="191.77844"
       y="416.61282"
       id="text4458-5-6-8-7-0-1"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="191.77844"
         y="416.61282"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-3">Route</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="251.78381"
       y="415.58426"
       id="text4458-5-6-8-7-0-1-8"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="251.78381"
         y="415.58426"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-3-9">Next Hop</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="462.5943"
       y="411.55435"
       id="text4458-5-6-8-7-3"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="462.5943"
         y="411.55435"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-4">Pipeline 2</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="471.90912"
       y="442.29727"
       id="text4458-5-6-8-7-0-4"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="471.90912"
         y="442.29727"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-6">Table 2</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="431.39413"
       y="468.73193"
       id="text4458-5-6-8-7-0-4-0"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="431.39413"
         y="468.73193"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-6-6">Key</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="486.88754"
       y="469.8894"
       id="text4458-5-6-8-7-0-4-0-6"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="486.88754"
         y="469.8894"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-6-6-1">MAC Address</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="334.64691"
       y="584.99622"
       id="text4458-5-6-8-7-8"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="334.64691"
         y="584.99622"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-49">Pipeline 1</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="197.47844"
       y="642.03308"
       id="text4458-5-6-8-7-0-1-6"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="197.47844"
         y="642.03308"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-3-3">Route</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="257.48383"
       y="641.00452"
       id="text4458-5-6-8-7-0-1-8-7"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="257.48383"
         y="641.00452"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-3-9-8">Next Hop</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="392.87457"
       y="697.18268"
       id="text4458-5-6-8-7-0-4-0-8"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="392.87457"
         y="697.18268"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-6-6-2">Key</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="445.36234"
       y="698.34015"
       id="text4458-5-6-8-7-0-4-0-6-9"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="445.36234"
         y="698.34015"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-6-6-1-1">MAC Address</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="238.76457"
       y="611.66492"
       id="text4458-5-6-8-7-0-3"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="238.76457"
         y="611.66492"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-5">Table 1</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="432.66986"
       y="666.95581"
       id="text4458-5-6-8-7-0-4-9"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="432.66986"
         y="666.95581"
         style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Sans;-inkscape-font-specification:Sans"
         id="tspan4668-2-5-6-6-8">Table 2</tspan></text>
  </g>
</svg>