summaryrefslogtreecommitdiff
path: root/resources/fcn.svg
blob: 0b212c03354cd411c5ca6c03d589650983ecbb08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   version="1.1"
   id="svg2509"
   width="388.52335"
   height="127.4286"
   viewBox="0 0 388.52335 127.42859"
   sodipodi:docname="fcn.svg"
   inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
   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">
  <defs
     id="defs2513">
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath2535">
      <path
         d="M 0,0 H 594.75 V 119.25 H 0 Z"
         id="path2533" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3337">
      <path
         d="M 0,0 H 395.25 V 201 H 0 Z"
         id="path3335" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6946">
      <g
         id="g6950">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6948"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6952">
      <g
         id="g6956">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6954"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6958">
      <g
         id="g6962">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6960"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6964">
      <g
         id="g6968"
         transform="matrix(1.6666667,0,0,1.6666667,-313.12333,-827.13)">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6966"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6970">
      <g
         id="g6974">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6972"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6976">
      <g
         id="g6980">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6978"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6982">
      <g
         id="g6986">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6984"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6988">
      <g
         id="g6992">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6990"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6994">
      <g
         id="g6998">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path6996"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7000">
      <g
         id="g7004">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7002"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7006">
      <g
         id="g7010">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7008"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7012">
      <g
         id="g7016"
         transform="matrix(1.6666667,0,0,1.6666667,-313.12333,-827.13)">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7014"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7018">
      <g
         id="g7022">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7020"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7024">
      <g
         id="g7028">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7026"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7030">
      <g
         id="g7034">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7032"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7036">
      <g
         id="g7040">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7038"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7042">
      <g
         id="g7046">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7044"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7048">
      <g
         id="g7052">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7050"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7054">
      <g
         id="g7058">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7056"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7060">
      <g
         id="g7064"
         transform="matrix(1.6666667,0,0,1.6666667,-313.12333,-827.13)">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7062"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7066">
      <g
         id="g7070">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7068"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7072">
      <g
         id="g7076">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7074"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7078">
      <g
         id="g7082">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7080"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7084">
      <g
         id="g7088">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7086"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7090">
      <g
         id="g7094">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7092"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7096">
      <g
         id="g7100">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7098"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7102">
      <g
         id="g7106">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7104"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7108">
      <g
         id="g7112"
         transform="matrix(1.6666667,0,0,1.6666667,-313.12333,-827.13)">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7110"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7114">
      <g
         id="g7118">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7116"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7120">
      <g
         id="g7124">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7122"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7126">
      <g
         id="g7130">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7128"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7132">
      <g
         id="g7136">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7134"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7138">
      <g
         id="g7142">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7140"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7144">
      <g
         id="g7148">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7146"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7150">
      <g
         id="g7154">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7152"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7156">
      <g
         id="g7160"
         transform="matrix(1.6666667,0,0,1.6666667,-313.12333,-827.13)">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7158"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7162">
      <g
         id="g7166">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7164"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7168">
      <g
         id="g7172">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7170"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7174">
      <g
         id="g7178">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7176"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7180">
      <g
         id="g7184">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7182"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7186">
      <g
         id="g7190">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7188"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7192">
      <g
         id="g7196">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7194"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7198">
      <g
         id="g7202">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7200"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7204">
      <g
         id="g7208"
         transform="matrix(1.6666667,0,0,1.6666667,-313.12333,-827.13)">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7206"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7210">
      <g
         id="g7214">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7212"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7216">
      <g
         id="g7220">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7218"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7222">
      <g
         id="g7226">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7224"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7228">
      <g
         id="g7232">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7230"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7234">
      <g
         id="g7238">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7236"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7240">
      <g
         id="g7244">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7242"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7246">
      <g
         id="g7250">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7248"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7252">
      <g
         id="g7256"
         transform="matrix(1.6666667,0,0,1.6666667,-313.12333,-827.13)">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7254"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7258">
      <g
         id="g7262">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7260"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7264">
      <g
         id="g7268">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7266"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7270">
      <g
         id="g7274">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7272"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7276">
      <g
         id="g7280">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7278"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7282">
      <g
         id="g7286">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7284"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7288">
      <g
         id="g7292">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7290"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7294">
      <g
         id="g7298">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7296"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7300">
      <g
         id="g7304">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7302"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7306">
      <g
         id="g7310">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7308"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7312">
      <g
         id="g7316">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7314"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7318">
      <g
         id="g7322">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7320"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7324">
      <g
         id="g7328">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7326"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7330">
      <g
         id="g7334">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7332"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7336">
      <g
         id="g7340">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7338"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7342">
      <g
         id="g7346">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7344"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7348">
      <g
         id="g7352">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7350"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7354">
      <g
         id="g7358">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7356"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7360">
      <g
         id="g7364">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7362"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7366">
      <g
         id="g7370">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7368"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7372">
      <g
         id="g7376">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7374"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7378">
      <g
         id="g7382">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7380"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath7384">
      <g
         id="g7388">
        <path
           d="m 187.874,496.278 h 236.25 v 118.8 h -236.25 z"
           id="path7386"
           style="stroke-width:0.6" />
      </g>
    </clipPath>
  </defs>
  <sodipodi:namedview
     id="namedview2511"
     pagecolor="#505050"
     bordercolor="#ffffff"
     borderopacity="1"
     inkscape:showpageshadow="0"
     inkscape:pageopacity="0"
     inkscape:pagecheckerboard="1"
     inkscape:deskcolor="#505050"
     showgrid="false"
     inkscape:zoom="2.2525636"
     inkscape:cx="191.33755"
     inkscape:cy="89.231665"
     inkscape:window-width="1920"
     inkscape:window-height="1021"
     inkscape:window-x="0"
     inkscape:window-y="0"
     inkscape:window-maximized="1"
     inkscape:current-layer="g2515" />
  <g
     id="g2515"
     inkscape:groupmode="layer"
     inkscape:label="1611.014272"
     transform="matrix(1.3333333,0,0,-1.3333333,-162.5716,803.49228)">
    <path
       d="m 287.954,514.149 c 0,3.7974 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.0786 -6.876,-6.876 0,-3.7974 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.0786 6.876,6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3147"
       clip-path="url(#clipPath7384)" />
    <path
       d="m 287.954,514.149 c 0,3.7974 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.0786 -6.876,-6.876 0,-3.7974 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.0786 6.876,6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3149"
       clip-path="url(#clipPath7378)" />
    <path
       d="m 202.6712,595.494 c 0,3.798 -3.0786,6.876 -6.876,6.876 -3.7974,0 -6.87594,-3.078 -6.87594,-6.876 0,-3.798 3.07854,-6.876 6.87594,-6.876 3.7974,0 6.876,3.078 6.876,6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3151"
       clip-path="url(#clipPath7372)" />
    <path
       d="m 202.6712,595.494 c 0,3.798 -3.0786,6.876 -6.876,6.876 -3.7974,0 -6.87594,-3.078 -6.87594,-6.876 0,-3.798 3.07854,-6.876 6.87594,-6.876 3.7974,0 6.876,3.078 6.876,6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3153"
       clip-path="url(#clipPath7366)" />
    <path
       d="m 237.0518,595.506 c 0,3.798 -3.0786,6.876 -6.8766,6.876 -3.7974,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.0786,-6.876 6.876,-6.876 3.798,0 6.8766,3.078 6.8766,6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3155"
       clip-path="url(#clipPath7360)" />
    <path
       d="m 237.0518,595.506 c 0,3.798 -3.0786,6.876 -6.8766,6.876 -3.7974,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.0786,-6.876 6.876,-6.876 3.798,0 6.8766,3.078 6.8766,6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3157"
       clip-path="url(#clipPath7354)" />
    <path
       d="m 271.43,595.512 c 0,3.798 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.078 6.876,6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3159"
       clip-path="url(#clipPath7348)" />
    <path
       d="m 271.43,595.512 c 0,3.798 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.078 6.876,6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3161"
       clip-path="url(#clipPath7342)" />
    <path
       d="m 305.81,595.5 c 0,3.798 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.078 6.876,6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3163"
       clip-path="url(#clipPath7336)" />
    <path
       d="m 305.81,595.5 c 0,3.798 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.078 6.876,6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3165"
       clip-path="url(#clipPath7330)" />
    <path
       d="m 340.442,595.488 c 0,-3.798 -3.078,-6.876 -6.876,-6.876 -3.798,0 -6.876,3.078 -6.876,6.876 0,3.798 3.078,6.876 6.876,6.876 3.798,0 6.876,-3.078 6.876,-6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3167"
       clip-path="url(#clipPath7324)" />
    <path
       d="m 340.442,595.488 c 0,-3.798 -3.078,-6.876 -6.876,-6.876 -3.798,0 -6.876,3.078 -6.876,6.876 0,3.798 3.078,6.876 6.876,6.876 3.798,0 6.876,-3.078 6.876,-6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3169"
       clip-path="url(#clipPath7318)" />
    <path
       d="m 375.74,595.518 c 0,-3.798 -3.078,-6.876 -6.876,-6.876 -3.798,0 -6.876,3.078 -6.876,6.876 0,3.792 3.078,6.876 6.876,6.876 3.798,0 6.876,-3.084 6.876,-6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3171"
       clip-path="url(#clipPath7312)" />
    <path
       d="m 375.74,595.518 c 0,-3.798 -3.078,-6.876 -6.876,-6.876 -3.798,0 -6.876,3.078 -6.876,6.876 0,3.792 3.078,6.876 6.876,6.876 3.798,0 6.876,-3.084 6.876,-6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3173"
       clip-path="url(#clipPath7306)" />
    <path
       d="m 323.708,514.149 c 0,-3.7974 -3.078,-6.876 -6.876,-6.876 -3.798,0 -6.876,3.0786 -6.876,6.876 0,3.7974 3.078,6.876 6.876,6.876 3.798,0 6.876,-3.0786 6.876,-6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3175"
       clip-path="url(#clipPath7300)" />
    <path
       d="m 323.708,514.149 c 0,-3.7974 -3.078,-6.876 -6.876,-6.876 -3.798,0 -6.876,3.0786 -6.876,6.876 0,3.7974 3.078,6.876 6.876,6.876 3.798,0 6.876,-3.0786 6.876,-6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3177"
       clip-path="url(#clipPath7294)" />
    <path
       d="m 413.096,595.482 c 0,3.798 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.078 6.876,6.876 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3179"
       clip-path="url(#clipPath7288)" />
    <path
       d="m 413.096,595.482 c 0,3.798 -3.078,6.876 -6.876,6.876 -3.798,0 -6.876,-3.078 -6.876,-6.876 0,-3.798 3.078,-6.876 6.876,-6.876 3.798,0 6.876,3.078 6.876,6.876 z"
       style="fill:none;stroke:#000000;stroke-width:0.45045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3181"
       clip-path="url(#clipPath7282)" />
    <path
       d="M 230.0954,588.624 280.946,521.0238"
       style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3183"
       clip-path="url(#clipPath7276)" />
    <path
       d="M 239.9972,563.46 H 251.15 v 8.64 h -11.1528 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3185"
       clip-path="url(#clipPath7270)" />
    <path
       d="m 248.516,564.786 c 0,-0.03 0,-0.054 -0.006,-0.072 0,-0.024 -0.006,-0.042 -0.012,-0.054 -0.012,-0.018 -0.018,-0.024 -0.03,-0.036 -0.012,-0.006 -0.024,-0.006 -0.036,-0.006 h -1.635 c -0.0216,0 -0.0402,0 -0.0558,0.006 -0.0162,0.006 -0.03,0.012 -0.0414,0.024 -0.0114,0.012 -0.0198,0.03 -0.0252,0.054 -0.005,0.024 -0.008,0.054 -0.008,0.084 0,0.03 0.001,0.06 0.004,0.084 0.002,0.018 0.007,0.042 0.015,0.06 0.008,0.018 0.018,0.036 0.0294,0.048 0.012,0.018 0.027,0.042 0.0462,0.06 l 0.591,0.606 c 0.1362,0.138 0.246,0.264 0.3282,0.378 0.0822,0.108 0.1458,0.21 0.1908,0.306 0.045,0.09 0.075,0.174 0.087,0.246 0.018,0.078 0.024,0.144 0.024,0.21 0,0.066 -0.012,0.126 -0.036,0.186 -0.018,0.06 -0.054,0.108 -0.0942,0.156 -0.0414,0.042 -0.0936,0.078 -0.1566,0.102 -0.063,0.03 -0.135,0.042 -0.2166,0.042 -0.096,0 -0.1824,-0.012 -0.2586,-0.042 -0.0762,-0.024 -0.1428,-0.054 -0.2004,-0.084 -0.057,-0.03 -0.105,-0.054 -0.1434,-0.084 -0.039,-0.024 -0.0672,-0.036 -0.0864,-0.036 -0.0108,0 -0.0204,0 -0.0294,0.006 -0.008,0.006 -0.0156,0.018 -0.021,0.03 -0.005,0.012 -0.0102,0.036 -0.0132,0.054 -0.003,0.024 -0.005,0.054 -0.005,0.084 0,0.024 0.001,0.042 0.002,0.06 0.002,0.018 0.004,0.03 0.008,0.042 0.004,0.012 0.009,0.024 0.015,0.036 0.006,0.012 0.0186,0.024 0.0366,0.042 0.0186,0.012 0.0498,0.036 0.0948,0.06 0.045,0.03 0.1014,0.054 0.1692,0.084 0.0678,0.024 0.1422,0.048 0.2238,0.066 0.0816,0.018 0.1674,0.03 0.2568,0.03 0.1434,0 0.2688,-0.024 0.3762,-0.06 0.108,-0.042 0.198,-0.096 0.27,-0.168 0.066,-0.072 0.12,-0.15 0.156,-0.246 0.036,-0.09 0.054,-0.192 0.054,-0.294 0,-0.096 -0.012,-0.192 -0.024,-0.282 -0.018,-0.096 -0.054,-0.198 -0.108,-0.306 -0.054,-0.108 -0.132,-0.228 -0.234,-0.36 -0.102,-0.138 -0.2388,-0.288 -0.4074,-0.462 l -0.4686,-0.492 h 1.284 c 0.012,0 0.024,0 0.036,-0.006 0.012,-0.012 0.024,-0.018 0.03,-0.036 0.012,-0.012 0.018,-0.03 0.018,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.072 z m 2.256,-0.012 c 0,-0.03 0,-0.054 -0.006,-0.078 -0.006,-0.018 -0.012,-0.036 -0.018,-0.048 -0.006,-0.012 -0.018,-0.018 -0.024,-0.024 -0.012,-0.006 -0.024,-0.006 -0.03,-0.006 h -1.548 c -0.012,0 -0.018,0 -0.03,0.006 -0.006,0.006 -0.018,0.012 -0.024,0.024 -0.006,0.012 -0.018,0.03 -0.018,0.048 -0.006,0.024 -0.006,0.048 -0.006,0.078 0,0.024 0,0.048 0.006,0.066 0,0.024 0.006,0.036 0.018,0.054 0.006,0.012 0.012,0.018 0.024,0.03 0.006,0.006 0.018,0.006 0.03,0.006 h 0.618 v 2.25 l -0.57,-0.342 c -0.03,-0.012 -0.054,-0.024 -0.072,-0.024 -0.018,-0.006 -0.03,0 -0.042,0.006 -0.012,0.012 -0.018,0.03 -0.018,0.054 -0.006,0.018 -0.006,0.048 -0.006,0.084 0,0.024 0,0.048 0,0.066 0.006,0.018 0.006,0.036 0.012,0.048 0.006,0.012 0.012,0.024 0.018,0.03 0.012,0.012 0.018,0.018 0.036,0.03 l 0.678,0.432 c 0.006,0.006 0.012,0.012 0.024,0.012 0.006,0.006 0.018,0.006 0.036,0.012 0.012,0 0.03,0.006 0.048,0.006 0.018,0 0.042,0 0.066,0 0.036,0 0.066,0 0.09,-0.006 0.024,0 0.048,-0.006 0.06,-0.012 0.012,-0.006 0.024,-0.012 0.024,-0.018 0.006,-0.012 0.012,-0.018 0.012,-0.03 v -2.598 h 0.534 c 0.012,0 0.024,0 0.03,-0.006 0.012,-0.012 0.024,-0.018 0.03,-0.03 0.006,-0.018 0.012,-0.03 0.012,-0.054 0.006,-0.018 0.006,-0.042 0.006,-0.066 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3187"
       clip-path="url(#clipPath7264)" />
    <path
       d="m 244.6556,565.752 c -0.0144,-0.03 -0.0324,-0.06 -0.0546,-0.078 -0.0222,-0.024 -0.051,-0.036 -0.0864,-0.048 -0.0348,-0.012 -0.0774,-0.018 -0.1266,-0.018 -0.0492,-0.006 -0.1074,-0.006 -0.1758,-0.006 -0.0726,0 -0.1332,0 -0.1824,0.006 -0.0492,0 -0.0894,0.006 -0.1194,0.018 -0.0306,0.012 -0.0528,0.024 -0.0672,0.048 -0.0138,0.018 -0.0222,0.042 -0.0246,0.072 l -0.2706,3.444 h -0.007 l -1.554,-3.438 c -0.0114,-0.03 -0.0282,-0.06 -0.0504,-0.078 -0.0228,-0.024 -0.0492,-0.036 -0.0792,-0.048 -0.0306,-0.012 -0.0708,-0.018 -0.1212,-0.018 -0.0504,-0.006 -0.1122,-0.006 -0.1848,-0.006 -0.0798,0 -0.1452,0 -0.1968,0.006 -0.0516,0 -0.0936,0.006 -0.1248,0.018 -0.0318,0.012 -0.0546,0.03 -0.0684,0.048 -0.0144,0.024 -0.0228,0.048 -0.0252,0.084 l -0.3618,4.212 c -0.005,0.048 -0.005,0.084 -0.002,0.114 0.004,0.036 0.015,0.054 0.0354,0.072 0.0198,0.012 0.0504,0.024 0.0912,0.03 0.0408,0.006 0.099,0.006 0.174,0.006 0.0588,0 0.1122,0 0.1602,-0.006 0.048,-0.006 0.0822,-0.012 0.1032,-0.024 0.0216,-0.012 0.0354,-0.03 0.0426,-0.048 0.007,-0.024 0.0102,-0.048 0.0102,-0.084 l 0.2532,-3.774 h 0.007 l 1.737,3.804 c 0.0114,0.024 0.0252,0.048 0.0402,0.066 0.015,0.018 0.0354,0.03 0.0612,0.036 0.0258,0.012 0.0606,0.018 0.1038,0.024 0.0438,0.006 0.1014,0.006 0.174,0.006 0.0636,0 0.114,0 0.1512,-0.006 0.0378,0 0.0672,-0.012 0.0882,-0.018 0.021,-0.012 0.0342,-0.024 0.0402,-0.042 0.006,-0.018 0.0102,-0.042 0.0126,-0.066 l 0.288,-3.804 h 0.007 l 1.7646,3.816 c 0.01,0.024 0.021,0.042 0.0354,0.06 0.0138,0.012 0.0342,0.024 0.0612,0.036 0.027,0.006 0.0624,0.018 0.1056,0.018 0.0432,0.006 0.0978,0.006 0.1638,0.006 0.0678,0 0.1218,0 0.1614,-0.006 0.0402,-0.006 0.0678,-0.018 0.0846,-0.036 0.0162,-0.018 0.021,-0.042 0.0138,-0.072 -0.007,-0.03 -0.021,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3189"
       clip-path="url(#clipPath7258)" />
    <g
       id="g3193"
       transform="matrix(0.6,0,0,0.6,187.874,496.278)"
       clip-path="url(#clipPath7252)">
      <path
         d="M 70.369,153.91 215.03,41.244"
         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
         id="path3191" />
    </g>
    <path
       d="m 251.792,563.364 h 11.148 v 8.64 h -11.148 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3195"
       clip-path="url(#clipPath7246)" />
    <path
       d="m 260.312,564.69 c 0,-0.03 0,-0.054 -0.006,-0.078 -0.006,-0.018 -0.012,-0.036 -0.018,-0.054 -0.006,-0.012 -0.012,-0.024 -0.024,-0.03 -0.012,-0.006 -0.024,-0.012 -0.042,-0.012 h -1.632 c -0.018,0 -0.042,0.006 -0.054,0.012 -0.018,0.006 -0.03,0.012 -0.042,0.024 -0.012,0.012 -0.018,0.03 -0.024,0.054 -0.006,0.024 -0.012,0.048 -0.012,0.084 0,0.03 0.006,0.054 0.006,0.078 0,0.024 0.006,0.042 0.018,0.06 0.006,0.018 0.012,0.036 0.024,0.054 0.012,0.018 0.03,0.036 0.048,0.054 l 0.594,0.612 c 0.132,0.138 0.246,0.264 0.324,0.378 0.084,0.108 0.15,0.21 0.192,0.3 0.048,0.09 0.072,0.174 0.09,0.252 0.012,0.072 0.018,0.144 0.018,0.21 0,0.066 -0.006,0.126 -0.03,0.186 -0.024,0.06 -0.054,0.108 -0.096,0.15 -0.042,0.048 -0.096,0.084 -0.156,0.108 -0.066,0.024 -0.138,0.036 -0.216,0.036 -0.096,0 -0.186,-0.012 -0.258,-0.036 -0.078,-0.024 -0.144,-0.054 -0.204,-0.084 -0.054,-0.03 -0.102,-0.06 -0.144,-0.084 -0.036,-0.024 -0.066,-0.042 -0.084,-0.042 -0.012,0 -0.024,0.006 -0.03,0.012 -0.006,0.006 -0.018,0.018 -0.024,0.03 0,0.012 -0.006,0.03 -0.012,0.054 0,0.024 0,0.048 0,0.084 0,0.018 0,0.042 0,0.06 0,0.012 0.006,0.03 0.006,0.042 0.006,0.012 0.012,0.024 0.018,0.036 0.006,0.006 0.018,0.024 0.036,0.036 0.018,0.018 0.048,0.036 0.096,0.066 0.042,0.03 0.096,0.054 0.168,0.084 0.066,0.024 0.144,0.048 0.222,0.066 0.084,0.018 0.168,0.024 0.258,0.024 0.144,0 0.27,-0.018 0.378,-0.06 0.102,-0.036 0.192,-0.096 0.264,-0.162 0.072,-0.072 0.126,-0.156 0.162,-0.246 0.03,-0.096 0.048,-0.192 0.048,-0.3 0,-0.09 -0.006,-0.186 -0.024,-0.282 -0.018,-0.09 -0.054,-0.192 -0.108,-0.3 -0.054,-0.108 -0.132,-0.234 -0.234,-0.366 -0.102,-0.132 -0.234,-0.288 -0.402,-0.462 l -0.468,-0.486 h 1.284 c 0.012,0 0.024,-0.006 0.036,-0.012 0.012,-0.006 0.018,-0.018 0.03,-0.03 0.006,-0.012 0.012,-0.03 0.018,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.072 z m 2.25,0 c 0,-0.03 0,-0.054 -0.006,-0.078 -0.006,-0.018 -0.012,-0.036 -0.018,-0.054 -0.006,-0.012 -0.012,-0.024 -0.024,-0.03 -0.012,-0.006 -0.024,-0.012 -0.042,-0.012 h -1.632 c -0.018,0 -0.042,0.006 -0.054,0.012 -0.018,0.006 -0.03,0.012 -0.042,0.024 -0.012,0.012 -0.018,0.03 -0.024,0.054 -0.006,0.024 -0.012,0.048 -0.012,0.084 0,0.03 0.006,0.054 0.006,0.078 0,0.024 0.006,0.042 0.018,0.06 0.006,0.018 0.012,0.036 0.024,0.054 0.012,0.018 0.03,0.036 0.048,0.054 l 0.594,0.612 c 0.132,0.138 0.246,0.264 0.324,0.378 0.084,0.108 0.15,0.21 0.192,0.3 0.048,0.09 0.072,0.174 0.09,0.252 0.012,0.072 0.018,0.144 0.018,0.21 0,0.066 -0.006,0.126 -0.03,0.186 -0.024,0.06 -0.054,0.108 -0.096,0.15 -0.042,0.048 -0.096,0.084 -0.156,0.108 -0.066,0.024 -0.138,0.036 -0.216,0.036 -0.096,0 -0.186,-0.012 -0.258,-0.036 -0.078,-0.024 -0.144,-0.054 -0.204,-0.084 -0.054,-0.03 -0.102,-0.06 -0.144,-0.084 -0.036,-0.024 -0.066,-0.042 -0.084,-0.042 -0.012,0 -0.024,0.006 -0.03,0.012 -0.006,0.006 -0.018,0.018 -0.024,0.03 0,0.012 -0.006,0.03 -0.012,0.054 0,0.024 0,0.048 0,0.084 0,0.018 0,0.042 0,0.06 0,0.012 0.006,0.03 0.006,0.042 0.006,0.012 0.012,0.024 0.018,0.036 0.006,0.006 0.018,0.024 0.036,0.036 0.018,0.018 0.048,0.036 0.096,0.066 0.042,0.03 0.096,0.054 0.168,0.084 0.066,0.024 0.144,0.048 0.222,0.066 0.084,0.018 0.168,0.024 0.258,0.024 0.144,0 0.27,-0.018 0.378,-0.06 0.102,-0.036 0.192,-0.096 0.264,-0.162 0.072,-0.072 0.126,-0.156 0.162,-0.246 0.03,-0.096 0.048,-0.192 0.048,-0.3 0,-0.09 -0.006,-0.186 -0.024,-0.282 -0.018,-0.09 -0.054,-0.192 -0.108,-0.3 -0.054,-0.108 -0.132,-0.234 -0.234,-0.366 -0.102,-0.132 -0.234,-0.288 -0.402,-0.462 l -0.468,-0.486 h 1.284 c 0.012,0 0.024,-0.006 0.036,-0.012 0.012,-0.006 0.018,-0.018 0.03,-0.03 0.006,-0.012 0.012,-0.03 0.018,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3197"
       clip-path="url(#clipPath7240)" />
    <path
       d="m 256.448,565.656 c -0.012,-0.036 -0.03,-0.06 -0.054,-0.084 -0.024,-0.018 -0.048,-0.03 -0.084,-0.042 -0.036,-0.012 -0.078,-0.018 -0.126,-0.024 -0.054,0 -0.108,-0.006 -0.18,-0.006 -0.072,0 -0.132,0.006 -0.18,0.006 -0.048,0.006 -0.09,0.012 -0.12,0.024 -0.03,0.012 -0.054,0.024 -0.066,0.042 -0.018,0.018 -0.024,0.042 -0.024,0.072 l -0.27,3.45 h -0.012 l -1.554,-3.438 c -0.012,-0.036 -0.024,-0.06 -0.048,-0.084 -0.024,-0.018 -0.048,-0.03 -0.078,-0.042 -0.03,-0.012 -0.072,-0.018 -0.12,-0.024 -0.054,0 -0.114,-0.006 -0.186,-0.006 -0.078,0 -0.144,0.006 -0.198,0.006 -0.054,0.006 -0.096,0.012 -0.126,0.024 -0.03,0.012 -0.054,0.024 -0.066,0.048 -0.018,0.018 -0.024,0.048 -0.024,0.078 l -0.366,4.218 c 0,0.048 -0.006,0.084 0,0.114 0.006,0.03 0.018,0.054 0.036,0.072 0.018,0.012 0.048,0.024 0.09,0.03 0.042,0 0.102,0.006 0.174,0.006 0.06,0 0.114,-0.006 0.162,-0.006 0.048,-0.006 0.084,-0.018 0.102,-0.03 0.024,-0.012 0.036,-0.024 0.042,-0.048 0.006,-0.018 0.012,-0.048 0.012,-0.078 l 0.252,-3.78 h 0.006 l 1.74,3.804 c 0.012,0.03 0.024,0.048 0.036,0.066 0.018,0.018 0.036,0.03 0.066,0.042 0.024,0.012 0.06,0.018 0.102,0.024 0.042,0 0.102,0.006 0.174,0.006 0.06,0 0.114,-0.006 0.15,-0.006 0.036,-0.006 0.066,-0.012 0.09,-0.024 0.018,-0.006 0.036,-0.024 0.042,-0.042 0,-0.018 0.006,-0.036 0.012,-0.066 l 0.288,-3.804 h 0.006 l 1.764,3.822 c 0.006,0.024 0.018,0.042 0.036,0.054 0.012,0.018 0.036,0.03 0.06,0.042 0.03,0.006 0.06,0.012 0.108,0.018 0.042,0 0.096,0.006 0.162,0.006 0.066,0 0.12,-0.006 0.162,-0.012 0.036,-0.006 0.066,-0.018 0.084,-0.03 0.018,-0.018 0.018,-0.042 0.012,-0.072 -0.006,-0.036 -0.018,-0.078 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3199"
       clip-path="url(#clipPath7234)" />
    <path
       d="m 264.338,588.624 16.608,-67.6002"
       style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3201"
       clip-path="url(#clipPath7228)" />
    <path
       d="m 262.316,570.294 h 11.1522 v 8.64 H 262.316 Z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3203"
       clip-path="url(#clipPath7222)" />
    <path
       d="m 270.812,572.298 c 0,-0.138 -0.024,-0.258 -0.072,-0.372 -0.048,-0.108 -0.114,-0.198 -0.204,-0.276 -0.084,-0.078 -0.198,-0.138 -0.324,-0.18 -0.132,-0.042 -0.276,-0.066 -0.438,-0.066 -0.102,0 -0.192,0.012 -0.276,0.024 -0.09,0.018 -0.168,0.036 -0.234,0.06 -0.066,0.024 -0.12,0.042 -0.168,0.066 -0.042,0.024 -0.072,0.042 -0.078,0.054 -0.012,0.012 -0.024,0.018 -0.03,0.03 -0.006,0.012 -0.012,0.024 -0.018,0.042 0,0.012 -0.006,0.03 -0.006,0.054 -0.006,0.024 -0.006,0.048 -0.006,0.084 0,0.054 0.006,0.09 0.018,0.114 0.012,0.018 0.024,0.03 0.048,0.03 0.012,0 0.042,-0.012 0.084,-0.036 0.042,-0.024 0.09,-0.054 0.156,-0.078 0.066,-0.03 0.144,-0.054 0.228,-0.078 0.09,-0.024 0.186,-0.036 0.288,-0.036 0.108,0 0.198,0.012 0.276,0.036 0.078,0.024 0.144,0.06 0.192,0.108 0.054,0.048 0.096,0.102 0.12,0.168 0.03,0.066 0.042,0.138 0.042,0.21 0,0.084 -0.018,0.162 -0.048,0.228 -0.036,0.066 -0.084,0.126 -0.15,0.174 -0.066,0.048 -0.144,0.084 -0.24,0.114 -0.096,0.024 -0.204,0.036 -0.324,0.036 h -0.294 c -0.012,0 -0.024,0.006 -0.036,0.012 -0.012,0 -0.024,0.012 -0.03,0.024 -0.006,0.012 -0.018,0.03 -0.024,0.048 0,0.018 -0.006,0.048 -0.006,0.078 0,0.03 0,0.054 0.006,0.072 0.006,0.018 0.012,0.036 0.018,0.048 0.012,0.006 0.018,0.018 0.03,0.024 0.012,0.006 0.024,0.006 0.036,0.006 h 0.258 c 0.102,0 0.192,0.012 0.27,0.042 0.084,0.024 0.15,0.06 0.204,0.108 0.06,0.048 0.102,0.108 0.132,0.174 0.03,0.072 0.042,0.144 0.042,0.228 0,0.06 -0.012,0.12 -0.03,0.174 -0.018,0.06 -0.048,0.108 -0.09,0.144 -0.036,0.042 -0.09,0.078 -0.15,0.102 -0.06,0.024 -0.132,0.036 -0.216,0.036 -0.084,0 -0.168,-0.018 -0.24,-0.042 -0.072,-0.03 -0.138,-0.054 -0.198,-0.084 -0.06,-0.03 -0.108,-0.06 -0.144,-0.09 -0.036,-0.024 -0.066,-0.036 -0.078,-0.036 -0.012,0 -0.024,0 -0.03,0.006 -0.012,0 -0.018,0.012 -0.024,0.018 0,0.012 -0.006,0.03 -0.012,0.048 0,0.024 0,0.048 0,0.084 0,0.024 0,0.042 0,0.06 0.006,0.018 0.006,0.036 0.012,0.048 0.006,0.012 0.006,0.024 0.012,0.036 0.012,0.006 0.018,0.018 0.036,0.036 0.012,0.012 0.042,0.036 0.084,0.06 0.048,0.03 0.102,0.054 0.168,0.084 0.06,0.024 0.138,0.048 0.222,0.066 0.084,0.018 0.174,0.03 0.27,0.03 0.138,0 0.258,-0.018 0.366,-0.054 0.102,-0.036 0.186,-0.084 0.258,-0.15 0.066,-0.066 0.12,-0.138 0.156,-0.228 0.03,-0.09 0.048,-0.186 0.048,-0.294 0,-0.096 -0.012,-0.18 -0.036,-0.264 -0.024,-0.078 -0.06,-0.15 -0.108,-0.21 -0.048,-0.06 -0.102,-0.114 -0.174,-0.156 -0.066,-0.048 -0.144,-0.078 -0.234,-0.09 V 573 c 0.102,-0.012 0.192,-0.036 0.276,-0.078 0.084,-0.042 0.162,-0.09 0.222,-0.15 0.06,-0.06 0.108,-0.132 0.138,-0.216 0.036,-0.078 0.054,-0.168 0.054,-0.258 z m 2.28,-0.69 c 0,-0.03 0,-0.054 -0.006,-0.078 -0.006,-0.018 -0.012,-0.036 -0.018,-0.048 -0.006,-0.012 -0.018,-0.018 -0.03,-0.024 -0.006,-0.006 -0.018,-0.006 -0.03,-0.006 h -1.542 c -0.012,0 -0.024,0 -0.03,0.006 -0.012,0.006 -0.018,0.012 -0.024,0.024 -0.012,0.012 -0.018,0.03 -0.024,0.048 0,0.024 -0.006,0.048 -0.006,0.078 0,0.024 0.006,0.048 0.006,0.066 0.006,0.024 0.012,0.036 0.018,0.054 0.006,0.012 0.018,0.018 0.024,0.03 0.012,0.006 0.024,0.006 0.036,0.006 h 0.618 v 2.25 l -0.576,-0.342 c -0.024,-0.012 -0.048,-0.024 -0.066,-0.024 -0.018,-0.006 -0.03,0 -0.042,0.006 -0.012,0.012 -0.018,0.03 -0.024,0.054 0,0.018 -0.006,0.048 -0.006,0.084 0,0.024 0,0.048 0.006,0.066 0,0.018 0.006,0.036 0.012,0.048 0,0.012 0.006,0.018 0.018,0.03 0.006,0.006 0.018,0.018 0.03,0.03 l 0.684,0.432 c 0.006,0.006 0.012,0.012 0.024,0.012 0.006,0.006 0.018,0.006 0.03,0.012 0.018,0 0.03,0.006 0.048,0.006 0.018,0 0.042,0 0.072,0 0.036,0 0.066,0 0.09,-0.006 0.024,0 0.042,-0.006 0.054,-0.012 0.018,-0.006 0.024,-0.012 0.03,-0.018 0.006,-0.012 0.006,-0.018 0.006,-0.03 v -2.598 h 0.534 c 0.012,0 0.024,0 0.036,-0.006 0.012,-0.012 0.018,-0.018 0.024,-0.03 0.012,-0.018 0.012,-0.03 0.018,-0.054 0.006,-0.018 0.006,-0.042 0.006,-0.066 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3205"
       clip-path="url(#clipPath7216)" />
    <path
       d="m 266.972,572.586 c -0.012,-0.036 -0.03,-0.06 -0.054,-0.078 -0.024,-0.024 -0.048,-0.036 -0.084,-0.048 -0.036,-0.012 -0.078,-0.018 -0.126,-0.018 -0.054,-0.006 -0.108,-0.006 -0.18,-0.006 -0.072,0 -0.132,0 -0.18,0.006 -0.048,0 -0.09,0.006 -0.12,0.018 -0.03,0.012 -0.054,0.024 -0.066,0.042 -0.018,0.024 -0.024,0.048 -0.024,0.078 l -0.27,3.444 h -0.012 l -1.554,-3.438 c -0.006,-0.036 -0.024,-0.06 -0.048,-0.078 -0.024,-0.024 -0.048,-0.036 -0.078,-0.048 -0.03,-0.012 -0.072,-0.018 -0.12,-0.018 -0.054,-0.006 -0.114,-0.006 -0.186,-0.006 -0.078,0 -0.144,0 -0.198,0.006 -0.054,0 -0.096,0.006 -0.126,0.018 -0.03,0.012 -0.054,0.03 -0.066,0.048 -0.018,0.024 -0.024,0.048 -0.024,0.084 l -0.366,4.212 c 0,0.048 -0.006,0.084 0,0.114 0.006,0.03 0.018,0.054 0.036,0.072 0.018,0.012 0.048,0.024 0.09,0.03 0.042,0.006 0.102,0.006 0.174,0.006 0.06,0 0.114,0 0.162,-0.006 0.048,-0.006 0.084,-0.012 0.102,-0.024 0.024,-0.012 0.036,-0.03 0.042,-0.054 0.006,-0.018 0.012,-0.048 0.012,-0.078 l 0.252,-3.774 h 0.006 l 1.74,3.804 c 0.012,0.024 0.024,0.048 0.036,0.066 0.018,0.012 0.036,0.03 0.066,0.036 0.024,0.012 0.06,0.018 0.102,0.024 0.042,0.006 0.102,0.006 0.174,0.006 0.06,0 0.114,0 0.15,-0.006 0.036,0 0.066,-0.012 0.09,-0.018 0.018,-0.012 0.036,-0.03 0.042,-0.042 0.006,-0.018 0.006,-0.042 0.012,-0.066 l 0.288,-3.804 h 0.006 l 1.764,3.816 c 0.012,0.024 0.018,0.042 0.036,0.06 0.012,0.012 0.036,0.024 0.06,0.036 0.03,0.006 0.06,0.018 0.108,0.018 0.042,0.006 0.096,0.006 0.162,0.006 0.066,0 0.12,-0.006 0.162,-0.006 0.036,-0.006 0.066,-0.018 0.084,-0.036 0.018,-0.018 0.018,-0.042 0.012,-0.072 -0.006,-0.03 -0.018,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3207"
       clip-path="url(#clipPath7210)" />
    <g
       id="g3211"
       transform="matrix(0.6,0,0,0.6,187.874,496.278)"
       clip-path="url(#clipPath7204)">
      <path
         d="M 127.44,153.91 215.03,41.244"
         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
         id="path3209" />
    </g>
    <path
       d="m 274.796,563.46 h 11.1522 v 8.64 H 274.796 Z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3213"
       clip-path="url(#clipPath7198)" />
    <path
       d="m 283.298,565.458 c 0,-0.138 -0.024,-0.258 -0.072,-0.366 -0.048,-0.108 -0.114,-0.204 -0.204,-0.282 -0.09,-0.078 -0.198,-0.138 -0.33,-0.18 -0.126,-0.042 -0.27,-0.06 -0.438,-0.06 -0.096,0 -0.192,0.006 -0.276,0.024 -0.084,0.012 -0.162,0.036 -0.228,0.054 -0.066,0.024 -0.126,0.048 -0.168,0.072 -0.042,0.024 -0.072,0.036 -0.084,0.048 -0.012,0.012 -0.018,0.024 -0.024,0.036 -0.006,0.006 -0.012,0.024 -0.018,0.036 -0.006,0.018 -0.006,0.036 -0.012,0.054 0,0.024 0,0.054 0,0.084 0,0.054 0.006,0.09 0.018,0.114 0.006,0.018 0.024,0.03 0.042,0.03 0.018,0 0.042,-0.012 0.084,-0.036 0.042,-0.024 0.096,-0.048 0.162,-0.078 0.066,-0.03 0.138,-0.054 0.228,-0.078 0.084,-0.024 0.18,-0.036 0.288,-0.036 0.102,0 0.192,0.012 0.27,0.036 0.078,0.03 0.144,0.066 0.198,0.114 0.054,0.042 0.096,0.102 0.12,0.168 0.024,0.06 0.042,0.132 0.042,0.21 0,0.084 -0.018,0.156 -0.054,0.222 -0.036,0.072 -0.084,0.126 -0.15,0.174 -0.066,0.054 -0.144,0.09 -0.24,0.114 -0.096,0.024 -0.204,0.042 -0.324,0.042 h -0.288 c -0.012,0 -0.024,0 -0.036,0.006 -0.012,0.006 -0.024,0.012 -0.03,0.024 -0.012,0.012 -0.018,0.03 -0.024,0.048 -0.006,0.024 -0.006,0.048 -0.006,0.078 0,0.03 0,0.054 0.006,0.072 0.006,0.018 0.012,0.036 0.018,0.048 0.006,0.012 0.018,0.018 0.03,0.024 0.012,0.006 0.024,0.006 0.036,0.006 h 0.258 c 0.102,0 0.192,0.012 0.27,0.042 0.078,0.024 0.15,0.06 0.204,0.108 0.054,0.054 0.096,0.108 0.126,0.18 0.03,0.066 0.048,0.144 0.048,0.222 0,0.066 -0.012,0.12 -0.03,0.18 -0.024,0.054 -0.054,0.102 -0.09,0.144 -0.042,0.042 -0.09,0.072 -0.15,0.096 -0.066,0.024 -0.138,0.036 -0.216,0.036 -0.09,0 -0.168,-0.012 -0.246,-0.042 -0.072,-0.024 -0.138,-0.054 -0.198,-0.084 -0.054,-0.03 -0.102,-0.06 -0.144,-0.084 -0.036,-0.03 -0.06,-0.042 -0.078,-0.042 -0.012,0 -0.018,0 -0.03,0.006 -0.006,0.006 -0.012,0.012 -0.018,0.024 -0.006,0.012 -0.012,0.024 -0.012,0.048 0,0.018 -0.006,0.048 -0.006,0.078 0,0.024 0.006,0.042 0.006,0.06 0,0.018 0.006,0.036 0.006,0.048 0.006,0.012 0.012,0.024 0.018,0.036 0.006,0.012 0.018,0.024 0.03,0.036 0.018,0.018 0.048,0.036 0.09,0.066 0.042,0.024 0.096,0.054 0.162,0.078 0.066,0.03 0.138,0.048 0.222,0.066 0.084,0.018 0.18,0.03 0.276,0.03 0.138,0 0.258,-0.018 0.36,-0.054 0.102,-0.036 0.192,-0.084 0.258,-0.15 0.072,-0.06 0.12,-0.138 0.156,-0.228 0.036,-0.09 0.054,-0.186 0.054,-0.294 0,-0.096 -0.012,-0.18 -0.036,-0.258 -0.024,-0.084 -0.06,-0.15 -0.108,-0.216 -0.048,-0.06 -0.108,-0.114 -0.174,-0.156 -0.072,-0.042 -0.15,-0.072 -0.24,-0.09 v -0.006 c 0.102,-0.012 0.198,-0.036 0.282,-0.078 0.084,-0.036 0.156,-0.09 0.216,-0.15 0.06,-0.06 0.108,-0.132 0.144,-0.216 0.036,-0.078 0.054,-0.168 0.054,-0.258 z m 2.268,-0.678 c 0,-0.024 0,-0.048 -0.006,-0.072 0,-0.024 -0.006,-0.042 -0.012,-0.054 -0.006,-0.012 -0.018,-0.024 -0.03,-0.03 -0.012,-0.006 -0.024,-0.012 -0.036,-0.012 h -1.632 c -0.024,0 -0.042,0 -0.06,0.006 -0.012,0.006 -0.03,0.018 -0.042,0.03 -0.006,0.012 -0.018,0.03 -0.024,0.048 -0.006,0.024 -0.006,0.054 -0.006,0.09 0,0.03 0,0.054 0.006,0.078 0,0.024 0.006,0.042 0.012,0.06 0.006,0.018 0.018,0.036 0.03,0.054 0.012,0.018 0.03,0.036 0.048,0.054 l 0.588,0.606 c 0.138,0.144 0.246,0.27 0.33,0.378 0.084,0.114 0.144,0.216 0.192,0.306 0.042,0.09 0.072,0.174 0.084,0.246 0.018,0.078 0.024,0.144 0.024,0.21 0,0.066 -0.012,0.132 -0.036,0.186 -0.018,0.06 -0.054,0.114 -0.09,0.156 -0.042,0.042 -0.096,0.078 -0.162,0.108 -0.06,0.024 -0.132,0.036 -0.216,0.036 -0.096,0 -0.18,-0.012 -0.258,-0.036 -0.072,-0.03 -0.144,-0.054 -0.198,-0.084 -0.06,-0.036 -0.108,-0.06 -0.144,-0.09 -0.042,-0.024 -0.066,-0.036 -0.084,-0.036 -0.012,0 -0.024,0 -0.03,0.006 -0.012,0.006 -0.018,0.018 -0.024,0.03 -0.006,0.018 -0.012,0.036 -0.012,0.06 -0.006,0.018 -0.006,0.048 -0.006,0.078 0,0.024 0,0.042 0,0.06 0.006,0.018 0.006,0.03 0.012,0.042 0,0.012 0.006,0.024 0.012,0.036 0.006,0.012 0.018,0.024 0.036,0.042 0.018,0.012 0.054,0.036 0.096,0.066 0.048,0.024 0.102,0.054 0.168,0.078 0.072,0.03 0.144,0.048 0.228,0.066 0.078,0.018 0.168,0.03 0.258,0.03 0.138,0 0.264,-0.018 0.372,-0.06 0.108,-0.042 0.198,-0.096 0.27,-0.168 0.072,-0.066 0.12,-0.15 0.156,-0.24 0.036,-0.096 0.054,-0.192 0.054,-0.3 0,-0.096 -0.006,-0.186 -0.024,-0.282 -0.018,-0.096 -0.054,-0.198 -0.108,-0.306 -0.054,-0.108 -0.132,-0.228 -0.234,-0.36 -0.102,-0.132 -0.24,-0.288 -0.408,-0.462 l -0.468,-0.486 h 1.29 c 0.012,0 0.024,-0.006 0.03,-0.012 0.012,-0.006 0.024,-0.018 0.03,-0.03 0.012,-0.018 0.018,-0.03 0.018,-0.054 0.006,-0.018 0.006,-0.042 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3215"
       clip-path="url(#clipPath7192)" />
    <path
       d="m 279.458,565.746 c -0.018,-0.03 -0.036,-0.06 -0.054,-0.078 -0.024,-0.018 -0.054,-0.036 -0.09,-0.048 -0.036,-0.006 -0.078,-0.018 -0.126,-0.018 -0.048,-0.006 -0.108,-0.006 -0.174,-0.006 -0.072,0 -0.132,0 -0.186,0.006 -0.048,0 -0.084,0.012 -0.114,0.018 -0.036,0.012 -0.054,0.03 -0.072,0.048 -0.012,0.018 -0.018,0.042 -0.024,0.072 l -0.27,3.444 h -0.006 l -1.554,-3.438 c -0.012,-0.03 -0.03,-0.06 -0.048,-0.078 -0.024,-0.018 -0.054,-0.036 -0.084,-0.048 -0.03,-0.006 -0.066,-0.018 -0.12,-0.018 -0.048,-0.006 -0.114,-0.006 -0.186,-0.006 -0.078,0 -0.144,0 -0.192,0.006 -0.054,0 -0.096,0.012 -0.126,0.018 -0.036,0.012 -0.054,0.03 -0.072,0.048 -0.012,0.024 -0.018,0.048 -0.024,0.084 l -0.36,4.212 c -0.006,0.048 -0.006,0.09 0,0.12 0,0.03 0.012,0.054 0.03,0.066 0.024,0.018 0.054,0.024 0.096,0.03 0.042,0.006 0.096,0.006 0.174,0.006 0.054,0 0.108,0 0.156,-0.006 0.048,-0.006 0.084,-0.012 0.108,-0.024 0.018,-0.012 0.03,-0.03 0.042,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.084 l 0.258,-3.774 h 0.006 l 1.734,3.804 c 0.012,0.024 0.024,0.048 0.042,0.066 0.018,0.018 0.036,0.03 0.06,0.042 0.03,0.006 0.06,0.012 0.108,0.018 0.042,0.006 0.096,0.006 0.174,0.006 0.06,0 0.108,0 0.15,-0.006 0.036,0 0.066,-0.006 0.084,-0.018 0.024,-0.012 0.036,-0.024 0.042,-0.042 0.006,-0.018 0.012,-0.042 0.012,-0.066 l 0.288,-3.804 h 0.006 l 1.77,3.816 c 0.006,0.024 0.018,0.042 0.03,0.06 0.018,0.018 0.036,0.03 0.066,0.036 0.024,0.012 0.06,0.018 0.102,0.018 0.042,0.006 0.102,0.006 0.162,0.006 0.072,0 0.126,0 0.162,-0.006 0.042,-0.006 0.072,-0.018 0.084,-0.036 0.018,-0.012 0.024,-0.036 0.018,-0.072 -0.006,-0.03 -0.024,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3217"
       clip-path="url(#clipPath7186)" />
    <path
       d="M 298.958,588.624 280.946,521.0238"
       style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3219"
       clip-path="url(#clipPath7180)" />
    <path
       d="m 286.784,558.858 h 11.1522 v 8.64 H 286.784 Z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3221"
       clip-path="url(#clipPath7174)" />
    <path
       d="m 295.43,560.856 c 0,-0.048 -0.006,-0.09 -0.024,-0.12 -0.012,-0.03 -0.036,-0.042 -0.06,-0.042 h -0.336 v -0.624 c 0,-0.012 0,-0.018 -0.006,-0.03 -0.006,-0.006 -0.018,-0.012 -0.036,-0.018 -0.018,-0.006 -0.036,-0.012 -0.06,-0.018 -0.024,0 -0.06,0 -0.096,0 -0.036,0 -0.072,0 -0.096,0 -0.024,0.006 -0.042,0.012 -0.06,0.018 -0.012,0.006 -0.024,0.012 -0.03,0.018 -0.006,0.012 -0.006,0.018 -0.006,0.03 v 0.624 h -1.212 c -0.018,0 -0.03,0 -0.042,0.006 -0.018,0.006 -0.024,0.012 -0.036,0.024 -0.012,0.012 -0.018,0.03 -0.018,0.054 -0.006,0.024 -0.006,0.054 -0.006,0.09 0,0.03 0,0.054 0,0.078 0,0.024 0.006,0.042 0.012,0.06 0,0.018 0.006,0.036 0.018,0.054 0.006,0.018 0.012,0.036 0.024,0.06 l 1.056,1.794 c 0.006,0.012 0.018,0.024 0.03,0.03 0.018,0.012 0.036,0.018 0.06,0.024 0.024,0.006 0.054,0.012 0.084,0.012 0.036,0.006 0.078,0.006 0.12,0.006 0.054,0 0.096,0 0.138,-0.006 0.036,-0.006 0.066,-0.012 0.09,-0.018 0.024,-0.006 0.042,-0.012 0.054,-0.024 0.012,-0.006 0.018,-0.018 0.018,-0.03 v -1.89 h 0.336 c 0.024,0 0.048,-0.012 0.06,-0.042 0.018,-0.024 0.024,-0.066 0.024,-0.12 z m -0.81,1.782 h -0.006 l -0.954,-1.62 h 0.96 z m 2.94,-2.466 c 0,-0.03 0,-0.054 -0.006,-0.072 -0.006,-0.024 -0.012,-0.036 -0.018,-0.048 -0.006,-0.018 -0.018,-0.024 -0.024,-0.03 -0.012,-0.006 -0.024,-0.006 -0.03,-0.006 h -1.548 c -0.006,0 -0.018,0 -0.03,0.006 -0.006,0.006 -0.018,0.012 -0.024,0.03 -0.006,0.012 -0.018,0.024 -0.018,0.048 -0.006,0.018 -0.006,0.042 -0.006,0.072 0,0.024 0,0.048 0.006,0.072 0,0.018 0.006,0.036 0.018,0.048 0.006,0.012 0.012,0.024 0.024,0.03 0.006,0.006 0.018,0.006 0.03,0.006 h 0.618 v 2.25 l -0.57,-0.342 c -0.03,-0.012 -0.054,-0.024 -0.072,-0.024 -0.018,-0.006 -0.03,0 -0.042,0.006 -0.012,0.012 -0.018,0.03 -0.018,0.054 -0.006,0.018 -0.006,0.048 -0.006,0.084 0,0.024 0,0.048 0,0.066 0.006,0.018 0.006,0.036 0.012,0.048 0.006,0.012 0.012,0.024 0.018,0.03 0.012,0.012 0.018,0.018 0.036,0.03 l 0.678,0.432 c 0.006,0.006 0.012,0.012 0.024,0.012 0.012,0.006 0.018,0.006 0.036,0.012 0.012,0 0.03,0.006 0.048,0.006 0.018,0 0.042,0 0.066,0 0.036,0 0.066,0 0.09,-0.006 0.024,0 0.048,-0.006 0.06,-0.012 0.012,-0.006 0.024,-0.012 0.024,-0.018 0.006,-0.012 0.012,-0.018 0.012,-0.03 v -2.598 h 0.534 c 0.012,0 0.024,0 0.03,-0.006 0.012,-0.006 0.024,-0.018 0.03,-0.03 0.006,-0.012 0.012,-0.03 0.012,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3223"
       clip-path="url(#clipPath7168)" />
    <path
       d="m 291.446,561.15 c -0.018,-0.03 -0.036,-0.06 -0.054,-0.078 -0.024,-0.018 -0.054,-0.036 -0.09,-0.048 -0.036,-0.006 -0.078,-0.018 -0.126,-0.018 C 291.128,561 291.068,561 291.002,561 c -0.072,0 -0.132,0 -0.186,0.006 -0.048,0 -0.09,0.012 -0.12,0.018 -0.03,0.012 -0.048,0.024 -0.066,0.048 -0.012,0.018 -0.018,0.042 -0.024,0.072 l -0.27,3.444 h -0.006 l -1.554,-3.438 c -0.012,-0.03 -0.03,-0.06 -0.054,-0.078 -0.018,-0.018 -0.048,-0.036 -0.078,-0.048 -0.03,-0.006 -0.072,-0.018 -0.12,-0.018 C 288.476,561 288.41,561 288.338,561 c -0.078,0 -0.144,0 -0.198,0.006 -0.048,0 -0.09,0.012 -0.12,0.018 -0.036,0.012 -0.054,0.03 -0.072,0.048 -0.012,0.024 -0.024,0.048 -0.024,0.084 l -0.36,4.212 c -0.006,0.048 -0.006,0.084 -0.006,0.12 0.006,0.03 0.018,0.048 0.036,0.066 0.024,0.012 0.054,0.024 0.096,0.03 0.036,0.006 0.096,0.006 0.174,0.006 0.054,0 0.108,0 0.156,-0.006 0.048,-0.006 0.084,-0.012 0.102,-0.024 0.024,-0.012 0.036,-0.03 0.048,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.084 l 0.252,-3.774 h 0.012 l 1.734,3.804 c 0.012,0.024 0.024,0.048 0.042,0.066 0.012,0.018 0.036,0.03 0.06,0.036 0.024,0.012 0.06,0.018 0.102,0.024 0.048,0.006 0.102,0.006 0.174,0.006 0.066,0 0.114,0 0.156,-0.006 0.036,0 0.066,-0.012 0.084,-0.018 0.024,-0.012 0.036,-0.024 0.042,-0.042 0.006,-0.018 0.012,-0.042 0.012,-0.066 l 0.288,-3.804 h 0.006 l 1.764,3.816 c 0.012,0.024 0.024,0.042 0.036,0.06 0.018,0.012 0.036,0.024 0.06,0.036 0.03,0.012 0.066,0.018 0.108,0.018 0.042,0.006 0.096,0.006 0.162,0.006 0.072,0 0.126,0 0.162,-0.006 0.042,-0.006 0.072,-0.018 0.084,-0.036 0.018,-0.018 0.024,-0.042 0.018,-0.072 -0.012,-0.03 -0.024,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3225"
       clip-path="url(#clipPath7162)" />
    <g
       id="g3229"
       transform="matrix(0.6,0,0,0.6,187.874,496.278)"
       clip-path="url(#clipPath7156)">
      <path
         d="M 185.14,153.91 215.03,41.244"
         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
         id="path3227" />
    </g>
    <path
       d="m 298.088,565.74 h 11.1522 v 8.64 H 298.088 Z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3231"
       clip-path="url(#clipPath7150)" />
    <path
       d="m 306.734,567.732 c 0,-0.048 -0.006,-0.09 -0.024,-0.114 -0.012,-0.03 -0.036,-0.048 -0.06,-0.048 h -0.336 v -0.618 c 0,-0.012 -0.006,-0.024 -0.012,-0.03 -0.006,-0.012 -0.012,-0.018 -0.03,-0.024 -0.018,-0.006 -0.036,-0.012 -0.06,-0.012 -0.024,-0.006 -0.06,-0.006 -0.096,-0.006 -0.042,0 -0.072,0 -0.096,0.006 -0.024,0 -0.048,0.006 -0.06,0.012 -0.018,0.006 -0.024,0.012 -0.03,0.024 -0.006,0.006 -0.012,0.018 -0.012,0.03 v 0.618 h -1.206 c -0.018,0 -0.036,0.006 -0.048,0.012 -0.012,0 -0.024,0.012 -0.03,0.024 -0.012,0.012 -0.018,0.03 -0.024,0.048 0,0.024 -0.006,0.054 -0.006,0.09 0,0.03 0.006,0.054 0.006,0.078 0,0.024 0.006,0.048 0.006,0.066 0.006,0.018 0.012,0.036 0.018,0.054 0.012,0.018 0.018,0.036 0.03,0.054 l 1.056,1.8 c 0.006,0.012 0.018,0.018 0.03,0.03 0.018,0.006 0.036,0.018 0.06,0.024 0.024,0.006 0.048,0.006 0.084,0.012 0.036,0 0.072,0 0.12,0 0.054,0 0.096,0 0.138,-0.006 0.036,0 0.066,-0.006 0.09,-0.012 0.024,-0.006 0.042,-0.012 0.054,-0.024 0.012,-0.012 0.018,-0.024 0.018,-0.036 v -1.89 h 0.336 c 0.024,0 0.042,-0.012 0.06,-0.036 0.018,-0.03 0.024,-0.066 0.024,-0.126 z m -0.816,1.788 v 0 l -0.954,-1.626 h 0.954 z m 2.94,-2.46 c 0,-0.024 0,-0.048 -0.006,-0.072 -0.006,-0.018 -0.006,-0.036 -0.018,-0.054 -0.006,-0.012 -0.012,-0.024 -0.024,-0.03 -0.012,-0.006 -0.024,-0.012 -0.036,-0.012 h -1.638 c -0.018,0 -0.036,0.006 -0.054,0.012 -0.018,0.006 -0.03,0.012 -0.042,0.024 -0.012,0.012 -0.018,0.03 -0.024,0.054 -0.006,0.024 -0.006,0.048 -0.006,0.084 0,0.03 0,0.054 0,0.078 0.006,0.024 0.006,0.042 0.018,0.06 0.006,0.018 0.018,0.036 0.03,0.054 0.012,0.018 0.024,0.036 0.042,0.054 l 0.594,0.612 c 0.138,0.138 0.246,0.264 0.33,0.372 0.078,0.114 0.144,0.216 0.186,0.306 0.048,0.09 0.078,0.174 0.09,0.252 0.012,0.072 0.024,0.144 0.024,0.21 0,0.066 -0.012,0.126 -0.036,0.186 -0.024,0.054 -0.054,0.108 -0.096,0.15 -0.042,0.048 -0.09,0.084 -0.156,0.108 -0.06,0.024 -0.132,0.036 -0.216,0.036 -0.096,0 -0.18,-0.012 -0.258,-0.036 -0.078,-0.024 -0.144,-0.054 -0.204,-0.084 -0.054,-0.03 -0.102,-0.06 -0.138,-0.084 -0.042,-0.03 -0.072,-0.042 -0.09,-0.042 -0.012,0 -0.018,0.006 -0.03,0.012 -0.006,0.006 -0.012,0.012 -0.018,0.03 -0.006,0.012 -0.012,0.03 -0.012,0.054 -0.006,0.024 -0.006,0.048 -0.006,0.084 0,0.018 0,0.042 0,0.054 0,0.018 0.006,0.036 0.006,0.048 0.006,0.012 0.012,0.024 0.018,0.03 0.006,0.012 0.018,0.024 0.036,0.042 0.018,0.018 0.048,0.036 0.096,0.066 0.042,0.03 0.102,0.054 0.168,0.078 0.066,0.03 0.144,0.054 0.222,0.072 0.084,0.018 0.168,0.024 0.258,0.024 0.144,0 0.27,-0.018 0.378,-0.06 0.108,-0.042 0.198,-0.096 0.264,-0.162 0.072,-0.072 0.126,-0.156 0.162,-0.246 0.036,-0.096 0.054,-0.192 0.054,-0.3 0,-0.09 -0.012,-0.186 -0.03,-0.282 -0.012,-0.09 -0.048,-0.192 -0.102,-0.3 -0.054,-0.108 -0.132,-0.234 -0.234,-0.366 -0.102,-0.132 -0.24,-0.288 -0.408,-0.462 l -0.468,-0.486 h 1.284 c 0.012,0 0.024,-0.006 0.036,-0.012 0.012,-0.006 0.024,-0.018 0.03,-0.03 0.006,-0.012 0.012,-0.03 0.018,-0.054 0.006,-0.018 0.006,-0.042 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3233"
       clip-path="url(#clipPath7144)" />
    <path
       d="m 302.744,568.032 c -0.012,-0.036 -0.03,-0.06 -0.054,-0.084 -0.018,-0.018 -0.048,-0.03 -0.084,-0.042 -0.036,-0.012 -0.078,-0.018 -0.126,-0.024 -0.048,0 -0.108,-0.006 -0.174,-0.006 -0.078,0 -0.138,0.006 -0.186,0.006 -0.048,0.006 -0.09,0.012 -0.12,0.024 -0.03,0.012 -0.054,0.024 -0.066,0.042 -0.012,0.018 -0.024,0.042 -0.024,0.072 l -0.27,3.45 h -0.006 l -1.554,-3.438 c -0.012,-0.036 -0.03,-0.06 -0.054,-0.084 -0.024,-0.018 -0.048,-0.03 -0.078,-0.042 -0.03,-0.012 -0.072,-0.018 -0.12,-0.024 -0.054,0 -0.114,-0.006 -0.186,-0.006 -0.078,0 -0.144,0.006 -0.198,0.006 -0.048,0.006 -0.09,0.012 -0.126,0.024 -0.03,0.012 -0.054,0.024 -0.066,0.048 -0.012,0.018 -0.024,0.048 -0.024,0.078 l -0.36,4.218 c -0.006,0.042 -0.006,0.084 -0.006,0.114 0.006,0.03 0.018,0.054 0.036,0.066 0.018,0.018 0.054,0.03 0.09,0.03 0.042,0.006 0.102,0.012 0.174,0.012 0.06,0 0.114,-0.006 0.162,-0.012 0.048,0 0.084,-0.012 0.102,-0.024 0.024,-0.012 0.036,-0.024 0.042,-0.048 0.006,-0.018 0.012,-0.048 0.012,-0.078 l 0.252,-3.78 h 0.006 l 1.74,3.804 c 0.012,0.03 0.024,0.048 0.042,0.066 0.012,0.018 0.036,0.03 0.06,0.042 0.024,0.006 0.06,0.018 0.102,0.018 0.042,0.006 0.102,0.012 0.174,0.012 0.066,0 0.114,-0.006 0.15,-0.006 0.042,-0.006 0.072,-0.012 0.09,-0.024 0.024,-0.012 0.036,-0.024 0.042,-0.042 0.006,-0.018 0.006,-0.036 0.012,-0.066 l 0.288,-3.804 h 0.006 l 1.764,3.822 c 0.012,0.024 0.024,0.042 0.036,0.054 0.012,0.018 0.036,0.03 0.06,0.036 0.03,0.012 0.066,0.018 0.108,0.024 0.042,0 0.096,0.006 0.162,0.006 0.066,0 0.12,-0.006 0.162,-0.012 0.042,-0.006 0.066,-0.018 0.084,-0.03 0.018,-0.018 0.024,-0.042 0.012,-0.072 -0.006,-0.036 -0.018,-0.078 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3235"
       clip-path="url(#clipPath7138)" />
    <path
       d="M 333.53,588.612 280.946,521.0238"
       style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3237"
       clip-path="url(#clipPath7132)" />
    <path
       d="m 309.674,561.096 h 11.1522 v 8.64 H 309.674 Z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3239"
       clip-path="url(#clipPath7126)" />
    <path
       d="m 318.176,563.202 c 0,-0.156 -0.024,-0.3 -0.078,-0.426 -0.054,-0.12 -0.126,-0.222 -0.228,-0.306 -0.096,-0.09 -0.21,-0.15 -0.348,-0.198 -0.132,-0.042 -0.282,-0.066 -0.45,-0.066 -0.09,0 -0.174,0.006 -0.258,0.024 -0.084,0.012 -0.156,0.024 -0.222,0.048 -0.06,0.018 -0.114,0.036 -0.156,0.054 -0.042,0.018 -0.066,0.03 -0.078,0.042 -0.012,0.012 -0.018,0.024 -0.024,0.03 -0.006,0.012 -0.006,0.018 -0.012,0.036 -0.006,0.012 -0.006,0.024 -0.006,0.048 -0.006,0.018 -0.006,0.042 -0.006,0.072 0,0.024 0,0.048 0.006,0.066 0,0.024 0.006,0.036 0.012,0.054 0.006,0.012 0.012,0.018 0.018,0.024 0.012,0.006 0.018,0.012 0.03,0.012 0.018,0 0.042,-0.012 0.072,-0.03 0.03,-0.018 0.078,-0.042 0.132,-0.06 0.054,-0.024 0.12,-0.042 0.198,-0.066 0.078,-0.018 0.174,-0.03 0.282,-0.03 0.102,0 0.198,0.012 0.282,0.036 0.09,0.03 0.162,0.066 0.222,0.114 0.06,0.054 0.108,0.12 0.144,0.198 0.036,0.078 0.054,0.174 0.054,0.288 0,0.096 -0.012,0.174 -0.042,0.252 -0.03,0.072 -0.078,0.132 -0.138,0.18 -0.066,0.048 -0.144,0.084 -0.234,0.108 -0.096,0.018 -0.21,0.03 -0.342,0.03 -0.09,0 -0.168,0 -0.24,-0.012 -0.066,-0.006 -0.126,-0.012 -0.186,-0.012 -0.042,0 -0.072,0.006 -0.09,0.03 -0.018,0.018 -0.03,0.054 -0.03,0.114 v 1.206 c 0,0.048 0.012,0.084 0.036,0.108 0.024,0.024 0.06,0.036 0.102,0.036 h 1.308 c 0.012,0 0.024,0 0.036,-0.006 0.012,-0.012 0.024,-0.018 0.03,-0.036 0.006,-0.012 0.012,-0.03 0.018,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.078 0,-0.054 -0.006,-0.096 -0.024,-0.126 -0.012,-0.03 -0.036,-0.048 -0.06,-0.048 h -1.056 v -0.828 c 0.048,0.006 0.102,0.012 0.156,0.012 0.054,0 0.114,0.006 0.186,0.006 0.162,0 0.306,-0.024 0.426,-0.066 0.126,-0.036 0.222,-0.096 0.306,-0.168 0.084,-0.072 0.144,-0.162 0.186,-0.27 0.042,-0.102 0.06,-0.222 0.06,-0.348 z m 2.274,-0.798 c 0,-0.024 -0.006,-0.048 -0.006,-0.072 -0.006,-0.018 -0.012,-0.036 -0.018,-0.048 -0.012,-0.012 -0.018,-0.018 -0.03,-0.024 -0.006,-0.006 -0.018,-0.006 -0.03,-0.006 h -1.542 c -0.012,0 -0.024,0 -0.03,0.006 -0.012,0.006 -0.018,0.012 -0.03,0.024 -0.006,0.012 -0.012,0.03 -0.018,0.048 -0.006,0.024 -0.006,0.048 -0.006,0.072 0,0.03 0,0.054 0.006,0.072 0.006,0.024 0.012,0.036 0.018,0.048 0.006,0.018 0.012,0.024 0.024,0.03 0.012,0.006 0.024,0.012 0.036,0.012 h 0.612 v 2.25 l -0.57,-0.342 c -0.03,-0.018 -0.048,-0.024 -0.066,-0.03 -0.018,0 -0.036,0.006 -0.042,0.012 -0.012,0.012 -0.018,0.03 -0.024,0.048 -0.006,0.024 -0.006,0.054 -0.006,0.09 0,0.024 0,0.048 0.006,0.066 0,0.018 0.006,0.03 0.006,0.042 0.006,0.018 0.012,0.024 0.024,0.036 0.006,0.006 0.018,0.018 0.03,0.024 l 0.684,0.438 c 0.006,0.006 0.012,0.012 0.018,0.012 0.012,0.006 0.024,0.006 0.036,0.012 0.012,0 0.03,0 0.048,0 0.018,0.006 0.042,0.006 0.066,0.006 0.042,0 0.072,-0.006 0.096,-0.006 0.024,-0.006 0.042,-0.006 0.054,-0.012 0.012,-0.006 0.024,-0.012 0.03,-0.024 0.006,-0.006 0.006,-0.012 0.006,-0.024 v -2.598 h 0.534 c 0.012,0 0.024,-0.006 0.036,-0.012 0.012,-0.006 0.018,-0.012 0.024,-0.03 0.006,-0.012 0.012,-0.024 0.018,-0.048 0,-0.018 0.006,-0.042 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3241"
       clip-path="url(#clipPath7120)" />
    <path
       d="m 314.33,563.388 c -0.012,-0.036 -0.03,-0.06 -0.054,-0.078 -0.024,-0.024 -0.054,-0.036 -0.09,-0.048 -0.03,-0.012 -0.072,-0.018 -0.126,-0.024 -0.048,0 -0.108,0 -0.174,0 -0.072,0 -0.132,0 -0.18,0 -0.054,0.006 -0.09,0.012 -0.12,0.024 -0.03,0.012 -0.054,0.024 -0.066,0.042 -0.018,0.018 -0.024,0.048 -0.03,0.078 l -0.27,3.444 h -0.006 l -1.554,-3.438 c -0.012,-0.036 -0.03,-0.06 -0.048,-0.078 -0.024,-0.024 -0.048,-0.036 -0.078,-0.048 -0.036,-0.012 -0.072,-0.018 -0.126,-0.024 -0.048,0 -0.108,0 -0.18,0 -0.084,0 -0.15,0 -0.198,0 -0.054,0.006 -0.096,0.012 -0.126,0.024 -0.03,0.012 -0.054,0.024 -0.066,0.048 -0.018,0.018 -0.024,0.048 -0.03,0.078 l -0.36,4.218 c -0.006,0.048 -0.006,0.084 0,0.114 0,0.03 0.012,0.054 0.036,0.072 0.018,0.012 0.048,0.024 0.09,0.03 0.042,0 0.096,0.006 0.174,0.006 0.06,0 0.114,-0.006 0.162,-0.006 0.048,-0.006 0.078,-0.018 0.102,-0.024 0.018,-0.012 0.036,-0.03 0.042,-0.054 0.006,-0.018 0.012,-0.048 0.012,-0.078 l 0.252,-3.774 h 0.006 l 1.734,3.804 c 0.012,0.024 0.03,0.042 0.042,0.06 0.018,0.018 0.036,0.036 0.06,0.042 0.03,0.012 0.06,0.018 0.108,0.024 0.042,0 0.102,0.006 0.174,0.006 0.06,0 0.114,0 0.15,-0.006 0.036,-0.006 0.066,-0.012 0.09,-0.024 0.018,-0.006 0.03,-0.024 0.036,-0.042 0.006,-0.018 0.012,-0.036 0.012,-0.06 l 0.288,-3.804 h 0.012 l 1.764,3.816 c 0.006,0.024 0.018,0.042 0.036,0.06 0.012,0.012 0.03,0.024 0.06,0.036 0.024,0.006 0.06,0.012 0.102,0.018 0.048,0.006 0.102,0.006 0.168,0.006 0.066,0 0.12,-0.006 0.162,-0.012 0.036,-0.006 0.066,-0.012 0.084,-0.03 0.012,-0.018 0.018,-0.042 0.012,-0.072 -0.006,-0.036 -0.024,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3243"
       clip-path="url(#clipPath7114)" />
    <g
       id="g3247"
       transform="matrix(0.6,0,0,0.6,187.874,496.278)"
       clip-path="url(#clipPath7108)">
      <path
         d="M 242.76,153.89 215.03,41.244"
         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
         id="path3245" />
    </g>
    <path
       d="m 324.224,568.032 h 11.148 v 8.64 h -11.148 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3249"
       clip-path="url(#clipPath7102)" />
    <path
       d="m 332.732,570.138 c 0,-0.156 -0.03,-0.3 -0.084,-0.42 -0.054,-0.126 -0.126,-0.228 -0.222,-0.312 -0.102,-0.084 -0.216,-0.15 -0.354,-0.192 -0.132,-0.048 -0.282,-0.066 -0.444,-0.066 -0.096,0 -0.18,0.006 -0.264,0.018 -0.084,0.012 -0.156,0.03 -0.216,0.048 -0.066,0.018 -0.12,0.036 -0.162,0.054 -0.036,0.018 -0.066,0.036 -0.078,0.042 -0.012,0.012 -0.018,0.024 -0.024,0.03 -0.006,0.012 -0.006,0.024 -0.012,0.036 -0.006,0.012 -0.006,0.03 -0.006,0.048 0,0.018 -0.006,0.042 -0.006,0.072 0,0.024 0.006,0.048 0.006,0.066 0,0.024 0.006,0.042 0.012,0.054 0.006,0.012 0.012,0.024 0.024,0.03 0.006,0.006 0.018,0.006 0.024,0.006 0.018,0 0.042,-0.006 0.072,-0.03 0.036,-0.018 0.078,-0.036 0.132,-0.06 0.054,-0.024 0.12,-0.042 0.198,-0.06 0.084,-0.024 0.174,-0.03 0.288,-0.03 0.102,0 0.192,0.012 0.282,0.036 0.084,0.024 0.156,0.06 0.216,0.114 0.066,0.048 0.114,0.114 0.144,0.192 0.036,0.078 0.054,0.174 0.054,0.288 0,0.096 -0.012,0.18 -0.042,0.252 -0.03,0.072 -0.078,0.132 -0.138,0.18 -0.06,0.048 -0.138,0.084 -0.234,0.108 -0.096,0.024 -0.21,0.036 -0.336,0.036 -0.096,0 -0.174,-0.006 -0.24,-0.018 -0.072,-0.006 -0.132,-0.012 -0.192,-0.012 -0.042,0 -0.072,0.012 -0.09,0.03 -0.018,0.018 -0.024,0.06 -0.024,0.114 v 1.206 c 0,0.048 0.012,0.084 0.03,0.108 0.024,0.03 0.06,0.042 0.102,0.042 h 1.314 c 0.012,0 0.024,-0.006 0.03,-0.012 0.012,-0.006 0.024,-0.018 0.03,-0.03 0.012,-0.018 0.012,-0.036 0.018,-0.054 0.006,-0.024 0.006,-0.048 0.006,-0.078 0,-0.054 -0.006,-0.096 -0.024,-0.126 -0.012,-0.03 -0.03,-0.048 -0.06,-0.048 h -1.056 v -0.828 c 0.054,0.006 0.102,0.012 0.156,0.012 0.054,0.006 0.12,0.006 0.186,0.006 0.162,0 0.306,-0.018 0.426,-0.06 0.126,-0.042 0.228,-0.096 0.306,-0.174 0.084,-0.072 0.144,-0.162 0.186,-0.27 0.042,-0.102 0.066,-0.216 0.066,-0.348 z m 2.262,-0.78 c 0,-0.03 -0.006,-0.054 -0.006,-0.072 -0.006,-0.024 -0.012,-0.042 -0.018,-0.054 -0.006,-0.018 -0.012,-0.024 -0.024,-0.03 -0.012,-0.012 -0.024,-0.012 -0.042,-0.012 h -1.632 c -0.018,0 -0.042,0 -0.054,0.006 -0.018,0.006 -0.03,0.012 -0.042,0.03 -0.012,0.012 -0.018,0.024 -0.024,0.048 -0.006,0.024 -0.012,0.054 -0.012,0.084 0,0.03 0.006,0.06 0.006,0.084 0,0.024 0.006,0.042 0.018,0.06 0.006,0.018 0.012,0.036 0.024,0.054 0.012,0.012 0.03,0.036 0.048,0.054 l 0.594,0.606 c 0.132,0.144 0.246,0.264 0.324,0.378 0.084,0.114 0.15,0.21 0.192,0.306 0.048,0.09 0.072,0.174 0.09,0.246 0.012,0.078 0.018,0.144 0.018,0.21 0,0.066 -0.012,0.126 -0.03,0.186 -0.024,0.06 -0.054,0.114 -0.096,0.156 -0.042,0.042 -0.096,0.078 -0.156,0.102 -0.066,0.03 -0.138,0.042 -0.216,0.042 -0.096,0 -0.186,-0.012 -0.258,-0.042 -0.078,-0.024 -0.144,-0.054 -0.204,-0.084 -0.054,-0.03 -0.102,-0.054 -0.144,-0.084 -0.036,-0.024 -0.066,-0.036 -0.084,-0.036 -0.012,0 -0.024,0 -0.03,0.006 -0.006,0.006 -0.018,0.018 -0.024,0.03 0,0.018 -0.006,0.036 -0.012,0.054 0,0.024 0,0.054 0,0.084 0,0.024 0,0.042 0,0.06 0,0.018 0.006,0.03 0.006,0.042 0.006,0.012 0.012,0.024 0.018,0.036 0.006,0.012 0.018,0.024 0.036,0.042 0.018,0.012 0.048,0.036 0.096,0.06 0.042,0.03 0.096,0.06 0.168,0.084 0.066,0.024 0.144,0.048 0.222,0.066 0.084,0.018 0.168,0.03 0.258,0.03 0.144,0 0.27,-0.024 0.378,-0.06 0.102,-0.042 0.192,-0.096 0.264,-0.168 0.072,-0.072 0.126,-0.15 0.162,-0.246 0.03,-0.09 0.048,-0.192 0.048,-0.294 0,-0.096 -0.006,-0.192 -0.024,-0.282 -0.018,-0.096 -0.054,-0.198 -0.108,-0.306 -0.054,-0.108 -0.132,-0.228 -0.234,-0.36 -0.102,-0.138 -0.234,-0.288 -0.402,-0.462 l -0.468,-0.492 h 1.284 c 0.012,0 0.024,0 0.036,-0.006 0.012,-0.006 0.018,-0.018 0.03,-0.03 0.006,-0.018 0.012,-0.036 0.018,-0.054 0,-0.018 0.006,-0.042 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3251"
       clip-path="url(#clipPath7096)" />
    <path
       d="m 328.88,570.324 c -0.012,-0.03 -0.03,-0.06 -0.054,-0.078 -0.024,-0.018 -0.048,-0.036 -0.084,-0.048 -0.036,-0.012 -0.078,-0.018 -0.126,-0.018 -0.054,-0.006 -0.108,-0.006 -0.18,-0.006 -0.072,0 -0.132,0 -0.18,0.006 -0.048,0 -0.09,0.006 -0.12,0.018 -0.03,0.012 -0.054,0.024 -0.066,0.048 -0.018,0.018 -0.024,0.042 -0.024,0.072 l -0.27,3.444 h -0.012 l -1.554,-3.438 c -0.012,-0.03 -0.024,-0.06 -0.048,-0.078 -0.024,-0.018 -0.048,-0.036 -0.078,-0.048 -0.03,-0.012 -0.072,-0.018 -0.12,-0.018 -0.054,-0.006 -0.114,-0.006 -0.186,-0.006 -0.084,0 -0.144,0 -0.198,0.006 -0.054,0 -0.096,0.006 -0.126,0.018 -0.03,0.012 -0.054,0.03 -0.066,0.048 -0.018,0.024 -0.024,0.048 -0.024,0.084 l -0.366,4.212 c -0.006,0.048 -0.006,0.084 0,0.12 0.006,0.03 0.018,0.048 0.036,0.066 0.018,0.012 0.048,0.024 0.09,0.03 0.042,0.006 0.102,0.006 0.174,0.006 0.06,0 0.114,0 0.162,-0.006 0.048,-0.006 0.084,-0.012 0.102,-0.024 0.024,-0.012 0.036,-0.03 0.042,-0.048 0.006,-0.024 0.012,-0.048 0.012,-0.084 l 0.252,-3.774 h 0.006 l 1.74,3.804 c 0.012,0.024 0.024,0.048 0.036,0.066 0.018,0.018 0.036,0.03 0.066,0.036 0.024,0.012 0.06,0.018 0.102,0.024 0.042,0.006 0.102,0.006 0.174,0.006 0.06,0 0.114,0 0.15,-0.006 0.036,0 0.066,-0.012 0.09,-0.018 0.018,-0.012 0.036,-0.024 0.036,-0.042 0.006,-0.018 0.012,-0.042 0.018,-0.066 l 0.288,-3.804 h 0.006 l 1.764,3.816 c 0.006,0.024 0.018,0.042 0.036,0.06 0.012,0.012 0.036,0.024 0.06,0.036 0.03,0.012 0.06,0.018 0.108,0.018 0.042,0.006 0.096,0.006 0.162,0.006 0.066,0 0.12,0 0.162,-0.006 0.036,-0.006 0.066,-0.018 0.084,-0.036 0.018,-0.018 0.018,-0.042 0.012,-0.072 -0.006,-0.03 -0.018,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3253"
       clip-path="url(#clipPath7090)" />
    <path
       d="M 368.828,588.642 280.946,521.0238"
       style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3255"
       clip-path="url(#clipPath7084)" />
    <path
       d="m 333.584,561.198 h 11.154 v 8.64 h -11.154 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3257"
       clip-path="url(#clipPath7078)" />
    <path
       d="m 342.182,563.31 c 0,-0.126 -0.018,-0.252 -0.06,-0.372 -0.036,-0.12 -0.102,-0.228 -0.18,-0.318 -0.084,-0.096 -0.186,-0.168 -0.312,-0.222 -0.132,-0.06 -0.276,-0.084 -0.45,-0.084 -0.126,0 -0.234,0.012 -0.33,0.042 -0.09,0.03 -0.174,0.078 -0.246,0.132 -0.066,0.054 -0.126,0.126 -0.174,0.21 -0.048,0.078 -0.084,0.174 -0.108,0.276 -0.03,0.108 -0.054,0.222 -0.066,0.348 -0.012,0.126 -0.018,0.258 -0.018,0.402 0,0.126 0.012,0.252 0.024,0.384 0.012,0.132 0.036,0.252 0.072,0.372 0.036,0.12 0.084,0.234 0.144,0.342 0.06,0.108 0.132,0.198 0.228,0.276 0.09,0.078 0.198,0.138 0.324,0.186 0.126,0.048 0.27,0.072 0.438,0.072 0.06,0 0.114,-0.006 0.174,-0.012 0.054,-0.006 0.108,-0.018 0.156,-0.03 0.054,-0.012 0.09,-0.024 0.126,-0.036 0.036,-0.012 0.054,-0.024 0.066,-0.036 0.012,-0.006 0.018,-0.018 0.024,-0.024 0.006,-0.012 0.012,-0.024 0.012,-0.03 0.006,-0.012 0.006,-0.03 0.006,-0.042 0.006,-0.012 0.006,-0.03 0.006,-0.054 0,-0.024 0,-0.048 0,-0.072 -0.006,-0.018 -0.006,-0.036 -0.012,-0.048 -0.006,-0.012 -0.012,-0.018 -0.018,-0.024 -0.012,-0.006 -0.024,-0.012 -0.036,-0.012 -0.018,0 -0.042,0.006 -0.066,0.018 -0.03,0.012 -0.066,0.024 -0.108,0.036 -0.042,0.012 -0.09,0.024 -0.15,0.036 -0.06,0.006 -0.126,0.012 -0.204,0.012 -0.144,0 -0.264,-0.024 -0.366,-0.084 -0.102,-0.06 -0.186,-0.138 -0.252,-0.234 -0.06,-0.096 -0.108,-0.21 -0.144,-0.342 -0.03,-0.126 -0.048,-0.258 -0.048,-0.402 0.036,0.024 0.084,0.048 0.132,0.072 0.048,0.018 0.102,0.042 0.162,0.06 0.06,0.018 0.12,0.03 0.186,0.042 0.066,0.012 0.132,0.018 0.21,0.018 0.162,0 0.294,-0.018 0.402,-0.066 0.114,-0.042 0.198,-0.102 0.27,-0.18 0.066,-0.078 0.114,-0.168 0.144,-0.27 0.03,-0.102 0.042,-0.216 0.042,-0.342 z m -0.396,-0.036 c 0,0.09 -0.012,0.168 -0.03,0.246 -0.012,0.072 -0.042,0.132 -0.084,0.18 -0.042,0.054 -0.096,0.09 -0.168,0.12 -0.066,0.024 -0.15,0.036 -0.252,0.036 -0.054,0 -0.114,0 -0.168,-0.012 -0.054,-0.012 -0.114,-0.024 -0.162,-0.042 -0.054,-0.018 -0.102,-0.036 -0.15,-0.06 -0.048,-0.024 -0.096,-0.048 -0.132,-0.078 0,-0.198 0.012,-0.36 0.036,-0.492 0.024,-0.132 0.06,-0.24 0.108,-0.318 0.048,-0.084 0.108,-0.138 0.18,-0.174 0.072,-0.036 0.156,-0.048 0.252,-0.048 0.096,0 0.18,0.018 0.252,0.054 0.072,0.036 0.132,0.084 0.18,0.144 0.048,0.066 0.084,0.132 0.102,0.21 0.024,0.078 0.036,0.156 0.036,0.234 z m 2.58,-0.762 c 0,-0.03 -0.006,-0.054 -0.006,-0.072 -0.006,-0.024 -0.012,-0.036 -0.024,-0.048 -0.006,-0.012 -0.012,-0.024 -0.024,-0.03 -0.012,-0.006 -0.018,-0.006 -0.03,-0.006 h -1.542 c -0.012,0 -0.024,0 -0.03,0.006 -0.012,0.006 -0.018,0.018 -0.03,0.03 -0.006,0.012 -0.012,0.024 -0.018,0.048 -0.006,0.018 -0.006,0.042 -0.006,0.072 0,0.024 0,0.048 0.006,0.072 0.006,0.018 0.012,0.036 0.018,0.048 0.006,0.012 0.012,0.024 0.024,0.03 0.012,0.006 0.024,0.006 0.036,0.006 h 0.612 v 2.25 l -0.57,-0.342 c -0.03,-0.012 -0.054,-0.024 -0.066,-0.024 -0.018,-0.006 -0.036,0 -0.048,0.012 -0.006,0.006 -0.012,0.024 -0.018,0.048 -0.006,0.024 -0.006,0.048 -0.006,0.084 0,0.03 0,0.048 0,0.066 0.006,0.018 0.006,0.036 0.012,0.048 0.006,0.012 0.012,0.024 0.018,0.03 0.012,0.012 0.024,0.018 0.036,0.03 l 0.678,0.438 c 0.006,0 0.018,0.006 0.024,0.006 0.012,0.006 0.024,0.006 0.036,0.012 0.012,0 0.03,0.006 0.048,0.006 0.018,0 0.042,0 0.066,0 0.036,0 0.072,0 0.096,-0.006 0.024,0 0.042,-0.006 0.054,-0.012 0.012,-0.006 0.024,-0.012 0.03,-0.018 0,-0.012 0.006,-0.018 0.006,-0.03 v -2.598 h 0.534 c 0.012,0 0.024,0 0.036,-0.006 0.006,-0.006 0.018,-0.018 0.024,-0.03 0.006,-0.012 0.012,-0.03 0.018,-0.048 0,-0.024 0.006,-0.048 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3259"
       clip-path="url(#clipPath7072)" />
    <path
       d="m 338.246,563.49 c -0.012,-0.03 -0.036,-0.06 -0.054,-0.078 -0.024,-0.018 -0.054,-0.036 -0.09,-0.048 -0.03,-0.006 -0.072,-0.018 -0.126,-0.018 -0.048,-0.006 -0.108,-0.006 -0.174,-0.006 -0.072,0 -0.132,0 -0.18,0.006 -0.054,0 -0.09,0.012 -0.12,0.018 -0.03,0.012 -0.054,0.03 -0.066,0.048 -0.018,0.018 -0.024,0.042 -0.03,0.072 l -0.27,3.444 h -0.006 l -1.554,-3.438 c -0.012,-0.03 -0.03,-0.06 -0.048,-0.078 -0.024,-0.018 -0.048,-0.036 -0.084,-0.048 -0.03,-0.006 -0.066,-0.018 -0.12,-0.018 -0.048,-0.006 -0.108,-0.006 -0.186,-0.006 -0.078,0 -0.144,0 -0.192,0.006 -0.054,0 -0.096,0.012 -0.126,0.018 -0.03,0.012 -0.054,0.03 -0.072,0.048 -0.012,0.024 -0.018,0.048 -0.024,0.084 l -0.36,4.212 c -0.006,0.048 -0.006,0.09 0,0.12 0,0.03 0.012,0.054 0.036,0.066 0.018,0.018 0.048,0.024 0.09,0.03 0.042,0.006 0.096,0.006 0.174,0.006 0.06,0 0.108,0 0.156,-0.006 0.048,-0.006 0.084,-0.012 0.108,-0.024 0.018,-0.012 0.036,-0.03 0.042,-0.048 0.006,-0.024 0.012,-0.048 0.012,-0.084 l 0.252,-3.774 h 0.006 l 1.734,3.804 c 0.012,0.024 0.03,0.048 0.042,0.066 0.018,0.018 0.036,0.03 0.06,0.042 0.03,0.006 0.06,0.012 0.108,0.018 0.042,0.006 0.102,0.006 0.174,0.006 0.06,0 0.114,0 0.15,-0.006 0.036,0 0.066,-0.006 0.084,-0.018 0.024,-0.012 0.036,-0.024 0.042,-0.042 0.006,-0.018 0.012,-0.042 0.012,-0.066 l 0.288,-3.804 h 0.006 l 1.77,3.816 c 0.006,0.024 0.018,0.042 0.03,0.06 0.018,0.012 0.036,0.03 0.066,0.036 0.024,0.012 0.06,0.018 0.102,0.018 0.048,0.006 0.102,0.006 0.168,0.006 0.066,0 0.12,0 0.162,-0.006 0.036,-0.006 0.066,-0.018 0.084,-0.036 0.012,-0.018 0.018,-0.042 0.012,-0.072 -0.006,-0.03 -0.024,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3261"
       clip-path="url(#clipPath7066)" />
    <g
       id="g3265"
       transform="matrix(0.6,0,0,0.6,187.874,496.278)"
       clip-path="url(#clipPath7060)">
      <path
         d="M 301.59,153.94 215.03,41.244"
         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
         id="path3263" />
    </g>
    <path
       d="m 327.842,537.8412 h 11.154 v 9.0156 h -11.154 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3267"
       clip-path="url(#clipPath7054)" />
    <path
       d="m 332.504,540.507 c -0.018,-0.033 -0.036,-0.0594 -0.06,-0.0792 -0.018,-0.0198 -0.048,-0.0354 -0.084,-0.0456 -0.036,-0.0108 -0.078,-0.018 -0.126,-0.0216 -0.048,-0.003 -0.108,-0.005 -0.174,-0.005 -0.072,0 -0.138,0.002 -0.186,0.005 -0.048,0.004 -0.09,0.0108 -0.12,0.0216 -0.03,0.0102 -0.048,0.0252 -0.066,0.0438 -0.012,0.0186 -0.018,0.0432 -0.024,0.0738 l -0.27,3.4452 h -0.006 l -1.554,-3.438 c -0.012,-0.033 -0.03,-0.0594 -0.054,-0.0792 -0.018,-0.0198 -0.048,-0.0354 -0.078,-0.0456 -0.03,-0.0108 -0.072,-0.018 -0.12,-0.0216 -0.048,-0.003 -0.114,-0.005 -0.186,-0.005 -0.078,0 -0.144,0.002 -0.198,0.005 -0.048,0.004 -0.09,0.0108 -0.12,0.0216 -0.036,0.0102 -0.06,0.0264 -0.072,0.0474 -0.012,0.021 -0.024,0.048 -0.024,0.0804 l -0.36,4.2156 c -0.006,0.0468 -0.006,0.0852 -0.006,0.1158 0.006,0.0306 0.018,0.0534 0.036,0.069 0.024,0.015 0.054,0.0252 0.096,0.0294 0.036,0.005 0.096,0.007 0.174,0.007 0.054,0 0.108,-0.002 0.156,-0.007 0.048,-0.004 0.084,-0.0126 0.102,-0.0246 0.024,-0.0114 0.036,-0.0282 0.042,-0.0492 0.012,-0.021 0.012,-0.048 0.012,-0.0804 l 0.252,-3.7758 h 0.012 l 1.734,3.8034 c 0.012,0.0258 0.024,0.048 0.042,0.0654 0.012,0.0174 0.036,0.0312 0.06,0.0402 0.024,0.01 0.06,0.0168 0.102,0.021 0.048,0.005 0.102,0.007 0.174,0.007 0.066,0 0.114,-0.002 0.156,-0.005 0.036,-0.004 0.066,-0.0102 0.084,-0.021 0.024,-0.0102 0.036,-0.0246 0.042,-0.042 0.006,-0.0174 0.012,-0.0396 0.012,-0.0654 l 0.288,-3.8034 h 0.006 l 1.764,3.8178 c 0.012,0.0234 0.024,0.0426 0.036,0.0582 0.018,0.015 0.036,0.027 0.06,0.0366 0.03,0.01 0.066,0.0156 0.108,0.0192 0.042,0.004 0.096,0.005 0.162,0.005 0.072,0 0.126,-0.003 0.162,-0.009 0.042,-0.005 0.072,-0.0168 0.084,-0.033 0.018,-0.0168 0.024,-0.0408 0.018,-0.072 -0.012,-0.0318 -0.024,-0.0732 -0.042,-0.1248 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3269"
       clip-path="url(#clipPath7048)" />
    <path
       d="m 336.44,540.3288 c 0,-0.1296 -0.024,-0.255 -0.06,-0.3762 -0.042,-0.1212 -0.102,-0.2274 -0.186,-0.3198 -0.078,-0.0918 -0.186,-0.1662 -0.312,-0.2214 -0.126,-0.0558 -0.276,-0.0834 -0.444,-0.0834 -0.126,0 -0.234,0.015 -0.33,0.0456 -0.096,0.0306 -0.174,0.0738 -0.246,0.1302 -0.072,0.0564 -0.126,0.1254 -0.174,0.2082 -0.048,0.0822 -0.084,0.1758 -0.114,0.2808 -0.024,0.105 -0.048,0.2202 -0.06,0.345 -0.012,0.1248 -0.018,0.2586 -0.018,0.402 0,0.1266 0.006,0.2544 0.024,0.384 0.012,0.1296 0.036,0.2544 0.072,0.3744 0.036,0.1206 0.084,0.2334 0.144,0.3396 0.06,0.1056 0.132,0.198 0.222,0.2766 0.09,0.078 0.198,0.1404 0.324,0.186 0.132,0.0456 0.276,0.0684 0.444,0.0684 0.054,0 0.114,-0.004 0.174,-0.0102 0.054,-0.007 0.108,-0.0162 0.156,-0.0276 0.048,-0.0114 0.09,-0.024 0.126,-0.0378 0.03,-0.0132 0.054,-0.0246 0.066,-0.033 0.012,-0.008 0.018,-0.0174 0.024,-0.027 0.006,-0.0102 0.006,-0.021 0.012,-0.0324 0,-0.0114 0.006,-0.024 0.006,-0.0384 0,-0.015 0,-0.0324 0,-0.054 0,-0.0276 0,-0.051 0,-0.0708 0,-0.0198 0,-0.036 -0.006,-0.048 -0.006,-0.012 -0.012,-0.0216 -0.024,-0.0276 -0.006,-0.006 -0.018,-0.009 -0.03,-0.009 -0.018,0 -0.042,0.005 -0.072,0.0162 -0.024,0.0108 -0.06,0.0222 -0.102,0.0354 -0.042,0.0126 -0.09,0.0246 -0.15,0.0354 -0.06,0.0108 -0.126,0.0156 -0.204,0.0156 -0.144,0 -0.264,-0.0288 -0.366,-0.0864 -0.102,-0.0582 -0.186,-0.1356 -0.252,-0.2334 -0.066,-0.0972 -0.114,-0.2106 -0.144,-0.339 -0.03,-0.129 -0.048,-0.2634 -0.054,-0.4032 0.042,0.0228 0.084,0.0456 0.138,0.0684 0.048,0.0228 0.102,0.0432 0.162,0.0618 0.054,0.018 0.12,0.033 0.186,0.0444 0.066,0.0114 0.132,0.0174 0.21,0.0174 0.156,0 0.294,-0.0222 0.402,-0.0654 0.108,-0.0432 0.198,-0.1038 0.264,-0.1806 0.072,-0.0768 0.12,-0.1674 0.15,-0.2718 0.024,-0.1044 0.042,-0.2172 0.042,-0.339 z m -0.396,-0.0366 c 0,0.0882 -0.012,0.1686 -0.03,0.2406 -0.018,0.0726 -0.048,0.1338 -0.084,0.1842 -0.042,0.0504 -0.096,0.0894 -0.168,0.1164 -0.066,0.0276 -0.15,0.0414 -0.252,0.0414 -0.06,0 -0.114,-0.005 -0.168,-0.015 -0.06,-0.01 -0.114,-0.0234 -0.168,-0.0414 -0.048,-0.0174 -0.102,-0.0378 -0.15,-0.0612 -0.048,-0.024 -0.09,-0.0492 -0.132,-0.0768 0,-0.1962 0.012,-0.3612 0.042,-0.4932 0.024,-0.1326 0.06,-0.2388 0.108,-0.3192 0.048,-0.0798 0.108,-0.1368 0.18,-0.171 0.072,-0.0342 0.156,-0.0516 0.252,-0.0516 0.096,0 0.18,0.0186 0.252,0.0546 0.072,0.0366 0.132,0.0858 0.18,0.1476 0.048,0.0618 0.078,0.1308 0.102,0.2082 0.024,0.0768 0.036,0.1554 0.036,0.2364 z m 2.568,-0.7518 c 0,-0.0276 0,-0.0516 -0.006,-0.0732 0,-0.021 -0.006,-0.039 -0.012,-0.0534 -0.012,-0.015 -0.018,-0.0252 -0.03,-0.0324 -0.012,-0.007 -0.024,-0.0102 -0.036,-0.0102 h -1.638 c -0.018,0 -0.036,0.003 -0.054,0.008 -0.012,0.005 -0.03,0.0144 -0.042,0.0264 -0.012,0.0126 -0.018,0.03 -0.024,0.0528 -0.006,0.0228 -0.006,0.051 -0.006,0.0846 0,0.03 0,0.057 0,0.0798 0.006,0.0228 0.012,0.0432 0.018,0.0606 0.006,0.0174 0.018,0.0348 0.03,0.0528 0.012,0.0174 0.024,0.036 0.042,0.0558 l 0.594,0.6078 c 0.138,0.1398 0.246,0.2658 0.33,0.3768 0.078,0.111 0.144,0.2124 0.192,0.3036 0.042,0.0918 0.072,0.1746 0.084,0.2496 0.018,0.0744 0.024,0.1446 0.024,0.21 0,0.0654 -0.012,0.1272 -0.036,0.186 -0.018,0.0588 -0.054,0.1104 -0.096,0.1542 -0.042,0.0444 -0.09,0.0792 -0.156,0.105 -0.06,0.0264 -0.132,0.039 -0.216,0.039 -0.096,0 -0.18,-0.0126 -0.258,-0.039 -0.078,-0.0258 -0.144,-0.054 -0.198,-0.084 -0.06,-0.0306 -0.108,-0.0588 -0.144,-0.0846 -0.042,-0.0264 -0.072,-0.039 -0.09,-0.039 -0.012,0 -0.018,0.003 -0.03,0.009 -0.006,0.006 -0.012,0.0162 -0.018,0.03 -0.006,0.0132 -0.012,0.0318 -0.012,0.0546 -0.006,0.0228 -0.006,0.0504 -0.006,0.0822 0,0.0228 0,0.0426 0,0.0594 0.006,0.0168 0.006,0.0312 0.012,0.0432 0,0.0126 0.006,0.024 0.012,0.0348 0.006,0.0102 0.018,0.024 0.036,0.0396 0.018,0.0162 0.054,0.0378 0.096,0.0654 0.048,0.027 0.102,0.054 0.168,0.081 0.066,0.0264 0.144,0.0492 0.228,0.0672 0.078,0.0186 0.162,0.0276 0.252,0.0276 0.144,0 0.27,-0.0204 0.378,-0.0606 0.108,-0.0402 0.198,-0.0954 0.27,-0.1656 0.066,-0.0702 0.12,-0.1518 0.156,-0.2442 0.036,-0.093 0.054,-0.192 0.054,-0.2976 0,-0.0942 -0.012,-0.1884 -0.024,-0.282 -0.018,-0.0936 -0.054,-0.195 -0.108,-0.3036 -0.054,-0.1092 -0.132,-0.2304 -0.234,-0.3636 -0.102,-0.1332 -0.24,-0.2868 -0.408,-0.4602 l -0.468,-0.489 h 1.284 c 0.012,0 0.024,-0.004 0.036,-0.0102 0.012,-0.007 0.024,-0.0174 0.03,-0.0306 0.012,-0.0138 0.018,-0.0312 0.018,-0.0516 0.006,-0.0204 0.006,-0.0444 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3271"
       clip-path="url(#clipPath7042)" />
    <path
       d="M 406.166,588.606 280.946,521.0238"
       style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3273"
       clip-path="url(#clipPath7036)" />
    <path
       d="m 361.778,563.412 h 11.1522 v 8.64 H 361.778 Z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3275"
       clip-path="url(#clipPath7030)" />
    <path
       d="m 370.346,567.354 c 0,-0.03 -0.006,-0.054 -0.006,-0.078 0,-0.018 -0.006,-0.042 -0.012,-0.06 0,-0.024 -0.006,-0.042 -0.012,-0.06 -0.006,-0.024 -0.018,-0.042 -0.024,-0.06 l -1.068,-2.454 c -0.006,-0.018 -0.012,-0.036 -0.024,-0.048 -0.012,-0.012 -0.03,-0.018 -0.048,-0.024 -0.018,-0.012 -0.036,-0.012 -0.066,-0.018 -0.024,0 -0.06,0 -0.102,0 -0.048,0 -0.09,0 -0.12,0.006 -0.03,0.006 -0.048,0.012 -0.06,0.018 -0.012,0.012 -0.018,0.024 -0.018,0.042 0,0.012 0.006,0.03 0.018,0.048 l 1.116,2.508 h -1.416 c -0.03,0 -0.054,0.018 -0.066,0.048 -0.018,0.03 -0.024,0.072 -0.024,0.126 0,0.03 0,0.054 0.006,0.078 0.006,0.018 0.012,0.036 0.018,0.054 0.006,0.012 0.018,0.024 0.03,0.03 0.006,0.006 0.018,0.012 0.036,0.012 h 1.722 c 0.018,0 0.036,-0.006 0.054,-0.006 0.018,-0.006 0.03,-0.018 0.036,-0.03 0.012,-0.012 0.018,-0.03 0.018,-0.054 0.006,-0.018 0.012,-0.048 0.012,-0.078 z m 2.208,-2.634 c 0,-0.03 0,-0.054 -0.006,-0.072 0,-0.024 -0.006,-0.036 -0.018,-0.048 -0.006,-0.012 -0.012,-0.024 -0.024,-0.03 -0.012,-0.006 -0.018,-0.006 -0.03,-0.006 h -1.548 c -0.006,0 -0.018,0 -0.03,0.006 -0.006,0.006 -0.018,0.018 -0.024,0.03 -0.006,0.012 -0.012,0.024 -0.018,0.048 -0.006,0.018 -0.006,0.042 -0.006,0.072 0,0.024 0,0.048 0.006,0.072 0.006,0.018 0.006,0.036 0.018,0.048 0.006,0.012 0.012,0.024 0.024,0.03 0.006,0.006 0.018,0.012 0.03,0.012 h 0.618 v 2.244 l -0.57,-0.336 c -0.03,-0.018 -0.054,-0.03 -0.072,-0.03 -0.018,-0.006 -0.03,0 -0.042,0.012 -0.006,0.006 -0.018,0.024 -0.018,0.048 -0.006,0.024 -0.006,0.048 -0.006,0.084 0,0.03 0,0.048 0,0.066 0.006,0.018 0.006,0.036 0.012,0.048 0.006,0.012 0.012,0.024 0.018,0.03 0.012,0.012 0.018,0.018 0.036,0.03 l 0.678,0.438 c 0.006,0 0.018,0.006 0.024,0.012 0.012,0 0.018,0.006 0.036,0.006 0.012,0.006 0.03,0.006 0.048,0.006 0.018,0 0.042,0 0.066,0 0.036,0 0.066,0 0.09,-0.006 0.024,0 0.048,-0.006 0.06,-0.012 0.012,-0.006 0.024,-0.012 0.03,-0.018 0,-0.012 0.006,-0.018 0.006,-0.024 v -2.598 h 0.534 c 0.012,0 0.024,-0.006 0.03,-0.012 0.012,-0.006 0.024,-0.018 0.03,-0.03 0.006,-0.012 0.012,-0.03 0.018,-0.048 0,-0.024 0,-0.048 0,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3277"
       clip-path="url(#clipPath7024)" />
    <path
       d="m 366.44,565.698 c -0.018,-0.03 -0.036,-0.06 -0.054,-0.078 -0.024,-0.018 -0.054,-0.036 -0.09,-0.048 -0.036,-0.006 -0.078,-0.012 -0.126,-0.018 -0.048,-0.006 -0.108,-0.006 -0.174,-0.006 -0.072,0 -0.132,0 -0.186,0.006 -0.048,0.006 -0.084,0.012 -0.12,0.018 -0.03,0.012 -0.048,0.03 -0.066,0.048 -0.012,0.018 -0.018,0.042 -0.024,0.072 l -0.27,3.444 h -0.006 l -1.554,-3.438 c -0.012,-0.03 -0.03,-0.06 -0.054,-0.078 -0.018,-0.018 -0.048,-0.036 -0.078,-0.048 -0.03,-0.006 -0.072,-0.012 -0.12,-0.018 -0.048,-0.006 -0.114,-0.006 -0.186,-0.006 -0.078,0 -0.144,0 -0.198,0.006 -0.048,0.006 -0.09,0.012 -0.12,0.018 -0.036,0.012 -0.054,0.03 -0.072,0.048 -0.012,0.024 -0.018,0.048 -0.024,0.084 l -0.36,4.212 c -0.006,0.048 -0.006,0.09 0,0.12 0,0.03 0.012,0.054 0.03,0.066 0.024,0.018 0.054,0.024 0.096,0.03 0.036,0.006 0.096,0.006 0.174,0.006 0.054,0 0.108,0 0.156,-0.006 0.048,-0.006 0.084,-0.012 0.108,-0.024 0.018,-0.012 0.03,-0.03 0.042,-0.048 0.006,-0.024 0.006,-0.048 0.006,-0.084 l 0.258,-3.774 h 0.006 l 1.734,3.804 c 0.012,0.024 0.024,0.048 0.042,0.066 0.012,0.018 0.036,0.03 0.06,0.042 0.024,0.006 0.06,0.012 0.102,0.018 0.048,0.006 0.102,0.006 0.174,0.006 0.066,0 0.114,0 0.156,-0.006 0.036,0 0.066,-0.006 0.084,-0.018 0.024,-0.012 0.036,-0.024 0.042,-0.042 0.006,-0.018 0.012,-0.042 0.012,-0.066 l 0.288,-3.804 h 0.006 l 1.764,3.816 c 0.012,0.024 0.024,0.042 0.036,0.06 0.018,0.018 0.036,0.03 0.066,0.036 0.024,0.012 0.06,0.018 0.102,0.018 0.042,0.006 0.096,0.006 0.162,0.006 0.072,0 0.126,0 0.162,-0.006 0.042,-0.006 0.072,-0.018 0.084,-0.036 0.018,-0.012 0.024,-0.036 0.018,-0.072 -0.006,-0.03 -0.024,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3279"
       clip-path="url(#clipPath7018)" />
    <g
       id="g3283"
       transform="matrix(0.6,0,0,0.6,187.874,496.278)"
       clip-path="url(#clipPath7012)">
      <path
         d="M 363.82,153.88 215.03,41.244"
         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
         id="path3281" />
    </g>
    <path
       d="m 351.962,547.0254 h 11.1522 v 9.015 H 351.962 Z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3285"
       clip-path="url(#clipPath7006)" />
    <path
       d="m 356.624,549.6906 c -0.018,-0.033 -0.036,-0.0594 -0.06,-0.0792 -0.018,-0.0198 -0.048,-0.0354 -0.084,-0.0456 -0.036,-0.0108 -0.078,-0.0174 -0.126,-0.021 -0.048,-0.004 -0.108,-0.005 -0.174,-0.005 -0.072,0 -0.138,0.002 -0.186,0.005 -0.048,0.004 -0.09,0.0102 -0.12,0.021 -0.03,0.0102 -0.048,0.0252 -0.066,0.0438 -0.012,0.0186 -0.018,0.0432 -0.024,0.0738 l -0.27,3.4452 h -0.006 l -1.554,-3.438 c -0.012,-0.033 -0.03,-0.0594 -0.054,-0.0792 -0.018,-0.0198 -0.048,-0.0354 -0.078,-0.0456 -0.03,-0.0108 -0.072,-0.0174 -0.12,-0.021 -0.048,-0.004 -0.114,-0.005 -0.186,-0.005 -0.078,0 -0.144,0.002 -0.198,0.005 -0.048,0.004 -0.09,0.0102 -0.12,0.021 -0.036,0.0102 -0.06,0.0264 -0.072,0.0474 -0.012,0.021 -0.024,0.048 -0.024,0.081 l -0.36,4.215 c -0.006,0.0468 -0.006,0.0858 -0.006,0.1158 0.006,0.0306 0.018,0.0534 0.036,0.069 0.024,0.015 0.054,0.0252 0.09,0.03 0.042,0.004 0.102,0.007 0.174,0.007 0.06,0 0.114,-0.002 0.162,-0.007 0.048,-0.005 0.084,-0.0132 0.102,-0.0246 0.024,-0.012 0.036,-0.0282 0.042,-0.0492 0.012,-0.0216 0.012,-0.0486 0.012,-0.081 l 0.252,-3.7758 h 0.012 l 1.734,3.804 c 0.012,0.0258 0.024,0.0474 0.042,0.0648 0.012,0.0174 0.036,0.0312 0.06,0.0402 0.024,0.01 0.06,0.0168 0.102,0.0216 0.048,0.004 0.102,0.007 0.174,0.007 0.066,0 0.114,-0.002 0.156,-0.005 0.036,-0.003 0.066,-0.0102 0.084,-0.021 0.024,-0.0102 0.036,-0.0246 0.042,-0.042 0.006,-0.0174 0.012,-0.039 0.012,-0.0648 l 0.288,-3.804 h 0.006 l 1.764,3.8178 c 0.012,0.0234 0.024,0.0426 0.036,0.0582 0.018,0.015 0.036,0.0276 0.06,0.0366 0.03,0.01 0.066,0.0162 0.108,0.0192 0.042,0.004 0.096,0.005 0.162,0.005 0.072,0 0.126,-0.003 0.162,-0.008 0.042,-0.006 0.072,-0.0174 0.084,-0.0336 0.018,-0.0162 0.024,-0.0402 0.018,-0.072 -0.012,-0.0318 -0.024,-0.0732 -0.042,-0.1248 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3287"
       clip-path="url(#clipPath7000)" />
    <path
       d="m 360.524,551.3424 c 0,-0.0276 0,-0.0522 0,-0.0744 0,-0.0222 -0.006,-0.0432 -0.012,-0.0636 0,-0.021 -0.006,-0.0408 -0.012,-0.0594 -0.006,-0.0192 -0.018,-0.0396 -0.024,-0.0606 l -1.068,-2.454 c -0.006,-0.018 -0.018,-0.033 -0.03,-0.0444 -0.006,-0.0114 -0.024,-0.021 -0.042,-0.0276 -0.018,-0.007 -0.036,-0.0114 -0.066,-0.0138 -0.03,-0.002 -0.06,-0.004 -0.102,-0.004 -0.048,0 -0.09,0.002 -0.12,0.007 -0.03,0.005 -0.048,0.012 -0.06,0.0216 -0.018,0.0102 -0.018,0.0222 -0.018,0.0366 0,0.0144 0.006,0.0318 0.012,0.0516 l 1.122,2.5086 h -1.416 c -0.03,0 -0.054,0.015 -0.066,0.0456 -0.018,0.0306 -0.024,0.0732 -0.024,0.1278 0,0.0288 0,0.054 0.006,0.0756 0.006,0.021 0.012,0.039 0.018,0.0534 0.006,0.0144 0.018,0.0252 0.024,0.0324 0.012,0.007 0.024,0.0102 0.042,0.0102 h 1.722 c 0.018,0 0.036,-0.002 0.054,-0.007 0.018,-0.004 0.03,-0.0132 0.036,-0.027 0.006,-0.0138 0.018,-0.0312 0.018,-0.0528 0.006,-0.021 0.006,-0.0486 0.006,-0.0822 z m 2.208,-2.6184 c 0,-0.0276 0,-0.0516 -0.006,-0.0732 0,-0.021 -0.006,-0.039 -0.012,-0.0534 -0.012,-0.0144 -0.018,-0.0252 -0.03,-0.0324 -0.012,-0.007 -0.024,-0.0102 -0.036,-0.0102 h -1.638 c -0.018,0 -0.036,0.003 -0.054,0.008 -0.018,0.005 -0.03,0.0138 -0.042,0.0258 -0.012,0.0126 -0.018,0.03 -0.024,0.0528 -0.006,0.0228 -0.006,0.051 -0.006,0.0846 0,0.0306 0,0.057 0,0.0798 0.006,0.0228 0.012,0.0432 0.018,0.0606 0.006,0.0174 0.018,0.0354 0.03,0.0528 0.012,0.0174 0.024,0.036 0.042,0.0558 l 0.594,0.6078 c 0.138,0.1398 0.246,0.2658 0.33,0.3768 0.078,0.1116 0.144,0.2124 0.186,0.3042 0.048,0.0912 0.078,0.174 0.09,0.249 0.018,0.0744 0.024,0.1446 0.024,0.21 0,0.0654 -0.012,0.1278 -0.036,0.186 -0.018,0.0588 -0.054,0.1104 -0.096,0.1542 -0.042,0.0444 -0.09,0.0792 -0.156,0.1056 -0.06,0.0258 -0.132,0.0384 -0.216,0.0384 -0.096,0 -0.18,-0.0126 -0.258,-0.0384 -0.078,-0.0264 -0.144,-0.0546 -0.198,-0.0846 -0.06,-0.0306 -0.108,-0.0588 -0.144,-0.0846 -0.042,-0.0258 -0.072,-0.039 -0.09,-0.039 -0.012,0 -0.018,0.003 -0.03,0.009 -0.006,0.006 -0.012,0.0162 -0.018,0.03 -0.006,0.0138 -0.012,0.0318 -0.012,0.0546 -0.006,0.0228 -0.006,0.0504 -0.006,0.0822 0,0.0228 0,0.0426 0,0.0594 0.006,0.0168 0.006,0.0312 0.012,0.0438 0,0.012 0.006,0.0234 0.012,0.0342 0.006,0.0108 0.018,0.024 0.036,0.0396 0.018,0.0162 0.054,0.0378 0.096,0.0654 0.042,0.0276 0.102,0.0546 0.168,0.081 0.066,0.027 0.144,0.0492 0.222,0.0672 0.084,0.0186 0.168,0.0276 0.258,0.0276 0.144,0 0.27,-0.0198 0.378,-0.0606 0.108,-0.0402 0.198,-0.0954 0.27,-0.1656 0.066,-0.0702 0.12,-0.1512 0.156,-0.2442 0.036,-0.093 0.054,-0.192 0.054,-0.297 0,-0.0948 -0.012,-0.1884 -0.024,-0.2826 -0.018,-0.0936 -0.054,-0.195 -0.108,-0.3036 -0.054,-0.1092 -0.132,-0.2298 -0.234,-0.3636 -0.102,-0.1332 -0.24,-0.2862 -0.408,-0.4602 l -0.468,-0.489 h 1.284 c 0.012,0 0.024,-0.003 0.036,-0.0102 0.012,-0.007 0.024,-0.0168 0.03,-0.0306 0.012,-0.0138 0.018,-0.0312 0.018,-0.0516 0.006,-0.0204 0.006,-0.0444 0.006,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3289"
       clip-path="url(#clipPath6994)" />
    <path
       d="m 195.452,588.63 85.494,-67.6062"
       style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
       id="path3291"
       clip-path="url(#clipPath6988)" />
    <path
       d="m 233.5214,549.3222 h 11.1522 v 9.0138 h -11.1522 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3293"
       clip-path="url(#clipPath6982)" />
    <path
       d="m 238.1798,551.9874 c -0.0138,-0.0324 -0.0324,-0.0588 -0.0546,-0.0786 -0.0222,-0.0204 -0.051,-0.0354 -0.0858,-0.0462 -0.0354,-0.0102 -0.0774,-0.0174 -0.1266,-0.021 -0.0492,-0.004 -0.108,-0.005 -0.1758,-0.005 -0.0726,0 -0.1338,10e-4 -0.183,0.005 -0.0492,0.004 -0.0888,0.0108 -0.1194,0.021 -0.0306,0.0108 -0.0528,0.0252 -0.0666,0.0444 -0.0144,0.0186 -0.0228,0.0432 -0.0252,0.0738 l -0.2706,3.4452 h -0.007 l -1.554,-3.4386 c -0.012,-0.0324 -0.0288,-0.0588 -0.051,-0.0786 -0.0222,-0.0204 -0.0486,-0.0354 -0.0792,-0.0462 -0.0306,-0.0102 -0.0708,-0.0174 -0.1212,-0.021 -0.0504,-0.004 -0.1122,-0.005 -0.1848,-0.005 -0.0798,0 -0.1452,10e-4 -0.1968,0.005 -0.0516,0.004 -0.093,0.0108 -0.1248,0.021 -0.0318,0.0108 -0.0546,0.0264 -0.0684,0.048 -0.0144,0.021 -0.0222,0.048 -0.0246,0.0804 l -0.3624,4.2156 c -0.005,0.0468 -0.005,0.0834 -0.002,0.1134 0.004,0.03 0.0156,0.054 0.0354,0.072 0.0198,0.012 0.0504,0.024 0.0912,0.03 0.0414,0.006 0.099,0.006 0.174,0.006 0.0588,0 0.1122,0 0.1602,-0.006 0.048,-0.006 0.0828,-0.012 0.1038,-0.024 0.021,-0.012 0.0348,-0.03 0.042,-0.048 0.007,-0.024 0.0108,-0.048 0.0108,-0.084 l 0.2532,-3.7758 h 0.007 l 1.737,3.8058 c 0.0114,0.024 0.0252,0.048 0.0402,0.066 0.0156,0.012 0.036,0.03 0.0618,0.036 0.0258,0.012 0.06,0.018 0.1038,0.024 0.0432,0.006 0.1014,0.006 0.174,0.006 0.063,0 0.1134,0 0.1512,-0.006 0.0372,0 0.0666,-0.012 0.0876,-0.018 0.021,-0.012 0.0348,-0.03 0.0402,-0.042 0.006,-0.018 0.0102,-0.042 0.0126,-0.066 l 0.288,-3.8058 h 0.007 l 1.7652,3.8178 c 0.009,0.024 0.021,0.042 0.0348,0.06 0.0144,0.012 0.0348,0.024 0.0618,0.036 0.027,0.006 0.0618,0.018 0.105,0.018 0.0438,0.006 0.0984,0.006 0.1638,0.006 0.0678,0 0.1218,0 0.1614,-0.006 0.0402,-0.006 0.0684,-0.018 0.0846,-0.036 0.0162,-0.018 0.021,-0.042 0.0144,-0.072 -0.007,-0.03 -0.0216,-0.0738 -0.0426,-0.1254 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3295"
       clip-path="url(#clipPath6976)" />
    <path
       d="m 242.0486,551.0076 c 0,-0.0288 -0.002,-0.0534 -0.007,-0.0732 -0.005,-0.0198 -0.0108,-0.036 -0.0186,-0.048 -0.008,-0.012 -0.0162,-0.021 -0.0264,-0.0264 -0.01,-0.005 -0.0198,-0.008 -0.0306,-0.008 h -1.5444 c -0.0108,0 -0.021,0.002 -0.03,0.008 -0.009,0.005 -0.018,0.0144 -0.0264,0.0264 -0.008,0.012 -0.0144,0.0282 -0.0192,0.048 -0.005,0.0198 -0.007,0.0444 -0.007,0.0732 0,0.0276 0.002,0.051 0.007,0.0708 0.005,0.0198 0.0102,0.036 0.0174,0.0492 0.007,0.0126 0.015,0.0228 0.0252,0.0294 0.01,0.007 0.0204,0.0102 0.033,0.0102 h 0.6168 v 2.2482 l -0.5712,-0.3402 c -0.0288,-0.015 -0.0522,-0.0246 -0.0696,-0.0276 -0.0174,-0.003 -0.0318,6e-4 -0.0426,0.0108 -0.0102,0.01 -0.018,0.0258 -0.0216,0.0486 -0.004,0.0234 -0.005,0.0522 -0.005,0.087 0,0.0258 0.001,0.048 0.003,0.0666 0.002,0.018 0.006,0.033 0.0102,0.0456 0.005,0.012 0.0114,0.0228 0.0198,0.0318 0.008,0.009 0.0192,0.018 0.033,0.0276 l 0.681,0.4362 c 0.006,0.005 0.0138,0.008 0.0228,0.0114 0.009,0.003 0.0204,0.006 0.0342,0.009 0.0138,0.003 0.03,0.005 0.048,0.006 0.018,6e-4 0.0414,10e-4 0.0684,10e-4 0.0366,0 0.0672,-0.002 0.0918,-0.005 0.024,-0.003 0.0432,-0.007 0.057,-0.0126 0.0138,-0.005 0.0228,-0.012 0.027,-0.0204 0.005,-0.008 0.007,-0.0174 0.007,-0.0264 v -2.598 h 0.5346 c 0.012,0 0.0234,-0.003 0.0342,-0.0102 0.0108,-0.007 0.0192,-0.0168 0.0264,-0.0294 0.007,-0.0132 0.012,-0.0294 0.0156,-0.0492 0.004,-0.0198 0.006,-0.0432 0.006,-0.0708 z m 2.25,0 c 0,-0.0288 -0.002,-0.0534 -0.007,-0.0732 -0.005,-0.0198 -0.0108,-0.036 -0.0186,-0.048 -0.008,-0.012 -0.0162,-0.021 -0.0264,-0.0264 -0.01,-0.005 -0.0198,-0.008 -0.0306,-0.008 h -1.5444 c -0.0108,0 -0.021,0.002 -0.03,0.008 -0.009,0.005 -0.018,0.0144 -0.0264,0.0264 -0.008,0.012 -0.0144,0.0282 -0.0192,0.048 -0.005,0.0198 -0.007,0.0444 -0.007,0.0732 0,0.0276 0.002,0.051 0.007,0.0708 0.005,0.0198 0.0102,0.036 0.0174,0.0492 0.007,0.0126 0.015,0.0228 0.0252,0.0294 0.01,0.007 0.0204,0.0102 0.033,0.0102 h 0.6168 v 2.2482 l -0.5712,-0.3402 c -0.0288,-0.015 -0.0522,-0.0246 -0.0696,-0.0276 -0.0174,-0.003 -0.0318,6e-4 -0.0426,0.0108 -0.0102,0.01 -0.018,0.0258 -0.0216,0.0486 -0.004,0.0234 -0.005,0.0522 -0.005,0.087 0,0.0258 0.001,0.048 0.003,0.0666 0.002,0.018 0.006,0.033 0.0102,0.0456 0.005,0.012 0.0114,0.0228 0.0198,0.0318 0.008,0.009 0.0192,0.018 0.033,0.0276 l 0.681,0.4362 c 0.006,0.005 0.0138,0.008 0.0228,0.0114 0.009,0.003 0.0204,0.006 0.0342,0.009 0.0138,0.003 0.03,0.005 0.048,0.006 0.018,6e-4 0.0414,10e-4 0.0684,10e-4 0.0366,0 0.0672,-0.002 0.0918,-0.005 0.024,-0.003 0.0432,-0.007 0.057,-0.0126 0.0138,-0.005 0.0228,-0.012 0.027,-0.0204 0.005,-0.008 0.007,-0.0174 0.007,-0.0264 v -2.598 h 0.5346 c 0.012,0 0.0234,-0.003 0.0342,-0.0102 0.0108,-0.007 0.0192,-0.0168 0.0264,-0.0294 0.007,-0.0132 0.012,-0.0294 0.0156,-0.0492 0.004,-0.0198 0.006,-0.0432 0.006,-0.0708 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3297"
       clip-path="url(#clipPath6970)" />
    <g
       id="g3301"
       transform="matrix(0.6,0,0,0.6,187.874,496.278)"
       clip-path="url(#clipPath6964)">
      <path
         d="M 12.63,153.92 215.03,41.244"
         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
         id="path3299" />
    </g>
    <path
       d="m 224.2718,565.602 h 11.1522 v 8.64 h -11.1522 z"
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6"
       id="path3303"
       clip-path="url(#clipPath6958)" />
    <path
       d="m 232.799,566.916 c 0,-0.03 -0.002,-0.054 -0.007,-0.078 -0.004,-0.018 -0.0102,-0.036 -0.018,-0.048 -0.008,-0.012 -0.0162,-0.018 -0.0264,-0.024 -0.01,-0.006 -0.0198,-0.006 -0.0306,-0.006 h -1.5444 c -0.0108,0 -0.021,0 -0.03,0.006 -0.009,0.006 -0.018,0.012 -0.0264,0.024 -0.008,0.012 -0.0144,0.03 -0.0192,0.048 -0.005,0.024 -0.007,0.048 -0.007,0.078 0,0.024 0.002,0.048 0.007,0.066 0.005,0.024 0.0102,0.036 0.0174,0.054 0.007,0.012 0.015,0.018 0.0246,0.03 0.0102,0.006 0.021,0.006 0.0336,0.006 h 0.6168 v 2.25 l -0.5712,-0.342 c -0.0288,-0.012 -0.0522,-0.024 -0.0696,-0.024 -0.018,-0.006 -0.0318,0 -0.0426,0.006 -0.0108,0.012 -0.018,0.03 -0.0216,0.054 -0.004,0.018 -0.006,0.048 -0.006,0.084 0,0.024 0.001,0.048 0.004,0.066 0.002,0.018 0.006,0.036 0.0102,0.048 0.005,0.012 0.0114,0.018 0.0198,0.03 0.008,0.012 0.0192,0.018 0.033,0.03 l 0.681,0.432 c 0.006,0.006 0.0138,0.012 0.0228,0.012 0.009,0.006 0.0204,0.006 0.0342,0.012 0.0138,0 0.0294,0.006 0.048,0.006 0.018,0 0.0408,0 0.0684,0 0.0366,0 0.0672,0 0.0912,-0.006 0.0246,0 0.0438,-0.006 0.0576,-0.012 0.0132,-0.006 0.0228,-0.012 0.027,-0.018 0.005,-0.012 0.007,-0.018 0.007,-0.03 v -2.598 h 0.5346 c 0.012,0 0.0234,0 0.0342,-0.006 0.0108,-0.012 0.0192,-0.018 0.0264,-0.03 0.007,-0.018 0.012,-0.03 0.0156,-0.054 0.004,-0.018 0.006,-0.042 0.006,-0.066 z m 2.2428,0.012 c 0,-0.03 -0.002,-0.054 -0.005,-0.072 -0.004,-0.024 -0.009,-0.042 -0.0162,-0.054 -0.007,-0.018 -0.0156,-0.024 -0.027,-0.036 -0.0114,-0.006 -0.024,-0.006 -0.0378,-0.006 h -1.6338 c -0.021,0 -0.0402,0 -0.0558,0.006 -0.0162,0.006 -0.03,0.012 -0.0414,0.024 -0.0114,0.012 -0.0198,0.03 -0.0252,0.054 -0.005,0.024 -0.008,0.054 -0.008,0.084 0,0.03 0.001,0.06 0.004,0.084 0.002,0.018 0.007,0.042 0.015,0.06 0.008,0.018 0.018,0.036 0.0294,0.048 0.012,0.018 0.0276,0.036 0.0462,0.06 l 0.591,0.606 c 0.1362,0.138 0.246,0.264 0.3282,0.378 0.0828,0.108 0.1464,0.21 0.1908,0.306 0.045,0.09 0.0744,0.174 0.0882,0.246 0.0144,0.072 0.0216,0.144 0.0216,0.21 0,0.066 -0.0114,0.126 -0.033,0.186 -0.0222,0.06 -0.054,0.108 -0.096,0.156 -0.0414,0.042 -0.0936,0.078 -0.1566,0.102 -0.063,0.03 -0.135,0.042 -0.2166,0.042 -0.096,0 -0.1824,-0.012 -0.2586,-0.042 -0.0762,-0.024 -0.1428,-0.054 -0.2004,-0.084 -0.057,-0.03 -0.105,-0.06 -0.1434,-0.084 -0.0384,-0.024 -0.0672,-0.036 -0.0864,-0.036 -0.0108,0 -0.0204,0 -0.0294,0.006 -0.008,0.006 -0.0156,0.018 -0.021,0.03 -0.005,0.012 -0.0102,0.03 -0.0132,0.054 -0.003,0.024 -0.005,0.054 -0.005,0.084 0,0.024 0.001,0.042 0.002,0.06 0.002,0.018 0.004,0.03 0.008,0.042 0.004,0.012 0.008,0.024 0.0144,0.036 0.006,0.012 0.0186,0.024 0.0366,0.036 0.0186,0.018 0.0498,0.042 0.0948,0.066 0.045,0.03 0.1014,0.054 0.1692,0.084 0.0678,0.024 0.1422,0.048 0.2238,0.066 0.0816,0.018 0.1674,0.03 0.2574,0.03 0.1428,0 0.2682,-0.024 0.3756,-0.06 0.1074,-0.042 0.1962,-0.096 0.2676,-0.168 0.0708,-0.072 0.1236,-0.15 0.1584,-0.246 0.0354,-0.09 0.0528,-0.192 0.0528,-0.294 0,-0.096 -0.008,-0.192 -0.0252,-0.282 -0.0168,-0.096 -0.0522,-0.198 -0.1062,-0.306 -0.054,-0.108 -0.132,-0.228 -0.234,-0.36 -0.1026,-0.138 -0.2382,-0.288 -0.4068,-0.462 l -0.4686,-0.492 h 1.2864 c 0.012,0 0.024,0 0.0354,-0.006 0.0114,-0.012 0.021,-0.018 0.0294,-0.036 0.008,-0.012 0.015,-0.03 0.0186,-0.048 0.004,-0.024 0.005,-0.048 0.005,-0.072 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3305"
       clip-path="url(#clipPath6952)" />
    <path
       d="m 228.9302,567.894 c -0.0144,-0.036 -0.0324,-0.06 -0.0546,-0.078 -0.0222,-0.024 -0.051,-0.036 -0.0858,-0.048 -0.0354,-0.012 -0.0774,-0.018 -0.1266,-0.018 -0.0492,-0.006 -0.108,-0.006 -0.1758,-0.006 -0.0726,0 -0.1338,0 -0.183,0.006 -0.0492,0 -0.0894,0.006 -0.1194,0.018 -0.0306,0.012 -0.0528,0.024 -0.0672,0.042 -0.0138,0.024 -0.0222,0.048 -0.0246,0.078 l -0.2706,3.444 h -0.007 l -1.5534,-3.438 c -0.012,-0.036 -0.0288,-0.06 -0.051,-0.078 -0.0222,-0.024 -0.0486,-0.036 -0.0792,-0.048 -0.0306,-0.012 -0.0708,-0.018 -0.1212,-0.018 -0.0504,-0.006 -0.1122,-0.006 -0.1848,-0.006 -0.0798,0 -0.1452,0 -0.1968,0.006 -0.0516,0 -0.093,0.006 -0.1248,0.018 -0.0318,0.012 -0.0546,0.03 -0.0684,0.048 -0.0144,0.024 -0.0222,0.048 -0.0246,0.084 l -0.3624,4.212 c -0.005,0.048 -0.005,0.084 -0.002,0.114 0.004,0.03 0.0156,0.054 0.0354,0.072 0.0198,0.012 0.0504,0.024 0.0912,0.03 0.0408,0.006 0.099,0.006 0.174,0.006 0.0588,0 0.1122,0 0.1602,-0.006 0.048,-0.006 0.0822,-0.012 0.1038,-0.024 0.021,-0.012 0.0348,-0.03 0.042,-0.048 0.007,-0.024 0.0108,-0.054 0.0108,-0.084 l 0.2526,-3.774 h 0.007 l 1.737,3.804 c 0.0114,0.024 0.0252,0.048 0.0402,0.066 0.015,0.012 0.036,0.03 0.0618,0.036 0.0258,0.012 0.06,0.018 0.1032,0.024 0.0438,0.006 0.1014,0.006 0.174,0.006 0.0636,0 0.114,0 0.1512,-0.006 0.0378,0 0.0672,-0.012 0.0882,-0.018 0.021,-0.012 0.0348,-0.03 0.0402,-0.042 0.006,-0.018 0.0102,-0.042 0.0126,-0.066 l 0.288,-3.804 h 0.007 l 1.7646,3.816 c 0.01,0.024 0.0216,0.042 0.0354,0.06 0.0138,0.012 0.0348,0.024 0.0618,0.036 0.0264,0.006 0.0618,0.018 0.105,0.018 0.0438,0.006 0.0978,0.006 0.1638,0.006 0.0678,0 0.1218,-0.006 0.1614,-0.006 0.0402,-0.006 0.0684,-0.018 0.0846,-0.036 0.0162,-0.018 0.021,-0.042 0.0138,-0.072 -0.007,-0.03 -0.021,-0.072 -0.042,-0.126 z"
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6"
       id="path3307"
       clip-path="url(#clipPath6946)" />
    <text
       xml:space="preserve"
       style="font-size:8.88809px;line-height:1.25;font-family:'Liberation Mono';-inkscape-font-specification:'Liberation Mono';stroke-width:0.222202"
       x="146.24944"
       y="-557.01959"
       id="text6540"
       transform="scale(1,-1)"><tspan
         sodipodi:role="line"
         id="tspan6538"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';stroke-width:0.222202"
         x="146.24944"
         y="-557.01959">Matrix <tspan
   style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Italic';stroke-width:0.222202"
   id="tspan6592">W</tspan></tspan></text>
    <text
       xml:space="preserve"
       style="font-size:8.88809px;line-height:1.25;font-family:'Liberation Mono';-inkscape-font-specification:'Liberation Mono';stroke-width:0.222202"
       x="129.73491"
       y="-580.77844"
       id="text6540-0"
       transform="scale(1,-1)"><tspan
         sodipodi:role="line"
         id="tspan6538-9"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';stroke-width:0.222202"
         x="129.73491"
         y="-580.77844">Input vector <tspan
   style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Italic'"
   id="tspan7436">a</tspan></tspan></text>
    <text
       xml:space="preserve"
       style="font-size:8.88809px;line-height:1.25;font-family:'Liberation Mono';-inkscape-font-specification:'Liberation Mono';stroke-width:0.222202"
       x="121.50774"
       y="-511.48105"
       id="text6540-0-2"
       transform="scale(1,-1)"><tspan
         id="tspan6538-9-6"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';stroke-width:0.222202"
         x="121.50774"
         y="-511.48105"
         sodipodi:role="line">Output vector <tspan
   style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Italic'"
   id="tspan7530">b</tspan></tspan></text>
  </g>
</svg>