Newer
Older
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
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="705pt" height="648pt" viewBox="0 0 705 648" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.546875 -2.59375 L 3.46875 -2.59375 C 3.953125 -2.59375 4.328125 -2.734375 4.65625 -3.03125 C 5.03125 -3.375 5.1875 -3.765625 5.1875 -4.328125 C 5.1875 -5.484375 4.5 -6.125 3.296875 -6.125 L 0.765625 -6.125 L 0.765625 0 L 1.546875 0 Z M 1.546875 -3.28125 L 1.546875 -5.4375 L 3.171875 -5.4375 C 3.921875 -5.4375 4.375 -5.03125 4.375 -4.359375 C 4.375 -3.6875 3.921875 -3.28125 3.171875 -3.28125 Z M 1.546875 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5 -0.40625 C 4.421875 -0.390625 4.390625 -0.390625 4.34375 -0.390625 C 4.109375 -0.390625 3.96875 -0.515625 3.96875 -0.734375 L 3.96875 -3.328125 C 3.96875 -4.109375 3.390625 -4.53125 2.3125 -4.53125 C 1.671875 -4.53125 1.15625 -4.34375 0.84375 -4.015625 C 0.640625 -3.796875 0.5625 -3.53125 0.546875 -3.109375 L 1.25 -3.109375 C 1.3125 -3.640625 1.625 -3.890625 2.28125 -3.890625 C 2.921875 -3.890625 3.265625 -3.640625 3.265625 -3.234375 L 3.265625 -3.046875 C 3.265625 -2.734375 3.109375 -2.625 2.53125 -2.5625 C 1.546875 -2.421875 1.390625 -2.390625 1.125 -2.28125 C 0.609375 -2.0625 0.359375 -1.6875 0.359375 -1.109375 C 0.359375 -0.3125 0.90625 0.1875 1.796875 0.1875 C 2.359375 0.1875 2.796875 0 3.296875 -0.453125 C 3.34375 0 3.5625 0.1875 4.015625 0.1875 C 4.171875 0.1875 4.265625 0.171875 4.5 0.125 Z M 3.265625 -1.390625 C 3.265625 -1.15625 3.203125 -1.015625 3 -0.8125 C 2.703125 -0.5625 2.359375 -0.421875 1.953125 -0.421875 C 1.40625 -0.421875 1.078125 -0.6875 1.078125 -1.125 C 1.078125 -1.59375 1.390625 -1.828125 2.140625 -1.9375 C 2.890625 -2.03125 3.03125 -2.0625 3.265625 -2.171875 Z M 3.265625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.6875 -3.171875 C 3.671875 -4.046875 3.109375 -4.53125 2.078125 -4.53125 C 1.0625 -4.53125 0.390625 -4 0.390625 -3.1875 C 0.390625 -2.5 0.75 -2.171875 1.796875 -1.921875 L 2.453125 -1.75 C 2.9375 -1.640625 3.125 -1.46875 3.125 -1.15625 C 3.125 -0.734375 2.71875 -0.453125 2.09375 -0.453125 C 1.71875 -0.453125 1.40625 -0.5625 1.234375 -0.75 C 1.125 -0.875 1.0625 -1 1.03125 -1.3125 L 0.28125 -1.3125 C 0.3125 -0.296875 0.890625 0.1875 2.046875 0.1875 C 3.15625 0.1875 3.859375 -0.359375 3.859375 -1.203125 C 3.859375 -1.859375 3.484375 -2.21875 2.609375 -2.421875 L 1.9375 -2.59375 C 1.375 -2.71875 1.125 -2.90625 1.125 -3.21875 C 1.125 -3.625 1.484375 -3.890625 2.0625 -3.890625 C 2.625 -3.890625 2.921875 -3.640625 2.9375 -3.171875 Z M 3.6875 -3.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.140625 -4.40625 L 1.40625 -4.40625 L 1.40625 -5.609375 L 0.71875 -5.609375 L 0.71875 -4.40625 L 0.125 -4.40625 L 0.125 -3.828125 L 0.71875 -3.828125 L 0.71875 -0.5 C 0.71875 -0.046875 1.015625 0.1875 1.5625 0.1875 C 1.75 0.1875 1.90625 0.171875 2.140625 0.140625 L 2.140625 -0.453125 C 2.03125 -0.421875 1.9375 -0.421875 1.796875 -0.421875 C 1.5 -0.421875 1.40625 -0.5 1.40625 -0.8125 L 1.40625 -3.828125 L 2.140625 -3.828125 Z M 2.140625 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.3125 -1.96875 C 4.3125 -2.640625 4.265625 -3.046875 4.140625 -3.375 C 3.84375 -4.09375 3.171875 -4.53125 2.359375 -4.53125 C 1.125 -4.53125 0.34375 -3.59375 0.34375 -2.140625 C 0.34375 -0.6875 1.09375 0.1875 2.34375 0.1875 C 3.34375 0.1875 4.046875 -0.375 4.21875 -1.34375 L 3.515625 -1.34375 C 3.328125 -0.75 2.921875 -0.453125 2.359375 -0.453125 C 1.921875 -0.453125 1.53125 -0.65625 1.296875 -1.03125 C 1.140625 -1.28125 1.078125 -1.53125 1.0625 -1.96875 Z M 1.078125 -2.53125 C 1.140625 -3.359375 1.640625 -3.890625 2.34375 -3.890625 C 3.0625 -3.890625 3.5625 -3.328125 3.5625 -2.53125 Z M 1.078125 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.28125 -6.125 L 0.578125 -6.125 L 0.578125 0 L 1.28125 0 Z M 1.28125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.171875 -4.328125 L 2.171875 0 L 2.921875 0 L 2.921875 -6.078125 L 2.421875 -6.078125 C 2.171875 -5.140625 2 -5.015625 0.859375 -4.859375 L 0.859375 -4.328125 Z M 2.171875 -4.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.75 0 L 3.109375 0 C 4.65625 0 5.609375 -1.15625 5.609375 -3.0625 C 5.609375 -4.96875 4.671875 -6.125 3.109375 -6.125 L 0.75 -6.125 Z M 1.53125 -0.6875 L 1.53125 -5.4375 L 2.96875 -5.4375 C 4.1875 -5.4375 4.828125 -4.625 4.828125 -3.0625 C 4.828125 -1.5 4.1875 -0.6875 2.96875 -0.6875 Z M 1.53125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.578125 -4.40625 L 0.578125 0 L 1.28125 0 L 1.28125 -2.28125 C 1.296875 -3.34375 1.734375 -3.8125 2.703125 -3.796875 L 2.703125 -4.5 C 2.578125 -4.515625 2.515625 -4.53125 2.421875 -4.53125 C 1.96875 -4.53125 1.625 -4.265625 1.234375 -3.609375 L 1.234375 -4.40625 Z M 0.578125 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.1875 -6.125 L 0.484375 -6.125 L 0.484375 0 L 1.1875 0 L 1.1875 -1.71875 L 1.859375 -2.390625 L 3.359375 0 L 4.21875 0 L 2.421875 -2.890625 L 3.953125 -4.40625 L 3.046875 -4.40625 L 1.1875 -2.53125 Z M 1.1875 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 4.25 -0.734375 L 1.125 -0.734375 C 1.1875 -1.234375 1.46875 -1.5625 2.1875 -2 L 3.03125 -2.46875 C 3.859375 -2.9375 4.296875 -3.5625 4.296875 -4.296875 C 4.296875 -4.8125 4.09375 -5.28125 3.734375 -5.609375 C 3.390625 -5.921875 2.953125 -6.078125 2.390625 -6.078125 C 1.625 -6.078125 1.0625 -5.8125 0.734375 -5.28125 C 0.53125 -4.96875 0.4375 -4.59375 0.421875 -3.96875 L 1.15625 -3.96875 C 1.1875 -4.390625 1.234375 -4.625 1.34375 -4.828125 C 1.53125 -5.203125 1.921875 -5.4375 2.359375 -5.4375 C 3.03125 -5.4375 3.53125 -4.9375 3.53125 -4.28125 C 3.53125 -3.796875 3.265625 -3.375 2.734375 -3.078125 L 1.953125 -2.625 C 0.71875 -1.90625 0.359375 -1.34375 0.28125 -0.015625 L 4.25 -0.015625 Z M 4.25 -0.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.859375 -2.796875 L 2.265625 -2.796875 C 3.0625 -2.796875 3.5 -2.421875 3.5 -1.6875 C 3.5 -0.921875 3.03125 -0.46875 2.265625 -0.46875 C 1.453125 -0.46875 1.0625 -0.875 1.015625 -1.765625 L 0.265625 -1.765625 C 0.296875 -1.28125 0.390625 -0.953125 0.53125 -0.6875 C 0.84375 -0.09375 1.421875 0.1875 2.234375 0.1875 C 3.46875 0.1875 4.25 -0.546875 4.25 -1.703125 C 4.25 -2.46875 3.953125 -2.890625 3.25 -3.140625 C 3.796875 -3.375 4.078125 -3.796875 4.078125 -4.40625 C 4.078125 -5.453125 3.390625 -6.078125 2.265625 -6.078125 C 1.0625 -6.078125 0.421875 -5.40625 0.390625 -4.125 L 1.140625 -4.125 C 1.140625 -4.484375 1.171875 -4.703125 1.265625 -4.890625 C 1.4375 -5.234375 1.8125 -5.4375 2.265625 -5.4375 C 2.921875 -5.4375 3.328125 -5.03125 3.328125 -4.375 C 3.328125 -3.953125 3.171875 -3.6875 2.84375 -3.546875 C 2.640625 -3.46875 2.375 -3.4375 1.859375 -3.421875 Z M 1.859375 -2.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 5.015625 -4.328125 C 5.015625 -4.75 4.984375 -4.859375 4.84375 -5.15625 C 4.515625 -5.859375 3.796875 -6.234375 2.765625 -6.234375 C 1.421875 -6.234375 0.59375 -5.546875 0.59375 -4.4375 C 0.59375 -3.6875 0.984375 -3.21875 1.796875 -3 L 3.3125 -2.59375 C 4.09375 -2.390625 4.4375 -2.078125 4.4375 -1.609375 C 4.4375 -1.28125 4.265625 -0.9375 4 -0.75 C 3.75 -0.578125 3.375 -0.5 2.875 -0.5 C 2.203125 -0.5 1.75 -0.65625 1.46875 -1.015625 C 1.234375 -1.28125 1.140625 -1.578125 1.140625 -1.953125 L 0.40625 -1.953125 C 0.40625 -1.390625 0.515625 -1.015625 0.765625 -0.6875 C 1.1875 -0.09375 1.890625 0.1875 2.828125 0.1875 C 3.5625 0.1875 4.15625 0.03125 4.546875 -0.28125 C 4.953125 -0.609375 5.21875 -1.15625 5.21875 -1.6875 C 5.21875 -2.4375 4.75 -3 3.921875 -3.21875 L 2.375 -3.625 C 1.640625 -3.828125 1.375 -4.0625 1.375 -4.546875 C 1.375 -5.15625 1.921875 -5.578125 2.734375 -5.578125 C 3.71875 -5.578125 4.265625 -5.140625 4.265625 -4.328125 Z M 5.015625 -4.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 6.25 0 L 7.8125 -6.125 L 6.9375 -6.125 L 5.8125 -1.15625 L 4.40625 -6.125 L 3.578125 -6.125 L 2.203125 -1.15625 L 1.0625 -6.125 L 0.1875 -6.125 L 1.75 0 L 2.609375 0 L 3.984375 -5.03125 L 5.390625 0 Z M 6.25 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 0.59375 -4.40625 L 0.59375 0 L 1.296875 0 L 1.296875 -2.765625 C 1.296875 -3.40625 1.75 -3.921875 2.328125 -3.921875 C 2.84375 -3.921875 3.140625 -3.59375 3.140625 -3.03125 L 3.140625 0 L 3.84375 0 L 3.84375 -2.765625 C 3.84375 -3.40625 4.3125 -3.921875 4.890625 -3.921875 C 5.390625 -3.921875 5.703125 -3.59375 5.703125 -3.03125 L 5.703125 0 L 6.40625 0 L 6.40625 -3.296875 C 6.40625 -4.09375 5.953125 -4.53125 5.125 -4.53125 C 4.546875 -4.53125 4.1875 -4.359375 3.78125 -3.859375 C 3.515625 -4.328125 3.15625 -4.53125 2.59375 -4.53125 C 2 -4.53125 1.609375 -4.3125 1.234375 -3.78125 L 1.234375 -4.40625 Z M 0.59375 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 5.5625 -4.234375 C 5.328125 -5.578125 4.546875 -6.234375 3.203125 -6.234375 C 2.375 -6.234375 1.71875 -5.96875 1.265625 -5.46875 C 0.703125 -4.859375 0.40625 -3.984375 0.40625 -3 C 0.40625 -1.984375 0.71875 -1.125 1.28125 -0.515625 C 1.765625 -0.03125 2.375 0.1875 3.171875 0.1875 C 4.671875 0.1875 5.5 -0.609375 5.6875 -2.234375 L 4.890625 -2.234375 C 4.8125 -1.8125 4.734375 -1.53125 4.609375 -1.28125 C 4.359375 -0.78125 3.828125 -0.5 3.171875 -0.5 C 1.953125 -0.5 1.1875 -1.46875 1.1875 -3 C 1.1875 -4.578125 1.921875 -5.546875 3.109375 -5.546875 C 3.609375 -5.546875 4.0625 -5.390625 4.328125 -5.15625 C 4.546875 -4.9375 4.671875 -4.6875 4.765625 -4.234375 Z M 5.5625 -4.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 2.28125 -4.53125 C 1.046875 -4.53125 0.296875 -3.640625 0.296875 -2.171875 C 0.296875 -0.6875 1.046875 0.1875 2.296875 0.1875 C 3.53125 0.1875 4.28125 -0.6875 4.28125 -2.140625 C 4.28125 -3.671875 3.5625 -4.53125 2.28125 -4.53125 Z M 2.296875 -3.890625 C 3.078125 -3.890625 3.5625 -3.234375 3.5625 -2.140625 C 3.5625 -1.09375 3.0625 -0.453125 2.296875 -0.453125 C 1.515625 -0.453125 1.03125 -1.09375 1.03125 -2.171875 C 1.03125 -3.234375 1.515625 -3.890625 2.296875 -3.890625 Z M 2.296875 -3.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 4.15625 -6.125 L 3.46875 -6.125 L 3.46875 -3.84375 C 3.171875 -4.296875 2.703125 -4.53125 2.109375 -4.53125 C 0.96875 -4.53125 0.21875 -3.609375 0.21875 -2.203125 C 0.21875 -0.71875 0.9375 0.1875 2.140625 0.1875 C 2.734375 0.1875 3.15625 -0.03125 3.53125 -0.578125 L 3.53125 0 L 4.15625 0 Z M 2.234375 -3.875 C 2.984375 -3.875 3.46875 -3.21875 3.46875 -2.15625 C 3.46875 -1.140625 2.96875 -0.46875 2.234375 -0.46875 C 1.46875 -0.46875 0.953125 -1.140625 0.953125 -2.171875 C 0.953125 -3.1875 1.46875 -3.875 2.234375 -3.875 Z M 2.234375 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 4.625 -2.796875 L 4.625 0 L 5.40625 0 L 5.40625 -6.125 L 4.625 -6.125 L 4.625 -3.484375 L 1.484375 -3.484375 L 1.484375 -6.125 L 0.703125 -6.125 L 0.703125 0 L 1.484375 0 L 1.484375 -2.796875 Z M 4.625 -2.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 0.59375 -4.40625 L 0.59375 0 L 1.296875 0 L 1.296875 -2.421875 C 1.296875 -3.328125 1.765625 -3.921875 2.484375 -3.921875 C 3.046875 -3.921875 3.390625 -3.578125 3.390625 -3.046875 L 3.390625 0 L 4.09375 0 L 4.09375 -3.328125 C 4.09375 -4.0625 3.546875 -4.53125 2.703125 -4.53125 C 2.046875 -4.53125 1.625 -4.28125 1.234375 -3.671875 L 1.234375 -4.40625 Z M 0.59375 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 1.265625 -4.40625 L 0.5625 -4.40625 L 0.5625 0 L 1.265625 0 Z M 1.265625 -6.125 L 0.5625 -6.125 L 0.5625 -5.25 L 1.265625 -5.25 Z M 1.265625 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 3.953125 -2.921875 C 3.921875 -3.359375 3.828125 -3.625 3.671875 -3.875 C 3.359375 -4.28125 2.828125 -4.53125 2.21875 -4.53125 C 1.03125 -4.53125 0.265625 -3.59375 0.265625 -2.125 C 0.265625 -0.703125 1.015625 0.1875 2.203125 0.1875 C 3.265625 0.1875 3.921875 -0.4375 4.015625 -1.515625 L 3.296875 -1.515625 C 3.1875 -0.8125 2.828125 -0.453125 2.234375 -0.453125 C 1.453125 -0.453125 0.984375 -1.078125 0.984375 -2.125 C 0.984375 -3.234375 1.453125 -3.890625 2.203125 -3.890625 C 2.796875 -3.890625 3.171875 -3.53125 3.25 -2.921875 Z M 3.953125 -2.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 3.265625 -4.40625 L 2.046875 -0.96875 L 0.921875 -4.40625 L 0.171875 -4.40625 L 1.65625 0.015625 L 1.390625 0.71875 C 1.265625 1.03125 1.125 1.140625 0.828125 1.140625 C 0.703125 1.140625 0.609375 1.125 0.453125 1.09375 L 0.453125 1.71875 C 0.59375 1.796875 0.734375 1.828125 0.921875 1.828125 C 1.15625 1.828125 1.390625 1.75 1.578125 1.625 C 1.796875 1.46875 1.921875 1.28125 2.0625 0.921875 L 4.015625 -4.40625 Z M 3.265625 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 5.953125 -3.234375 L 3.40625 -3.234375 L 3.40625 -2.546875 L 5.265625 -2.546875 L 5.265625 -2.375 C 5.265625 -1.28125 4.46875 -0.5 3.34375 -0.5 C 2.71875 -0.5 2.15625 -0.71875 1.796875 -1.125 C 1.390625 -1.5625 1.15625 -2.28125 1.15625 -3.046875 C 1.15625 -4.546875 2.015625 -5.546875 3.296875 -5.546875 C 4.234375 -5.546875 4.90625 -5.0625 5.078125 -4.265625 L 5.875 -4.265625 C 5.65625 -5.515625 4.71875 -6.234375 3.3125 -6.234375 C 2.5625 -6.234375 1.953125 -6.03125 1.484375 -5.640625 C 0.765625 -5.046875 0.375 -4.109375 0.375 -3 C 0.375 -1.125 1.515625 0.1875 3.171875 0.1875 C 4.015625 0.1875 4.671875 -0.125 5.265625 -0.78125 L 5.46875 0.03125 L 5.953125 0.03125 Z M 5.953125 -3.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.453125 -6.125 L 0.671875 -6.125 L 0.671875 0 L 4.484375 0 L 4.484375 -0.6875 L 1.453125 -0.6875 Z M 1.453125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 3.390625 -4.40625 L 3.390625 -3.765625 C 3.046875 -4.296875 2.65625 -4.53125 2.09375 -4.53125 C 1.03125 -4.53125 0.296875 -3.53125 0.296875 -2.125 C 0.296875 -1.390625 0.46875 -0.84375 0.84375 -0.40625 C 1.171875 -0.015625 1.59375 0.1875 2.046875 0.1875 C 2.578125 0.1875 2.953125 -0.046875 3.328125 -0.59375 L 3.328125 -0.375 C 3.328125 0.8125 3 1.25 2.125 1.25 C 1.53125 1.25 1.21875 1.015625 1.15625 0.5 L 0.4375 0.5 C 0.5 1.3125 1.15625 1.828125 2.109375 1.828125 C 2.75 1.828125 3.296875 1.625 3.578125 1.265625 C 3.921875 0.859375 4.046875 0.3125 4.046875 -0.71875 L 4.046875 -4.40625 Z M 2.171875 -3.890625 C 2.90625 -3.890625 3.328125 -3.265625 3.328125 -2.140625 C 3.328125 -1.078125 2.90625 -0.453125 2.171875 -0.453125 C 1.453125 -0.453125 1.03125 -1.078125 1.03125 -2.171875 C 1.03125 -3.25 1.453125 -3.890625 2.171875 -3.890625 Z M 2.171875 -3.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 0.59375 -6.125 L 0.59375 0 L 1.28125 0 L 1.28125 -2.421875 C 1.28125 -3.328125 1.75 -3.921875 2.484375 -3.921875 C 2.71875 -3.921875 2.9375 -3.84375 3.109375 -3.71875 C 3.296875 -3.578125 3.390625 -3.359375 3.390625 -3.046875 L 3.390625 0 L 4.078125 0 L 4.078125 -3.328125 C 4.078125 -4.0625 3.5625 -4.53125 2.703125 -4.53125 C 2.078125 -4.53125 1.703125 -4.34375 1.28125 -3.796875 L 1.28125 -6.125 Z M 0.59375 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 0.671875 0 L 3.4375 0 C 4.015625 0 4.4375 -0.15625 4.765625 -0.515625 C 5.0625 -0.828125 5.234375 -1.265625 5.234375 -1.75 C 5.234375 -2.484375 4.90625 -2.9375 4.125 -3.234375 C 4.6875 -3.5 4.96875 -3.9375 4.96875 -4.578125 C 4.96875 -5.03125 4.796875 -5.40625 4.484375 -5.703125 C 4.15625 -6 3.734375 -6.125 3.15625 -6.125 L 0.671875 -6.125 Z M 1.453125 -3.484375 L 1.453125 -5.4375 L 2.953125 -5.4375 C 3.390625 -5.4375 3.640625 -5.375 3.84375 -5.21875 C 4.0625 -5.046875 4.1875 -4.796875 4.1875 -4.46875 C 4.1875 -4.125 4.0625 -3.875 3.84375 -3.703125 C 3.640625 -3.546875 3.390625 -3.484375 2.953125 -3.484375 Z M 1.453125 -0.6875 L 1.453125 -2.796875 L 3.359375 -2.796875 C 4.046875 -2.796875 4.453125 -2.40625 4.453125 -1.734375 C 4.453125 -1.078125 4.046875 -0.6875 3.359375 -0.6875 Z M 1.453125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-30">
<path style="stroke:none;" d="M 4.046875 0 L 4.046875 -4.40625 L 3.359375 -4.40625 L 3.359375 -1.90625 C 3.359375 -1.015625 2.890625 -0.421875 2.15625 -0.421875 C 1.59375 -0.421875 1.25 -0.75 1.25 -1.28125 L 1.25 -4.40625 L 0.546875 -4.40625 L 0.546875 -1.015625 C 0.546875 -0.28125 1.09375 0.1875 1.953125 0.1875 C 2.59375 0.1875 3.015625 -0.03125 3.421875 -0.609375 L 3.421875 0 Z M 4.046875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-31">
<path style="stroke:none;" d="M 0.453125 1.828125 L 1.15625 1.828125 L 1.15625 -0.46875 C 1.53125 -0.015625 1.9375 0.1875 2.515625 0.1875 C 3.65625 0.1875 4.390625 -0.71875 4.390625 -2.125 C 4.390625 -3.609375 3.671875 -4.53125 2.5 -4.53125 C 1.90625 -4.53125 1.421875 -4.265625 1.09375 -3.734375 L 1.09375 -4.40625 L 0.453125 -4.40625 Z M 2.390625 -3.875 C 3.15625 -3.875 3.671875 -3.1875 3.671875 -2.140625 C 3.671875 -1.140625 3.15625 -0.46875 2.390625 -0.46875 C 1.640625 -0.46875 1.15625 -1.140625 1.15625 -2.171875 C 1.15625 -3.203125 1.640625 -3.875 2.390625 -3.875 Z M 2.390625 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-32">
<path style="stroke:none;" d="M 1.5625 -2.640625 L 3.578125 -2.640625 C 4.28125 -2.640625 4.59375 -2.296875 4.59375 -1.546875 L 4.578125 -1 C 4.578125 -0.625 4.65625 -0.25 4.765625 0 L 5.703125 0 L 5.703125 -0.1875 C 5.40625 -0.390625 5.359375 -0.609375 5.34375 -1.421875 C 5.328125 -2.4375 5.171875 -2.734375 4.5 -3.03125 C 5.1875 -3.375 5.46875 -3.78125 5.46875 -4.484375 C 5.46875 -5.546875 4.8125 -6.125 3.609375 -6.125 L 0.78125 -6.125 L 0.78125 0 L 1.5625 0 Z M 1.5625 -3.328125 L 1.5625 -5.4375 L 3.453125 -5.4375 C 3.890625 -5.4375 4.140625 -5.375 4.34375 -5.203125 C 4.546875 -5.03125 4.65625 -4.75 4.65625 -4.390625 C 4.65625 -3.65625 4.28125 -3.328125 3.453125 -3.328125 Z M 1.5625 -3.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-33">
<path style="stroke:none;" d="M 3.265625 -6.234375 C 1.515625 -6.234375 0.3125 -4.9375 0.3125 -3.015625 C 0.3125 -1.09375 1.5 0.1875 3.28125 0.1875 C 4.03125 0.1875 4.6875 -0.03125 5.171875 -0.453125 C 5.84375 -1.015625 6.234375 -1.96875 6.234375 -2.96875 C 6.234375 -4.9375 5.0625 -6.234375 3.265625 -6.234375 Z M 3.265625 -5.546875 C 4.59375 -5.546875 5.453125 -4.546875 5.453125 -2.984375 C 5.453125 -1.5 4.578125 -0.5 3.28125 -0.5 C 1.96875 -0.5 1.09375 -1.5 1.09375 -3.015625 C 1.09375 -4.53125 1.96875 -5.546875 3.265625 -5.546875 Z M 3.265625 -5.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-34">
<path style="stroke:none;" d="M 2.390625 -2.625 L 0.390625 -2.625 L 0.390625 -2.015625 L 2.390625 -2.015625 Z M 2.390625 -2.625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-35">
<path style="stroke:none;" d="M 3.25 -2.40625 L 5.5625 -6.125 L 4.625 -6.125 L 2.875 -3.140625 L 1.078125 -6.125 L 0.109375 -6.125 L 2.46875 -2.40625 L 2.46875 0 L 3.25 0 Z M 3.25 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-36">
<path style="stroke:none;" d="M 4.65625 0 L 5.953125 -4.40625 L 5.15625 -4.40625 L 4.28125 -0.96875 L 3.421875 -4.40625 L 2.5625 -4.40625 L 1.71875 -0.96875 L 0.828125 -4.40625 L 0.046875 -4.40625 L 1.328125 0 L 2.125 0 L 2.96875 -3.453125 L 3.859375 0 Z M 4.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-37">
<path style="stroke:none;" d="M 2.96875 -5.4375 L 4.984375 -5.4375 L 4.984375 -6.125 L 0.171875 -6.125 L 0.171875 -5.4375 L 2.1875 -5.4375 L 2.1875 0 L 2.96875 0 Z M 2.96875 -5.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-38">
<path style="stroke:none;" d="M 3.296875 0 L 5.421875 -6.125 L 4.59375 -6.125 L 2.890625 -0.9375 L 1.09375 -6.125 L 0.25 -6.125 L 2.453125 0 Z M 3.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-39">
<path style="stroke:none;" d="M 1.625 -6.125 L 0.84375 -6.125 L 0.84375 0 L 1.625 0 Z M 1.625 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-40">
<path style="stroke:none;" d="M 2.171875 -4.40625 L 1.4375 -4.40625 L 1.4375 -5.09375 C 1.4375 -5.390625 1.59375 -5.546875 1.921875 -5.546875 C 1.984375 -5.546875 2.015625 -5.546875 2.171875 -5.53125 L 2.171875 -6.109375 C 2.015625 -6.140625 1.921875 -6.15625 1.78125 -6.15625 C 1.125 -6.15625 0.734375 -5.78125 0.734375 -5.15625 L 0.734375 -4.40625 L 0.15625 -4.40625 L 0.15625 -3.828125 L 0.734375 -3.828125 L 0.734375 0 L 1.4375 0 L 1.4375 -3.828125 L 2.171875 -3.828125 Z M 2.171875 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-41">
<path style="stroke:none;" d="M 3.9375 0 L 5.65625 -5.140625 L 5.65625 0 L 6.390625 0 L 6.390625 -6.125 L 5.3125 -6.125 L 3.53125 -0.796875 L 1.71875 -6.125 L 0.625 -6.125 L 0.625 0 L 1.375 0 L 1.375 -5.140625 L 3.109375 0 Z M 3.9375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-42">
<path style="stroke:none;" d="M 1.53125 -2.796875 L 4.875 -2.796875 L 4.875 -3.484375 L 1.53125 -3.484375 L 1.53125 -5.4375 L 5 -5.4375 L 5 -6.125 L 0.75 -6.125 L 0.75 0 L 5.15625 0 L 5.15625 -0.6875 L 1.53125 -0.6875 Z M 1.53125 -2.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-43">
<path style="stroke:none;" d="M 4.859375 1.0625 L -0.1875 1.0625 L -0.1875 1.484375 L 4.859375 1.484375 Z M 4.859375 1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-44">
<path style="stroke:none;" d="M 0.59375 -4.40625 L 0.59375 0.640625 C 0.59375 1.078125 0.453125 1.21875 0.015625 1.21875 C -0.03125 1.21875 -0.0625 1.21875 -0.15625 1.203125 L -0.15625 1.8125 C -0.0625 1.828125 -0.03125 1.828125 0.078125 1.828125 C 0.875 1.828125 1.28125 1.515625 1.28125 0.921875 L 1.28125 -4.40625 Z M 1.28125 -6.125 L 0.59375 -6.125 L 0.59375 -5.25 L 1.28125 -5.25 Z M 1.28125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-45">
<path style="stroke:none;" d="M 0.453125 -6.125 L 0.453125 0 L 1.078125 0 L 1.078125 -0.5625 C 1.421875 -0.046875 1.859375 0.1875 2.484375 0.1875 C 3.640625 0.1875 4.390625 -0.75 4.390625 -2.21875 C 4.390625 -3.640625 3.6875 -4.53125 2.515625 -4.53125 C 1.90625 -4.53125 1.484375 -4.296875 1.15625 -3.8125 L 1.15625 -6.125 Z M 2.375 -3.875 C 3.15625 -3.875 3.671875 -3.1875 3.671875 -2.140625 C 3.671875 -1.140625 3.140625 -0.46875 2.375 -0.46875 C 1.625 -0.46875 1.15625 -1.140625 1.15625 -2.171875 C 1.15625 -3.203125 1.625 -3.875 2.375 -3.875 Z M 2.375 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-46">
<path style="stroke:none;" d="M 2.125 -4.40625 L 1.390625 -4.40625 L 1.390625 -5.09375 C 1.390625 -5.390625 1.546875 -5.546875 1.875 -5.546875 C 1.9375 -5.546875 1.953125 -5.546875 2.125 -5.53125 L 2.125 -6.109375 C 1.953125 -6.140625 1.859375 -6.15625 1.71875 -6.15625 C 1.078125 -6.15625 0.6875 -5.78125 0.6875 -5.15625 L 0.6875 -4.40625 L 0.09375 -4.40625 L 0.09375 -3.828125 L 0.6875 -3.828125 L 0.6875 0 L 1.390625 0 L 1.390625 -3.828125 L 2.125 -3.828125 Z M 3.671875 -4.40625 L 2.96875 -4.40625 L 2.96875 0 L 3.671875 0 Z M 3.671875 -6.125 L 2.96875 -6.125 L 2.96875 -5.25 L 3.671875 -5.25 Z M 3.671875 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-47">
<path style="stroke:none;" d="M 3.984375 -1.84375 L 4.609375 0 L 5.484375 0 L 3.34375 -6.125 L 2.328125 -6.125 L 0.140625 0 L 0.96875 0 L 1.625 -1.84375 Z M 3.765625 -2.5 L 1.8125 -2.5 L 2.828125 -5.28125 Z M 3.765625 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-48">
<path style="stroke:none;" d="M 1.53125 -2.796875 L 4.46875 -2.796875 L 4.46875 -3.484375 L 1.53125 -3.484375 L 1.53125 -5.4375 L 4.859375 -5.4375 L 4.859375 -6.125 L 0.75 -6.125 L 0.75 0 L 1.53125 0 Z M 1.53125 -2.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-49">
<path style="stroke:none;" d="M 4.890625 -6.125 L 0.46875 -6.125 L 0.46875 -5.4375 L 3.921875 -5.4375 L 0.234375 -0.6875 L 0.234375 0 L 4.90625 0 L 4.90625 -0.6875 L 1.21875 -0.6875 L 4.890625 -5.421875 Z M 4.890625 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-50">
<path style="stroke:none;" d="M 2.390625 0 L 4.078125 -4.40625 L 3.296875 -4.40625 L 2.046875 -0.828125 L 0.875 -4.40625 L 0.078125 -4.40625 L 1.625 0 Z M 2.390625 0 "/>
</symbol>
</g>
</defs>
<g id="surface7">
<rect x="0" y="0" width="705" height="648" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.023438" y="68.123047"/>
<use xlink:href="#glyph0-2" x="22.023438" y="68.123047"/>
<use xlink:href="#glyph0-3" x="27.023438" y="68.123047"/>
<use xlink:href="#glyph0-4" x="31.023438" y="68.123047"/>
<use xlink:href="#glyph0-5" x="33.023438" y="68.123047"/>
<use xlink:href="#glyph0-6" x="38.023438" y="68.123047"/>
<use xlink:href="#glyph0-7" x="40.023438" y="68.123047"/>
<use xlink:href="#glyph0-8" x="42.023438" y="68.123047"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="17.023438" y="99.603516"/>
<use xlink:href="#glyph0-2" x="23.023438" y="99.603516"/>
<use xlink:href="#glyph0-10" x="28.023438" y="99.603516"/>
<use xlink:href="#glyph0-11" x="31.023438" y="99.603516"/>
<use xlink:href="#glyph0-7" x="35.023438" y="99.603516"/>
<use xlink:href="#glyph0-12" x="37.023438" y="99.603516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="17.023438" y="131.087891"/>
<use xlink:href="#glyph0-2" x="23.023438" y="131.087891"/>
<use xlink:href="#glyph0-10" x="28.023438" y="131.087891"/>
<use xlink:href="#glyph0-11" x="31.023438" y="131.087891"/>
<use xlink:href="#glyph0-7" x="35.023438" y="131.087891"/>
<use xlink:href="#glyph0-13" x="37.023438" y="131.087891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="17.023438" y="162.568359"/>
<use xlink:href="#glyph0-5" x="23.023438" y="162.568359"/>
<use xlink:href="#glyph0-4" x="28.023438" y="162.568359"/>
<use xlink:href="#glyph0-7" x="30.023438" y="162.568359"/>
<use xlink:href="#glyph0-12" x="32.023438" y="162.568359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="17.023438" y="194.048828"/>
<use xlink:href="#glyph0-5" x="23.023438" y="194.048828"/>
<use xlink:href="#glyph0-4" x="28.023438" y="194.048828"/>
<use xlink:href="#glyph0-7" x="30.023438" y="194.048828"/>
<use xlink:href="#glyph0-13" x="32.023438" y="194.048828"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="17.023438" y="225.529297"/>
<use xlink:href="#glyph0-2" x="25.023438" y="225.529297"/>
<use xlink:href="#glyph0-10" x="30.023438" y="225.529297"/>
<use xlink:href="#glyph0-16" x="33.023438" y="225.529297"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="17.023438" y="257.013672"/>
<use xlink:href="#glyph0-18" x="23.023438" y="257.013672"/>
<use xlink:href="#glyph0-6" x="28.023438" y="257.013672"/>
<use xlink:href="#glyph0-19" x="30.023438" y="257.013672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="17.023438" y="288.494141"/>
<use xlink:href="#glyph0-2" x="23.023438" y="288.494141"/>
<use xlink:href="#glyph0-10" x="28.023438" y="288.494141"/>
<use xlink:href="#glyph0-16" x="31.023438" y="288.494141"/>
<use xlink:href="#glyph0-18" x="38.023438" y="288.494141"/>
<use xlink:href="#glyph0-21" x="43.023438" y="288.494141"/>
<use xlink:href="#glyph0-22" x="48.023438" y="288.494141"/>
<use xlink:href="#glyph0-23" x="50.023438" y="288.494141"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="17.023438" y="319.974609"/>
<use xlink:href="#glyph0-24" x="23.023438" y="319.974609"/>
<use xlink:href="#glyph0-21" x="27.023438" y="319.974609"/>
<use xlink:href="#glyph0-2" x="32.023438" y="319.974609"/>
<use xlink:href="#glyph0-16" x="37.023438" y="319.974609"/>
<use xlink:href="#glyph0-22" x="44.023438" y="319.974609"/>
<use xlink:href="#glyph0-23" x="46.023438" y="319.974609"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="17.023438" y="351.455078"/>
<use xlink:href="#glyph0-10" x="24.023438" y="351.455078"/>
<use xlink:href="#glyph0-2" x="27.023438" y="351.455078"/>
<use xlink:href="#glyph0-24" x="31.023438" y="351.455078"/>
<use xlink:href="#glyph0-3" x="35.023438" y="351.455078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="17.023438" y="382.939453"/>
<use xlink:href="#glyph0-22" x="22.023438" y="382.939453"/>
<use xlink:href="#glyph0-27" x="24.023438" y="382.939453"/>
<use xlink:href="#glyph0-28" x="29.023438" y="382.939453"/>
<use xlink:href="#glyph0-4" x="34.023438" y="382.939453"/>
<use xlink:href="#glyph0-7" x="36.023438" y="382.939453"/>
<use xlink:href="#glyph0-25" x="38.023438" y="382.939453"/>
<use xlink:href="#glyph0-10" x="45.023438" y="382.939453"/>
<use xlink:href="#glyph0-2" x="48.023438" y="382.939453"/>
<use xlink:href="#glyph0-24" x="52.023438" y="382.939453"/>
<use xlink:href="#glyph0-3" x="56.023438" y="382.939453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="17.023438" y="414.419922"/>
<use xlink:href="#glyph0-6" x="23.023438" y="414.419922"/>
<use xlink:href="#glyph0-30" x="25.023438" y="414.419922"/>
<use xlink:href="#glyph0-5" x="30.023438" y="414.419922"/>
<use xlink:href="#glyph0-3" x="35.023438" y="414.419922"/>
<use xlink:href="#glyph0-7" x="39.023438" y="414.419922"/>
<use xlink:href="#glyph0-12" x="41.023438" y="414.419922"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="17.023438" y="445.900391"/>
<use xlink:href="#glyph0-6" x="23.023438" y="445.900391"/>
<use xlink:href="#glyph0-30" x="25.023438" y="445.900391"/>
<use xlink:href="#glyph0-5" x="30.023438" y="445.900391"/>
<use xlink:href="#glyph0-3" x="35.023438" y="445.900391"/>
<use xlink:href="#glyph0-7" x="39.023438" y="445.900391"/>
<use xlink:href="#glyph0-13" x="41.023438" y="445.900391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.023438" y="477.380859"/>
<use xlink:href="#glyph0-30" x="23.023438" y="477.380859"/>
<use xlink:href="#glyph0-10" x="28.023438" y="477.380859"/>
<use xlink:href="#glyph0-31" x="31.023438" y="477.380859"/>
<use xlink:href="#glyph0-6" x="36.023438" y="477.380859"/>
<use xlink:href="#glyph0-5" x="38.023438" y="477.380859"/>
<use xlink:href="#glyph0-3" x="43.023438" y="477.380859"/>
<use xlink:href="#glyph0-7" x="47.023438" y="477.380859"/>
<use xlink:href="#glyph0-12" x="49.023438" y="477.380859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.023438" y="508.865234"/>
<use xlink:href="#glyph0-30" x="23.023438" y="508.865234"/>
<use xlink:href="#glyph0-10" x="28.023438" y="508.865234"/>
<use xlink:href="#glyph0-31" x="31.023438" y="508.865234"/>
<use xlink:href="#glyph0-6" x="36.023438" y="508.865234"/>
<use xlink:href="#glyph0-5" x="38.023438" y="508.865234"/>
<use xlink:href="#glyph0-3" x="43.023438" y="508.865234"/>
<use xlink:href="#glyph0-7" x="47.023438" y="508.865234"/>
<use xlink:href="#glyph0-13" x="49.023438" y="508.865234"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="17.023438" y="540.345703"/>
<use xlink:href="#glyph0-5" x="23.023438" y="540.345703"/>
<use xlink:href="#glyph0-19" x="28.023438" y="540.345703"/>
<use xlink:href="#glyph0-3" x="33.023438" y="540.345703"/>
<use xlink:href="#glyph0-7" x="37.023438" y="540.345703"/>
<use xlink:href="#glyph0-12" x="39.023438" y="540.345703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="17.023438" y="571.826172"/>
<use xlink:href="#glyph0-5" x="23.023438" y="571.826172"/>
<use xlink:href="#glyph0-19" x="28.023438" y="571.826172"/>
<use xlink:href="#glyph0-3" x="33.023438" y="571.826172"/>
<use xlink:href="#glyph0-7" x="37.023438" y="571.826172"/>
<use xlink:href="#glyph0-13" x="39.023438" y="571.826172"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,77.254902%,81.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 72.148438 L 30.355469 72.148438 L 30.355469 87.890625 L 17.023438 87.890625 Z M 17.023438 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,83.137255%,65.882353%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 72.148438 L 43.6875 72.148438 L 43.6875 87.890625 L 30.355469 87.890625 Z M 30.355469 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(65.882353%,88.235294%,74.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 72.148438 L 57.023438 72.148438 L 57.023438 87.890625 L 43.691406 87.890625 Z M 43.691406 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(64.313725%,86.666667%,93.72549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 72.148438 L 70.355469 72.148438 L 70.355469 87.890625 L 57.023438 87.890625 Z M 57.023438 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(89.411765%,79.607843%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 72.148438 L 83.6875 72.148438 L 83.6875 87.890625 L 70.355469 87.890625 Z M 70.355469 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(78.431373%,47.843137%,54.117647%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 103.628906 L 30.355469 103.628906 L 30.355469 119.371094 L 17.023438 119.371094 Z M 17.023438 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(63.529412%,56.470588%,28.235294%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 103.628906 L 43.6875 103.628906 L 43.6875 119.371094 L 30.355469 119.371094 Z M 30.355469 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(27.058824%,63.529412%,44.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 103.628906 L 57.023438 103.628906 L 57.023438 119.371094 L 43.691406 119.371094 Z M 43.691406 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(16.470588%,61.960784%,70.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 103.628906 L 70.355469 103.628906 L 70.355469 119.371094 L 57.023438 119.371094 Z M 57.023438 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(65.490196%,50.980392%,76.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 103.628906 L 83.6875 103.628906 L 83.6875 119.371094 L 70.355469 119.371094 Z M 70.355469 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(88.235294%,41.568627%,52.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 135.109375 L 30.355469 135.109375 L 30.355469 150.851562 L 17.023438 150.851562 Z M 17.023438 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(66.666667%,56.470588%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 135.109375 L 43.6875 135.109375 L 43.6875 150.851562 L 30.355469 150.851562 Z M 30.355469 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,66.666667%,35.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 135.109375 L 57.023438 135.109375 L 57.023438 150.851562 L 43.691406 150.851562 Z M 43.691406 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,65.098039%,79.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 135.109375 L 70.355469 135.109375 L 70.355469 150.851562 L 57.023438 150.851562 Z M 57.023438 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(71.372549%,45.882353%,87.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 135.109375 L 83.6875 135.109375 L 83.6875 150.851562 L 70.355469 150.851562 Z M 70.355469 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,56.470588%,64.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 166.59375 L 30.355469 166.59375 L 30.355469 182.335938 L 17.023438 182.335938 Z M 17.023438 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(75.294118%,67.058824%,32.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 166.59375 L 43.6875 166.59375 L 43.6875 182.335938 L 30.355469 182.335938 Z M 30.355469 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(30.980392%,74.901961%,52.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 166.59375 L 57.023438 166.59375 L 57.023438 182.335938 L 43.691406 182.335938 Z M 43.691406 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(15.686275%,73.333333%,84.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 166.59375 L 70.355469 166.59375 L 70.355469 182.335938 L 57.023438 182.335938 Z M 57.023438 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(77.647059%,60%,90.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 166.59375 L 83.6875 166.59375 L 83.6875 182.335938 L 70.355469 182.335938 Z M 70.355469 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,70.196078%,70.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 198.074219 L 30.355469 198.074219 L 30.355469 213.816406 L 17.023438 213.816406 Z M 17.023438 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(81.176471%,78.823529%,50.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 198.074219 L 43.6875 198.074219 L 43.6875 213.816406 L 30.355469 213.816406 Z M 30.355469 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(46.27451%,85.098039%,69.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 198.074219 L 57.023438 198.074219 L 57.023438 213.816406 L 43.691406 213.816406 Z M 43.691406 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(52.156863%,81.568627%,94.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 198.074219 L 70.355469 198.074219 L 70.355469 213.816406 L 57.023438 213.816406 Z M 57.023438 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(90.588235%,70.980392%,96.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 198.074219 L 83.6875 198.074219 L 83.6875 213.816406 L 70.355469 213.816406 Z M 70.355469 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(67.058824%,69.019608%,39.607843%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 229.554688 L 30.355469 229.554688 L 30.355469 245.296875 L 17.023438 245.296875 Z M 17.023438 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,65.490196%,42.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 229.554688 L 43.6875 229.554688 L 43.6875 245.296875 L 30.355469 245.296875 Z M 30.355469 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(85.882353%,61.568627%,52.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 229.554688 L 57.023438 229.554688 L 57.023438 245.296875 L 43.691406 245.296875 Z M 43.691406 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(89.411765%,58.431373%,64.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 229.554688 L 70.355469 229.554688 L 70.355469 245.296875 L 57.023438 245.296875 Z M 57.023438 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(87.843137%,57.647059%,76.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 229.554688 L 83.6875 229.554688 L 83.6875 245.296875 L 70.355469 245.296875 Z M 70.355469 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(67.45098%,64.313725%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 261.035156 L 30.355469 261.035156 L 30.355469 276.777344 L 17.023438 276.777344 Z M 17.023438 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,69.019608%,86.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 261.035156 L 43.6875 261.035156 L 43.6875 276.777344 L 30.355469 276.777344 Z M 30.355469 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(29.803922%,72.54902%,80%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 261.035156 L 57.023438 261.035156 L 57.023438 276.777344 L 43.691406 276.777344 Z M 43.691406 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(22.352941%,74.509804%,69.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 261.035156 L 70.355469 261.035156 L 70.355469 276.777344 L 57.023438 276.777344 Z M 57.023438 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(36.078431%,74.117647%,57.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 261.035156 L 83.6875 261.035156 L 83.6875 276.777344 L 70.355469 276.777344 Z M 70.355469 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,65.490196%,42.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 292.519531 L 30.355469 292.519531 L 30.355469 308.261719 L 17.023438 308.261719 Z M 17.023438 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(60%,70.980392%,41.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 292.519531 L 43.6875 292.519531 L 43.6875 308.261719 L 30.355469 308.261719 Z M 30.355469 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(36.078431%,74.117647%,57.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 292.519531 L 57.023438 292.519531 L 57.023438 308.261719 L 43.691406 308.261719 Z M 43.691406 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(23.137255%,73.72549%,74.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 292.519531 L 70.355469 292.519531 L 70.355469 308.261719 L 57.023438 308.261719 Z M 57.023438 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,69.019608%,86.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 292.519531 L 83.6875 292.519531 L 83.6875 308.261719 L 70.355469 308.261719 Z M 70.355469 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(85.882353%,61.568627%,52.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 324 L 30.355469 324 L 30.355469 339.742188 L 17.023438 339.742188 Z M 17.023438 324 "/>
<path style="fill-rule:nonzero;fill:rgb(61.568627%,70.588235%,41.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 324 L 43.6875 324 L 43.6875 339.742188 L 30.355469 339.742188 Z M 30.355469 324 "/>
<path style="fill-rule:nonzero;fill:rgb(23.921569%,74.509804%,67.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 324 L 57.023438 324 L 57.023438 339.742188 L 43.691406 339.742188 Z M 43.691406 324 "/>
<path style="fill-rule:nonzero;fill:rgb(52.941176%,68.235294%,87.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 324 L 70.355469 324 L 70.355469 339.742188 L 57.023438 339.742188 Z M 57.023438 324 "/>
<path style="fill-rule:nonzero;fill:rgb(85.490196%,58.431373%,80%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 324 L 83.6875 324 L 83.6875 339.742188 L 70.355469 339.742188 Z M 70.355469 324 "/>
<path style="fill-rule:nonzero;fill:rgb(10.588235%,10.588235%,10.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 355.480469 L 30.355469 355.480469 L 30.355469 371.222656 L 17.023438 371.222656 Z M 17.023438 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(34.509804%,34.509804%,34.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 355.480469 L 43.6875 355.480469 L 43.6875 371.222656 L 30.355469 371.222656 Z M 30.355469 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(58.823529%,58.823529%,58.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 355.480469 L 57.023438 355.480469 L 57.023438 371.222656 L 43.691406 371.222656 Z M 43.691406 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(81.568627%,81.568627%,81.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 355.480469 L 70.355469 355.480469 L 70.355469 371.222656 L 57.023438 371.222656 Z M 57.023438 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 355.480469 L 83.6875 355.480469 L 83.6875 371.222656 L 70.355469 371.222656 Z M 70.355469 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(27.843137%,27.843137%,27.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 386.964844 L 30.355469 386.964844 L 30.355469 402.707031 L 17.023438 402.707031 Z M 17.023438 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(47.843137%,47.843137%,47.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 386.964844 L 43.6875 386.964844 L 43.6875 402.707031 L 30.355469 402.707031 Z M 30.355469 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(65.882353%,65.882353%,65.882353%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 386.964844 L 57.023438 386.964844 L 57.023438 402.707031 L 43.691406 402.707031 Z M 43.691406 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(80.392157%,80.392157%,80.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 386.964844 L 70.355469 386.964844 L 70.355469 402.707031 L 57.023438 402.707031 Z M 57.023438 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,88.627451%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 386.964844 L 83.6875 386.964844 L 83.6875 402.707031 L 70.355469 402.707031 Z M 70.355469 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,24.705882%,64.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 418.445312 L 30.355469 418.445312 L 30.355469 434.1875 L 17.023438 434.1875 Z M 17.023438 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(41.568627%,46.27451%,69.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 418.445312 L 43.6875 418.445312 L 43.6875 434.1875 L 30.355469 434.1875 Z M 30.355469 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(63.137255%,65.098039%,78.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 418.445312 L 57.023438 418.445312 L 57.023438 434.1875 L 43.691406 434.1875 Z M 43.691406 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,80.392157%,85.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 418.445312 L 70.355469 418.445312 L 70.355469 434.1875 L 57.023438 434.1875 Z M 57.023438 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,88.627451%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 418.445312 L 83.6875 418.445312 L 83.6875 434.1875 L 70.355469 434.1875 Z M 70.355469 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,21.176471%,42.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 449.925781 L 30.355469 449.925781 L 30.355469 465.667969 L 17.023438 465.667969 Z M 17.023438 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,44.705882%,70.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 449.925781 L 43.6875 449.925781 L 43.6875 465.667969 L 30.355469 465.667969 Z M 30.355469 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(47.45098%,67.058824%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 449.925781 L 57.023438 449.925781 L 57.023438 465.667969 L 43.691406 465.667969 Z M 43.691406 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(76.470588%,85.882353%,99.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 449.925781 L 70.355469 449.925781 L 70.355469 465.667969 L 57.023438 465.667969 Z M 57.023438 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 449.925781 L 83.6875 449.925781 L 83.6875 465.667969 L 70.355469 465.667969 Z M 70.355469 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(23.529412%,14.901961%,57.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 481.40625 L 30.355469 481.40625 L 30.355469 497.148438 L 17.023438 497.148438 Z M 17.023438 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(42.352941%,39.215686%,63.529412%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 481.40625 L 43.6875 481.40625 L 43.6875 497.148438 L 30.355469 497.148438 Z M 30.355469 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(61.568627%,59.607843%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 481.40625 L 57.023438 481.40625 L 57.023438 497.148438 L 43.691406 497.148438 Z M 43.691406 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,78.823529%,85.490196%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 481.40625 L 70.355469 481.40625 L 70.355469 497.148438 L 57.023438 497.148438 Z M 57.023438 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 481.40625 L 83.6875 481.40625 L 83.6875 497.148438 L 70.355469 497.148438 Z M 70.355469 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(19.215686%,13.333333%,44.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 512.890625 L 30.355469 512.890625 L 30.355469 528.632812 L 17.023438 528.632812 Z M 17.023438 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(42.745098%,37.647059%,73.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 512.890625 L 43.6875 512.890625 L 43.6875 528.632812 L 30.355469 528.632812 Z M 30.355469 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(65.490196%,62.352941%,88.235294%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 512.890625 L 57.023438 512.890625 L 57.023438 528.632812 L 43.691406 528.632812 Z M 43.691406 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(85.490196%,83.921569%,98.039216%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 512.890625 L 70.355469 512.890625 L 70.355469 528.632812 L 57.023438 528.632812 Z M 57.023438 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 512.890625 L 83.6875 512.890625 L 83.6875 528.632812 L 70.355469 528.632812 Z M 70.355469 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(49.803922%,0%,5.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 544.371094 L 30.355469 544.371094 L 30.355469 560.113281 L 17.023438 560.113281 Z M 17.023438 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(66.27451%,33.72549%,35.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 544.371094 L 43.6875 544.371094 L 43.6875 560.113281 L 30.355469 560.113281 Z M 30.355469 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(79.215686%,58.039216%,58.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 544.371094 L 57.023438 544.371094 L 57.023438 560.113281 L 43.691406 560.113281 Z M 43.691406 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,79.607843%,79.607843%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 544.371094 L 70.355469 544.371094 L 70.355469 560.113281 L 57.023438 560.113281 Z M 57.023438 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 544.371094 L 83.6875 544.371094 L 83.6875 560.113281 L 70.355469 560.113281 Z M 70.355469 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(41.176471%,0%,4.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.023438 575.851562 L 30.355469 575.851562 L 30.355469 591.59375 L 17.023438 591.59375 Z M 17.023438 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(80%,10.980392%,18.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.355469 575.851562 L 43.6875 575.851562 L 43.6875 591.59375 L 30.355469 591.59375 Z M 30.355469 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,43.921569%,47.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.691406 575.851562 L 57.023438 575.851562 L 57.023438 591.59375 L 43.691406 591.59375 Z M 43.691406 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,74.509804%,75.686275%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.023438 575.851562 L 70.355469 575.851562 L 70.355469 591.59375 L 57.023438 591.59375 Z M 57.023438 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,96.470588%,96.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.355469 575.851562 L 83.6875 575.851562 L 83.6875 591.59375 L 70.355469 591.59375 Z M 70.355469 575.851562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="117.738281" y="68.123047"/>
<use xlink:href="#glyph0-10" x="124.738281" y="68.123047"/>
<use xlink:href="#glyph0-5" x="127.738281" y="68.123047"/>
<use xlink:href="#glyph0-5" x="132.738281" y="68.123047"/>
<use xlink:href="#glyph0-21" x="137.738281" y="68.123047"/>
<use xlink:href="#glyph0-3" x="142.738281" y="68.123047"/>
<use xlink:href="#glyph0-7" x="146.738281" y="68.123047"/>
<use xlink:href="#glyph0-12" x="148.738281" y="68.123047"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="117.738281" y="99.603516"/>
<use xlink:href="#glyph0-10" x="124.738281" y="99.603516"/>
<use xlink:href="#glyph0-5" x="127.738281" y="99.603516"/>
<use xlink:href="#glyph0-5" x="132.738281" y="99.603516"/>
<use xlink:href="#glyph0-21" x="137.738281" y="99.603516"/>
<use xlink:href="#glyph0-3" x="142.738281" y="99.603516"/>
<use xlink:href="#glyph0-7" x="146.738281" y="99.603516"/>
<use xlink:href="#glyph0-13" x="148.738281" y="99.603516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-33" x="117.738281" y="131.087891"/>
<use xlink:href="#glyph0-3" x="124.738281" y="131.087891"/>
<use xlink:href="#glyph0-6" x="128.738281" y="131.087891"/>
<use xlink:href="#glyph0-18" x="130.738281" y="131.087891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="117.738281" y="162.568359"/>
<use xlink:href="#glyph0-30" x="123.738281" y="162.568359"/>
<use xlink:href="#glyph0-10" x="128.738281" y="162.568359"/>
<use xlink:href="#glyph0-31" x="131.738281" y="162.568359"/>
<use xlink:href="#glyph0-6" x="136.738281" y="162.568359"/>
<use xlink:href="#glyph0-5" x="138.738281" y="162.568359"/>
<use xlink:href="#glyph0-34" x="143.738281" y="162.568359"/>
<use xlink:href="#glyph0-29" x="146.738281" y="162.568359"/>
<use xlink:href="#glyph0-6" x="152.738281" y="162.568359"/>
<use xlink:href="#glyph0-30" x="154.738281" y="162.568359"/>
<use xlink:href="#glyph0-5" x="159.738281" y="162.568359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="117.738281" y="194.048828"/>
<use xlink:href="#glyph0-5" x="123.738281" y="194.048828"/>
<use xlink:href="#glyph0-19" x="128.738281" y="194.048828"/>
<use xlink:href="#glyph0-34" x="133.738281" y="194.048828"/>
<use xlink:href="#glyph0-1" x="136.738281" y="194.048828"/>
<use xlink:href="#glyph0-30" x="142.738281" y="194.048828"/>
<use xlink:href="#glyph0-10" x="147.738281" y="194.048828"/>
<use xlink:href="#glyph0-31" x="150.738281" y="194.048828"/>
<use xlink:href="#glyph0-6" x="155.738281" y="194.048828"/>
<use xlink:href="#glyph0-5" x="157.738281" y="194.048828"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="117.738281" y="225.529297"/>
<use xlink:href="#glyph0-5" x="123.738281" y="225.529297"/>
<use xlink:href="#glyph0-19" x="128.738281" y="225.529297"/>
<use xlink:href="#glyph0-34" x="133.738281" y="225.529297"/>
<use xlink:href="#glyph0-29" x="136.738281" y="225.529297"/>
<use xlink:href="#glyph0-6" x="142.738281" y="225.529297"/>
<use xlink:href="#glyph0-30" x="144.738281" y="225.529297"/>
<use xlink:href="#glyph0-5" x="149.738281" y="225.529297"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="117.738281" y="257.013672"/>
<use xlink:href="#glyph0-30" x="123.738281" y="257.013672"/>
<use xlink:href="#glyph0-10" x="128.738281" y="257.013672"/>
<use xlink:href="#glyph0-31" x="131.738281" y="257.013672"/>
<use xlink:href="#glyph0-6" x="136.738281" y="257.013672"/>
<use xlink:href="#glyph0-5" x="138.738281" y="257.013672"/>
<use xlink:href="#glyph0-34" x="143.738281" y="257.013672"/>
<use xlink:href="#glyph0-33" x="146.738281" y="257.013672"/>
<use xlink:href="#glyph0-10" x="153.738281" y="257.013672"/>
<use xlink:href="#glyph0-2" x="156.738281" y="257.013672"/>
<use xlink:href="#glyph0-21" x="161.738281" y="257.013672"/>
<use xlink:href="#glyph0-27" x="166.738281" y="257.013672"/>
<use xlink:href="#glyph0-5" x="171.738281" y="257.013672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="117.738281" y="288.494141"/>
<use xlink:href="#glyph0-30" x="123.738281" y="288.494141"/>
<use xlink:href="#glyph0-10" x="128.738281" y="288.494141"/>
<use xlink:href="#glyph0-31" x="131.738281" y="288.494141"/>
<use xlink:href="#glyph0-6" x="136.738281" y="288.494141"/>
<use xlink:href="#glyph0-5" x="138.738281" y="288.494141"/>
<use xlink:href="#glyph0-34" x="143.738281" y="288.494141"/>
<use xlink:href="#glyph0-35" x="145.738281" y="288.494141"/>
<use xlink:href="#glyph0-5" x="150.738281" y="288.494141"/>
<use xlink:href="#glyph0-6" x="155.738281" y="288.494141"/>
<use xlink:href="#glyph0-6" x="157.738281" y="288.494141"/>
<use xlink:href="#glyph0-18" x="159.738281" y="288.494141"/>
<use xlink:href="#glyph0-36" x="164.738281" y="288.494141"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="117.738281" y="319.974609"/>
<use xlink:href="#glyph0-6" x="123.738281" y="319.974609"/>
<use xlink:href="#glyph0-30" x="125.738281" y="319.974609"/>
<use xlink:href="#glyph0-5" x="130.738281" y="319.974609"/>
<use xlink:href="#glyph0-34" x="135.738281" y="319.974609"/>
<use xlink:href="#glyph0-35" x="137.738281" y="319.974609"/>
<use xlink:href="#glyph0-5" x="142.738281" y="319.974609"/>
<use xlink:href="#glyph0-6" x="147.738281" y="319.974609"/>
<use xlink:href="#glyph0-6" x="149.738281" y="319.974609"/>
<use xlink:href="#glyph0-18" x="151.738281" y="319.974609"/>
<use xlink:href="#glyph0-36" x="156.738281" y="319.974609"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="117.738281" y="351.455078"/>
<use xlink:href="#glyph0-10" x="124.738281" y="351.455078"/>
<use xlink:href="#glyph0-5" x="127.738281" y="351.455078"/>
<use xlink:href="#glyph0-5" x="132.738281" y="351.455078"/>
<use xlink:href="#glyph0-21" x="137.738281" y="351.455078"/>
<use xlink:href="#glyph0-34" x="142.738281" y="351.455078"/>
<use xlink:href="#glyph0-35" x="144.738281" y="351.455078"/>
<use xlink:href="#glyph0-5" x="149.738281" y="351.455078"/>
<use xlink:href="#glyph0-6" x="154.738281" y="351.455078"/>
<use xlink:href="#glyph0-6" x="156.738281" y="351.455078"/>
<use xlink:href="#glyph0-18" x="158.738281" y="351.455078"/>
<use xlink:href="#glyph0-36" x="163.738281" y="351.455078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="117.738281" y="382.939453"/>
<use xlink:href="#glyph0-5" x="123.738281" y="382.939453"/>
<use xlink:href="#glyph0-19" x="128.738281" y="382.939453"/>
<use xlink:href="#glyph0-34" x="133.738281" y="382.939453"/>
<use xlink:href="#glyph0-35" x="135.738281" y="382.939453"/>
<use xlink:href="#glyph0-5" x="140.738281" y="382.939453"/>
<use xlink:href="#glyph0-6" x="145.738281" y="382.939453"/>
<use xlink:href="#glyph0-6" x="147.738281" y="382.939453"/>
<use xlink:href="#glyph0-18" x="149.738281" y="382.939453"/>
<use xlink:href="#glyph0-36" x="154.738281" y="382.939453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="117.738281" y="414.419922"/>
<use xlink:href="#glyph0-5" x="123.738281" y="414.419922"/>
<use xlink:href="#glyph0-2" x="128.738281" y="414.419922"/>
<use xlink:href="#glyph0-4" x="133.738281" y="414.419922"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="117.738281" y="445.900391"/>
<use xlink:href="#glyph0-5" x="123.738281" y="445.900391"/>
<use xlink:href="#glyph0-2" x="128.738281" y="445.900391"/>
<use xlink:href="#glyph0-4" x="133.738281" y="445.900391"/>
<use xlink:href="#glyph0-7" x="135.738281" y="445.900391"/>
<use xlink:href="#glyph0-12" x="137.738281" y="445.900391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="117.738281" y="477.380859"/>
<use xlink:href="#glyph0-5" x="121.738281" y="477.380859"/>
<use xlink:href="#glyph0-10" x="126.738281" y="477.380859"/>
<use xlink:href="#glyph0-10" x="129.738281" y="477.380859"/>
<use xlink:href="#glyph0-2" x="132.738281" y="477.380859"/>
<use xlink:href="#glyph0-22" x="137.738281" y="477.380859"/>
<use xlink:href="#glyph0-21" x="139.738281" y="477.380859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="117.738281" y="508.865234"/>
<use xlink:href="#glyph0-5" x="121.738281" y="508.865234"/>
<use xlink:href="#glyph0-10" x="126.738281" y="508.865234"/>
<use xlink:href="#glyph0-10" x="129.738281" y="508.865234"/>
<use xlink:href="#glyph0-2" x="132.738281" y="508.865234"/>
<use xlink:href="#glyph0-22" x="137.738281" y="508.865234"/>
<use xlink:href="#glyph0-21" x="139.738281" y="508.865234"/>
<use xlink:href="#glyph0-7" x="144.738281" y="508.865234"/>
<use xlink:href="#glyph0-12" x="146.738281" y="508.865234"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-38" x="117.738281" y="540.345703"/>
<use xlink:href="#glyph0-22" x="123.738281" y="540.345703"/>
<use xlink:href="#glyph0-10" x="125.738281" y="540.345703"/>
<use xlink:href="#glyph0-22" x="128.738281" y="540.345703"/>
<use xlink:href="#glyph0-19" x="130.738281" y="540.345703"/>
<use xlink:href="#glyph0-22" x="135.738281" y="540.345703"/>
<use xlink:href="#glyph0-3" x="137.738281" y="540.345703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="117.738281" y="571.826172"/>
<use xlink:href="#glyph0-6" x="122.738281" y="571.826172"/>
<use xlink:href="#glyph0-2" x="124.738281" y="571.826172"/>
<use xlink:href="#glyph0-3" x="129.738281" y="571.826172"/>
<use xlink:href="#glyph0-16" x="133.738281" y="571.826172"/>
<use xlink:href="#glyph0-2" x="140.738281" y="571.826172"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,37.647059%,15.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 72.148438 L 131.070312 72.148438 L 131.070312 87.890625 L 117.738281 87.890625 Z M 117.738281 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(36.862745%,54.509804%,40.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 72.148438 L 144.402344 72.148438 L 144.402344 87.890625 L 131.070312 87.890625 Z M 131.070312 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(60.392157%,70.196078%,62.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 72.148438 L 157.738281 72.148438 L 157.738281 87.890625 L 144.40625 87.890625 Z M 144.40625 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(80.392157%,84.313725%,81.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 72.148438 L 171.070312 72.148438 L 171.070312 87.890625 L 157.738281 87.890625 Z M 157.738281 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 72.148438 L 184.402344 72.148438 L 184.402344 87.890625 L 171.070312 87.890625 Z M 171.070312 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,27.45098%,8.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 103.628906 L 131.070312 103.628906 L 131.070312 119.371094 L 117.738281 119.371094 Z M 117.738281 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(9.411765%,54.509804%,25.490196%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 103.628906 L 144.402344 103.628906 L 144.402344 119.371094 L 131.070312 119.371094 Z M 131.070312 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(45.490196%,76.078431%,52.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 103.628906 L 157.738281 103.628906 L 157.738281 119.371094 L 144.40625 119.371094 Z M 144.40625 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(76.862745%,90.980392%,79.607843%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 103.628906 L 171.070312 103.628906 L 171.070312 119.371094 L 157.738281 119.371094 Z M 157.738281 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 103.628906 L 184.402344 103.628906 L 184.402344 119.371094 L 171.070312 119.371094 Z M 171.070312 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(98.823529%,98.823529%,98.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 135.109375 L 131.070312 135.109375 L 131.070312 150.851562 L 117.738281 150.851562 Z M 117.738281 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(64.313725%,72.156863%,86.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 135.109375 L 144.402344 135.109375 L 144.402344 150.851562 L 131.070312 150.851562 Z M 131.070312 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(23.529412%,47.45098%,75.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 135.109375 L 157.738281 135.109375 L 157.738281 150.851562 L 144.40625 150.851562 Z M 144.40625 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(11.372549%,24.313725%,39.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 135.109375 L 171.070312 135.109375 L 171.070312 150.851562 L 157.738281 150.851562 Z M 157.738281 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(1.568627%,1.568627%,1.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 135.109375 L 184.402344 135.109375 L 184.402344 150.851562 L 171.070312 150.851562 Z M 171.070312 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(41.960784%,0%,46.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 166.59375 L 131.070312 166.59375 L 131.070312 182.335938 L 117.738281 182.335938 Z M 117.738281 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(46.27451%,39.607843%,64.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 166.59375 L 144.402344 166.59375 L 144.402344 182.335938 L 131.070312 182.335938 Z M 131.070312 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(55.294118%,63.921569%,79.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 166.59375 L 157.738281 166.59375 L 157.738281 182.335938 L 144.40625 182.335938 Z M 144.40625 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(71.764706%,83.529412%,89.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 166.59375 L 171.070312 166.59375 L 171.070312 182.335938 L 157.738281 182.335938 Z M 157.738281 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 166.59375 L 184.402344 166.59375 L 184.402344 182.335938 L 171.070312 182.335938 Z M 171.070312 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,0.392157%,7.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 198.074219 L 131.070312 198.074219 L 131.070312 213.816406 L 117.738281 213.816406 Z M 117.738281 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(70.196078%,29.019608%,47.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 198.074219 L 144.402344 198.074219 L 144.402344 213.816406 L 131.070312 213.816406 Z M 131.070312 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(83.921569%,54.117647%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 198.074219 L 157.738281 198.074219 L 157.738281 213.816406 L 144.40625 213.816406 Z M 144.40625 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(91.372549%,76.862745%,93.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 198.074219 L 171.070312 198.074219 L 171.070312 213.816406 L 157.738281 213.816406 Z M 157.738281 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.117647%,96.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 198.074219 L 184.402344 198.074219 L 184.402344 213.816406 L 171.070312 213.816406 Z M 171.070312 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(66.27451%,19.215686%,32.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 229.554688 L 131.070312 229.554688 L 131.070312 245.296875 L 117.738281 245.296875 Z M 117.738281 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(72.941176%,29.411765%,55.686275%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 229.554688 L 144.402344 229.554688 L 144.402344 245.296875 L 131.070312 245.296875 Z M 131.070312 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(73.72549%,43.137255%,72.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 229.554688 L 157.738281 229.554688 L 157.738281 245.296875 L 144.40625 245.296875 Z M 144.40625 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(70.588235%,58.039216%,83.529412%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 229.554688 L 171.070312 229.554688 L 171.070312 245.296875 L 157.738281 245.296875 Z M 157.738281 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(68.235294%,71.372549%,89.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 229.554688 L 184.402344 229.554688 L 184.402344 245.296875 L 171.070312 245.296875 Z M 171.070312 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(35.686275%,21.568627%,58.039216%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 261.035156 L 131.070312 261.035156 L 131.070312 276.777344 L 117.738281 276.777344 Z M 117.738281 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(60%,32.54902%,63.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 261.035156 L 144.402344 261.035156 L 144.402344 276.777344 L 131.070312 276.777344 Z M 131.070312 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(78.431373%,47.843137%,67.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 261.035156 L 157.738281 261.035156 L 157.738281 276.777344 L 144.40625 276.777344 Z M 144.40625 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(92.156863%,65.882353%,72.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 261.035156 L 171.070312 261.035156 L 171.070312 276.777344 L 157.738281 276.777344 Z M 157.738281 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(97.254902%,86.27451%,85.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 261.035156 L 184.402344 261.035156 L 184.402344 276.777344 L 171.070312 276.777344 Z M 171.070312 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(50.196078%,7.843137%,43.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 292.519531 L 131.070312 292.519531 L 131.070312 308.261719 L 117.738281 308.261719 Z M 117.738281 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(39.215686%,45.490196%,72.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 292.519531 L 144.402344 292.519531 L 144.402344 308.261719 L 131.070312 308.261719 Z M 131.070312 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(20.392157%,72.156863%,75.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 292.519531 L 157.738281 292.519531 L 157.738281 308.261719 L 144.40625 308.261719 Z M 144.40625 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(64.313725%,87.843137%,71.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 292.519531 L 171.070312 292.519531 L 171.070312 308.261719 L 157.738281 308.261719 Z M 157.738281 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(96.078431%,94.901961%,84.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 292.519531 L 184.402344 292.519531 L 184.402344 308.261719 L 171.070312 308.261719 Z M 171.070312 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(17.647059%,19.215686%,51.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 324 L 131.070312 324 L 131.070312 339.742188 L 117.738281 339.742188 Z M 117.738281 324 "/>
<path style="fill-rule:nonzero;fill:rgb(3.921569%,57.254902%,67.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 324 L 144.402344 324 L 144.402344 339.742188 L 131.070312 339.742188 Z M 131.070312 324 "/>
<path style="fill-rule:nonzero;fill:rgb(46.666667%,81.176471%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 324 L 157.738281 324 L 157.738281 339.742188 L 144.40625 339.742188 Z M 144.40625 324 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,92.941176%,79.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 324 L 171.070312 324 L 171.070312 339.742188 L 157.738281 339.742188 Z M 157.738281 324 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,94.509804%,89.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 324 L 184.402344 324 L 184.402344 339.742188 L 171.070312 339.742188 Z M 171.070312 324 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,43.137255%,21.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 355.480469 L 131.070312 355.480469 L 131.070312 371.222656 L 117.738281 371.222656 Z M 117.738281 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(45.490196%,64.705882%,43.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 355.480469 L 144.402344 355.480469 L 144.402344 371.222656 L 131.070312 371.222656 Z M 131.070312 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(71.764706%,81.568627%,62.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 355.480469 L 157.738281 355.480469 L 157.738281 371.222656 L 144.40625 371.222656 Z M 144.40625 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(90.196078%,92.941176%,79.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 355.480469 L 171.070312 355.480469 L 171.070312 371.222656 L 157.738281 371.222656 Z M 157.738281 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,96.862745%,91.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 355.480469 L 184.402344 355.480469 L 184.402344 371.222656 L 171.070312 371.222656 Z M 171.070312 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,0.392157%,7.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 386.964844 L 131.070312 386.964844 L 131.070312 402.707031 L 117.738281 402.707031 Z M 117.738281 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(66.666667%,34.901961%,17.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 386.964844 L 144.402344 386.964844 L 144.402344 402.707031 L 131.070312 402.707031 Z M 131.070312 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(80.784314%,59.215686%,34.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 386.964844 L 157.738281 386.964844 L 157.738281 402.707031 L 144.40625 402.707031 Z M 144.40625 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(90.980392%,80.784314%,56.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 386.964844 L 171.070312 386.964844 L 171.070312 402.707031 L 157.738281 402.707031 Z M 157.738281 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.509804%,89.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 386.964844 L 184.402344 386.964844 L 184.402344 402.707031 L 171.070312 402.707031 Z M 171.070312 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(55.686275%,2.352941%,23.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 418.445312 L 131.070312 418.445312 L 131.070312 434.1875 L 117.738281 434.1875 Z M 117.738281 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,42.745098%,32.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 418.445312 L 144.402344 418.445312 L 144.402344 434.1875 L 131.070312 434.1875 Z M 131.070312 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(93.333333%,67.058824%,39.607843%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 418.445312 L 157.738281 418.445312 L 157.738281 434.1875 L 144.40625 434.1875 Z M 144.40625 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(96.078431%,83.529412%,47.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 418.445312 L 171.070312 418.445312 L 171.070312 434.1875 L 157.738281 434.1875 Z M 157.738281 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,90.196078%,74.117647%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 418.445312 L 184.402344 418.445312 L 184.402344 434.1875 L 171.070312 434.1875 Z M 171.070312 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(82.745098%,24.705882%,41.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 449.925781 L 131.070312 449.925781 L 131.070312 465.667969 L 117.738281 465.667969 Z M 117.738281 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(88.235294%,43.921569%,29.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 449.925781 L 144.402344 449.925781 L 144.402344 465.667969 L 131.070312 465.667969 Z M 131.070312 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(91.372549%,60.392157%,17.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 449.925781 L 157.738281 449.925781 L 157.738281 465.667969 L 144.40625 465.667969 Z M 144.40625 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(90.980392%,76.470588%,23.529412%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 449.925781 L 171.070312 449.925781 L 171.070312 465.667969 L 157.738281 465.667969 Z M 157.738281 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,90.196078%,74.117647%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 449.925781 L 184.402344 449.925781 L 184.402344 465.667969 L 171.070312 465.667969 Z M 171.070312 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(14.901961%,65.098039%,22.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 481.40625 L 131.070312 481.40625 L 131.070312 497.148438 L 117.738281 497.148438 Z M 117.738281 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(60.784314%,70.196078%,2.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 481.40625 L 144.402344 481.40625 L 144.402344 497.148438 L 131.070312 497.148438 Z M 131.070312 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(88.235294%,73.333333%,30.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 481.40625 L 157.738281 481.40625 L 157.738281 497.148438 L 144.40625 497.148438 Z M 144.40625 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,77.254902%,61.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 481.40625 L 171.070312 481.40625 L 171.070312 497.148438 L 157.738281 497.148438 Z M 157.738281 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 481.40625 L 184.402344 481.40625 L 184.402344 497.148438 L 171.070312 497.148438 Z M 171.070312 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,48.627451%,11.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 512.890625 L 131.070312 512.890625 L 131.070312 528.632812 L 117.738281 528.632812 Z M 117.738281 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(49.803922%,61.568627%,26.27451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 512.890625 L 144.402344 512.890625 L 144.402344 528.632812 L 131.070312 528.632812 Z M 131.070312 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(75.294118%,72.156863%,47.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 512.890625 L 157.738281 512.890625 L 157.738281 528.632812 L 144.40625 528.632812 Z M 144.40625 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(91.372549%,80.784314%,68.235294%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 512.890625 L 171.070312 512.890625 L 171.070312 528.632812 L 157.738281 528.632812 Z M 157.738281 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,88.627451%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 512.890625 L 184.402344 512.890625 L 184.402344 528.632812 L 171.070312 528.632812 Z M 171.070312 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(29.411765%,0%,33.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 544.371094 L 131.070312 544.371094 L 131.070312 560.113281 L 117.738281 560.113281 Z M 117.738281 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,34.509804%,54.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 544.371094 L 144.402344 544.371094 L 144.402344 560.113281 L 131.070312 560.113281 Z M 131.070312 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,60.784314%,58.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 544.371094 L 157.738281 544.371094 L 157.738281 560.113281 L 144.40625 560.113281 Z M 144.40625 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(32.54902%,80%,40.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 544.371094 L 171.070312 544.371094 L 171.070312 560.113281 L 157.738281 560.113281 Z M 157.738281 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(99.215686%,89.019608%,20%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 544.371094 L 184.402344 544.371094 L 184.402344 560.113281 L 171.070312 560.113281 Z M 171.070312 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,9.411765%,53.72549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.738281 575.851562 L 131.070312 575.851562 L 131.070312 591.59375 L 117.738281 591.59375 Z M 117.738281 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(56.862745%,0%,55.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.070312 575.851562 L 144.402344 575.851562 L 144.402344 591.59375 L 131.070312 591.59375 Z M 131.070312 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(82.352941%,30.588235%,44.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.40625 575.851562 L 157.738281 575.851562 L 157.738281 591.59375 L 144.40625 591.59375 Z M 144.40625 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,63.529412%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.738281 575.851562 L 171.070312 575.851562 L 171.070312 591.59375 L 157.738281 591.59375 Z M 157.738281 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(85.490196%,100%,27.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.070312 575.851562 L 184.402344 575.851562 L 184.402344 591.59375 L 171.070312 591.59375 Z M 171.070312 575.851562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-39" x="218.453125" y="68.123047"/>
<use xlink:href="#glyph0-21" x="220.453125" y="68.123047"/>
<use xlink:href="#glyph0-40" x="225.453125" y="68.123047"/>
<use xlink:href="#glyph0-5" x="227.453125" y="68.123047"/>
<use xlink:href="#glyph0-10" x="232.453125" y="68.123047"/>
<use xlink:href="#glyph0-21" x="235.453125" y="68.123047"/>
<use xlink:href="#glyph0-18" x="240.453125" y="68.123047"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="218.453125" y="99.603516"/>
<use xlink:href="#glyph0-18" x="224.453125" y="99.603516"/>
<use xlink:href="#glyph0-23" x="229.453125" y="99.603516"/>
<use xlink:href="#glyph0-11" x="233.453125" y="99.603516"/>
<use xlink:href="#glyph0-5" x="237.453125" y="99.603516"/>
<use xlink:href="#glyph0-4" x="242.453125" y="99.603516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-41" x="218.453125" y="131.087891"/>
<use xlink:href="#glyph0-2" x="225.453125" y="131.087891"/>
<use xlink:href="#glyph0-11" x="230.453125" y="131.087891"/>
<use xlink:href="#glyph0-18" x="234.453125" y="131.087891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="218.453125" y="162.568359"/>
<use xlink:href="#glyph0-2" x="224.453125" y="162.568359"/>
<use xlink:href="#glyph0-10" x="229.453125" y="162.568359"/>
<use xlink:href="#glyph0-11" x="232.453125" y="162.568359"/>
<use xlink:href="#glyph0-7" x="236.453125" y="162.568359"/>
<use xlink:href="#glyph0-41" x="238.453125" y="162.568359"/>
<use xlink:href="#glyph0-22" x="245.453125" y="162.568359"/>
<use xlink:href="#glyph0-21" x="247.453125" y="162.568359"/>
<use xlink:href="#glyph0-4" x="252.453125" y="162.568359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-41" x="218.453125" y="194.048828"/>
<use xlink:href="#glyph0-22" x="225.453125" y="194.048828"/>
<use xlink:href="#glyph0-21" x="227.453125" y="194.048828"/>
<use xlink:href="#glyph0-4" x="232.453125" y="194.048828"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="218.453125" y="225.529297"/>
<use xlink:href="#glyph0-6" x="224.453125" y="225.529297"/>
<use xlink:href="#glyph0-30" x="226.453125" y="225.529297"/>
<use xlink:href="#glyph0-25" x="231.453125" y="225.529297"/>
<use xlink:href="#glyph0-10" x="238.453125" y="225.529297"/>
<use xlink:href="#glyph0-21" x="241.453125" y="225.529297"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="218.453125" y="257.013672"/>
<use xlink:href="#glyph0-5" x="222.453125" y="257.013672"/>
<use xlink:href="#glyph0-2" x="227.453125" y="257.013672"/>
<use xlink:href="#glyph0-6" x="232.453125" y="257.013672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="218.453125" y="288.494141"/>
<use xlink:href="#glyph0-5" x="222.453125" y="288.494141"/>
<use xlink:href="#glyph0-2" x="227.453125" y="288.494141"/>
<use xlink:href="#glyph0-6" x="232.453125" y="288.494141"/>
<use xlink:href="#glyph0-25" x="234.453125" y="288.494141"/>
<use xlink:href="#glyph0-10" x="241.453125" y="288.494141"/>
<use xlink:href="#glyph0-21" x="244.453125" y="288.494141"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-42" x="218.453125" y="319.974609"/>
<use xlink:href="#glyph0-16" x="224.453125" y="319.974609"/>
<use xlink:href="#glyph0-10" x="231.453125" y="319.974609"/>
<use xlink:href="#glyph0-6" x="234.453125" y="319.974609"/>
<use xlink:href="#glyph0-19" x="236.453125" y="319.974609"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="218.453125" y="351.455078"/>
<use xlink:href="#glyph0-6" x="224.453125" y="351.455078"/>
<use xlink:href="#glyph0-30" x="226.453125" y="351.455078"/>
<use xlink:href="#glyph0-35" x="231.453125" y="351.455078"/>
<use xlink:href="#glyph0-6" x="237.453125" y="351.455078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="218.453125" y="382.939453"/>
<use xlink:href="#glyph0-27" x="223.453125" y="382.939453"/>
<use xlink:href="#glyph0-43" x="228.453125" y="382.939453"/>
<use xlink:href="#glyph0-25" x="233.453125" y="382.939453"/>
<use xlink:href="#glyph0-10" x="240.453125" y="382.939453"/>
<use xlink:href="#glyph0-21" x="243.453125" y="382.939453"/>
<use xlink:href="#glyph0-35" x="248.453125" y="382.939453"/>
<use xlink:href="#glyph0-6" x="254.453125" y="382.939453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="218.453125" y="414.419922"/>
<use xlink:href="#glyph0-5" x="223.453125" y="414.419922"/>
<use xlink:href="#glyph0-2" x="228.453125" y="414.419922"/>
<use xlink:href="#glyph0-23" x="233.453125" y="414.419922"/>
<use xlink:href="#glyph0-28" x="237.453125" y="414.419922"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="218.453125" y="445.900391"/>
<use xlink:href="#glyph0-22" x="223.453125" y="445.900391"/>
<use xlink:href="#glyph0-21" x="225.453125" y="445.900391"/>
<use xlink:href="#glyph0-11" x="230.453125" y="445.900391"/>
<use xlink:href="#glyph0-35" x="234.453125" y="445.900391"/>
<use xlink:href="#glyph0-6" x="240.453125" y="445.900391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="218.453125" y="477.380859"/>
<use xlink:href="#glyph0-30" x="224.453125" y="477.380859"/>
<use xlink:href="#glyph0-10" x="229.453125" y="477.380859"/>
<use xlink:href="#glyph0-27" x="232.453125" y="477.380859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="218.453125" y="508.865234"/>
<use xlink:href="#glyph0-30" x="224.453125" y="508.865234"/>
<use xlink:href="#glyph0-10" x="229.453125" y="508.865234"/>
<use xlink:href="#glyph0-27" x="232.453125" y="508.865234"/>
<use xlink:href="#glyph0-35" x="237.453125" y="508.865234"/>
<use xlink:href="#glyph0-6" x="243.453125" y="508.865234"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="218.453125" y="540.345703"/>
<use xlink:href="#glyph0-5" x="224.453125" y="540.345703"/>
<use xlink:href="#glyph0-19" x="229.453125" y="540.345703"/>
<use xlink:href="#glyph0-33" x="234.453125" y="540.345703"/>
<use xlink:href="#glyph0-10" x="241.453125" y="540.345703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-33" x="218.453125" y="571.826172"/>
<use xlink:href="#glyph0-10" x="225.453125" y="571.826172"/>
<use xlink:href="#glyph0-35" x="228.453125" y="571.826172"/>
<use xlink:href="#glyph0-5" x="233.453125" y="571.826172"/>
<use xlink:href="#glyph0-6" x="238.453125" y="571.826172"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(1.568627%,1.568627%,1.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 72.148438 L 231.785156 72.148438 L 231.785156 87.890625 L 218.453125 87.890625 Z M 218.453125 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(38.039216%,6.666667%,38.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 72.148438 L 245.117188 72.148438 L 245.117188 87.890625 L 231.785156 87.890625 Z M 231.785156 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(77.254902%,19.607843%,43.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 72.148438 L 258.449219 72.148438 L 258.449219 87.890625 L 245.117188 87.890625 Z M 245.117188 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,58.039216%,13.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 72.148438 L 271.785156 72.148438 L 271.785156 87.890625 L 258.453125 87.890625 Z M 258.453125 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,99.607843%,61.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 72.148438 L 285.117188 72.148438 L 285.117188 87.890625 L 271.785156 87.890625 Z M 271.785156 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(2.745098%,2.745098%,2.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 103.628906 L 231.785156 103.628906 L 231.785156 119.371094 L 218.453125 119.371094 Z M 218.453125 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(41.176471%,0%,33.72549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 103.628906 L 245.117188 103.628906 L 245.117188 119.371094 L 231.785156 119.371094 Z M 231.785156 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(76.470588%,5.490196%,38.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 103.628906 L 258.449219 103.628906 L 258.449219 119.371094 L 245.117188 119.371094 Z M 245.117188 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,51.372549%,32.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 103.628906 L 271.785156 103.628906 L 271.785156 119.371094 L 258.453125 119.371094 Z M 258.453125 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(99.215686%,96.078431%,92.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 103.628906 L 285.117188 103.628906 L 285.117188 119.371094 L 271.785156 119.371094 Z M 271.785156 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(2.745098%,2.745098%,2.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 135.109375 L 231.785156 135.109375 L 231.785156 150.851562 L 218.453125 150.851562 Z M 218.453125 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(25.882353%,20.392157%,37.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 135.109375 L 245.117188 135.109375 L 245.117188 150.851562 L 231.785156 150.851562 Z M 231.785156 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,49.803922%,65.882353%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 135.109375 L 258.449219 135.109375 L 258.449219 150.851562 L 245.117188 150.851562 Z M 245.117188 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(28.235294%,76.078431%,70.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 135.109375 L 271.785156 135.109375 L 271.785156 150.851562 L 258.453125 150.851562 Z M 258.453125 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(87.843137%,96.862745%,88.235294%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 135.109375 L 285.117188 135.109375 L 285.117188 150.851562 L 271.785156 150.851562 Z M 271.785156 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(5.490196%,24.705882%,36.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 166.59375 L 231.785156 166.59375 L 231.785156 182.335938 L 218.453125 182.335938 Z M 218.453125 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(16.470588%,42.745098%,47.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 166.59375 L 245.117188 166.59375 L 245.117188 182.335938 L 231.785156 182.335938 Z M 231.785156 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(34.117647%,61.176471%,59.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 166.59375 L 258.449219 166.59375 L 258.449219 182.335938 L 245.117188 182.335938 Z M 245.117188 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(56.078431%,80%,70.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 166.59375 L 271.785156 166.59375 L 271.785156 182.335938 L 258.453125 182.335938 Z M 258.453125 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(81.960784%,98.431373%,83.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 166.59375 L 285.117188 166.59375 L 285.117188 182.335938 L 271.785156 182.335938 Z M 271.785156 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,36.470588%,40.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 198.074219 L 231.785156 198.074219 L 231.785156 213.816406 L 218.453125 213.816406 Z M 218.453125 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(10.588235%,50.588235%,49.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 198.074219 L 245.117188 198.074219 L 245.117188 213.816406 L 231.785156 213.816406 Z M 231.785156 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(39.215686%,65.490196%,60.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 198.074219 L 258.449219 198.074219 L 258.449219 213.816406 L 245.117188 213.816406 Z M 245.117188 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(62.352941%,80.784314%,72.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 198.074219 L 271.785156 198.074219 L 271.785156 213.816406 L 258.453125 213.816406 Z M 258.453125 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(87.843137%,94.901961%,90.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 198.074219 L 285.117188 198.074219 L 285.117188 213.816406 L 271.785156 213.816406 Z M 271.785156 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(7.843137%,31.372549%,36.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 229.554688 L 231.785156 229.554688 L 231.785156 245.296875 L 218.453125 245.296875 Z M 218.453125 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(16.470588%,47.45098%,47.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 229.554688 L 245.117188 229.554688 L 245.117188 245.296875 L 231.785156 245.296875 Z M 231.785156 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(29.803922%,63.921569%,56.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 229.554688 L 258.449219 229.554688 L 258.449219 245.296875 L 245.117188 245.296875 Z M 245.117188 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(50.588235%,79.215686%,62.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 229.554688 L 271.785156 229.554688 L 271.785156 245.296875 L 258.453125 245.296875 Z M 258.453125 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,89.803922%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 229.554688 L 285.117188 229.554688 L 285.117188 245.296875 L 271.785156 245.296875 Z M 271.785156 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(16.470588%,33.72549%,46.27451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 261.035156 L 231.785156 261.035156 L 231.785156 276.777344 L 218.453125 276.777344 Z M 218.453125 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(23.137255%,50.196078%,60.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 261.035156 L 245.117188 261.035156 L 245.117188 276.777344 L 231.785156 276.777344 Z M 231.785156 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(40.392157%,66.27451%,71.372549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 261.035156 L 258.449219 261.035156 L 258.449219 276.777344 L 245.117188 276.777344 Z M 245.117188 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(60%,81.176471%,81.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 261.035156 L 271.785156 261.035156 L 271.785156 276.777344 L 258.453125 276.777344 Z M 258.453125 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(82.352941%,93.333333%,91.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 261.035156 L 285.117188 261.035156 L 285.117188 276.777344 L 271.785156 276.777344 Z M 271.785156 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(9.019608%,49.803922%,59.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 292.519531 L 231.785156 292.519531 L 231.785156 308.261719 L 218.453125 308.261719 Z M 218.453125 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,64.313725%,65.882353%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 292.519531 L 245.117188 292.519531 L 245.117188 308.261719 L 231.785156 308.261719 Z M 231.785156 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(18.039216%,77.647059%,68.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 292.519531 L 258.449219 292.519531 L 258.449219 308.261719 L 245.117188 308.261719 Z M 245.117188 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(44.705882%,88.627451%,67.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 292.519531 L 271.785156 292.519531 L 271.785156 308.261719 L 258.453125 308.261719 Z M 258.453125 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(71.764706%,94.509804%,69.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 292.519531 L 285.117188 292.519531 L 285.117188 308.261719 L 271.785156 308.261719 Z M 271.785156 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(4.313725%,25.490196%,31.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 324 L 231.785156 324 L 231.785156 339.742188 L 218.453125 339.742188 Z M 218.453125 324 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,43.137255%,43.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 324 L 245.117188 324 L 245.117188 339.742188 L 231.785156 339.742188 Z M 231.785156 324 "/>
<path style="fill-rule:nonzero;fill:rgb(19.607843%,61.568627%,51.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 324 L 258.449219 324 L 258.449219 339.742188 L 245.117188 339.742188 Z M 245.117188 324 "/>
<path style="fill-rule:nonzero;fill:rgb(50.196078%,79.215686%,56.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 324 L 271.785156 324 L 271.785156 339.742188 L 258.453125 339.742188 Z M 258.453125 324 "/>
<path style="fill-rule:nonzero;fill:rgb(83.137255%,95.294118%,63.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 324 L 285.117188 324 L 285.117188 339.742188 L 271.785156 339.742188 Z M 271.785156 324 "/>
<path style="fill-rule:nonzero;fill:rgb(18.039216%,30.980392%,47.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 355.480469 L 231.785156 355.480469 L 231.785156 371.222656 L 218.453125 371.222656 Z M 218.453125 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,50.588235%,56.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 355.480469 L 245.117188 355.480469 L 245.117188 371.222656 L 231.785156 371.222656 Z M 231.785156 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(27.45098%,69.019608%,60.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 355.480469 L 258.449219 355.480469 L 258.449219 371.222656 L 245.117188 371.222656 Z M 245.117188 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(61.176471%,85.490196%,63.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 355.480469 L 271.785156 355.480469 L 271.785156 371.222656 L 258.453125 371.222656 Z M 258.453125 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,100%,68.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 355.480469 L 285.117188 355.480469 L 285.117188 371.222656 L 271.785156 371.222656 Z M 271.785156 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(14.509804%,33.72549%,40.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 386.964844 L 231.785156 386.964844 L 231.785156 402.707031 L 218.453125 402.707031 Z M 218.453125 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,49.411765%,49.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 386.964844 L 245.117188 386.964844 L 245.117188 402.707031 L 231.785156 402.707031 Z M 231.785156 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(9.019608%,65.490196%,49.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 386.964844 L 258.449219 386.964844 L 258.449219 402.707031 L 245.117188 402.707031 Z M 245.117188 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(50.980392%,80%,42.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 386.964844 L 271.785156 386.964844 L 271.785156 402.707031 L 258.453125 402.707031 Z M 258.453125 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,93.72549%,36.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 386.964844 L 285.117188 386.964844 L 285.117188 402.707031 L 271.785156 402.707031 Z M 271.785156 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(91.764706%,29.803922%,23.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 418.445312 L 231.785156 418.445312 L 231.785156 434.1875 L 218.453125 434.1875 Z M 218.453125 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,48.235294%,31.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 418.445312 L 245.117188 418.445312 L 245.117188 434.1875 L 231.785156 434.1875 Z M 231.785156 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,63.137255%,45.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 418.445312 L 258.449219 418.445312 L 258.449219 434.1875 L 245.117188 434.1875 Z M 245.117188 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,76.078431%,61.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 418.445312 L 271.785156 418.445312 L 271.785156 434.1875 L 258.453125 434.1875 Z M 258.453125 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(98.039216%,86.666667%,76.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 418.445312 L 285.117188 418.445312 L 285.117188 434.1875 L 271.785156 434.1875 Z M 271.785156 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,29.803922%,50.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 449.925781 L 231.785156 449.925781 L 231.785156 465.667969 L 218.453125 465.667969 Z M 218.453125 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(93.72549%,49.411765%,44.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 449.925781 L 245.117188 449.925781 L 245.117188 465.667969 L 231.785156 465.667969 Z M 231.785156 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,66.27451%,44.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 449.925781 L 258.449219 449.925781 L 258.449219 465.667969 L 245.117188 465.667969 Z M 245.117188 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(98.039216%,81.960784%,54.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 449.925781 L 271.785156 449.925781 L 271.785156 465.667969 L 258.453125 465.667969 Z M 258.453125 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(99.215686%,96.470588%,70.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 449.925781 L 285.117188 449.925781 L 285.117188 465.667969 L 271.785156 465.667969 Z M 271.785156 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(40.392157%,13.333333%,24.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 481.40625 L 231.785156 481.40625 L 231.785156 497.148438 L 218.453125 497.148438 Z M 218.453125 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(61.176471%,24.313725%,36.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 481.40625 L 245.117188 481.40625 L 245.117188 497.148438 L 231.785156 497.148438 Z M 231.785156 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,38.431373%,48.235294%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 481.40625 L 258.449219 481.40625 L 258.449219 497.148438 L 245.117188 497.148438 Z M 245.117188 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(90.196078%,58.431373%,62.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 481.40625 L 271.785156 481.40625 L 271.785156 497.148438 L 258.453125 497.148438 Z M 258.453125 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,77.254902%,78.039216%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 481.40625 L 285.117188 481.40625 L 285.117188 497.148438 L 271.785156 497.148438 Z M 271.785156 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(46.666667%,17.254902%,29.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 512.890625 L 231.785156 512.890625 L 231.785156 528.632812 L 218.453125 528.632812 Z M 218.453125 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(65.490196%,30.980392%,35.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 512.890625 L 245.117188 512.890625 L 245.117188 528.632812 L 231.785156 528.632812 Z M 231.785156 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(83.921569%,46.27451%,36.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 512.890625 L 258.449219 512.890625 L 258.449219 528.632812 L 245.117188 528.632812 Z M 245.117188 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,66.666667%,49.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 512.890625 L 271.785156 512.890625 L 271.785156 528.632812 L 258.453125 528.632812 Z M 258.453125 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(97.254902%,87.45098%,75.686275%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 512.890625 L 285.117188 512.890625 L 285.117188 528.632812 L 271.785156 528.632812 Z M 271.785156 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(69.411765%,24.705882%,38.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 544.371094 L 231.785156 544.371094 L 231.785156 560.113281 L 218.453125 560.113281 Z M 218.453125 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(82.745098%,36.470588%,37.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 544.371094 L 245.117188 544.371094 L 245.117188 560.113281 L 231.785156 560.113281 Z M 231.785156 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(89.019608%,52.156863%,40%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 544.371094 L 258.449219 544.371094 L 258.449219 560.113281 L 245.117188 560.113281 Z M 245.117188 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(93.333333%,67.45098%,49.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 544.371094 L 271.785156 544.371094 L 271.785156 560.113281 L 258.453125 560.113281 Z M 258.453125 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(96.078431%,81.960784%,65.882353%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 544.371094 L 285.117188 544.371094 L 285.117188 560.113281 L 271.785156 560.113281 Z M 271.785156 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(93.72549%,28.235294%,40.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.453125 575.851562 L 231.785156 575.851562 L 231.785156 591.59375 L 218.453125 591.59375 Z M 218.453125 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(96.078431%,45.490196%,30.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 575.851562 L 245.117188 575.851562 L 245.117188 591.59375 L 231.785156 591.59375 Z M 231.785156 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,60.784314%,29.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.117188 575.851562 L 258.449219 575.851562 L 258.449219 591.59375 L 245.117188 591.59375 Z M 245.117188 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(93.72549%,73.72549%,41.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.453125 575.851562 L 271.785156 575.851562 L 271.785156 591.59375 L 258.453125 591.59375 Z M 258.453125 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(92.54902%,85.098039%,60%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.785156 575.851562 L 285.117188 575.851562 L 285.117188 591.59375 L 271.785156 591.59375 Z M 271.785156 575.851562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="319.167969" y="68.123047"/>
<use xlink:href="#glyph0-30" x="325.167969" y="68.123047"/>
<use xlink:href="#glyph0-10" x="330.167969" y="68.123047"/>
<use xlink:href="#glyph0-31" x="333.167969" y="68.123047"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="319.167969" y="99.603516"/>
<use xlink:href="#glyph0-30" x="325.167969" y="99.603516"/>
<use xlink:href="#glyph0-10" x="330.167969" y="99.603516"/>
<use xlink:href="#glyph0-31" x="333.167969" y="99.603516"/>
<use xlink:href="#glyph0-33" x="338.167969" y="99.603516"/>
<use xlink:href="#glyph0-10" x="345.167969" y="99.603516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="319.167969" y="131.087891"/>
<use xlink:href="#glyph0-30" x="325.167969" y="131.087891"/>
<use xlink:href="#glyph0-21" x="330.167969" y="131.087891"/>
<use xlink:href="#glyph0-3" x="335.167969" y="131.087891"/>
<use xlink:href="#glyph0-5" x="339.167969" y="131.087891"/>
<use xlink:href="#glyph0-4" x="344.167969" y="131.087891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-41" x="319.167969" y="162.568359"/>
<use xlink:href="#glyph0-2" x="326.167969" y="162.568359"/>
<use xlink:href="#glyph0-27" x="331.167969" y="162.568359"/>
<use xlink:href="#glyph0-5" x="336.167969" y="162.568359"/>
<use xlink:href="#glyph0-21" x="341.167969" y="162.568359"/>
<use xlink:href="#glyph0-4" x="346.167969" y="162.568359"/>
<use xlink:href="#glyph0-2" x="348.167969" y="162.568359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="319.167969" y="194.048828"/>
<use xlink:href="#glyph0-30" x="325.167969" y="194.048828"/>
<use xlink:href="#glyph0-21" x="330.167969" y="194.048828"/>
<use xlink:href="#glyph0-3" x="335.167969" y="194.048828"/>
<use xlink:href="#glyph0-5" x="339.167969" y="194.048828"/>
<use xlink:href="#glyph0-4" x="344.167969" y="194.048828"/>
<use xlink:href="#glyph0-9" x="346.167969" y="194.048828"/>
<use xlink:href="#glyph0-2" x="352.167969" y="194.048828"/>
<use xlink:href="#glyph0-10" x="357.167969" y="194.048828"/>
<use xlink:href="#glyph0-11" x="360.167969" y="194.048828"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="319.167969" y="225.529297"/>
<use xlink:href="#glyph0-27" x="324.167969" y="225.529297"/>
<use xlink:href="#glyph0-43" x="329.167969" y="225.529297"/>
<use xlink:href="#glyph0-14" x="334.167969" y="225.529297"/>
<use xlink:href="#glyph0-30" x="340.167969" y="225.529297"/>
<use xlink:href="#glyph0-21" x="345.167969" y="225.529297"/>
<use xlink:href="#glyph0-3" x="350.167969" y="225.529297"/>
<use xlink:href="#glyph0-5" x="354.167969" y="225.529297"/>
<use xlink:href="#glyph0-4" x="359.167969" y="225.529297"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="319.167969" y="257.013672"/>
<use xlink:href="#glyph0-10" x="325.167969" y="257.013672"/>
<use xlink:href="#glyph0-36" x="328.167969" y="257.013672"/>
<use xlink:href="#glyph0-21" x="334.167969" y="257.013672"/>
<use xlink:href="#glyph0-35" x="339.167969" y="257.013672"/>
<use xlink:href="#glyph0-6" x="345.167969" y="257.013672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-35" x="319.167969" y="288.494141"/>
<use xlink:href="#glyph0-6" x="325.167969" y="288.494141"/>
<use xlink:href="#glyph0-33" x="327.167969" y="288.494141"/>
<use xlink:href="#glyph0-10" x="334.167969" y="288.494141"/>
<use xlink:href="#glyph0-32" x="337.167969" y="288.494141"/>
<use xlink:href="#glyph0-19" x="343.167969" y="288.494141"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-35" x="319.167969" y="319.974609"/>
<use xlink:href="#glyph0-6" x="325.167969" y="319.974609"/>
<use xlink:href="#glyph0-33" x="327.167969" y="319.974609"/>
<use xlink:href="#glyph0-10" x="334.167969" y="319.974609"/>
<use xlink:href="#glyph0-29" x="337.167969" y="319.974609"/>
<use xlink:href="#glyph0-10" x="343.167969" y="319.974609"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-33" x="319.167969" y="351.455078"/>
<use xlink:href="#glyph0-10" x="326.167969" y="351.455078"/>
<use xlink:href="#glyph0-32" x="329.167969" y="351.455078"/>
<use xlink:href="#glyph0-19" x="335.167969" y="351.455078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-33" x="319.167969" y="382.939453"/>
<use xlink:href="#glyph0-10" x="326.167969" y="382.939453"/>
<use xlink:href="#glyph0-2" x="329.167969" y="382.939453"/>
<use xlink:href="#glyph0-21" x="334.167969" y="382.939453"/>
<use xlink:href="#glyph0-27" x="339.167969" y="382.939453"/>
<use xlink:href="#glyph0-5" x="344.167969" y="382.939453"/>
<use xlink:href="#glyph0-3" x="349.167969" y="382.939453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-35" x="319.167969" y="414.419922"/>
<use xlink:href="#glyph0-6" x="325.167969" y="414.419922"/>
<use xlink:href="#glyph0-25" x="327.167969" y="414.419922"/>
<use xlink:href="#glyph0-21" x="334.167969" y="414.419922"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-35" x="319.167969" y="445.900391"/>
<use xlink:href="#glyph0-6" x="325.167969" y="445.900391"/>
<use xlink:href="#glyph0-25" x="327.167969" y="445.900391"/>
<use xlink:href="#glyph0-21" x="334.167969" y="445.900391"/>
<use xlink:href="#glyph0-29" x="339.167969" y="445.900391"/>
<use xlink:href="#glyph0-30" x="345.167969" y="445.900391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="319.167969" y="477.380859"/>
<use xlink:href="#glyph0-5" x="325.167969" y="477.380859"/>
<use xlink:href="#glyph0-19" x="330.167969" y="477.380859"/>
<use xlink:href="#glyph0-3" x="335.167969" y="477.380859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="319.167969" y="508.865234"/>
<use xlink:href="#glyph0-19" x="325.167969" y="508.865234"/>
<use xlink:href="#glyph0-1" x="330.167969" y="508.865234"/>
<use xlink:href="#glyph0-30" x="336.167969" y="508.865234"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="319.167969" y="540.345703"/>
<use xlink:href="#glyph0-30" x="325.167969" y="540.345703"/>
<use xlink:href="#glyph0-32" x="330.167969" y="540.345703"/>
<use xlink:href="#glyph0-19" x="336.167969" y="540.345703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">