1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
|
<?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="744.09448"
height="1100"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="transformation.svg"
inkscape:export-filename="/home/yvesf/vcs/sa/images/transformation.png"
inkscape:export-xdpi="149.97273"
inkscape:export-ydpi="149.97273">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective3631"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3660"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5197"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5222"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5283"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5283-0"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5314"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5351"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5375"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5397"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5438"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5530"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5880"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5939"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5961"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective5986"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective6011"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective6573"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective6632"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective6632-3"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective6971"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective7009"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective7031"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective7157"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective7400"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective7400-1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="281.37167"
inkscape:cy="349.46163"
inkscape:document-units="mm"
inkscape:current-layer="g7060-6"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-global="true"
units="cm"
showborder="true"
inkscape:showpageshadow="true"
borderlayer="false"
inkscape:snap-bbox="true"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
inkscape:object-nodes="false"
inkscape:snap-center="false"
inkscape:window-width="1436"
inkscape:window-height="864"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid5339"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
units="mm"
spacingx="1mm"
spacingy="1mm"
dotted="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,47.638094)">
<g
id="g7060"
transform="translate(35.433071,-974.40945)">
<rect
ry="0"
y="1140.9446"
x="88.58268"
height="276.27328"
width="397.14288"
id="rect3603"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 8;stroke-dashoffset:0" />
<g
transform="translate(49.928187,1128.7191)"
id="g3611">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect2816"
width="171.80283"
height="47.578693"
x="127.23717"
y="79.548332"
ry="5.5357141" />
<text
xml:space="preserve"
style="font-size:15.69355583px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="174.38667"
y="95.336945"
id="text3605"><tspan
sodipodi:role="line"
id="tspan3607"
x="174.38667"
y="95.336945">KSM Node</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 126.42857,101.6479 172.14286,0"
id="path3609" />
<path
transform="translate(10.86484,-89.063855)"
d="m 121.78571,168.61218 c 0,3.45178 -2.79822,6.25 -6.25,6.25 -3.45178,0 -6.25,-2.79822 -6.25,-6.25 0,-3.45178 2.79822,-6.25 6.25,-6.25 3.45178,0 6.25,2.79822 6.25,6.25 z"
sodipodi:ry="6.25"
sodipodi:rx="6.25"
sodipodi:cy="168.61218"
sodipodi:cx="115.53571"
id="path5260-3-9"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
sodipodi:type="arc" />
</g>
<text
id="text3617"
y="1135.6191"
x="18.287876"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1135.6191"
x="18.287876"
id="tspan3619"
sodipodi:role="line">(25,25)</tspan></text>
<a
transform="translate(-38.57143,1028.0502)"
id="a6562">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3621"
width="670"
height="440"
x="38.57143"
y="26.140238" />
</a>
<g
transform="matrix(0.7507518,0,0,0.7507518,58.947886,633.20437)"
id="text3648"
style="font-size:28px;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;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Anonymous Pro;-inkscape-font-specification:Anonymous Pro">
<path
style="fill:#0000ff"
id="path5468"
d="m 476.51257,652.33069 -5.96093,17.8418 -2.54297,0 -5.90625,-17.8418 1.98242,0 5.20898,15.9414 5.18164,-15.9414 2.03711,0" />
<path
style="fill:#0000ff"
id="path5470"
d="m 485.86414,654.88733 -2.54297,0 0,-2.55664 2.54297,0 0,2.55664 m 2.54296,15.28516 -7.64257,0 0,-1.59961 2.88476,0 0,-9.54297 -2.88476,0 0,-1.59961 4.77148,0 0,11.14258 2.87109,0 0,1.59961" />
<path
style="fill:#0000ff"
id="path5472"
d="m 495.4071,664.45764 c 0.13672,1.34896 0.62891,2.42448 1.47657,3.22656 0.84765,0.80209 1.95051,1.20313 3.30859,1.20313 0.95702,0 1.80924,-0.19596 2.55664,-0.58789 0.74739,-0.39193 1.30793,-0.87956 1.68164,-1.46289 l 1.3125,0.90234 c -0.63803,0.89323 -1.3991,1.57683 -2.2832,2.05078 -0.88412,0.46485 -1.97332,0.69727 -3.26758,0.69727 -0.98438,0 -1.88672,-0.16406 -2.70703,-0.49219 -0.82032,-0.32812 -1.53125,-0.78385 -2.13281,-1.36719 -0.59245,-0.59244 -1.05274,-1.29426 -1.38086,-2.10547 -0.32813,-0.81119 -0.49219,-1.71353 -0.49219,-2.70703 0,-0.96614 0.14583,-1.85481 0.4375,-2.66601 0.30078,-0.8203 0.72917,-1.52668 1.28516,-2.11914 0.5651,-0.60155 1.24869,-1.0664 2.05078,-1.39453 0.80208,-0.33723 1.69986,-0.50585 2.69336,-0.50586 1.08462,1e-5 2.03254,0.1823 2.84375,0.54687 0.81118,0.3646 1.48566,0.87046 2.02343,1.51758 0.54687,0.63803 0.94791,1.40366 1.20313,2.29687 0.26431,0.89324 0.39647,1.88217 0.39648,2.9668 l -11.00586,0 m 9.02344,-1.59961 c -0.20964,-1.39452 -0.7155,-2.43358 -1.51758,-3.11719 -0.80209,-0.68358 -1.79102,-1.02537 -2.96679,-1.02539 -0.60157,2e-5 -1.15756,0.10028 -1.66797,0.30079 -0.51042,0.19141 -0.96159,0.46941 -1.35352,0.83398 -0.39193,0.36459 -0.72005,0.80665 -0.98437,1.32617 -0.26433,0.51043 -0.43295,1.07097 -0.50586,1.68164 l 8.99609,0" />
<path
style="fill:#0000ff"
id="path5474"
d="m 522.01257,657.4303 -2.58398,12.74219 -2.1875,0 -2.03711,-9.35157 -1.92773,9.35157 -2.1875,0 -2.61133,-12.74219 1.99609,0 1.8457,10.19922 1.98243,-10.19922 1.85937,0 2.03711,10.19922 1.8457,-10.19922 1.96875,0" />
<path
style="fill:#0000ff"
id="path5476"
d="m 536.90125,663.81506 c -2e-5,0.9935 -0.15497,1.89584 -0.46485,2.70703 -0.30991,0.81121 -0.74741,1.51303 -1.3125,2.10547 -0.556,0.58334 -1.23048,1.03907 -2.02344,1.36719 -0.79297,0.32813 -1.68164,0.49219 -2.66601,0.49219 -0.67449,0 -1.33074,-0.12305 -1.96875,-0.36914 -0.62891,-0.2461 -1.2168,-0.61068 -1.76367,-1.09375 l 0,6.24804 -1.87305,0 0,-17.84179 1.87305,0 0,1.17578 c 1.15754,-0.98436 2.40168,-1.47655 3.73242,-1.47656 0.98437,1e-5 1.87304,0.16407 2.66601,0.49218 0.79296,0.31903 1.46744,0.77931 2.02344,1.38086 0.56509,0.59246 1.00259,1.3034 1.3125,2.13282 0.30988,0.82032 0.46483,1.71354 0.46485,2.67968 m -1.87305,0 c -10e-6,-0.71093 -0.10027,-1.37629 -0.30078,-1.99609 -0.19142,-0.6289 -0.48309,-1.17121 -0.875,-1.62695 -0.39194,-0.45572 -0.87501,-0.81575 -1.44922,-1.08008 -0.56511,-0.26431 -1.22136,-0.39647 -1.96875,-0.39649 -0.71094,2e-5 -1.37631,0.13218 -1.9961,0.39649 -0.61068,0.26433 -1.18945,0.69272 -1.73632,1.28515 l 0,6.83594 c 0.54687,0.59245 1.12564,1.01628 1.73632,1.27149 0.61979,0.25521 1.28516,0.38281 1.9961,0.38281 0.74739,0 1.40364,-0.13216 1.96875,-0.39649 0.57421,-0.26432 1.05728,-0.62434 1.44922,-1.08007 0.39191,-0.45573 0.68358,-0.98893 0.875,-1.59961 0.20051,-0.61979 0.30077,-1.28515 0.30078,-1.9961" />
<path
style="fill:#0000ff"
id="path5478"
d="m 552.54187,663.84241 c -10e-6,0.99349 -0.15952,1.89583 -0.47852,2.70703 -0.3099,0.8112 -0.76108,1.50846 -1.35351,2.0918 -0.58335,0.57422 -1.28517,1.02539 -2.10547,1.35351 -0.82032,0.32813 -1.73634,0.49219 -2.74805,0.49219 -0.99349,0 -1.90039,-0.16406 -2.7207,-0.49219 -0.82032,-0.32812 -1.52669,-0.77929 -2.11914,-1.35351 -0.58333,-0.58334 -1.03451,-1.2806 -1.35352,-2.0918 -0.30989,-0.8112 -0.46484,-1.71354 -0.46484,-2.70703 0,-0.96614 0.15495,-1.86393 0.46484,-2.69336 0.31901,-0.83853 0.77019,-1.54947 1.35352,-2.13281 0.59245,-0.59244 1.29882,-1.05273 2.11914,-1.38086 0.82031,-0.33723 1.72721,-0.50585 2.7207,-0.50586 1.01171,1e-5 1.92773,0.16863 2.74805,0.50586 0.8203,0.32813 1.52212,0.78842 2.10547,1.38086 0.59243,0.58334 1.04361,1.29428 1.35351,2.13281 0.319,0.82943 0.47851,1.72722 0.47852,2.69336 m -1.87305,0 c -10e-6,-0.72916 -0.10938,-1.39908 -0.32812,-2.00977 -0.20965,-0.61978 -0.5241,-1.1621 -0.94336,-1.62695 -0.41928,-0.46483 -0.9297,-0.82942 -1.53125,-1.09375 -0.59246,-0.26431 -1.26238,-0.39647 -2.00977,-0.39649 -0.7474,2e-5 -1.42188,0.13218 -2.02343,0.39649 -0.59246,0.26433 -1.09376,0.62892 -1.50391,1.09375 -0.41016,0.46485 -0.72461,1.00717 -0.94336,1.62695 -0.20964,0.61069 -0.31445,1.28061 -0.31445,2.00977 0,0.72917 0.10481,1.40365 0.31445,2.02343 0.21875,0.61069 0.5332,1.13933 0.94336,1.58594 0.41015,0.44662 0.91145,0.79753 1.50391,1.05274 0.60155,0.25521 1.27603,0.38281 2.02343,0.38281 0.74739,0 1.41731,-0.1276 2.00977,-0.38281 0.60155,-0.25521 1.11197,-0.60612 1.53125,-1.05274 0.41926,-0.44661 0.73371,-0.97525 0.94336,-1.58594 0.21874,-0.61978 0.32811,-1.29426 0.32812,-2.02343" />
<path
style="fill:#0000ff"
id="path5480"
d="m 566.82898,659.22131 c -0.67449,-0.33722 -1.47657,-0.50584 -2.40625,-0.50586 -0.76563,2e-5 -1.44923,0.16408 -2.05078,0.49219 -0.60157,0.32814 -1.11199,0.76108 -1.53125,1.29883 -0.41928,0.52865 -0.74285,1.13933 -0.9707,1.83203 -0.21876,0.6836 -0.32813,1.38998 -0.32813,2.11914 l 0,4.11524 2.88477,0 0,1.59961 -7.64258,0 0,-1.59961 2.88476,0 0,-9.54297 -2.88476,0 0,-1.59961 4.75781,0 0,3.19922 c 0.85677,-2.33332 2.48372,-3.49999 4.88086,-3.5 0.64712,1e-5 1.20767,0.041 1.68164,0.12304 0.48306,0.082 0.92968,0.22788 1.33984,0.4375 l -0.61523,1.53125" />
<path
style="fill:#0000ff"
id="path5482"
d="m 582.97546,666.11194 c -0.14584,1.33984 -0.67449,2.40625 -1.58593,3.19922 -0.90236,0.78385 -2.03256,1.17578 -3.39063,1.17578 -0.7474,0 -1.43099,-0.12305 -2.05078,-0.36914 -0.6198,-0.2461 -1.14844,-0.58789 -1.58594,-1.02539 -0.4375,-0.4375 -0.7793,-0.96159 -1.02539,-1.57227 -0.23698,-0.61979 -0.35547,-1.29427 -0.35547,-2.02344 l 0,-6.46679 -2.88476,0 0,-1.59961 2.88476,0 0,-5.09961 1.87305,0 0,5.09961 5.42773,0 0,1.59961 -5.42773,0 0,6.46679 c 0,0.46485 0.0729,0.90235 0.21875,1.3125 0.15494,0.41016 0.36458,0.77019 0.62891,1.08008 0.27343,0.3099 0.60155,0.55599 0.98437,0.73828 0.38281,0.17318 0.82031,0.25977 1.3125,0.25977 0.92968,0 1.70442,-0.28711 2.32422,-0.86133 0.6289,-0.58333 0.98892,-1.33528 1.08008,-2.25586 l 1.57226,0.3418" />
</g>
<g
transform="translate(261.55144,1210.8528)"
id="g3611-4">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect2816-7"
width="171.80283"
height="47.578693"
x="127.23717"
y="79.548332"
ry="5.5357141" />
<text
xml:space="preserve"
style="font-size:15.69355583px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="174.38667"
y="95.336945"
id="text3605-8"><tspan
sodipodi:role="line"
id="tspan3607-4"
x="174.38667"
y="95.336945">KSM Node</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 126.42857,101.6479 172.14286,0"
id="path3609-5" />
</g>
<rect
y="1264.938"
x="491.21387"
height="90.408653"
width="96.469566"
id="rect3686"
style="fill:#ffffff;fill-opacity:0.81089741;fill-rule:evenodd;stroke:none" />
<text
id="text3617-6"
y="1135.5985"
x="201.81615"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1135.5985"
x="201.81615"
id="tspan3619-3"
sodipodi:role="line">(0,0)</tspan></text>
<text
id="text3617-9"
y="1459.8422"
x="389.76379"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1459.8422"
x="389.76379"
id="tspan3619-95"
sodipodi:role="line">(250,250)</tspan></text>
<text
id="text3617-6-2"
y="1459.8422"
x="513.77954"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1459.8422"
x="513.77954"
id="tspan3619-3-1"
sodipodi:role="line">(200,200)</tspan></text>
<path
transform="translate(-26.116422,975.87571)"
d="m 121.78571,168.61218 c 0,3.45178 -2.79822,6.25 -6.25,6.25 -3.45178,0 -6.25,-2.79822 -6.25,-6.25 0,-3.45178 2.79822,-6.25 6.25,-6.25 3.45178,0 6.25,2.79822 6.25,6.25 z"
sodipodi:ry="6.25"
sodipodi:rx="6.25"
sodipodi:cy="168.61218"
sodipodi:cx="115.53571"
id="path5260"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
sodipodi:type="arc" />
<text
id="text3617-91"
y="1194.0942"
x="159.44882"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1194.0942"
x="159.44882"
id="tspan3619-34"
sodipodi:role="line">(50,50)</tspan></text>
<text
id="text3617-6-5"
y="1194.0942"
x="341.56537"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1194.0942"
x="341.56537"
id="tspan3619-3-8"
sodipodi:role="line">(25,25)</tspan></text>
<g
transform="matrix(0.31250009,0,0,0.55421684,305.54374,827.21851)"
id="g5423">
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect5337"
width="16"
height="480"
x="605"
y="577.35956" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341"
width="16"
height="9"
x="605"
y="567.35956" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341-5"
width="16"
height="8.9999609"
x="605"
y="1058.3596" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 608,1060.3596 10,0 -5,5 -5,-5 z"
id="path5365"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 618,574.3596 -10,0 5,-5 5,5 z"
id="path5365-7"
sodipodi:nodetypes="cccc" />
</g>
<g
transform="matrix(0,0.31250009,-0.55421684,0,677.20953,1238.3707)"
id="g5423-3">
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect5337-3"
width="16"
height="700.91309"
x="605"
y="356.44656" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341-8"
width="16"
height="9"
x="605"
y="345.42477" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341-5-9"
width="16"
height="8.9999609"
x="605"
y="1058.3596" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 608,1060.3596 10,0 -5,5 -5,-5 z"
id="path5365-5"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 618,352.42481 -10,0 5,-5 5,5 z"
id="path5365-7-5"
sodipodi:nodetypes="cccc" />
</g>
<g
transform="translate(-35.714287,466.11406)"
id="text5505"
style="font-size:21.70134163px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Anonymous Pro;-inkscape-font-specification:Anonymous Pro">
<path
id="path5510"
style="fill:#ff0000"
d="m 644.96058,578.7356 c -0.36029,1.1868 -0.95015,2.12987 -1.7696,2.82923 -0.81945,0.6923 -1.85083,1.03844 -3.09413,1.03844 -0.96781,0 -1.78726,-0.19779 -2.45836,-0.59339 -0.6711,-0.40266 -1.22211,-0.93248 -1.65303,-1.58946 -0.42385,-0.65697 -0.73115,-1.41637 -0.92188,-2.27821 -0.18367,-0.86183 -0.27551,-1.75546 -0.27551,-2.68088 0,-0.92541 0.0918,-1.81903 0.27551,-2.68088 0.19073,-0.86183 0.49803,-1.62476 0.92188,-2.28881 0.43092,-0.66403 0.98193,-1.19385 1.65303,-1.58946 0.6711,-0.40264 1.49055,-0.60398 2.45836,-0.60399 0.85477,10e-6 1.58591,0.1519 2.19344,0.45564 0.60752,0.30378 1.0561,0.76649 1.34574,1.38813 l 0,-1.61065 1.23978,0 0,4.53524 -1.23978,0 c -10e-6,-0.48742 -0.0954,-0.9466 -0.2861,-1.37752 -0.18368,-0.43798 -0.43446,-0.81591 -0.75234,-1.13381 -0.3179,-0.31788 -0.69584,-0.56513 -1.13381,-0.74175 -0.43093,-0.18366 -0.88657,-0.27549 -1.36693,-0.27551 -0.74882,2e-5 -1.37047,0.17662 -1.86496,0.52982 -0.48744,0.35323 -0.8795,0.81593 -1.1762,1.38813 -0.2967,0.57221 -0.50862,1.20799 -0.63578,1.90734 -0.12009,0.69937 -0.18014,1.39873 -0.18014,2.09808 0,0.6923 0.06,1.39166 0.18014,2.09808 0.12716,0.69936 0.33908,1.33161 0.63578,1.89675 0.2967,0.55807 0.68876,1.01725 1.1762,1.37752 0.49449,0.35322 1.11614,0.52982 1.86496,0.52982 1.72367,0 2.92459,-1.04197 3.60276,-3.12593 l 1.26097,0.49803" />
<path
id="path5512"
style="fill:#ff0000"
d="m 646.84673,579.68928 c 0,-0.62165 0.15541,-1.14087 0.46624,-1.55767 0.31082,-0.42385 0.71702,-0.75587 1.21858,-0.99606 0.50862,-0.24724 1.08789,-0.42385 1.7378,-0.52981 0.65697,-0.11303 1.32454,-0.16954 2.00271,-0.16955 0.26137,10e-6 0.49449,0.004 0.69936,0.0106 0.21192,0.007 0.40972,0.0177 0.5934,0.0318 0.19073,0.0141 0.38146,0.0318 0.5722,0.053 0.19073,0.0212 0.39912,0.0459 0.62519,0.0742 l 0,-0.70996 c -10e-6,-0.48036 -0.10597,-0.87596 -0.31789,-1.18679 -0.20487,-0.31082 -0.45919,-0.55454 -0.76294,-0.73115 -0.30377,-0.18366 -0.62166,-0.31082 -0.95367,-0.38147 -0.33203,-0.0777 -0.6146,-0.11655 -0.84771,-0.11656 -0.73469,10e-6 -1.41285,0.0989 -2.0345,0.2967 -0.62166,0.19781 -1.20092,0.46271 -1.73781,0.79472 l -0.65697,-1.09142 c 0.5934,-0.36027 1.25743,-0.65343 1.99212,-0.8795 0.74174,-0.23311 1.55412,-0.34967 2.43716,-0.34968 0.53687,10e-6 1.06316,0.0707 1.57886,0.21193 0.52274,0.13423 0.98898,0.34616 1.39871,0.63578 0.41679,0.28258 0.74881,0.65698 0.99606,1.12321 0.24724,0.46625 0.37087,1.02433 0.37088,1.67423 l 0,6.46378 -1.4623,0 0,-1.65303 c -0.25432,0.31789 -0.54396,0.59693 -0.8689,0.83711 -0.3179,0.24018 -0.65345,0.43798 -1.00666,0.59339 -0.35322,0.14835 -0.70643,0.26138 -1.05963,0.33909 -0.35322,0.0848 -0.68877,0.12715 -1.00666,0.12715 -1.30688,0 -2.29588,-0.25078 -2.96698,-0.75234 -0.6711,-0.50156 -1.00665,-1.22211 -1.00665,-2.16165 m 3.97363,1.67422 c 0.60752,0 1.15147,-0.0883 1.63184,-0.26491 0.48743,-0.18367 0.90069,-0.40972 1.23978,-0.67817 0.33907,-0.26843 0.60045,-0.55454 0.78413,-0.8583 0.19072,-0.30376 0.28609,-0.57926 0.2861,-0.82652 l 0,-0.93248 c -0.47331,-0.0706 -0.92896,-0.10949 -1.36693,-0.11656 -0.43093,-0.007 -0.80533,-0.0106 -1.12322,-0.0106 -0.52275,0 -1.02785,0.0353 -1.51528,0.10596 -0.48037,0.0707 -0.90069,0.18721 -1.26096,0.34968 -0.36028,0.15542 -0.64991,0.36028 -0.8689,0.61459 -0.219,0.25432 -0.32849,0.56867 -0.32849,0.94308 0,0.41679 0.20133,0.80179 0.60399,1.155 0.40973,0.34615 1.04904,0.51922 1.91794,0.51922" />
<path
id="path5514"
style="fill:#ff0000"
d="m 668.09243,582.35956 -1.4623,0 0,-6.09291 c -10e-6,-0.88302 -0.19074,-1.56825 -0.5722,-2.05569 -0.38148,-0.48743 -0.9996,-0.73114 -1.85437,-0.73115 -0.53688,10e-6 -1.02432,0.12363 -1.46229,0.37087 -0.43093,0.24726 -0.79827,0.57928 -1.10203,0.99606 -0.30376,0.40973 -0.53688,0.88304 -0.69936,1.41991 -0.15541,0.52983 -0.23312,1.08437 -0.23312,1.66363 l 0,4.42928 -1.4517,0 0,-9.87581 1.4517,0 0,2.47955 c 0.69936,-1.80844 1.9462,-2.71266 3.74052,-2.71267 2.43009,10e-6 3.64514,1.33868 3.64515,4.01602 l 0,6.09291" />
<path
id="path5516"
style="fill:#ff0000"
d="m 680.80806,572.48375 -4.28093,9.87581 -1.94973,0 -4.30212,-9.87581 1.7378,0 3.53918,8.65723 3.51799,-8.65723 1.73781,0" />
<path
id="path5518"
style="fill:#ff0000"
d="m 682.45049,579.68928 c 0,-0.62165 0.15541,-1.14087 0.46624,-1.55767 0.31083,-0.42385 0.71702,-0.75587 1.21858,-0.99606 0.50862,-0.24724 1.08789,-0.42385 1.7378,-0.52981 0.65697,-0.11303 1.32454,-0.16954 2.00272,-0.16955 0.26137,10e-6 0.49449,0.004 0.69936,0.0106 0.21192,0.007 0.40972,0.0177 0.59339,0.0318 0.19073,0.0141 0.38146,0.0318 0.57221,0.053 0.19072,0.0212 0.39912,0.0459 0.62518,0.0742 l 0,-0.70996 c -10e-6,-0.48036 -0.10597,-0.87596 -0.31789,-1.18679 -0.20487,-0.31082 -0.45918,-0.55454 -0.76294,-0.73115 -0.30377,-0.18366 -0.62166,-0.31082 -0.95367,-0.38147 -0.33203,-0.0777 -0.61459,-0.11655 -0.84771,-0.11656 -0.73468,10e-6 -1.41285,0.0989 -2.0345,0.2967 -0.62166,0.19781 -1.20092,0.46271 -1.7378,0.79472 l -0.65698,-1.09142 c 0.5934,-0.36027 1.25744,-0.65343 1.99212,-0.8795 0.74174,-0.23311 1.55413,-0.34967 2.43716,-0.34968 0.53688,10e-6 1.06316,0.0707 1.57886,0.21193 0.52274,0.13423 0.98898,0.34616 1.39872,0.63578 0.41678,0.28258 0.7488,0.65698 0.99606,1.12321 0.24723,0.46625 0.37086,1.02433 0.37087,1.67423 l 0,6.46378 -1.4623,0 0,-1.65303 c -0.25432,0.31789 -0.54395,0.59693 -0.8689,0.83711 -0.3179,0.24018 -0.65345,0.43798 -1.00666,0.59339 -0.35321,0.14835 -0.70642,0.26138 -1.05963,0.33909 -0.35322,0.0848 -0.68877,0.12715 -1.00665,0.12715 -1.30689,0 -2.29588,-0.25078 -2.96699,-0.75234 -0.6711,-0.50156 -1.00665,-1.22211 -1.00665,-2.16165 m 3.97364,1.67422 c 0.60752,0 1.15146,-0.0883 1.63183,-0.26491 0.48743,-0.18367 0.90069,-0.40972 1.23978,-0.67817 0.33907,-0.26843 0.60045,-0.55454 0.78413,-0.8583 0.19073,-0.30376 0.28609,-0.57926 0.2861,-0.82652 l 0,-0.93248 c -0.47331,-0.0706 -0.92895,-0.10949 -1.36693,-0.11656 -0.43092,-0.007 -0.80533,-0.0106 -1.12321,-0.0106 -0.52276,0 -1.02785,0.0353 -1.51528,0.10596 -0.48037,0.0707 -0.9007,0.18721 -1.26097,0.34968 -0.36028,0.15542 -0.64991,0.36028 -0.8689,0.61459 -0.21899,0.25432 -0.32849,0.56867 -0.32849,0.94308 0,0.41679 0.20133,0.80179 0.60399,1.155 0.40973,0.34615 1.04904,0.51922 1.91795,0.51922" />
<path
id="path5520"
style="fill:#ff0000"
d="m 703.9505,579.6257 c -1e-5,0.57927 -0.14483,1.05964 -0.43445,1.4411 -0.28964,0.38147 -0.66405,0.68523 -1.12321,0.91129 -0.45212,0.22606 -0.96075,0.385 -1.52588,0.47684 -0.55808,0.0989 -1.10556,0.14834 -1.64244,0.14834 -0.89716,0 -1.79078,-0.13068 -2.68087,-0.39206 -0.8901,-0.26138 -1.6601,-0.60399 -2.31001,-1.02785 l 0.64638,-1.25037 c 0.72761,0.45918 1.44463,0.81239 2.15106,1.05964 0.70642,0.24725 1.43757,0.37087 2.19344,0.37087 2.18285,0 3.27427,-0.56514 3.27428,-1.69542 -10e-6,-0.2755 -0.0918,-0.49802 -0.27551,-0.66757 -0.17661,-0.1766 -0.41679,-0.31788 -0.72055,-0.42385 -0.30377,-0.11303 -0.65345,-0.20133 -1.04904,-0.26491 -0.38854,-0.0636 -0.79826,-0.12362 -1.22918,-0.18014 -0.55101,-0.0777 -1.09849,-0.16954 -1.64243,-0.2755 -0.54395,-0.10596 -1.04198,-0.26491 -1.49409,-0.47684 -0.44505,-0.21192 -0.80532,-0.49449 -1.08083,-0.84771 -0.26844,-0.3532 -0.40266,-0.81944 -0.40266,-1.39872 0,-0.49449 0.12363,-0.92187 0.37087,-1.28216 0.25432,-0.36026 0.58987,-0.66049 1.00666,-0.90069 0.42385,-0.24017 0.91835,-0.41678 1.48349,-0.52982 0.56513,-0.11301 1.15147,-0.16953 1.75899,-0.16954 0.8689,10e-6 1.64597,0.10244 2.3312,0.3073 0.68523,0.19781 1.30335,0.48391 1.85437,0.8583 l -0.5828,1.13381 c -0.56515,-0.39559 -1.13735,-0.67109 -1.71661,-0.82651 -0.57928,-0.16247 -1.20799,-0.24371 -1.88616,-0.24372 -0.30376,10e-6 -0.64285,0.0283 -1.01725,0.0848 -0.36734,0.0495 -0.70995,0.14129 -1.02784,0.27551 -0.3179,0.12716 -0.58634,0.2967 -0.80533,0.50862 -0.21192,0.20487 -0.31789,0.46625 -0.31789,0.78413 0,0.27551 0.0883,0.49804 0.26491,0.66757 0.18367,0.16249 0.42739,0.30024 0.73115,0.41326 0.30376,0.10597 0.64991,0.19074 1.03844,0.25431 0.3956,0.0636 0.80886,0.12363 1.23978,0.18014 0.53687,0.0777 1.07729,0.16955 1.62124,0.27551 0.551,0.10597 1.04903,0.26138 1.49409,0.46624 0.4521,0.20486 0.81591,0.4839 1.09142,0.83711 0.2755,0.35321 0.41325,0.81945 0.41326,1.39872" />
</g>
<text
id="text3617-17-1-2"
y="1134.7777"
x="110.16586"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1134.7777"
x="110.16586"
id="tspan3619-93-6-1"
sodipodi:role="line">(25,25)</tspan></text>
<text
id="text3617-6-5-0"
y="1194.0942"
x="252.9827"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1194.0942"
x="252.9827"
id="tspan3619-3-8-5"
sodipodi:role="line">(50,50)</tspan></text>
<text
id="text3617-97"
y="1459.8422"
x="265.74802"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1459.8422"
x="265.74802"
id="tspan3619-38"
sodipodi:role="line">(250,250)</tspan></text>
<path
transform="translate(369.89736,1248.7104)"
d="m 121.78571,168.61218 c 0,3.45178 -2.79822,6.25 -6.25,6.25 -3.45178,0 -6.25,-2.79822 -6.25,-6.25 0,-3.45178 2.79822,-6.25 6.25,-6.25 3.45178,0 6.25,2.79822 6.25,6.25 z"
sodipodi:ry="6.25"
sodipodi:rx="6.25"
sodipodi:cy="168.61218"
sodipodi:cx="115.53571"
id="path5260-9"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
sodipodi:type="arc" />
<text
id="text3617-0"
y="1048.8186"
x="-3.5433071"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1048.8186"
x="-3.5433071"
id="tspan3619-9"
sodipodi:role="line">(0,0)</tspan></text>
<text
id="text3617-6-23"
y="1048.798"
x="116.92913"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1048.798"
x="116.92913"
id="tspan3619-3-18"
sodipodi:role="line">(-25,-25)</tspan></text>
<text
id="text3617-17-1-2-7"
y="1047.9772"
x="56.692913"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1047.9772"
x="56.692913"
id="tspan3619-93-6-1-4"
sodipodi:role="line">(0,0)</tspan></text>
</g>
<g
id="g7060-6">
<rect
ry="0"
y="643.55304"
x="124.51575"
height="276.27328"
width="397.14288"
id="rect3603-4"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 8;stroke-dashoffset:0" />
<g
transform="matrix(2,0,0,2,28.990232,588.54083)"
id="g3611-8">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect2816-5"
width="171.80283"
height="47.578693"
x="127.23717"
y="79.548332"
ry="5.5357141" />
<text
xml:space="preserve"
style="font-size:15.69355583px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="174.38667"
y="95.336945"
id="text3605-6"><tspan
sodipodi:role="line"
id="tspan3607-2"
x="174.38667"
y="95.336945">KSM Node</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 126.42857,101.6479 172.14286,0"
id="path3609-52" />
</g>
<text
id="text3617-69"
y="638.2276"
x="54.220947"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="638.2276"
x="54.220947"
id="tspan3619-1"
sodipodi:role="line">(25,25)</tspan></text>
<a
transform="translate(-2.6383593,530.65868)"
id="a6562-3">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3621-3"
width="670"
height="440"
x="38.57143"
y="26.140238" />
</a>
<g
transform="matrix(0.7507518,0,0,0.7507518,94.880953,135.81282)"
id="text3648-1"
style="font-size:28px;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;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Anonymous Pro;-inkscape-font-specification:Anonymous Pro">
<path
style="fill:#0000ff"
id="path5468-5"
d="m 476.51257,652.33069 -5.96093,17.8418 -2.54297,0 -5.90625,-17.8418 1.98242,0 5.20898,15.9414 5.18164,-15.9414 2.03711,0" />
<path
style="fill:#0000ff"
id="path5470-2"
d="m 485.86414,654.88733 -2.54297,0 0,-2.55664 2.54297,0 0,2.55664 m 2.54296,15.28516 -7.64257,0 0,-1.59961 2.88476,0 0,-9.54297 -2.88476,0 0,-1.59961 4.77148,0 0,11.14258 2.87109,0 0,1.59961" />
<path
style="fill:#0000ff"
id="path5472-6"
d="m 495.4071,664.45764 c 0.13672,1.34896 0.62891,2.42448 1.47657,3.22656 0.84765,0.80209 1.95051,1.20313 3.30859,1.20313 0.95702,0 1.80924,-0.19596 2.55664,-0.58789 0.74739,-0.39193 1.30793,-0.87956 1.68164,-1.46289 l 1.3125,0.90234 c -0.63803,0.89323 -1.3991,1.57683 -2.2832,2.05078 -0.88412,0.46485 -1.97332,0.69727 -3.26758,0.69727 -0.98438,0 -1.88672,-0.16406 -2.70703,-0.49219 -0.82032,-0.32812 -1.53125,-0.78385 -2.13281,-1.36719 -0.59245,-0.59244 -1.05274,-1.29426 -1.38086,-2.10547 -0.32813,-0.81119 -0.49219,-1.71353 -0.49219,-2.70703 0,-0.96614 0.14583,-1.85481 0.4375,-2.66601 0.30078,-0.8203 0.72917,-1.52668 1.28516,-2.11914 0.5651,-0.60155 1.24869,-1.0664 2.05078,-1.39453 0.80208,-0.33723 1.69986,-0.50585 2.69336,-0.50586 1.08462,1e-5 2.03254,0.1823 2.84375,0.54687 0.81118,0.3646 1.48566,0.87046 2.02343,1.51758 0.54687,0.63803 0.94791,1.40366 1.20313,2.29687 0.26431,0.89324 0.39647,1.88217 0.39648,2.9668 l -11.00586,0 m 9.02344,-1.59961 c -0.20964,-1.39452 -0.7155,-2.43358 -1.51758,-3.11719 -0.80209,-0.68358 -1.79102,-1.02537 -2.96679,-1.02539 -0.60157,2e-5 -1.15756,0.10028 -1.66797,0.30079 -0.51042,0.19141 -0.96159,0.46941 -1.35352,0.83398 -0.39193,0.36459 -0.72005,0.80665 -0.98437,1.32617 -0.26433,0.51043 -0.43295,1.07097 -0.50586,1.68164 l 8.99609,0" />
<path
style="fill:#0000ff"
id="path5474-9"
d="m 522.01257,657.4303 -2.58398,12.74219 -2.1875,0 -2.03711,-9.35157 -1.92773,9.35157 -2.1875,0 -2.61133,-12.74219 1.99609,0 1.8457,10.19922 1.98243,-10.19922 1.85937,0 2.03711,10.19922 1.8457,-10.19922 1.96875,0" />
<path
style="fill:#0000ff"
id="path5476-4"
d="m 536.90125,663.81506 c -2e-5,0.9935 -0.15497,1.89584 -0.46485,2.70703 -0.30991,0.81121 -0.74741,1.51303 -1.3125,2.10547 -0.556,0.58334 -1.23048,1.03907 -2.02344,1.36719 -0.79297,0.32813 -1.68164,0.49219 -2.66601,0.49219 -0.67449,0 -1.33074,-0.12305 -1.96875,-0.36914 -0.62891,-0.2461 -1.2168,-0.61068 -1.76367,-1.09375 l 0,6.24804 -1.87305,0 0,-17.84179 1.87305,0 0,1.17578 c 1.15754,-0.98436 2.40168,-1.47655 3.73242,-1.47656 0.98437,1e-5 1.87304,0.16407 2.66601,0.49218 0.79296,0.31903 1.46744,0.77931 2.02344,1.38086 0.56509,0.59246 1.00259,1.3034 1.3125,2.13282 0.30988,0.82032 0.46483,1.71354 0.46485,2.67968 m -1.87305,0 c -10e-6,-0.71093 -0.10027,-1.37629 -0.30078,-1.99609 -0.19142,-0.6289 -0.48309,-1.17121 -0.875,-1.62695 -0.39194,-0.45572 -0.87501,-0.81575 -1.44922,-1.08008 -0.56511,-0.26431 -1.22136,-0.39647 -1.96875,-0.39649 -0.71094,2e-5 -1.37631,0.13218 -1.9961,0.39649 -0.61068,0.26433 -1.18945,0.69272 -1.73632,1.28515 l 0,6.83594 c 0.54687,0.59245 1.12564,1.01628 1.73632,1.27149 0.61979,0.25521 1.28516,0.38281 1.9961,0.38281 0.74739,0 1.40364,-0.13216 1.96875,-0.39649 0.57421,-0.26432 1.05728,-0.62434 1.44922,-1.08007 0.39191,-0.45573 0.68358,-0.98893 0.875,-1.59961 0.20051,-0.61979 0.30077,-1.28515 0.30078,-1.9961" />
<path
style="fill:#0000ff"
id="path5478-4"
d="m 552.54187,663.84241 c -10e-6,0.99349 -0.15952,1.89583 -0.47852,2.70703 -0.3099,0.8112 -0.76108,1.50846 -1.35351,2.0918 -0.58335,0.57422 -1.28517,1.02539 -2.10547,1.35351 -0.82032,0.32813 -1.73634,0.49219 -2.74805,0.49219 -0.99349,0 -1.90039,-0.16406 -2.7207,-0.49219 -0.82032,-0.32812 -1.52669,-0.77929 -2.11914,-1.35351 -0.58333,-0.58334 -1.03451,-1.2806 -1.35352,-2.0918 -0.30989,-0.8112 -0.46484,-1.71354 -0.46484,-2.70703 0,-0.96614 0.15495,-1.86393 0.46484,-2.69336 0.31901,-0.83853 0.77019,-1.54947 1.35352,-2.13281 0.59245,-0.59244 1.29882,-1.05273 2.11914,-1.38086 0.82031,-0.33723 1.72721,-0.50585 2.7207,-0.50586 1.01171,1e-5 1.92773,0.16863 2.74805,0.50586 0.8203,0.32813 1.52212,0.78842 2.10547,1.38086 0.59243,0.58334 1.04361,1.29428 1.35351,2.13281 0.319,0.82943 0.47851,1.72722 0.47852,2.69336 m -1.87305,0 c -10e-6,-0.72916 -0.10938,-1.39908 -0.32812,-2.00977 -0.20965,-0.61978 -0.5241,-1.1621 -0.94336,-1.62695 -0.41928,-0.46483 -0.9297,-0.82942 -1.53125,-1.09375 -0.59246,-0.26431 -1.26238,-0.39647 -2.00977,-0.39649 -0.7474,2e-5 -1.42188,0.13218 -2.02343,0.39649 -0.59246,0.26433 -1.09376,0.62892 -1.50391,1.09375 -0.41016,0.46485 -0.72461,1.00717 -0.94336,1.62695 -0.20964,0.61069 -0.31445,1.28061 -0.31445,2.00977 0,0.72917 0.10481,1.40365 0.31445,2.02343 0.21875,0.61069 0.5332,1.13933 0.94336,1.58594 0.41015,0.44662 0.91145,0.79753 1.50391,1.05274 0.60155,0.25521 1.27603,0.38281 2.02343,0.38281 0.74739,0 1.41731,-0.1276 2.00977,-0.38281 0.60155,-0.25521 1.11197,-0.60612 1.53125,-1.05274 0.41926,-0.44661 0.73371,-0.97525 0.94336,-1.58594 0.21874,-0.61978 0.32811,-1.29426 0.32812,-2.02343" />
<path
style="fill:#0000ff"
id="path5480-6"
d="m 566.82898,659.22131 c -0.67449,-0.33722 -1.47657,-0.50584 -2.40625,-0.50586 -0.76563,2e-5 -1.44923,0.16408 -2.05078,0.49219 -0.60157,0.32814 -1.11199,0.76108 -1.53125,1.29883 -0.41928,0.52865 -0.74285,1.13933 -0.9707,1.83203 -0.21876,0.6836 -0.32813,1.38998 -0.32813,2.11914 l 0,4.11524 2.88477,0 0,1.59961 -7.64258,0 0,-1.59961 2.88476,0 0,-9.54297 -2.88476,0 0,-1.59961 4.75781,0 0,3.19922 c 0.85677,-2.33332 2.48372,-3.49999 4.88086,-3.5 0.64712,1e-5 1.20767,0.041 1.68164,0.12304 0.48306,0.082 0.92968,0.22788 1.33984,0.4375 l -0.61523,1.53125" />
<path
style="fill:#0000ff"
id="path5482-0"
d="m 582.97546,666.11194 c -0.14584,1.33984 -0.67449,2.40625 -1.58593,3.19922 -0.90236,0.78385 -2.03256,1.17578 -3.39063,1.17578 -0.7474,0 -1.43099,-0.12305 -2.05078,-0.36914 -0.6198,-0.2461 -1.14844,-0.58789 -1.58594,-1.02539 -0.4375,-0.4375 -0.7793,-0.96159 -1.02539,-1.57227 -0.23698,-0.61979 -0.35547,-1.29427 -0.35547,-2.02344 l 0,-6.46679 -2.88476,0 0,-1.59961 2.88476,0 0,-5.09961 1.87305,0 0,5.09961 5.42773,0 0,1.59961 -5.42773,0 0,6.46679 c 0,0.46485 0.0729,0.90235 0.21875,1.3125 0.15494,0.41016 0.36458,0.77019 0.62891,1.08008 0.27343,0.3099 0.60155,0.55599 0.98437,0.73828 0.38281,0.17318 0.82031,0.25977 1.3125,0.25977 0.92968,0 1.70442,-0.28711 2.32422,-0.86133 0.6289,-0.58333 0.98892,-1.33528 1.08008,-2.25586 l 1.57226,0.3418" />
</g>
<rect
y="743.02283"
x="523.18762"
height="104.87294"
width="114.60768"
id="rect3686-0"
style="fill:#ffffff;fill-opacity:0.81089741;fill-rule:evenodd;stroke:none" />
<text
id="text3617-6-0"
y="638.20697"
x="237.74922"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="638.20697"
x="237.74922"
id="tspan3619-3-2"
sodipodi:role="line">(0,0)</tspan></text>
<text
id="text3617-9-2"
y="962.45062"
x="425.69684"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="962.45062"
x="425.69684"
id="tspan3619-95-6"
sodipodi:role="line">(250,250)</tspan></text>
<text
id="text3617-6-2-9"
y="962.45062"
x="549.71265"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="962.45062"
x="549.71265"
id="tspan3619-3-1-0"
sodipodi:role="line">(200,200)</tspan></text>
<path
transform="translate(9.8166487,478.48416)"
d="m 121.78571,168.61218 c 0,3.45178 -2.79822,6.25 -6.25,6.25 -3.45178,0 -6.25,-2.79822 -6.25,-6.25 0,-3.45178 2.79822,-6.25 6.25,-6.25 3.45178,0 6.25,2.79822 6.25,6.25 z"
sodipodi:ry="6.25"
sodipodi:rx="6.25"
sodipodi:cy="168.61218"
sodipodi:cx="115.53571"
id="path5260-3"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
sodipodi:type="arc" />
<text
id="text3617-91-5"
y="742.76575"
x="269.79135"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="742.76575"
x="269.79135"
id="tspan3619-34-5"
sodipodi:role="line">(50,50)</tspan></text>
<text
id="text3617-6-5-8"
y="742.76575"
x="485.03101"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="742.76575"
x="485.03101"
id="tspan3619-3-8-7"
sodipodi:role="line">(100,100)</tspan></text>
<g
transform="matrix(0.31250009,0,0,0.55421684,341.47681,329.82696)"
id="g5423-1">
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect5337-7"
width="16"
height="480"
x="605"
y="577.35956" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341-0"
width="16"
height="9"
x="605"
y="567.35956" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341-5-6"
width="16"
height="8.9999609"
x="605"
y="1058.3596" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 608,1060.3596 10,0 -5,5 -5,-5 z"
id="path5365-0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 618,574.3596 -10,0 5,-5 5,5 z"
id="path5365-7-4"
sodipodi:nodetypes="cccc" />
</g>
<g
transform="matrix(0,0.31250009,-0.55421684,0,713.1426,740.97918)"
id="g5423-3-1">
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect5337-3-3"
width="16"
height="700.91309"
x="605"
y="356.44656" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341-8-0"
width="16"
height="9"
x="605"
y="345.42477" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect5341-5-9-2"
width="16"
height="8.9999609"
x="605"
y="1058.3596" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 608,1060.3596 10,0 -5,5 -5,-5 z"
id="path5365-5-9"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 618,352.42481 -10,0 5,-5 5,5 z"
id="path5365-7-5-6"
sodipodi:nodetypes="cccc" />
</g>
<g
transform="translate(0.21878366,-31.277496)"
id="text5505-0"
style="font-size:21.70134163px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Anonymous Pro;-inkscape-font-specification:Anonymous Pro">
<path
id="path5510-9"
style="fill:#ff0000"
d="m 644.96058,578.7356 c -0.36029,1.1868 -0.95015,2.12987 -1.7696,2.82923 -0.81945,0.6923 -1.85083,1.03844 -3.09413,1.03844 -0.96781,0 -1.78726,-0.19779 -2.45836,-0.59339 -0.6711,-0.40266 -1.22211,-0.93248 -1.65303,-1.58946 -0.42385,-0.65697 -0.73115,-1.41637 -0.92188,-2.27821 -0.18367,-0.86183 -0.27551,-1.75546 -0.27551,-2.68088 0,-0.92541 0.0918,-1.81903 0.27551,-2.68088 0.19073,-0.86183 0.49803,-1.62476 0.92188,-2.28881 0.43092,-0.66403 0.98193,-1.19385 1.65303,-1.58946 0.6711,-0.40264 1.49055,-0.60398 2.45836,-0.60399 0.85477,10e-6 1.58591,0.1519 2.19344,0.45564 0.60752,0.30378 1.0561,0.76649 1.34574,1.38813 l 0,-1.61065 1.23978,0 0,4.53524 -1.23978,0 c -10e-6,-0.48742 -0.0954,-0.9466 -0.2861,-1.37752 -0.18368,-0.43798 -0.43446,-0.81591 -0.75234,-1.13381 -0.3179,-0.31788 -0.69584,-0.56513 -1.13381,-0.74175 -0.43093,-0.18366 -0.88657,-0.27549 -1.36693,-0.27551 -0.74882,2e-5 -1.37047,0.17662 -1.86496,0.52982 -0.48744,0.35323 -0.8795,0.81593 -1.1762,1.38813 -0.2967,0.57221 -0.50862,1.20799 -0.63578,1.90734 -0.12009,0.69937 -0.18014,1.39873 -0.18014,2.09808 0,0.6923 0.06,1.39166 0.18014,2.09808 0.12716,0.69936 0.33908,1.33161 0.63578,1.89675 0.2967,0.55807 0.68876,1.01725 1.1762,1.37752 0.49449,0.35322 1.11614,0.52982 1.86496,0.52982 1.72367,0 2.92459,-1.04197 3.60276,-3.12593 l 1.26097,0.49803" />
<path
id="path5512-3"
style="fill:#ff0000"
d="m 646.84673,579.68928 c 0,-0.62165 0.15541,-1.14087 0.46624,-1.55767 0.31082,-0.42385 0.71702,-0.75587 1.21858,-0.99606 0.50862,-0.24724 1.08789,-0.42385 1.7378,-0.52981 0.65697,-0.11303 1.32454,-0.16954 2.00271,-0.16955 0.26137,10e-6 0.49449,0.004 0.69936,0.0106 0.21192,0.007 0.40972,0.0177 0.5934,0.0318 0.19073,0.0141 0.38146,0.0318 0.5722,0.053 0.19073,0.0212 0.39912,0.0459 0.62519,0.0742 l 0,-0.70996 c -10e-6,-0.48036 -0.10597,-0.87596 -0.31789,-1.18679 -0.20487,-0.31082 -0.45919,-0.55454 -0.76294,-0.73115 -0.30377,-0.18366 -0.62166,-0.31082 -0.95367,-0.38147 -0.33203,-0.0777 -0.6146,-0.11655 -0.84771,-0.11656 -0.73469,10e-6 -1.41285,0.0989 -2.0345,0.2967 -0.62166,0.19781 -1.20092,0.46271 -1.73781,0.79472 l -0.65697,-1.09142 c 0.5934,-0.36027 1.25743,-0.65343 1.99212,-0.8795 0.74174,-0.23311 1.55412,-0.34967 2.43716,-0.34968 0.53687,10e-6 1.06316,0.0707 1.57886,0.21193 0.52274,0.13423 0.98898,0.34616 1.39871,0.63578 0.41679,0.28258 0.74881,0.65698 0.99606,1.12321 0.24724,0.46625 0.37087,1.02433 0.37088,1.67423 l 0,6.46378 -1.4623,0 0,-1.65303 c -0.25432,0.31789 -0.54396,0.59693 -0.8689,0.83711 -0.3179,0.24018 -0.65345,0.43798 -1.00666,0.59339 -0.35322,0.14835 -0.70643,0.26138 -1.05963,0.33909 -0.35322,0.0848 -0.68877,0.12715 -1.00666,0.12715 -1.30688,0 -2.29588,-0.25078 -2.96698,-0.75234 -0.6711,-0.50156 -1.00665,-1.22211 -1.00665,-2.16165 m 3.97363,1.67422 c 0.60752,0 1.15147,-0.0883 1.63184,-0.26491 0.48743,-0.18367 0.90069,-0.40972 1.23978,-0.67817 0.33907,-0.26843 0.60045,-0.55454 0.78413,-0.8583 0.19072,-0.30376 0.28609,-0.57926 0.2861,-0.82652 l 0,-0.93248 c -0.47331,-0.0706 -0.92896,-0.10949 -1.36693,-0.11656 -0.43093,-0.007 -0.80533,-0.0106 -1.12322,-0.0106 -0.52275,0 -1.02785,0.0353 -1.51528,0.10596 -0.48037,0.0707 -0.90069,0.18721 -1.26096,0.34968 -0.36028,0.15542 -0.64991,0.36028 -0.8689,0.61459 -0.219,0.25432 -0.32849,0.56867 -0.32849,0.94308 0,0.41679 0.20133,0.80179 0.60399,1.155 0.40973,0.34615 1.04904,0.51922 1.91794,0.51922" />
<path
id="path5514-5"
style="fill:#ff0000"
d="m 668.09243,582.35956 -1.4623,0 0,-6.09291 c -10e-6,-0.88302 -0.19074,-1.56825 -0.5722,-2.05569 -0.38148,-0.48743 -0.9996,-0.73114 -1.85437,-0.73115 -0.53688,10e-6 -1.02432,0.12363 -1.46229,0.37087 -0.43093,0.24726 -0.79827,0.57928 -1.10203,0.99606 -0.30376,0.40973 -0.53688,0.88304 -0.69936,1.41991 -0.15541,0.52983 -0.23312,1.08437 -0.23312,1.66363 l 0,4.42928 -1.4517,0 0,-9.87581 1.4517,0 0,2.47955 c 0.69936,-1.80844 1.9462,-2.71266 3.74052,-2.71267 2.43009,10e-6 3.64514,1.33868 3.64515,4.01602 l 0,6.09291" />
<path
id="path5516-4"
style="fill:#ff0000"
d="m 680.80806,572.48375 -4.28093,9.87581 -1.94973,0 -4.30212,-9.87581 1.7378,0 3.53918,8.65723 3.51799,-8.65723 1.73781,0" />
<path
id="path5518-3"
style="fill:#ff0000"
d="m 682.45049,579.68928 c 0,-0.62165 0.15541,-1.14087 0.46624,-1.55767 0.31083,-0.42385 0.71702,-0.75587 1.21858,-0.99606 0.50862,-0.24724 1.08789,-0.42385 1.7378,-0.52981 0.65697,-0.11303 1.32454,-0.16954 2.00272,-0.16955 0.26137,10e-6 0.49449,0.004 0.69936,0.0106 0.21192,0.007 0.40972,0.0177 0.59339,0.0318 0.19073,0.0141 0.38146,0.0318 0.57221,0.053 0.19072,0.0212 0.39912,0.0459 0.62518,0.0742 l 0,-0.70996 c -10e-6,-0.48036 -0.10597,-0.87596 -0.31789,-1.18679 -0.20487,-0.31082 -0.45918,-0.55454 -0.76294,-0.73115 -0.30377,-0.18366 -0.62166,-0.31082 -0.95367,-0.38147 -0.33203,-0.0777 -0.61459,-0.11655 -0.84771,-0.11656 -0.73468,10e-6 -1.41285,0.0989 -2.0345,0.2967 -0.62166,0.19781 -1.20092,0.46271 -1.7378,0.79472 l -0.65698,-1.09142 c 0.5934,-0.36027 1.25744,-0.65343 1.99212,-0.8795 0.74174,-0.23311 1.55413,-0.34967 2.43716,-0.34968 0.53688,10e-6 1.06316,0.0707 1.57886,0.21193 0.52274,0.13423 0.98898,0.34616 1.39872,0.63578 0.41678,0.28258 0.7488,0.65698 0.99606,1.12321 0.24723,0.46625 0.37086,1.02433 0.37087,1.67423 l 0,6.46378 -1.4623,0 0,-1.65303 c -0.25432,0.31789 -0.54395,0.59693 -0.8689,0.83711 -0.3179,0.24018 -0.65345,0.43798 -1.00666,0.59339 -0.35321,0.14835 -0.70642,0.26138 -1.05963,0.33909 -0.35322,0.0848 -0.68877,0.12715 -1.00665,0.12715 -1.30689,0 -2.29588,-0.25078 -2.96699,-0.75234 -0.6711,-0.50156 -1.00665,-1.22211 -1.00665,-2.16165 m 3.97364,1.67422 c 0.60752,0 1.15146,-0.0883 1.63183,-0.26491 0.48743,-0.18367 0.90069,-0.40972 1.23978,-0.67817 0.33907,-0.26843 0.60045,-0.55454 0.78413,-0.8583 0.19073,-0.30376 0.28609,-0.57926 0.2861,-0.82652 l 0,-0.93248 c -0.47331,-0.0706 -0.92895,-0.10949 -1.36693,-0.11656 -0.43092,-0.007 -0.80533,-0.0106 -1.12321,-0.0106 -0.52276,0 -1.02785,0.0353 -1.51528,0.10596 -0.48037,0.0707 -0.9007,0.18721 -1.26097,0.34968 -0.36028,0.15542 -0.64991,0.36028 -0.8689,0.61459 -0.21899,0.25432 -0.32849,0.56867 -0.32849,0.94308 0,0.41679 0.20133,0.80179 0.60399,1.155 0.40973,0.34615 1.04904,0.51922 1.91795,0.51922" />
<path
id="path5520-6"
style="fill:#ff0000"
d="m 703.9505,579.6257 c -1e-5,0.57927 -0.14483,1.05964 -0.43445,1.4411 -0.28964,0.38147 -0.66405,0.68523 -1.12321,0.91129 -0.45212,0.22606 -0.96075,0.385 -1.52588,0.47684 -0.55808,0.0989 -1.10556,0.14834 -1.64244,0.14834 -0.89716,0 -1.79078,-0.13068 -2.68087,-0.39206 -0.8901,-0.26138 -1.6601,-0.60399 -2.31001,-1.02785 l 0.64638,-1.25037 c 0.72761,0.45918 1.44463,0.81239 2.15106,1.05964 0.70642,0.24725 1.43757,0.37087 2.19344,0.37087 2.18285,0 3.27427,-0.56514 3.27428,-1.69542 -10e-6,-0.2755 -0.0918,-0.49802 -0.27551,-0.66757 -0.17661,-0.1766 -0.41679,-0.31788 -0.72055,-0.42385 -0.30377,-0.11303 -0.65345,-0.20133 -1.04904,-0.26491 -0.38854,-0.0636 -0.79826,-0.12362 -1.22918,-0.18014 -0.55101,-0.0777 -1.09849,-0.16954 -1.64243,-0.2755 -0.54395,-0.10596 -1.04198,-0.26491 -1.49409,-0.47684 -0.44505,-0.21192 -0.80532,-0.49449 -1.08083,-0.84771 -0.26844,-0.3532 -0.40266,-0.81944 -0.40266,-1.39872 0,-0.49449 0.12363,-0.92187 0.37087,-1.28216 0.25432,-0.36026 0.58987,-0.66049 1.00666,-0.90069 0.42385,-0.24017 0.91835,-0.41678 1.48349,-0.52982 0.56513,-0.11301 1.15147,-0.16953 1.75899,-0.16954 0.8689,10e-6 1.64597,0.10244 2.3312,0.3073 0.68523,0.19781 1.30335,0.48391 1.85437,0.8583 l -0.5828,1.13381 c -0.56515,-0.39559 -1.13735,-0.67109 -1.71661,-0.82651 -0.57928,-0.16247 -1.20799,-0.24371 -1.88616,-0.24372 -0.30376,10e-6 -0.64285,0.0283 -1.01725,0.0848 -0.36734,0.0495 -0.70995,0.14129 -1.02784,0.27551 -0.3179,0.12716 -0.58634,0.2967 -0.80533,0.50862 -0.21192,0.20487 -0.31789,0.46625 -0.31789,0.78413 0,0.27551 0.0883,0.49804 0.26491,0.66757 0.18367,0.16249 0.42739,0.30024 0.73115,0.41326 0.30376,0.10597 0.64991,0.19074 1.03844,0.25431 0.3956,0.0636 0.80886,0.12363 1.23978,0.18014 0.53687,0.0777 1.07729,0.16955 1.62124,0.27551 0.551,0.10597 1.04903,0.26138 1.49409,0.46624 0.4521,0.20486 0.81591,0.4839 1.09142,0.83711 0.2755,0.35321 0.41325,0.81945 0.41326,1.39872" />
</g>
<text
id="text3617-17-1-2-4"
y="637.38617"
x="146.09894"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="637.38617"
x="146.09894"
id="tspan3619-93-6-1-3"
sodipodi:role="line">(50,50)</tspan></text>
<text
id="text3617-6-5-0-1"
y="742.76575"
x="363.3252"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="742.76575"
x="363.3252"
id="tspan3619-3-8-5-9"
sodipodi:role="line">(100,100)</tspan></text>
<text
id="text3617-97-1"
y="962.45062"
x="301.68106"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="962.45062"
x="301.68106"
id="tspan3619-38-0"
sodipodi:role="line">(250,250)</tspan></text>
<path
transform="translate(405.83043,751.31888)"
d="m 121.78571,168.61218 c 0,3.45178 -2.79822,6.25 -6.25,6.25 -3.45178,0 -6.25,-2.79822 -6.25,-6.25 0,-3.45178 2.79822,-6.25 6.25,-6.25 3.45178,0 6.25,2.79822 6.25,6.25 z"
sodipodi:ry="6.25"
sodipodi:rx="6.25"
sodipodi:cy="168.61218"
sodipodi:cx="115.53571"
id="path5260-9-9"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
sodipodi:type="arc" />
<text
id="text3617-0-4"
y="552.75555"
x="31.889761"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="552.75555"
x="31.889761"
id="tspan3619-9-5"
sodipodi:role="line">(0,0)</tspan></text>
<text
id="text3617-6-23-6"
y="551.40643"
x="152.8622"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="551.40643"
x="152.8622"
id="tspan3619-3-18-2"
sodipodi:role="line">(-25,-25)</tspan></text>
<text
id="text3617-17-1-2-7-5"
y="550.58563"
x="92.625984"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="550.58563"
x="92.625984"
id="tspan3619-93-6-1-4-9"
sodipodi:role="line">(0,0)</tspan></text>
<path
transform="translate(167.92885,581.73203)"
d="m 121.78571,168.61218 a 6.25,6.25 0 1 1 -12.5,0 6.25,6.25 0 1 1 12.5,0 z"
sodipodi:ry="6.25"
sodipodi:rx="6.25"
sodipodi:cy="168.61218"
sodipodi:cx="115.53571"
id="path5260-3-1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
sodipodi:type="arc" />
</g>
<g
id="g4272"
transform="translate(-609.4488,-485.43307)">
<g
transform="translate(611.03086,6.5687638)"
id="g3308">
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="170.85327"
y="485.95062"
id="text6951"><tspan
sodipodi:role="line"
id="tspan6953"
x="170.85327"
y="485.95062">Real</tspan></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="257.07938"
y="485.95062"
id="text6955"><tspan
sodipodi:role="line"
id="tspan6957"
x="257.07938"
y="485.95062">Transformiert</tspan></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="441.33133"
y="485.95062"
id="text6959"><tspan
sodipodi:role="line"
id="tspan6961"
x="441.33133"
y="485.95062">Sichtbereich</tspan></text>
</g>
<rect
y="461.53601"
x="743.76074"
height="40.706882"
width="477.77383"
id="rect3316"
style="fill:none;stroke:#000000;stroke-width:1.81277609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:21.75331234, 1.81277604;stroke-dashoffset:0" />
</g>
</g>
</svg>
|