1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
id="svg73"
sodipodi:docname="→.svg"
width="250"
height="250"
viewBox="0 0 62.5 250"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:inkstitch="http://inkstitch.org/namespace">
<sodipodi:namedview
id="namedview75"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="true"
inkscape:zoom="2.8284271"
inkscape:cx="63.462834"
inkscape:cy="121.44559"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g1106"
inkscape:document-units="px"
inkscape:snap-grids="false"
inkscape:snap-global="false">
<sodipodi:guide
position="0,187"
orientation="0,1"
inkscape:label="caps"
id="guide934"
inkscape:locked="true"
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
position="0,800"
orientation="0,1"
inkscape:label="ascender"
id="guide1051" />
<sodipodi:guide
position="0,1030"
orientation="0,1"
inkscape:label="caps"
id="guide1053" />
<sodipodi:guide
position="0,0"
orientation="0,1"
inkscape:label="baseline"
id="guide1055"
inkscape:locked="true"
inkscape:color="rgb(0,0,255)" />
<inkscape:grid
type="xygrid"
id="grid2165" />
</sodipodi:namedview>
<metadata
id="metadata2">
By Mathieu Reguer
Sandrine Nugue
<inkstitch:collapse_len_mm />
</metadata>
<defs
id="defs71">
<inkscape:path-effect
effect="interpolate"
id="path-effect1956"
is_visible="true"
lpeversion="1"
trajectory="M 19.635827,136.61417 H -18.159449"
equidistant_spacing="true"
steps="4"
trajectory-nodetypes="cc" />
<font
id="InfiniPicto-Bold"
horiz-adv-x="0"
horiz-origin-x="0"
horiz-origin-y="0"
vert-origin-x="512"
vert-origin-y="768"
vert-adv-y="1024">
<font-face
font-family="Infini Picto"
font-weight="900"
font-stretch="normal"
units-per-em="1000"
panose-1="2 0 0 0 0 0 0 0 0 0"
ascent="800"
descent="-200"
cap-height="1030"
bbox="0 -441 1404 1031"
underline-thickness="90"
underline-position="-90"
stemh="95"
stemv="180"
unicode-range="U+0020-2009"
id="font-face4" />
<missing-glyph
horiz-adv-x="500"
d="M0 0v750h500v-750h-500zM250 449l124 232h-248zM73 118l138 257l-138 257v-514zM427 118v514l-137 -257zM126 69h248l-124 232z"
id="missing-glyph6" />
<glyph
glyph-name=".notdef"
horiz-adv-x="500"
d="M0 0v750h500v-750h-500zM250 449l124 232h-248zM73 118l138 257l-138 257v-514zM427 118v514l-137 -257zM126 69h248l-124 232z"
id="glyph8" />
<glyph
glyph-name=".null"
id="glyph10" />
<glyph
glyph-name="CR"
id="glyph12" />
<glyph
glyph-name="space"
unicode=" "
horiz-adv-x="220"
id="glyph14" />
<glyph
glyph-name="thinspace"
unicode=" "
horiz-adv-x="90"
id="glyph16" />
<glyph
glyph-name="A"
unicode="A"
horiz-adv-x="1147"
d="M148 475c0 -105 72 -191 162 -200l160 365c-44 7 -82 11 -138 11c-108 0 -184 -65 -184 -176zM648 270l-102 318l-99 -318h201zM417 175l-55 -175h-168v10l78 178c-163 34 -242 153 -242 287c0 162 103 294 317 294c60 0 103 -3 175 -9h87l82 -197l198 120l22 146l12 8 l184 -231l-12 -8l-148 17l-194 -201l167 -404v-10h-186l-56 175h-261z"
id="glyph18" />
<glyph
glyph-name="B"
unicode="B"
horiz-adv-x="1046"
d="M508 980h239c156 0 235 -69 235 -167c0 -79 -49 -150 -152 -180v-10c107 -19 144 -82 144 -155c0 -91 -77 -238 -321 -238h-211l58 394zM635 624l-8 -274h53c101 0 145 66 145 137c0 66 -56 96 -111 105l5 66c72 13 112 46 112 109c0 51 -32 88 -118 88h-43zM225 0 l-185 174v10h956v-10l-185 -174h-586zM277 96c0 -27 20 -43 44 -43c23 0 43 16 43 43s-20 44 -43 44c-24 0 -44 -17 -44 -44zM478 96c0 -27 20 -43 44 -43c23 0 43 16 43 43s-20 44 -43 44c-24 0 -44 -17 -44 -44zM677 96c0 -27 20 -43 44 -43c23 0 43 16 43 43 s-20 44 -43 44c-24 0 -44 -17 -44 -44z"
id="glyph20" />
<glyph
glyph-name="C"
unicode="C"
horiz-adv-x="943"
d="M659 47c-35 -23 -129 -57 -220 -57c-216 0 -384 148 -384 388c0 237 155 382 397 382c63 0 150 -13 211 -24v-1c26 24 59 35 99 35c69 0 141 -48 141 -130c0 -24 -8 -49 -16 -60c-47 64 -101 87 -155 87c-20 0 -40 -3 -59 -8c18 -67 71 -98 154 -102 c-29 -35 -63 -44 -93 -44c-41 0 -74 22 -88 54c-55 35 -123 58 -214 58c-106 0 -229 -64 -229 -238c0 -150 73 -273 244 -273c69 0 134 16 193 49c-1 4 -1 9 -1 14c0 50 41 88 95 88c30 0 64 -9 93 -44c-83 -4 -137 -35 -154 -102c19 -5 39 -8 59 -8c54 0 108 23 155 87 c8 -11 16 -36 16 -60c0 -82 -72 -130 -141 -130c-42 0 -76 12 -103 39z"
id="glyph22" />
<glyph
glyph-name="D"
unicode="D"
horiz-adv-x="819"
d="M81 0l23 394l-23 356h306c218 0 377 -122 377 -360c0 -222 -151 -390 -386 -390h-297zM239 394l15 -274h124c134 0 238 92 238 275c-1 149 -93 230 -248 230h-115zM467 463c-26 0 -47 21 -47 47c0 25 20 46 47 46c26 0 46 -21 46 -46c0 -26 -20 -47 -46 -47zM400 319 c-25 0 -46 21 -46 47c0 25 21 46 46 46c26 0 46 -21 46 -46c0 -26 -20 -47 -46 -47zM334 175c-26 0 -47 21 -47 47c0 25 21 46 47 46s46 -21 46 -46c0 -26 -20 -47 -46 -47z"
id="glyph24" />
<glyph
glyph-name="E"
unicode="E"
horiz-adv-x="989"
d="M362 0c-210 0 -327 81 -327 234c0 116 61 163 115 206c45 35 85 67 85 130c0 54 -32 81 -75 81c-33 0 -55 -20 -65 -40h-10v68c37 52 89 91 174 91c107 0 185 -71 185 -184c0 -163 -115 -201 -115 -341c0 -72 64 -140 165 -174l19 323l-23 356h429l21 -151h-10l-265 64 l-15 -229l253 8l-10 -130l-243 44l15 -268l267 80h10l-20 -168h-560z"
id="glyph26" />
<glyph
glyph-name="F"
unicode="F"
horiz-adv-x="905"
d="M833 298l-261 16l18 -314h-180l19 323l-190 12l78 -69v-70h-10l-267 160v28l267 159h10v-70l-83 -70l198 3l-22 344h440l20 -151h-10l-275 65l-16 -256l274 5z"
id="glyph28" />
<glyph
glyph-name="G"
unicode="G"
horiz-adv-x="1444"
d="M712 70c-76 -53 -169 -80 -268 -80c-219 0 -389 144 -389 388c0 237 148 382 410 382c72 0 184 -15 222 -25l21 -188h-10c-49 37 -133 78 -247 78c-135 0 -248 -64 -248 -238c0 -155 87 -273 248 -273c61 0 126 12 164 38l-105 211v10h200l694 25v-178l-681 27zM1294 422 c-22 0 -41 18 -41 41c0 22 19 41 41 41c23 0 41 -19 41 -41c0 -23 -18 -41 -41 -41zM1154 415c-22 0 -41 18 -41 41c0 22 19 41 41 41c23 0 41 -19 41 -41c0 -23 -18 -41 -41 -41zM1154 121c-23 0 -41 18 -41 41c0 22 18 41 41 41c22 0 41 -19 41 -41c0 -23 -19 -41 -41 -41 zM1294 114c-23 0 -41 18 -41 41c0 22 18 41 41 41c22 0 41 -19 41 -41c0 -23 -19 -41 -41 -41z"
id="glyph30" />
<glyph
glyph-name="H"
unicode="H"
horiz-adv-x="1142"
d="M577 0l19 334h-354l19 -334h-180l23 394l-23 356h180l-20 -321h357l-21 321h173c72 3 175 26 216 113c56 0 136 -74 136 -196c0 -115 -52 -199 -138 -210c-41 89 -143 111 -218 112l-11 -175l22 -394h-180z"
id="glyph32" />
<glyph
glyph-name="I"
unicode="I"
horiz-adv-x="452"
d="M178 801h95v174h-95v-174zM178 551h95v174h-95v-174zM178 309h95v164h-95v-164zM160 0h-79l23 534l-23 496h290l-22 -496l22 -534h-85v202h-126v-202zM189 0v175h69v-175h-69z"
id="glyph34" />
<glyph
glyph-name="J"
unicode="J"
horiz-adv-x="1011"
d="M243 750l569 235h128l1 -546c0 -104 -47 -169 -159 -219l-471 -209c-28 -14 -64 -21 -106 -21c-40 0 -96 10 -135 20l-40 152l248 102c0 19 -1 39 -3 61zM731 797l135 60v-18l-135 -62v20zM731 747l135 60v-18l-135 -62v20zM474 433v251l222 97v-250zM731 697l135 60v-18 l-135 -62v20zM731 647l135 60v-18l-135 -62v20zM423 750l-11 -537c-1 -58 -12 -106 -35 -142l306 133c22 25 31 43 31 100v150l152 67v-151c0 -27 1 -51 -4 -70c31 32 54 78 54 149l-1 518zM474 350l181 79v-19l-181 -80v20zM473 300l181 79v-19l-181 -80v20zM471 250 l181 79v-19l-181 -80v20zM196 121c54 0 78 34 81 111l-203 -83c41 -15 90 -28 122 -28z"
id="glyph36" />
<glyph
glyph-name="K"
unicode="K"
horiz-adv-x="912"
d="M646 738l-18 18l48 149h46zM840 833l-158 -130l-16 16l139 149zM81 0l23 394l-23 356h180l-22 -356l22 -394h-180zM872 704l-152 -40l-18 18l170 66v-44zM729 0h-201l-238 388c-13 18 -20 40 -20 64c0 63 51 114 113 114c22 0 42 -6 59 -16l129 220l154 -154l-240 -114 c8 -15 12 -32 12 -50c0 -44 -25 -82 -61 -101l293 -341v-10z"
id="glyph38" />
<glyph
glyph-name="L"
unicode="L"
horiz-adv-x="668"
d="M397 -441c-75 0 -148 48 -148 136c0 75 37 104 37 166c0 44 -20 125 -191 139h-12v1l23 393l-23 356h176l-24 -659l296 85h10l-15 -133c74 -60 104 -132 104 -219c0 -123 -69 -265 -233 -265zM409 -288c4 -2 11 -4 20 -4c51 0 73 68 73 135c0 65 -35 129 -98 157h-72 c67 -27 118 -89 118 -161c0 -48 -11 -98 -41 -126v-1z"
id="glyph40" />
<glyph
glyph-name="M"
unicode="M"
horiz-adv-x="1096"
d="M40 0l223 750h71l209 -493l221 493h73l219 -750h-1016zM759 289l44 -125h3l21 88l-59 239h-3l-101 -227l24 -113h3l65 138h3zM355 278l56 -90h3l13 65l-96 233h-3l-53 -212l25 -107h2l50 111h3z"
id="glyph42" />
<glyph
glyph-name="N"
unicode="N"
horiz-adv-x="1024"
d="M701 267l-15 259c-43 -32 -106 -60 -183 -46zM334 475l35 -475h-168l15 562c-135 3 -176 64 -176 126c0 84 56 123 133 123c29 0 62 -6 81 -12c12 56 70 132 218 132c111 0 187 -40 213 -108c37 16 74 25 118 25c104 0 181 -62 181 -150c0 -75 -46 -161 -152 -166 l-23 -532h-31z"
id="glyph44" />
<glyph
glyph-name="O"
unicode="O"
horiz-adv-x="1050"
d="M525 -10c-227 0 -375 191 -375 388c0 45 6 88 17 126c-64 12 -112 64 -112 141c0 88 64 143 143 143c57 0 107 -29 130 -77c57 32 124 49 197 49s140 -17 197 -49c23 48 72 77 129 77c79 0 144 -55 144 -143c0 -77 -48 -128 -112 -141c11 -38 17 -80 17 -126 c0 -192 -148 -388 -375 -388zM525 110c130 1 227 117 227 265c-1 152 -90 251 -227 250c-137 2 -227 -100 -227 -249s96 -264 227 -266zM530 242h-20c-54 44 -88 82 -114 123v6c30 28 76 45 124 45s94 -17 124 -45v-6c-26 -41 -60 -79 -114 -123z"
id="glyph46" />
<glyph
glyph-name="P"
unicode="P"
horiz-adv-x="1100"
d="M239 394l22 -394h-180l23 394l-23 356h256c95 0 168 -28 214 -72l509 -26v-64l-457 2c3 -14 6 -28 7 -42l450 -16v-67c-160 -12 -197 -67 -282 -159c-73 -80 -140 -116 -238 -116c-100 0 -181 41 -232 90h1v88c99 0 154 46 154 137c0 74 -55 120 -176 120h-34zM347 439 c-31 0 -57 26 -57 57c0 32 26 57 57 57c32 0 57 -25 57 -57c0 -31 -25 -57 -57 -57z"
id="glyph48" />
<glyph
glyph-name="Q"
unicode="Q"
horiz-adv-x="1056"
d="M953 -428h-10c-23 257 -373 71 -445 424c-22 -4 -44 -6 -68 -6c-227 0 -375 191 -375 388c0 236 162 382 375 382s375 -146 375 -382c0 -133 -71 -267 -189 -338c128 -78 452 14 438 -337zM430 110c130 1 227 117 227 265c-1 152 -90 251 -227 250 c-137 2 -227 -100 -227 -249s96 -264 227 -266z"
id="glyph50" />
<glyph
glyph-name="R"
unicode="R"
horiz-adv-x="988"
d="M409 254h47l-52 74h-35zM488 110h69l-59 84h-56zM589 -74h97l-73 104h-81zM685 -250h-174l-205 595v46c83 14 127 51 127 128c0 66 -61 106 -136 106h-44l-14 -231l22 -394h-180l23 394l-23 356h249c166 0 250 -80 250 -193c0 -84 -44 -156 -157 -191l555 -606v-10h-169 l-66 95h-110z"
id="glyph52" />
<glyph
glyph-name="S"
unicode="S"
horiz-adv-x="872"
d="M507 697c-4 -22 14 -42 36 -44c22 -3 41 13 44 35c3 23 -14 42 -36 44c-21 2 -42 -12 -44 -35zM461 594c-2 -21 13 -43 35 -44c22 -2 43 13 45 35c3 23 -14 42 -36 45c-21 3 -42 -13 -44 -36zM270 -10c-44 0 -149 9 -199 23l-20 181h10c94 -76 151 -101 202 -101 c57 0 90 35 90 84s-18 80 -107 137l-69 44c-96 61 -125 135 -125 204c0 106 80 198 231 198c35 0 72 -2 106 -6c33 30 88 43 151 19c97 -38 132 -101 125 -158l72 -31l85 23l10 -50l-85 -9l47 -75l-47 -25l-33 81l-72 30c-34 -38 -111 -61 -197 -28c-59 23 -89 65 -95 111 c-18 5 -35 7 -53 7c-51 0 -88 -31 -88 -73c0 -37 15 -65 80 -109l72 -49c94 -64 147 -117 147 -216c0 -102 -67 -212 -238 -212z"
id="glyph54" />
<glyph
glyph-name="T"
unicode="T"
horiz-adv-x="754"
d="M434 651l29 -651h-179l32 650l-269 -69h-10l21 169h1l21 167l-71 -20v20l101 113h36l15 -280h165l24 173l-57 -40h-30l97 147h28l96 -147h-30l-57 40h-1l29 -173h167l16 281h36l101 -113v-20l-71 20l21 -168l20 -169h-10z"
id="glyph56" />
<glyph
glyph-name="U"
unicode="U"
horiz-adv-x="1429"
d="M1389 0h-982c-219 0 -315 143 -315 333l-15 417h179l-29 -417c0 -149 75 -213 180 -213s180 66 180 214l-29 416h179l-15 -416c0 -10 0 -19 -1 -29l172 113h30v-133h10l193 133h30v-133h10l193 133h30v-418z"
id="glyph58" />
<glyph
glyph-name="V"
unicode="V"
horiz-adv-x="1206"
d="M636 -10h-87l-200 483c-30 -6 -56 -9 -99 -9c-105 0 -200 51 -200 165c0 54 11 141 16 183h59l10 -109c7 -74 47 -86 114 -86c13 0 26 1 38 4l-49 119v10h186l188 -588l188 588h168v-10l-52 -117c13 -2 27 -4 41 -4c67 0 107 12 114 86l10 109h59c5 -42 16 -129 16 -183 c0 -114 -95 -165 -200 -165c-46 0 -72 3 -105 10z"
id="glyph60" />
<glyph
glyph-name="W"
unicode="W"
horiz-adv-x="1165"
d="M1110 127h-120c-2 -76 -65 -137 -139 -137c-90 0 -143 63 -143 137h-243c-2 -76 -55 -137 -142 -137c-86 0 -139 63 -139 137h-129v89h70v581h-60v80h1045v-80h-60v-581h60v-89zM719 216h57l254 571v10h-151l-115 -429l-154 429h-56l-145 -407l-90 407h-171v-10l222 -571 h57l153 345z"
id="glyph62" />
<glyph
glyph-name="X"
unicode="X"
horiz-adv-x="1218"
d="M775 503c20 0 36 16 36 35c0 20 -16 36 -36 36s-36 -16 -36 -36c0 -19 16 -35 36 -35zM616 353c20 0 36 16 36 35c0 20 -16 36 -36 36s-36 -16 -36 -36c0 -19 16 -35 36 -35zM333 306l-132 -306h-192v10l273 388l-234 342v10h185l130 -243l111 243h237l502 -750h-157 l-448 673l-56 -72l402 -601h-157l-329 493l-56 -73l281 -410v-10h-192zM452 196c20 0 36 16 36 35c0 20 -16 36 -36 36s-36 -16 -36 -36c0 -19 16 -35 36 -35zM990 163c0 -19 16 -35 36 -35s36 16 36 35c0 20 -16 36 -36 36s-36 -16 -36 -36zM731 163c0 -19 16 -35 36 -35 s36 16 36 35c0 20 -16 36 -36 36s-36 -16 -36 -36zM501 93c0 -19 16 -35 36 -35s36 16 36 35c0 20 -16 36 -36 36s-36 -16 -36 -36z"
id="glyph64" />
<glyph
glyph-name="Y"
unicode="Y"
horiz-adv-x="1024"
d="M599 0h-180l23 353l-262 387v10h197l148 -328l135 328h188v-10l-269 -382zM30 351c37 64 74 120 162 120s125 -57 162 -120c-37 -61 -74 -120 -162 -120s-125 58 -162 120zM670 351c37 64 74 120 162 120s125 -57 162 -120c-37 -61 -74 -120 -162 -120s-125 58 -162 120z M834 287c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64zM194 287c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64zM834 328c-13 0 -23 10 -23 22c0 13 10 23 23 23c12 0 22 -10 22 -23c0 -12 -10 -22 -22 -22zM194 328 c-13 0 -23 10 -23 22c0 13 10 23 23 23c12 0 22 -10 22 -23c0 -12 -10 -22 -22 -22z"
id="glyph66" />
<glyph
glyph-name="Z"
unicode="Z"
horiz-adv-x="695"
d="M579 911c-34 0 -61 23 -61 60s27 59 61 59c32 0 58 -22 58 -59s-26 -60 -58 -60zM420 911c-34 0 -61 23 -61 60s27 59 61 59c32 0 58 -22 58 -59s-26 -60 -58 -60zM208 869l-63 -157l-69 -15h-10l20 172h122zM608 812l-209 -45l47 102h199zM384 869l-51 -116l-121 -26 l59 142h113zM490 629l-181 -33l81 124l184 39zM398 492l-189 -48l63 98l181 35zM279 314l-184 -39l72 111l192 51zM548 0h-131v10l40 102v60l70 153l87 18h10l-30 -171h-46v-172zM449 307l-63 -135h-123l69 109zM193 0h-131v10l40 102v60h-62l17 47l200 45l-65 -92h1v-172z "
id="glyph68" />
</font>
<symbol
id="inkstitch_ignore_layer">
<title
id="title9694">Ignore entire layer when generating stitch plan</title>
<path
inkscape:connector-curvature="0"
style="opacity:1;vector-effect:none;fill:#fafafa;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.06501234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.19503705, 3.19503705;stroke-dashoffset:0;stroke-opacity:1"
d="M 9.2465269,-4.9265995e-6 C 9.246525,5.1067241 5.1067028,9.2465451 -2.615882e-5,9.2465451 -5.1067554,9.2465451 -9.2465782,5.1067241 -9.2465801,-4.9265995e-6 -9.24658,-2.4523429 -8.2723922,-4.8042399 -6.538327,-6.5383059 c 1.7340653,-1.734065 4.0859624,-2.708252 6.53830084118,-2.708252 5.10673015882,0 9.24655285882,4.139823 9.24655305882,9.2465529734005 0,0 0,0 0,0"
id="inkstitch_path25368-7" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
style="color:#000000;fill:#d5d5d5;fill-opacity:1;fill-rule:evenodd;stroke:#5a5a5a;stroke-width:0.63330007;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1"
d="M 4,4.452769 1.46667,1.286102 H -5.5 l 2.53333,3.166667 z"
id="use5800" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
style="color:#000000;opacity:0.5;fill:#d5d5d5;fill-opacity:1;fill-rule:evenodd;stroke:#858585;stroke-width:0.63339424;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1"
d="M 4,2.552769 1.46667,-0.613898 H -5.5 l 2.53333,3.166667 z"
id="use5864" />
<g
id="g5771">
<path
sodipodi:nodetypes="ccccccccc"
inkscape:connector-curvature="0"
style="fill:#aa0000;fill-rule:evenodd;stroke:#aa0000;stroke-width:1px"
d="m -1.0666699,-5.0472339 h 4.4333333 l 0.6333333,0.6333333 V 0.01943274 L 3.3666634,0.65276607 H -1.0666699 L -1.7000032,0.01943274 V -4.4139006 Z"
id="path8011" />
<path
inkscape:connector-curvature="0"
id="path8023"
d="m -0.43333658,-3.8755672 c 0,0 3.16666668,3.16666661 3.16666668,3.16666661"
style="fill:none;stroke:#ffffff;stroke-width:1.70000005" />
<path
inkscape:connector-curvature="0"
id="path8025"
d="m 2.7333301,-3.8755672 c 0,0 -3.16666668,3.16666661 -3.16666668,3.16666661"
style="fill:none;stroke:#ffffff;stroke-width:1.79999995;stroke-linejoin:round" />
</g>
</symbol>
</defs>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-A"
style="display:inline"
id="g1106">
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 93.601367,109.25 49.500003,-30 5.5,-36.5 3,-2 46,57.75 -3,2 -37,-4.25 -48.5,50.25 z"
id="path6746"
sodipodi:nodetypes="ccccccccc"
inkstitch:angle="30"
inkstitch:expand_mm="0.3"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path7131"
style="fill:#000000;stroke-width:0.25"
d="m 109.10137,146.5 41.75,101 v 2.5 h -46.5 L 90.351367,206.25 h -65.25 l -13.75,43.75 h -42 v -2.5 l 19.5,-44.5 62.5,-143 h 21.75 l 20.5,49.25 z m -26.250003,36 -25.5,-79.5 -24.75,79.5 z"
inkstitch:angle="45"
inkstitch:expand_mm="0.3"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path2692"
style="display:inline;fill:none;stroke:#008000;stroke-width:0.25"
d="m 47.018034,70 c -15.666667,-1.583333 -26,-2.416667 -40.6666673,-2.416667 C -38.3153,67.583333 -61.8153,95 -61.8153,131.25 c 0,31.08333 19.166667,58.08333 53.8333336,64.5 M 51.351367,60 c -18,-1.5 -28.75,-2.25 -43.7500003,-2.25 -53.4999997,0 -79.2499997,33 -79.2499997,73.5 0,33.5 19.75,63.25 60.5,71.75"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_underlay_inset_mm="0.1"
inkstitch:max_stitch_length_mm="4" />
<path
id="path2431"
style="display:inline;fill:none;stroke:#008000;stroke-width:0.25"
d="m -4.8152999,188.5 c -28.5833331,-4.33333 -47.1666661,-28.58333 -47.1666661,-57.25 0,-32 21.25,-53.833333 57.0833327,-53.833333 C 19.4347,77.416667 29.351367,78.333333 42.6847,80 M -7.9819664,195.75 C -42.648633,189.33333 -61.8153,162.33333 -61.8153,131.25 c 0,-36.25 23.5,-63.666667 68.1666667,-63.666667 14.6666673,0 25.0000003,0.833334 40.6666673,2.416667"
sodipodi:nodetypes="cssccssc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_underlay_inset_mm="0.1"
inkstitch:max_stitch_length_mm="4" />
<path
id="path1104"
style="display:inline;fill:none;stroke:#008000;stroke-width:0.25"
d="m 38.351367,90 c -11,-1.75 -20.5,-2.75 -34.5000003,-2.75 -26.9999997,0 -45.9999997,16.25 -45.9999997,44 0,26.25 18,47.75 40.4999997,50 M 42.6847,80 C 29.351367,78.333333 19.4347,77.416667 5.1013667,77.416667 -30.731966,77.416667 -51.981966,99.25 -51.981966,131.25 c 0,28.66667 18.583333,52.91667 47.1666661,57.25"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_underlay_inset_mm="0.1"
inkstitch:max_stitch_length_mm="4" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-B"
style="display:none"
id="g1110">
<path
id="path951"
style="display:inline;fill:#ff0000;stroke-width:0.25"
d="m -22.898633,250 -46.25,-43.5 V 204 H 169.85137 v 2.5 l -46.25,43.5 z m 12.9999997,-24 c 0,6.75 5,10.75 11,10.75 5.75,0 10.7500003,-4 10.7500003,-10.75 0,-6.75 -5.0000003,-11 -10.7500003,-11 -6,0 -11,4.25 -11,11 z m 50.2500003,0 c 0,6.75 5,10.75 11,10.75 5.75,0 10.75,-4 10.75,-10.75 0,-6.75 -5,-11 -10.75,-11 -6,0 -11,4.25 -11,11 z m 49.75,0 c 0,6.75 5,10.75 11.000003,10.75 5.75,0 10.75,-4 10.75,-10.75 0,-6.75 -5,-11 -10.75,-11 -6.000003,0 -11.000003,4.25 -11.000003,11 z"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2" />
<path
style="display:inline;fill:#559bff;fill-opacity:1;stroke-width:0.25"
d="m 90.101367,226 c 0,6.75 5,10.75 11.000003,10.75 5.75,0 10.75,-4 10.75,-10.75 0,-6.75 -5,-11 -10.75,-11 -6.000003,0 -11.000003,4.25 -11.000003,11 z"
id="path2243"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#559bff;fill-opacity:1;stroke-width:0.25"
d="m 40.351367,226 c 0,6.75 5,10.75 11,10.75 5.75,0 10.75,-4 10.75,-10.75 0,-6.75 -5,-11 -10.75,-11 -6,0 -11,4.25 -11,11 z"
id="path2241"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#559bff;fill-opacity:1;stroke-width:0.25"
d="m -9.8986333,226 c 0,6.75 5,10.75 11,10.75 5.75,0 10.7500003,-4 10.7500003,-10.75 0,-6.75 -5.0000003,-11 -10.7500003,-11 -6,0 -11,4.25 -11,11 z"
id="path951-9"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path1108"
style="fill:#559bff;fill-opacity:1;stroke-width:0.25"
d="m 47.851367,5 h 59.750003 c 39,0 58.75,17.25 58.75,41.75 0,19.75 -12.25,37.5 -38,45 v 2.5 c 26.75,4.75 36,20.5 36,38.75 0,22.75 -19.25,59.5 -80.250003,59.5 h -52.75 l 14.5,-98.5 z m 31.75,89 -2,68.5 h 13.25 c 25.250003,0 36.250003,-16.5 36.250003,-34.25 0,-16.5 -14,-24 -27.750003,-26.25 l 1.250003,-16.5 c 18,-3.25 28,-11.5 28,-27.25 0,-12.75 -8,-22 -29.500003,-22 h -10.75 z"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-C"
style="display:none"
id="g1114">
<path
d="m 85.601367,238.25 c -8.75,5.75 -32.25,14.25 -55,14.25 -54,0 -96,-37 -96,-97 0,-59.25 38.75,-95.5 99.25,-95.5 15.75,0 37.5,3.25 52.75,6 v 0.25 c 6.5,-6 14.750003,-8.75 24.750003,-8.75 17.25,0 35.25,12 35.25,32.5 0,6 -2,12.25 -4,15 -11.75,-16 -25.25,-21.75 -38.75,-21.75 -5.000003,0 -10.000003,0.75 -14.750003,2 4.5,16.75 17.750003,24.5 38.500003,25.5 -7.25,8.75 -15.75,11 -23.25,11 -10.250003,0 -18.500003,-5.5 -22.000003,-13.5 -13.75,-8.75 -30.75,-14.5 -53.5,-14.5 -26.5000003,0 -57.25,16 -57.25,59.5 0,37.5 18.25,68.25 61,68.25 17.25,0 33.5,-4 48.25,-12.25 -0.25,-1 -0.25,-2.25 -0.25,-3.5 0,-12.5 10.25,-22 23.750003,-22 7.5,0 16,2.25 23.25,11 -20.75,1 -34.250003,8.75 -38.500003,25.5 4.75,1.25 9.75,2 14.750003,2 13.5,0 27,-5.75 38.75,-21.75 2,2.75 4,9 4,15 0,20.5 -18,32.5 -35.25,32.5 -10.5,0 -19.000003,-3 -25.750003,-9.75 z"
id="path1112"
style="fill:#ff0000;stroke-width:0.25"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-D"
style="display:none"
id="g1118">
<path
id="path1116"
style="fill:#000000;stroke-width:0.25"
d="m -58.898633,250 5.75,-98.5 -5.75,-89 h 76.5 c 54.5,0 94.250003,30.5 94.250003,90 0,55.5 -37.750003,97.5 -96.500003,97.5 z m 39.5,-98.5 3.75,68.5 h 31 c 33.5,0 59.5,-23 59.5,-68.75 -0.25,-37.25 -23.25,-57.5 -62,-57.5 h -28.75 z"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 4.3513667,206.25 c -6.5,0 -11.75,-5.25 -11.75,-11.75 0,-6.25 5.25,-11.5 11.75,-11.5 6.5000003,0 11.5000003,5.25 11.5000003,11.5 0,6.5 -5,11.75 -11.5000003,11.75 z"
id="path22765"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.25"
d="m 20.851367,170.25 2.360352,-0.23828 2.17871,-0.6836 1.956055,-1.08203 1.692383,-1.43359 1.387695,-1.73828 1.041992,-1.9961 0.655274,-2.20703 0.227539,-2.37109 -0.227539,-2.28857 -0.655274,-2.14502 -1.041992,-1.95166 -1.387695,-1.7085 -1.692383,-1.41553 -1.956055,-1.07275 -2.17871,-0.68018 L 20.851367,147 l -2.288574,0.23779 -2.14502,0.68018 -1.95166,1.07275 -1.708496,1.41553 -1.415528,1.7085 -1.072754,1.95166 -0.6801755,2.14502 -0.237793,2.28857 0.237793,2.37109 0.6801755,2.20703 1.072754,1.9961 1.415528,1.73828 1.708496,1.43359 1.95166,1.08203 2.14502,0.6836 z"
id="path22763"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#0000ff;stroke-width:0.25"
d="m 37.601367,134.25 c -6.5,0 -11.75,-5.25 -11.75,-11.75 0,-6.25 5,-11.5 11.75,-11.5 6.5,0 11.5,5.25 11.5,11.5 0,6.5 -5,11.75 -11.5,11.75 z"
id="path22761"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-E"
style="display:none"
id="g1122">
<path
style="fill:#c87137;stroke-width:0.25"
d="M 44.746583,250 H 11.351367 c -52.5,0 -81.75,-20.25 -81.75,-58.5 0,-29 15.25,-40.75 28.75,-51.5 11.25,-8.75 21.25,-16.75 21.25,-32.5 0,-13.5 -8,-20.25 -18.75,-20.25 -8.25,0 -13.75,5 -16.25,10 h -2.5 v -17 c 9.25,-13 22.25,-22.75 43.5,-22.75 26.75,0 46.25,17.75 46.25,46 0,40.75 -28.7500003,50.25 -28.7500003,85.25 0,18 16.0000003,35 41.2500003,43.5 z"
id="path2516"
sodipodi:nodetypes="csscsscccssscc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#800000;stroke-width:0.25"
d="m 44.351367,232.25 4.75,-80.75 -5.75,-89 H 150.60137 l 5.25,37.75 h -2.5 l -66.250003,-16 -3.75,57.25 63.250003,-2 -2.5,32.5 -60.750003,-11 3.75,67 66.750003,-20 h 2.5 l -5,42 H 44.746583 Z"
id="path1120"
sodipodi:nodetypes="ccccccccccccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-F"
style="display:none"
id="g1126">
<path
style="fill:#000000;stroke-width:0.25"
d="m 28.851367,148.5 -5.5,-86 H 133.35137 l 5,37.75 h -2.5 L 67.101367,84 l -4,64 z"
id="path26032"
sodipodi:nodetypes="cccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 63.851367,171.5 4.5,78.5 h -45 l 4.75,-80.75 z"
id="path1124"
sodipodi:nodetypes="ccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 28.101367,169.25 -47.5,-3 19.49999974,17.25 V 201 H -2.3986333 L -69.148633,161 v -7 l 66.7499997,-39.75 h 2.50000004 v 17.5 l -20.74999974,17.5 49.5,-0.75 34.25,-0.5 68.500003,-1.25 -2.5,28.75 -65.250003,-4 z"
id="path26030"
sodipodi:nodetypes="ccccccccccccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-G"
style="display:none"
id="g1130">
<path
style="fill:#c87137;stroke:none;stroke-width:0.25"
d="m 244.35137,221.5 c -5.75,0 -10.25,-4.5 -10.25,-10.25 0,-5.5 4.5,-10.25 10.25,-10.25 5.5,0 10.25,4.75 10.25,10.25 0,5.75 -4.75,10.25 -10.25,10.25 z"
id="path27055"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#c87137;stroke:none;stroke-width:0.25"
d="m 209.35137,219.75 c -5.75,0 -10.25,-4.5 -10.25,-10.25 0,-5.5 4.5,-10.25 10.25,-10.25 5.5,0 10.25,4.75 10.25,10.25 0,5.75 -4.75,10.25 -10.25,10.25 z"
id="path27053"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#c87137;stroke:none;stroke-width:0.25"
d="m 209.35137,146.25 c -5.5,0 -10.25,-4.5 -10.25,-10.25 0,-5.5 4.75,-10.25 10.25,-10.25 5.75,0 10.25,4.75 10.25,10.25 0,5.75 -4.5,10.25 -10.25,10.25 z"
id="path27051"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#c87137;stroke:none;stroke-width:0.25"
d="m 244.35137,144.5 c -5.5,0 -10.25,-4.5 -10.25,-10.25 0,-5.5 4.75,-10.25 10.25,-10.25 5.75,0 10.25,4.75 10.25,10.25 0,5.75 -4.5,10.25 -10.25,10.25 z"
id="path27049"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 98.851367,232.5 c -19,13.25 -42.25,20 -67,20 -54.75,0 -97.25,-36 -97.25,-97 0,-59.25 37,-95.5 102.5,-95.5 18,0 46,3.75 55.5,6.25 l 5.25,47 h -2.5 c -12.25,-9.25 -33.25,-19.5 -61.75,-19.5 -33.75000026,0 -62,16 -62,59.5 0,38.75 21.7499997,68.25 62,68.25 15.25,0 31.5,-3 41,-9.5 l -26.25,-52.75 v -2.5 h 50 L 271.85137,150.5 V 195 l -170.25,-6.75 z"
id="path1128"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-H"
style="display:none"
id="g1134">
<path
style="fill:#000000;stroke-width:0.25"
d="m 107.35137,107.75 -2.75,43.75 5.5,98.5 H 65.101367 l 4.75,-83.5 h -88.5 l 4.75,83.5 h -45 l 5.75,-98.5 -5.75,-89 h 45 l -5,80.25 h 89.25 l -5.25,-80.25 h 43.250003 z"
id="path28322"
sodipodi:nodetypes="cccccccccccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#b3b3b3;stroke-width:0.25"
d="m 108.35137,62.5 c 18,-0.75 43.75,-6.5 54,-28.25 14,0 34,18.5 34,49 0,28.75 -13,49.75 -34.5,52.5 -10.25,-22.25 -35.75,-27.75 -54.5,-28 z"
id="path1132"
sodipodi:nodetypes="ccsccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-I"
style="display:none"
id="g1138">
<path
style="fill:#c87137;stroke-width:0.25"
d="m -31.898633,250 v -43.75 h 17.25 V 250 Z"
id="path3269"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path1136"
style="fill:#b3b3b3;stroke-width:0.25"
d="m -34.648633,49.75 h 23.75 V 6.25 h -23.75 z m 0,62.5 h 23.75 v -43.5 h -23.75 z m 0,60.5 h 23.75 v -41 h -23.75 z m -4.5,77.25 h -19.75 l 5.75,-133.5 -5.75,-124 h 72.5 L 8.1013667,116.5 13.601367,250 H -7.6486333 V 199.5 H -39.148633 Z"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-J"
style="display:none"
id="g1142">
<path
style="fill:#ff0000;stroke-width:0.25"
d="m -60.648633,212.75 c 10.25,3.75 22.5,7 30.5,7 13.5,0 19.5,-8.5 20.2499997,-27.75 l 0.25,-8 c 0,-4.75 -0.25,-9.75 -0.7499997,-15.25 l -8,-106.25 h 45 l -2.75,134.25 c -0.25,14.5 -3,26.5 -8.75,35.5 -5.1920241,6.2319 -10.8483157,10.60674 -16.5000003,15 -7,3.5 -15.9999997,5.25 -26.4999997,5.25 -10,0 -24,-2.5 -33.75,-5 l -10,-38 z"
id="path36167"
sodipodi:nodetypes="csccccccccsccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path30411"
style="fill:none;stroke:#ff0000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M -9.6486333,184 -71.648633,209.5 M -9.8986333,192 -60.648633,212.75 M -40.25,194 l 4,11.5"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0.3"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:max_stitch_length_mm="4" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 38.601367,187.5 45.25,-19.75 v 4.75 l -45.25,20 z"
id="path30142"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 39.101367,175 45.25,-19.75 V 160 l -45.25,20 z"
id="path30140"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 39.351367,162.5 45.25,-19.75 v 4.75 l -45.25,20 z"
id="path30138"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="M 39.351367,141.75 V 79 l 55.5,-24.25 v 62.5 z"
id="path30130"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 155.85137,3.75 h -32 L -18.398633,62.5 h 45 z"
id="path30885"
sodipodi:nodetypes="ccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 103.60137,50.75 33.75,-15 v 4.5 l -33.75,15.5 z"
id="path30126"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 103.60137,63.25 33.75,-15 v 4.5 l -33.75,15.5 z"
id="path30128"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 103.60137,75.75 33.75,-15 v 4.5 l -33.75,15.5 z"
id="path30132"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 103.60137,88.25 33.75,-15 v 4.5 l -33.75,15.5 z"
id="path30134"
inkstitch:angle="25"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 91.60156,199 c 5.5,-6.25 7.75,-10.75 7.75,-25 v -37.5 l 38,-16.75 v 37.75 c 0,6.75 0.25,12.75 -1,17.5 -11.46923,10.16453 -28.32986,17.25289 -44.75,24 z"
id="path32261"
sodipodi:nodetypes="csccscc"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:angle="25" />
<path
style="fill:none;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 155.85137,3.75 0.25,136.5 c 0,26 -11.75,42.25 -39.75,54.75 L -1.3986333,247.25 M 148.81905,6.9465142 149.85156,137.75 c 0,17.75 -5.75,29.25 -13.5,37.25 -8.51263,7.85544 -23.20833,14.125 -44.75,24 l -76.5,33.25 m 30.648439,-16.75 -1,14 M 129.25,177 l 0.5,15.5 m 16.5,-58.5 14,-1 m -15,-115.499999 16,-0.5"
id="path30908"
sodipodi:nodetypes="ccccccccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0.3"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:max_stitch_length_mm="4" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-K"
style="display:none"
id="g1146">
<path
style="fill:#000000;stroke-width:0.25"
d="m -58.898633,250 5.75,-98.5 -5.75,-89 h 45 l -5.5,89 5.5,98.5 z"
id="path1438"
inkstitch:angle="45"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path1678"
style="fill:#000000;stroke-width:0.25"
d="m 87.101562,153 59.499998,97 h 50.25 v -2.5 l -73.25,-85.25 c -12.24993,5.64433 -27.581698,0.64178 -36.499998,-9.25 z"
transform="translate(-93.75)"
inkstitch:angle="135"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m -6.6486333,153 c -3.7169697,-4.1227 -4.9999997,-10 -4.9999997,-16 0,-15.75 12.7499997,-28.5 28.25,-28.5 5.5,0 10.5,1.5 14.75,4 l 32.25,-55 38.500003,38.5 -60.000003,28.5 c 2,3.75 3,8 3,12.5 0,11 -6.00737,20.99133 -15.25,25.25 -12.249936,5.64433 -27.5817005,0.64178 -36.5000003,-9.25 z"
id="path1442"
sodipodi:nodetypes="sssccccsss"
inkstitch:angle="45"
inkstitch:running_stitch_length_mm="2" />
<path
style="fill:none;stroke:#ff0000;stroke-width:0.25"
d="m 138.85137,74 -38,10 m 38,-21 -42.500003,16.5"
id="path1440"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0.3"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_underlay_inset_mm="0.1"
inkstitch:contour_underlay="True"
inkstitch:contour_underlay_inset_mm="0.1"
inkstitch:max_stitch_length_mm="4" />
<path
style="fill:none;stroke:#ffcc00;stroke-width:0.25"
d="M 130.85137,41.75 91.351367,74.25 M 122.10137,33 87.351367,70.25"
id="path1436"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0.3"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_underlay_inset_mm="0.1"
inkstitch:contour_underlay="True"
inkstitch:contour_underlay_inset_mm="0.1"
inkstitch:max_stitch_length_mm="4" />
<path
style="fill:none;stroke:#00ff00;stroke-width:0.25"
d="M 101.35137,23.75 82.351367,65.5 m 7.5,-41.75 -12,37.25"
id="path1144"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_underlay_inset_mm="0.1"
inkstitch:contour_underlay="True"
inkstitch:contour_underlay_inset_mm="0.1"
inkstitch:contour_underlay_stitch_length_mm="2"
inkstitch:pull_compensation_mm="0.3"
inkstitch:max_stitch_length_mm="4" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-L"
style="display:none"
id="g1150">
<path
style="fill:#000000;stroke-width:0.25"
d="M 21.851367,250 H 3.8513667 -55.398633 h -3 v -0.25 l 5.75,-98.25 -5.75,-89 h 44 l -6,164.75 74,-21.25 h 2.5 l -3.75,33.25 z"
id="path5652"
sodipodi:nodetypes="ccccccccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.3"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 33.351367,290.25 c 0,12 -2.75,24.5 -10.25,31.5 V 322 c 1,0.5 2.75,1 5,1 12.75,0 18.25,-17 18.25,-33.75 0,-16.25 -8.75,-32.25 -24.5,-39.25 l 30.5,-10.75 c 18.5,15 26,33 26,54.75 0,30.75 -17.25,66.25 -58.25,66.25 -18.7500003,0 -37,-12 -37,-34 0,-18.75 9.2499997,-26 9.2499997,-41.5 0,-11 -4.9999997,-31.25 -47.7499997,-34.75 H 3.8513667 c 16.7500003,6.75 29.5000003,22.25 29.5000003,40.25"
id="path5656"
sodipodi:nodetypes="cccssccssssccc"
inkstitch:expand_mm="0.3"
inkstitch:running_stitch_length_mm="2"
inkstitch:angle="150"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-M"
style="display:none"
id="g1154">
<path
style="fill:#000000;stroke-width:0.25"
d="M 53.65157,212.20472 4.3513667,62.5 H -13.398633 l -55.75,187.5 58.75,-68.5 13.2499997,-53 h 0.75 l 24.0000003,58.25 26.050203,25.45472"
id="path4423"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="M 53.65157,212.20472 87.259343,184.87401 112.10137,127.25 h 0.75 l 14.75,59.75 46.52996,26.28754 L 130.10137,62.5 h -18.25 l -58.1998,149.70472"
id="path5721"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#00ff00;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -69.148633,250 58.75,-68.5 6.2499997,26.75 h 0.5 L 8.8513665,180.5 h 0.75 L 23.601367,203 h 0.75 l 3.046756,-16.75099 26.253447,25.95571 33.607773,-27.33071 5.592024,27.37599 h 0.75 l 16.250003,-34.5 h 0.75 l 11,31.25 h 0.75 l 5.25,-22 46.99509,25.20472 L 184.85137,250 Z"
id="path5028"
sodipodi:nodetypes="ccccccccccccccccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-N"
style="display:none"
id="g1158">
<path
id="path3635"
style="fill:#000000;stroke-width:0.25"
d="m 68.601562,109.5 -3.75,140.5 H 106.85156 L 98.101562,131.25 209.10156,250 h 7.75 l 5.75,-133 c -12.021,2.26583 -23.75091,8.06043 -36.5,1.5 l 3.75,64.75 -49.5,-53.25 C 110.88124,125.65618 85.327894,119.55651 68.601562,109.5 Z"
transform="translate(-93.75)"
inkstitch:angle="45"
inkstitch:staggers="1"
inkstitch:running_stitch_length_mm="2"
inkstitch:fill_underlay_inset_mm="0.2"
inkstitch:fill_underlay_row_spacing_mm="3"
inkstitch:fill_underlay_max_stitch_length_mm="3" />
<path
style="fill:#ffd5d5;stroke-width:0.25"
d="m -25.148633,109.5 c -33.75,-0.75 -44,-16 -44,-31.5 0,-21 14,-30.75 33.25,-30.75 7.25,0 15.5,1.5 20.25,3 3,-14 17.4999997,-33 54.5,-33 27.75,0 46.75,10 53.25,27 9.250003,-4 18.500003,-6.25 29.500003,-6.25 26,0 45.25,15.5 45.25,37.5 0,18.75 -11.5,40.25 -38,41.5 -12.021,2.26583 -23.75092,8.06043 -36.500003,1.5 -10.75,8 -26.5,15 -45.75,11.5 -29.470327,-4.34382 -55.023669,-10.44349 -71.75,-20.5 z"
id="path3639"
sodipodi:nodetypes="csscscsscccc"
inkstitch:angle="135"
inkstitch:staggers="2" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-O"
style="display:none"
id="g1162">
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 53.351367,189.5 h -5 c -13.5,-11 -22,-20.5 -28.5,-30.75 v -1.5 c 7.5,-7 19,-11.25 31,-11.25 12,0 23.5,4.25 31,11.25 v 1.5 c -6.5,10.25 -15,19.75 -28.5,30.75 z"
id="path1091"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path1160"
style="fill:#000000;stroke-width:0.25"
d="M 52.031253,252.49998 C -4.6791069,252.46066 -41.648633,204.72971 -41.648633,155.5 c 0,-11.25 1.5,-22 4.25,-31.5 -16,-3 -28,-16 -28,-35.25 0,-22 16,-35.75 35.75,-35.75 14.25,0 26.7499997,7.25 32.4999997,19.25 C 17.101367,64.25 33.851367,60 52.101367,60 c 18.25,0 35,4.25 49.250003,12.25 5.75,-12 18,-19.25 32.25,-19.25 19.75,0 36,13.75 36,35.75 0,19.25 -12,32 -28,35.25 2.75,9.5 4.25,20 4.25,31.5 0,47.98452 -36.97615,96.9684 -93.69512,96.99998 -0.04248,4e-5 -0.08561,0 -0.124997,0 z M 52.101367,222.5 c 32.5,-0.25 56.750003,-29.25 56.750003,-66.25 -0.25,-38 -22.500003,-62.75 -56.750003,-62.5 -34.25,-0.5 -56.7500003,25 -56.7500003,62.25 0,37.25 24.0000003,66 56.7500003,66.5 z"
sodipodi:nodetypes="cscsscscsscscccccsc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-P"
style="display:none"
id="g1166">
<path
id="path2946"
style="fill:#000000;stroke-width:0.25"
d="m 34.851562,62.5 5.75,89 -5.75,98.5 h 45 l -5.5,-98.5 3.5,-57.75 h 8.5 c 10.205334,0 18.532898,1.308926 25.087888,3.753906 9.51024,-20.113162 26.5683,-13.808265 40.91211,-17.003906 -11.5,-11 -29.75,-18 -53.499998,-18 z"
transform="translate(-93.75)"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 7.6013667,140.25 c -7.74999996,0 -14.25,-6.5 -14.25,-14.25 0,-8 6.50000004,-14.25 14.25,-14.25 8.0000003,0 14.2500003,6.25 14.2500003,14.25 0,7.75 -6.25,14.25 -14.2500003,14.25 z"
id="path2948"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#b3b3b3;stroke-width:0.25"
d="M 58.601367,80.5 185.85137,87 v 16 L 71.601367,102.5 c 0.75,3.5 1.5,7 1.75,10.5 l 112.500003,4 v 16.75 c -40,3 -49.25,16.75 -70.5,39.75 -18.250003,20 -35.000003,29 -59.500003,29 -25,0 -45.25,-10.25 -58.0000003,-22.5 h 0.25 v -22 c 24.7500003,0 38.5000003,-11.5 38.5000003,-34.25 0,-12.25872 -6.037395,-21.44386 -18.912301,-26.246135 C 27.199298,77.390703 44.257558,83.695641 58.601367,80.5 Z"
id="path1164"
sodipodi:nodetypes="ccccccccscccscc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-Q"
style="display:none"
id="g1170">
<path
id="path1168"
style="fill:#000000;stroke-width:0.25"
d="m 45.351367,251 c -5.5,1 -11,1.5 -17,1.5 -56.75,0 -93.75,-47.75 -93.75,-97 0,-59 40.5,-95.5 93.75,-95.5 53.25,0 93.750003,36.5 93.750003,95.5 0,33.25 -17.75,66.75 -47.250003,84.5 z m -17,-28.5 c 32.5,-0.25 56.75,-29.25 56.75,-66.25 -0.25,-38 -22.5,-62.75 -56.75,-62.5 -34.2500003,-0.5 -56.75,25 -56.75,62.25 0,37.25 23.9999997,66 56.75,66.5 z"
sodipodi:nodetypes="csssscccccsc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 74.851367,240 c 32.000003,19.5 113.000003,-3.5 109.500003,84.25 l -25.25,32.75 h -2.5 c -5.75,-64.25 -93.250003,-17.75 -111.250003,-106 z"
id="path4660"
sodipodi:nodetypes="cccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-R"
style="display:none"
id="g1174">
<path
style="fill:#ff0000;stroke-width:0.25"
d="m -2.6486333,163.75 v -11.5 c 20.7500003,-3.5 31.7500003,-12.75 31.7500003,-32 0,-16.5 -15.25,-26.5 -34.0000003,-26.5 H -15.898633 l -3.5,57.75 5.5,98.5 h -45 l 5.75,-98.5 -5.75,-89 H 3.3513667 c 41.5000003,0 62.5000003,20 62.5000003,48.25 0,21 -11,39 -39.25,47.75"
id="path7081"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path1172"
style="fill:#4d4d4d;stroke-width:0.25"
d="m 23.101367,186.5 h 11.75 l -13,-18.5 h -8.75 z m 19.75,36 h 17.25 l -14.75,-21 h -14 z m 25.25,46 h 24.25 l -18.25,-26 h -20.25 z m -41.5,-110 L 165.35137,310 v 2.5 h -42.25 l -16.5,-23.75 H 79.101367 l 13,23.75 h -43.5 L -2.6486333,163.75"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path1"
style="fill:none;stroke:#00ff00;stroke-width:1px"
d="M 53.998101,313.68871 2.3461417,162.50897 M 44.089808,313.9021 -2.4890993,164.02459 m 34.5683503,71.4335 -13.534676,4.20631"
inkstitch:satin_column="true"
sodipodi:nodetypes="cccccc"
inkstitch:pull_compensation_mm="0.4"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:max_stitch_length_mm="4" />
<path
id="path2"
style="fill:none;stroke:#00ff00;stroke-width:1px"
d="M 24.728039,159.11369 161.86732,313.19084 M 30.085417,157.24203 174.60582,313.02943 m -83.855526,-73.99317 10.452146,-9.57252"
inkstitch:satin_column="true"
sodipodi:nodetypes="cccccc"
inkstitch:pull_compensation_mm="0.4"
inkstitch:zigzag_underlay="True"
inkstitch:zigzag_spacing_mm="0.3"
inkstitch:max_stitch_length_mm="4" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-S"
style="display:none"
id="g1178">
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 87.101367,96.25 18.000003,7.75 21.25,-5.75 2.5,12.5 -21.25,2.25 11.75,18.75 -11.75,6.25 -8.250003,-20.25 -18,-7.5 z"
id="path1027"
sodipodi:nodetypes="cccccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path1176"
style="fill:#000000;stroke-width:0.25"
d="m 47.601367,75.75 c -1,5.5 3.5,10.5 9,11 5.5,0.75 10.25,-3.25 11,-8.75 0.75,-5.75 -3.5,-10.5 -9,-11 -5.25,-0.5 -10.5,3 -11,8.75 z m -11.5,25.75 c -0.5,5.25 3.25,10.75 8.75,11 5.5,0.5 10.75,-3.25 11.25,-8.75 0.75,-5.75 -3.5,-10.5 -9,-11.25 -5.25,-0.75 -10.5,3.25 -11,9 z m 45.25,8.75 c -8.5,9.5 -27.75,15.25 -49.25,7 C 17.351367,111.5 9.8513665,101 8.3513665,89.5 3.8513667,88.25 -0.39863326,87.75 -4.8986333,87.75 -17.648633,87.75 -26.898633,95.5 -26.898633,106 c 0,9.25 3.75,16.25 19.9999997,27.25 L 11.101367,145.5 c 23.5,16 36.75,29.25 36.75,54 0,25.5 -16.75,53 -59.5,53 -11,0 -37.25,-2.25 -49.75,-5.75 l -5,-45.25 h 2.5 c 23.5,19 37.75,25.25 50.5,25.25 14.24999974,0 22.4999995,-8.75 22.4999995,-21 0,-12.25 -4.4999998,-20 -26.7499995,-34.25 l -17.25,-11 c -24,-15.25 -31.25,-33.75 -31.25,-51 0,-26.5 20,-49.5 57.7499997,-49.5 8.75000004,0 17.9999998,0.5 26.5000003,1.5 8.25,-7.5 22,-10.75 37.75,-4.75 24.25,9.5 33,25.25 31.25,39.5 z"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1"
sodipodi:nodetypes="cccccccccccccssccsscccssccsscccc" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-T"
style="display:none"
id="g1182">
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 68.851367,62.5 4,-70.25 h 9 L 107.10137,20.5 v 5 l -17.750003,-5 5.25,42 z"
id="path1568"
sodipodi:nodetypes="cccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 2.3513667,62.5 5.9999998,-43.25 -14.2499998,10 h -7.4999997 l 24.25,-36.75 h 7 l 24,36.75 h -7.5 l -14.25,-10 h -0.25 l 7.25,43.25 z"
id="path1564"
sodipodi:nodetypes="cccccccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m -64.523633,62.5 5.375,-41.75 -17.75,5 v -5 l 25.25,-28.25 h 9 l 3.75,70 z"
id="path1993"
sodipodi:nodetypes="cccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;fill-opacity:1;stroke-width:0.25"
d="m -69.898633,104.75 5.375,-42.25 h 25.625 41.2499997 24.7500003 41.75 25.75 l 5,42.25 h -2.5 l -67.75,-17.5 7.25,162.75 H -8.1486333 L -0.14863326,87.5 -67.398633,104.75 h -2.5"
id="path1180"
sodipodi:nodetypes="ccccccccccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-U"
style="display:none"
id="g1186">
<path
id="path1184"
style="display:inline;fill:#000000;stroke-width:0.25"
d="m 33.851562,62.5 3.75,104.25 c 0,47.5 24,83.25 78.749998,83.25 h 46 l 0.49219,-45.16016 32.00781,-31.08984 c 0.25,-2.5 0.25,-4.75 0.25,-7.25 l 3.75,-104 h -44.75 l 7.25,104 c 0,37 -18.75,53.5 -45,53.5 -26.249998,0 -44.999998,-16 -44.999998,-53.25 l 7.25,-104.25 z"
transform="translate(-93.75)"
sodipodi:nodetypes="ccccccccccsccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#800000;stroke-width:0.25"
d="m 101.10137,173.75 43,-28.25 h 7.5 v 33.25 h 2.5 l 48.25,-33.25 h 7.5 v 33.25 h 2.5 l 48.25,-33.25 h 7.5 V 250 H 68.601367 l 0.492914,-45.16031 z"
id="path1089"
sodipodi:nodetypes="ccccccccccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-V"
style="display:none"
id="g1190">
<path
style="fill:#000000;stroke-width:0.25"
d="M 133.60137,131 79.851367,252.5 h -21.75 L 8.1013667,131.75 l -15.5,-37 L -19.648633,65 v -2.5 h 46.5 l 47,147 47.000003,-147 h 42 V 65 l -13,29.25 z"
id="path8438"
sodipodi:nodetypes="cccccccccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#c87137;stroke-width:0.25"
d="m 149.85137,94.25 c 3.25,0.5 6.75,1 10.25,1 16.75,0 26.75,-3 28.5,-21.5 l 2.5,-27.25 h 14.75 c 1.25,10.5 4,32.25 4,45.75 0,28.5 -23.75,41.25 -50,41.25 -11.5,0 -18,-0.75 -26.25,-2.5 z"
id="path8436"
sodipodi:nodetypes="cscccsscc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#c87137;stroke-width:0.25"
d="m 8.1013667,131.75 c -7.49999996,1.5 -14,2.25 -24.7499997,2.25 -26.25,0 -50,-12.75 -50,-41.25 0,-13.5 2.75,-35.25 4,-45.75 h 14.75 l 2.5,27.25 c 1.75,18.5 11.75,21.5 28.5,21.5 3.25,0 6.5,-0.25 9.4999997,-1 z"
id="path1188"
sodipodi:nodetypes="csscccscc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-W"
style="display:none"
id="g1194">
<path
style="display:inline;fill:#000000;stroke-width:0.25"
d="m 97.851367,218.25 c 0,18.5 13.250003,34.25 35.750003,34.25 18.5,0 34.25,-15.25 34.75,-34.25 z"
id="path11945"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#000000;stroke-width:0.25"
d="m -33.148633,218.25 c 0,18.5 13.25,34.25 34.7499997,34.25 21.7500003,0 35.0000003,-15.25 35.5000003,-34.25 z"
id="path10591-5-4-9"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path10591-5-4"
style="display:inline;fill:#000000;stroke-width:0.25"
d="m -47.802069,196 h -17.596564 v 22.25 H 198.35137 V 196 l -15.00925,-0.17678 z"
sodipodi:nodetypes="ccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#000000;stroke-width:0.25"
d="M 13.5,196 H -47.898633 V 50.75 h 5.75 l 55.5,145.25"
id="path13152"
sodipodi:nodetypes="ccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#000000;stroke-width:0.25"
d="m 27.601367,196 38.25,-86.25 34.750003,86.25 z"
id="path13971"
sodipodi:nodetypes="cccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#000000;stroke-width:0.25"
d="m 114.85137,196 63.5,-142.75 v -2.5 h 5 V 196 Z"
id="path12868"
sodipodi:nodetypes="cccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 140.60137,50.75 h -67.25 l 38.5,107.25 28.75,-107.25"
id="path14043"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 0.601367,50.75 H 59.35137 l -36.25,101.75 z"
id="path14243"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m -47.898633,50.75 h -15 v -20 H 198.35137 v 20 h -15 z"
id="path1192"
sodipodi:nodetypes="ccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
d="m 198.35137,218.25 h -30 c -0.5,19 -16.25,34.25 -34.75,34.25 -22.5,0 -35.750003,-15.75 -35.750003,-34.25 h -60.75 c -0.5,19 -13.75,34.25 -35.5000003,34.25 -21.4999997,0 -34.7499997,-15.75 -34.7499997,-34.25 h -32.25 V 196 h 17.5 V 50.75 h -15 v -20 H 198.35137 v 20 h -15 V 196 h 15 z m -97.75,-22.25 h 14.25 l 63.5,-142.75 v -2.5 h -37.75 L 111.85137,158 73.351367,50.75 h -14 L 23.101367,152.5 0.60136674,50.75 H -42.148633 v 2.5 l 55.5,142.75 h 14.25 l 38.25,-86.25 z"
id="path1192-5"
style="display:none;stroke-width:0.25" />
<path
style="display:inline;fill:#00ff00;stroke-width:0.25"
d="M 23.101367,152.5 0.60136674,50.75 H -42.148633 v 2.5 l 55.5,142.75 h 14.25 l 38.25,-86.25 34.750003,86.25 h 14.25 l 63.5,-142.75 v -2.5 h -37.75 L 111.85137,158 73.351367,50.75 h -14 z"
id="path10591"
sodipodi:nodetypes="cccccccccccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-X"
style="display:none"
id="g1198">
<path
id="path1196-9"
style="display:inline;fill:#ffcc00;stroke-width:0.25"
d="m 114.60137,124.25 c 5,0 9,-4 9,-8.75 0,-5 -4,-9 -9,-9 -5,0 -9,4 -9,9 0,4.75 4,8.75 9,8.75 z M 98.601367,62.5 224.10137,250 h -39.25 L 72.851367,81.75 89.48975,63 Z m 69.750003,146.75 c 0,4.75 4,8.75 9,8.75 5,0 9,-4 9,-8.75 0,-5 -4,-9 -9,-9 -5,0 -9,4 -9,9 z"
sodipodi:nodetypes="sssssccccccsssss"
inkstitch:angle="135"
inkstitch:running_stitch_length_mm="2"
inkstitch:expand_mm="0.3"
inkstitch:staggers="1" />
<path
id="path5044"
style="display:inline;fill:#ff0000;stroke-width:0.25"
d="m 74.851367,161.75 c 5,0 9,-4 9,-8.75 0,-5 -4,-9 -9,-9 -5,0 -9,4 -9,9 0,4.75 4,8.75 9,8.75 z m -16,-62 L 159.35137,250 h -39.25 L 37.851367,126.75 Z m 44.750003,109.5 c 0,4.75 4,8.75 9,8.75 5,0 9,-4 9,-8.75 0,-5 -4,-9 -9,-9 -5,0 -9,4 -9,9 z"
inkstitch:angle="135"
inkstitch:running_stitch_length_mm="2"
inkstitch:expand_mm="0.3"
inkstitch:staggers="1"
sodipodi:nodetypes="ssssscccccsssss" />
<path
id="path5056"
style="display:inline;fill:#4d4d4d;stroke-width:0.25"
d="M 4.1013667,173.5 46.101367,250 h 48 v -2.5 l -70.25,-102.5 z m 20.7500003,18.75 c 0,-5 4,-9 9,-9 5,0 9,4 9,9 0,4.75 -4,8.75 -9,8.75 -5,0 -9,-4 -9,-8.75 z m 30.25,25.5 c 5,0 9,4 9,9 0,4.75 -4,8.75 -9,8.75 -5,0 -9,-4 -9,-8.75 0,-5 4,-9 9,-9 z"
inkstitch:angle="135"
inkstitch:running_stitch_length_mm="2"
inkstitch:expand_mm="0.3"
inkstitch:staggers="1"
sodipodi:nodetypes="ccccccssssssssss" />
<path
style="display:inline;fill:#000000;stroke-width:0.25"
d="M 4.1013667,173.5 -28.898633,250 h -48 v -2.5 L -8.6486333,150.5 -67.148633,65 v -2.5 h 46.25 l 32.5,60.75 27.75,-60.75 50.138383,0.5 -16.638383,18.75 -14,18 -21,27 -14,18.25 z"
id="path5046"
sodipodi:nodetypes="cccccccccccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.3"
inkstitch:staggers="1"
inkstitch:running_stitch_length_mm="2" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-Y"
style="display:none"
id="g1202">
<path
style="fill:#0000ff;fill-rule:evenodd;stroke:none;stroke-width:0.25"
d="m -30.648633,168 1.097656,-0.11328 1.027344,-0.32422 0.933594,-0.51172 0.816406,-0.67578 0.675781,-0.81641 0.511719,-0.93359 0.324219,-1.02734 0.113281,-1.09766 -0.113281,-1.18018 -0.324219,-1.08935 -0.511719,-0.97803 -0.675781,-0.84619 -0.816406,-0.69385 -0.933594,-0.52099 -1.027344,-0.32764 -1.097656,-0.11377 -1.180176,0.11377 -1.089355,0.32764 -0.978028,0.52099 -0.846191,0.69385 -0.693848,0.84619 -0.520996,0.97803 -0.327636,1.08935 -0.11377,1.18018 0.11377,1.09766 0.327636,1.02734 0.520996,0.93359 0.693848,0.81641 0.846191,0.67578 0.978028,0.51172 1.089355,0.32422 z"
id="path15821"
sodipodi:nodetypes="sssss"
inkstitch:expand_mm="0.3" />
<path
style="fill:#0000ff;stroke:none;stroke-width:0.25"
d="m 129.35137,168 c -3.25,0 -5.75,-2.5 -5.75,-5.5 0,-3.25 2.5,-5.75 5.75,-5.75 3,0 5.5,2.5 5.5,5.75 0,3 -2.5,5.5 -5.5,5.5 z"
id="path15819"
sodipodi:nodetypes="sssss"
inkstitch:expand_mm="0.3" />
<path
id="path15813"
style="fill:#800000;stroke-width:0.25"
d="m 88.351367,162.25 c 9.25,-16 18.500003,-30 40.500003,-30 22,0 31.25,14.25 40.5,30 -9.25,15.25 -18.5,30 -40.5,30 -22,0 -31.250003,-14.5 -40.500003,-30 z m 41.000003,16 c 8.75,0 16,-7.25 16,-16 0,-8.75 -7.25,-16 -16,-16 -8.75,0 -16,7.25 -16,16 0,8.75 7.25,16 16,16 z"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
id="path15811"
style="fill:#800000;stroke-width:0.25"
d="m -71.648633,162.25 c 9.25,-16 18.5,-30 40.5,-30 21.9999997,0 31.24999974,14.25 40.4999995,30 -9.24999976,15.25 -18.4999998,30 -40.4999995,30 -22,0 -31.25,-14.5 -40.5,-30 z m 41,16 c 8.75,0 16,-7.25 16,-16 0,-8.75 -7.25,-16 -16,-16 -8.75,0 -16,7.25 -16,16 0,8.75 7.25,16 16,16 z"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 70.601367,250 h -45 l 5.75,-88.25 -65.5,-96.75 v -2.5 h 49.25 l 37,82 33.75,-82 H 132.85137 V 65 l -67.250003,95.5 z"
id="path1200"
inkstitch:angle="90"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
<g
inkscape:groupmode="layer"
inkscape:label="GlyphLayer-Z"
style="display:none"
id="g1206">
<path
style="stroke-width:0.25"
d="m -31.148633,207 h 0.25"
id="path20072" />
<path
style="fill:#000000;stroke-width:0.25"
d="m -53.648633,207 h -15.5 l 4.25,-11.75 50,-11.25 -16.25,23 z"
id="path20070"
sodipodi:nodetypes="cccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 33.101367,173.25 -15.75,33.75 h -30.75 L 3.8513667,179.75 Z"
id="path20068"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 35.101367,207 17.5,-38.25 21.75,-4.5 h 2.5 l -7.5,42.75 h -11.5 z"
id="path20064"
sodipodi:nodetypes="ccccccc"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m -9.3986333,171.5 -45.9999997,9.75 18,-27.75 48,-12.75 z"
id="path20062"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 20.351367,127 -47.25,12 15.75,-24.5 45.25,-8.75 z"
id="path20060"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="M 43.351367,92.75 -1.8986333,101 18.351367,70 l 46,-9.75 z"
id="path20058"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 16.851367,32.75 -12.7500003,29 -30.2499997,6.5 14.75,-35.5 z"
id="path20056"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m 72.851367,47 -52.25,11.25 11.75,-25.5 h 49.75 z"
id="path20054"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#000000;stroke-width:0.25"
d="m -27.148633,32.75 -15.75,39.25 -17.25,3.75 h -2.5 l 5,-43 z"
id="path20052"
inkstitch:angle="45"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;fill-rule:evenodd;stroke-width:0.25"
d="m 25.851367,22.25 2.919922,-0.265137 2.720703,-0.777832 2.462891,-1.26416 2.146484,-1.724121 1.771484,-2.157715 1.337891,-2.564941 0.488037,-1.426941 0.357666,-1.51886 L 40.276416,8.9428101 40.351367,7.25 40.276416,5.5599976 40.056445,3.9604492 39.698779,2.4539185 39.210742,1.0429687 38.599658,-0.26983643 37.872851,-1.4819336 36.101367,-3.59375 33.954883,-5.2719727 31.491992,-6.4960937 28.771289,-7.2456055 25.851367,-7.5 l -3.095703,0.2543945 -2.873047,0.7495118 -2.591797,1.224121 -2.251953,1.6782227 -0.980225,1.0029907 -0.873291,1.1088257 -0.759033,1.21209717 -0.637451,1.31280513 -0.508545,1.4109498 -0.372314,1.5065307 -0.22876,1.5995484 -0.07788,1.6900024 0.07788,1.6928101 0.22876,1.6074829 0.372314,1.51886 0.508545,1.426941 0.637451,1.331726 0.759033,1.233215 0.873291,1.131409 0.980225,1.026306 2.251953,1.724121 2.591797,1.26416 2.873047,0.777832 z"
id="path20050"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#ff0000;stroke-width:0.25"
d="m 65.601367,22.25 c -8.5,0 -15.25,-5.75 -15.25,-15 0,-9.25 6.75,-14.75 15.25,-14.75 8,0 14.5,5.5 14.5,14.75 0,9.25 -6.5,15 -14.5,15 z"
id="path1204"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#b3b3b3;stroke-width:0.25"
d="m -30.898633,207 v 43 h -32.75 v -2.5 l 10,-25.5 v -15 z"
id="path20074"
sodipodi:nodetypes="ccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
<path
style="fill:#b3b3b3;stroke-width:0.25"
d="m 57.851367,207 v 43 h -32.75 v -2.5 l 10,-25.5 v -15 z"
id="path20066"
sodipodi:nodetypes="ccccccc"
inkstitch:angle="135"
inkstitch:expand_mm="0.2"
inkstitch:running_stitch_length_mm="2"
inkstitch:staggers="1" />
</g>
</svg>
|