-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimo.html
2598 lines (2580 loc) · 204 KB
/
primo.html
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
<html>
<meta charset="utf-8">
<style>
.light .on {
fill: #FFFF00;
}
.light .off {
fill: #ADADAD;
}
.text {
pointer-events: none;
}
</style>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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="674.26361"
height="346.07101"
id="pianoprimo"
name="pianoprimo"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="primo.svg"
inkscape:export-filename="/home/michele/Dropbox/comPVter/Domotica/pianta.png"
inkscape:export-xdpi="300"
inkscape:export-ydpi="300">
<defs
id="defs4">
<linearGradient
id="linearGradient6168"
osb:paint="solid">
<stop
style="stop-color:#808080;stop-opacity:1;"
offset="0"
id="stop6170" />
</linearGradient>
<linearGradient
id="linearGradient4553">
<stop
style="stop-color:#808080;stop-opacity:1;"
offset="0"
id="stop4555" />
<stop
id="stop4567"
offset="0.5"
style="stop-color:#808080;stop-opacity:0.49803922;" />
<stop
style="stop-color:#808080;stop-opacity:1;"
offset="1"
id="stop4557" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2"
inkscape:cx="333.18964"
inkscape:cy="137.96152"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:snap-global="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:snap-object-midpoints="true"
inkscape:window-width="1920"
inkscape:window-height="1025"
inkscape:window-x="-2"
inkscape:window-y="-3"
inkscape:window-maximized="1"
units="pt"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:snap-nodes="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="aree luci"
style="display:inline"
transform="translate(-13.018372,-320.46871)"
class="light">
<path
style="color:#000000;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 401.86089,526.05091 0.0312,55.5625 c 0,12.02433 0,6.05803 0,20.4375 l 0,34.46875 95.25,0 -0.0312,-110.46875 z"
id="l61"
inkscape:connector-curvature="0"
inkscape:label="#path6537"
class="off"
sodipodi:nodetypes="ccccccc" />
<path
style="color:#000000;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 501.11089,526.05091 0.0312,110.46875 95.25,0 0,-34.78125 c 0,-8.14879 0,-11.62098 0,-19.8125 l -0.0312,-55.875 z"
id="l63"
inkscape:connector-curvature="0"
inkscape:label="#path6543"
class="off"
sodipodi:nodetypes="ccccccc" />
<path
style="color:#000000;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 600.36089,526.05091 0.0312,55.5 c 0,10.77425 0,6.75995 0,20.5625 l 0,34.40625 44.1875,0 -0.0312,-103.1875 -14.28125,0 0,-7.28125 z"
id="l64"
inkscape:connector-curvature="0"
inkscape:label="#path6546"
class="off"
sodipodi:nodetypes="ccccccccc" />
<path
style="color:#000000;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 305.67339,526.05091 0,110.46875 92.21875,0 0,-34.65625 c 0,-9.08243 0,-10.44391 0,-20.0625 l -0.0312,-55.75 -92.1875,0 z"
id="l62"
inkscape:connector-curvature="0"
inkscape:label="#path6524"
class="off"
sodipodi:nodetypes="cccccccc" />
<path
style="fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 55.89214,347.26966 0,95.96875 88.65625,0 0,-40.78125 c 0,-8.56 0,-10.73644 0,-20.25 l 0,-34.9375 z"
id="l57"
inkscape:connector-curvature="0"
inkscape:label="#path6392"
class="off"
sodipodi:nodetypes="ccccccc" />
<path
style="fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 148.54839,347.26966 0,34.90625 c 0,12.60667 0,8.03193 0,20.3125 l 0,40.75 88.6875,0 0,-95.96875 z"
id="l53"
inkscape:connector-curvature="0"
inkscape:label="#rect6366"
class="off"
sodipodi:nodetypes="ccccccc" />
<path
style="color:#000000;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 56.11089,452.42591 1.53125,130.75 13.15625,13 58.0625,-57.0625 27.625,-0.0625 0,-86.625 z"
id="l58"
inkscape:connector-curvature="0"
inkscape:label="#path6435"
class="off"
sodipodi:nodetypes="ccccccc" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 160.50375,537.67209 32.82029,-0.0845 0,-86.53561 -32.81365,0 z"
id="l54"
inkscape:connector-curvature="0"
inkscape:label="#path6394"
class="off" />
<rect
style="fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect5847"
width="23.107239"
height="30.557114"
x="273.96558"
y="486.92062"
inkscape:label="#rect6399"
class="off" />
<path
style="color:#000000;fill-opacity:1;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 243.82964,451.17591 0,90.1875 23.40625,0 0,-60.90625 30.90625,0 0,-29.28125 z"
id="l14"
inkscape:connector-curvature="0"
class="off"
sodipodi:nodetypes="ccccccc" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 202.87161,452.57098 35.16834,0 0,91.98733 33.40993,-0.0108 0,-18.9033 24.74345,0 0,46.51249 -54.76215,0 -38.55657,-31.54309 z"
id="l51"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccc"
inkscape:label="#path6406"
class="off" />
<path
style="color:#000000;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 130.54839,547.51966 -54.375,54.375 34.8125,34.84375 125.34375,0 0,-57.15625 -39.625,-32.0625 z"
id="l55"
inkscape:connector-curvature="0"
inkscape:label="#path6437"
class="off"
sodipodi:nodetypes="ccccccc" />
<path
style="fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 243.54839,581.23841 0,55.5625 53.90625,0 0,-55.5625 z"
id="l52"
inkscape:connector-curvature="0"
class="off"
sodipodi:nodetypes="ccccc" />
<rect
style="fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="l65"
width="28.915617"
height="24.685602"
x="654.35114"
y="532.31433"
inkscape:label="#rect6550"
class="off" />
<rect
style="fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="l66"
width="29.910715"
height="43.57143"
x="653.21948"
y="563.23102"
inkscape:label="#rect6552"
class="off" />
<rect
style="fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="l67"
width="28.660715"
height="22.857143"
x="654.46954"
y="614.65961"
inkscape:label="#rect6554"
class="off" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c8c8c8;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 476.78821,451.42586 0,20.97824 45.46956,0 0,-20.97893 z"
id="path6296-0"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c8c8c8;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 542.66606,451.42586 0,20.97824 45.46956,0 0,-20.97893 z"
id="path6296-0-1"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#808080;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 245.92106,522.05633 19.4328,0"
id="path4024-4"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#808080;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 245.92106,514.05633 19.4328,0"
id="path4024-9-6"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#808080;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 245.92106,506.05633 19.4328,0"
id="path4024-2-8-7"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#808080;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 245.92106,498.05633 19.4328,0"
id="path4024-3-3"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#808080;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 245.92106,490.05633 19.4328,0"
id="path4024-2-6-0"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#808080;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 245.92106,482.05633 19.4328,0"
id="path4024-21-1"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="lampadineGuaste"
style="display:none"
transform="translate(-13.018372,-756.29539)">
<g
id="g5651-5-6"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,-112.00007,1132.6873)">
<path
id="path3597-5-3-8"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-7"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-2"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-6"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-6"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-2"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-3"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-4"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-7"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-1"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-7"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,-31.330462,1130.9885)">
<path
id="path3597-5-3-0"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-6"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-6"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-1"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-7"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-3"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-2"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-2"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-3"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-7"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-3"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,79.270647,1130.6766)">
<path
id="path3597-5-3-3"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-1"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-61"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-0"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-8"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-38"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-4"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-3"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-78"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-15"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-2"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,109.28592,1130.1139)">
<path
id="path3597-5-3-4"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-0"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-9"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-8"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-9"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-0"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-6"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-6"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-34"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-158"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-4"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,97.478076,1211.7311)">
<path
id="path3597-5-3-43"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-8"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-7"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-9"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-99"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-04"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-7"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-69"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-77"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-0"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-29"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,48.640437,1289.4917)">
<path
id="path3597-5-3-6"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-2"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-94"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-2"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-1"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-1"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-8"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-47"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-9"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-17"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-47"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,-18.703313,1289.7729)">
<path
id="path3597-5-3-04"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-62"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-5"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-5"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-2"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-14"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-0"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-0"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-1"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-70"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-476"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,118.30269,1244.6938)">
<path
id="path3597-5-3-88"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-3"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-0"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-96"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-83"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-30"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-62"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-63"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-2"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-09"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-65"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,152.73008,1243.9314)">
<path
id="path3597-5-3-68"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-60"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-1"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-84"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-88"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-05"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-68"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-5"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-19"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-4"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-79"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,152.73008,1282.3724)">
<path
id="path3597-5-3-9"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-29"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-54"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-50"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-95"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-15"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-27"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-60"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-0"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-78"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-45"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,250.29669,1289.6166)">
<path
id="path3597-5-3-84"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-37"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-28"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-03"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-5"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-8"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-34"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-22"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="1000"
inkscape:export-xdpi="1000"
inkscape:export-filename="/home/michele/Bicicletta/- ULTIMA VERSIONE/cad taglio laser/nostro taglio laser/colore.png"
inkscape:connector-curvature="0"
id="path3268-1-5-6-27"
d="m 342.97825,225.26437 c 0,0.51491 -0.42558,0.93229 -0.95054,0.93229 -0.52498,0 -0.95055,-0.41738 -0.95055,-0.93229 0,-0.51486 0.42557,-0.9323 0.95055,-0.9323 0.52496,0 0.95054,0.41744 0.95054,0.9323 z"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path5649-2-02"
d="m 342.08116,217.225 c 0,0 -1.14008,-0.0843 -1.05014,0.99327 l 0.32535,3.89785 c 0,0 0.003,0.90953 0.69717,0.90953 0,0 0.61122,0.0934 0.69717,-0.90953 l 0.33639,-3.92547 c 0.0865,-1.03676 -1.00594,-0.96565 -1.00594,-0.96565 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
</g>
<g
id="g5651-5-67"
style="display:inline;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.59889905,0,0,0.59889905,339.78268,1289.6272)">
<path
id="path3597-5-3-41"
transform="translate(0,-435.82668)"
d="m 337.53125,645.8125 -0.0312,5.15625 c -2.09856,1.4476 -3.46875,3.8827 -3.46875,6.625 0,4.4325 3.59874,8.03125 8.03125,8.03125 4.4325,0 8.03125,-3.59875 8.03125,-8.03125 0,-2.7672 -1.40043,-5.21335 -3.53125,-6.65625 l 0.0312,-5.125 -9.0625,0 z m 1.78125,1.90625 5.46875,0 0,2.28125 c 0,0 -2.55522,-1.12236 -5.4375,0.0312 l -0.0312,-2.3125 z m 2.75,3.875 c 3.28721,0 5.9375,2.65029 5.9375,5.9375 0,3.28722 -2.65029,5.96875 -5.9375,5.96875 -3.28721,0 -5.96875,-2.68153 -5.96875,-5.96875 0,-3.28721 2.68154,-5.9375 5.96875,-5.9375 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 334.46943,215.64856 1.4796,-1.51267 m -1.4796,1.51267 -4.94298,-4.94297 1.49615,-1.49613 4.92646,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-56-23"
inkscape:connector-curvature="0" />
<path
d="m 332.38559,222.75527 -0.0234,-2.11585 m 0.0234,2.11585 -6.99043,2e-5 1e-5,-2.11586 6.96706,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-2-72"
inkscape:connector-curvature="0" />
<path
d="m 334.44631,227.74904 1.4796,1.51267 m -1.4796,-1.51267 -4.94299,4.94297 1.49615,1.49613 4.92647,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-4-3"
inkscape:connector-curvature="0" />
<path
d="m 349.81644,215.64856 -1.4796,-1.51267 m 1.4796,1.51267 4.943,-4.94297 -1.4962,-1.49613 -4.9264,4.92646"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-7-4-63"
inkscape:connector-curvature="0" />
<path
d="m 351.90004,222.75527 0.023,-2.11585 m -0.023,2.11585 6.9905,2e-5 0,-2.11586 -6.9671,-1e-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-17-6-6-9"
inkscape:connector-curvature="0" />
<path
d="m 349.83954,227.74904 -1.4796,1.51267 m 1.4796,-1.51267 4.943,4.94297 -1.4961,1.49613 -4.9265,-4.92645"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-4-23"
inkscape:connector-curvature="0" />
<path
d="m 343.03426,231.38183 -2.11587,0.0234 m 2.11587,-0.0234 10e-6,6.99043 -2.11586,-3e-5 -10e-6,-6.96704"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;stroke:#ff8000;stroke-width:0.41743261;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
id="path4604-8-3-5-0-5-5-57"