| 12
 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
 
 | <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="842pt" height="595pt" viewBox="0 0 842 595" version="1.2">
<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 6.546875 -1.09375 L 6.546875 0 L 0.390625 0 C 0.378906 -0.269531 0.425781 -0.535156 0.53125 -0.796875 C 0.683594 -1.210938 0.9375 -1.625 1.28125 -2.03125 C 1.621094 -2.433594 2.125 -2.90625 2.78125 -3.4375 C 3.789063 -4.269531 4.472656 -4.925781 4.828125 -5.40625 C 5.179688 -5.894531 5.359375 -6.351563 5.359375 -6.78125 C 5.359375 -7.238281 5.195313 -7.617188 4.875 -7.921875 C 4.550781 -8.230469 4.128906 -8.390625 3.609375 -8.390625 C 3.054688 -8.390625 2.613281 -8.222656 2.28125 -7.890625 C 1.957031 -7.566406 1.789063 -7.113281 1.78125 -6.53125 L 0.609375 -6.65625 C 0.691406 -7.527344 0.992188 -8.195313 1.515625 -8.65625 C 2.035156 -9.113281 2.738281 -9.34375 3.625 -9.34375 C 4.519531 -9.34375 5.226563 -9.089844 5.75 -8.59375 C 6.269531 -8.101563 6.53125 -7.492188 6.53125 -6.765625 C 6.53125 -6.390625 6.449219 -6.019531 6.296875 -5.65625 C 6.148438 -5.300781 5.898438 -4.917969 5.546875 -4.515625 C 5.191406 -4.117188 4.601563 -3.574219 3.78125 -2.890625 C 3.09375 -2.316406 2.648438 -1.925781 2.453125 -1.71875 C 2.265625 -1.507813 2.105469 -1.300781 1.984375 -1.09375 Z M 6.546875 -1.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.546875 -4.59375 C 0.546875 -5.683594 0.65625 -6.566406 0.875 -7.234375 C 1.101563 -7.910156 1.441406 -8.429688 1.890625 -8.796875 C 2.335938 -9.160156 2.898438 -9.34375 3.578125 -9.34375 C 4.074219 -9.34375 4.515625 -9.238281 4.890625 -9.03125 C 5.261719 -8.832031 5.570313 -8.542969 5.8125 -8.171875 C 6.058594 -7.796875 6.253906 -7.332031 6.390625 -6.78125 C 6.535156 -6.238281 6.609375 -5.507813 6.609375 -4.59375 C 6.609375 -3.5 6.492188 -2.613281 6.265625 -1.9375 C 6.046875 -1.269531 5.710938 -0.753906 5.265625 -0.390625 C 4.816406 -0.0234375 4.253906 0.15625 3.578125 0.15625 C 2.679688 0.15625 1.972656 -0.164063 1.453125 -0.8125 C 0.847656 -1.582031 0.546875 -2.84375 0.546875 -4.59375 Z M 1.71875 -4.59375 C 1.71875 -3.0625 1.894531 -2.039063 2.25 -1.53125 C 2.601563 -1.03125 3.046875 -0.78125 3.578125 -0.78125 C 4.097656 -0.78125 4.535156 -1.03125 4.890625 -1.53125 C 5.253906 -2.039063 5.4375 -3.0625 5.4375 -4.59375 C 5.4375 -6.121094 5.253906 -7.140625 4.890625 -7.640625 C 4.535156 -8.136719 4.089844 -8.390625 3.5625 -8.390625 C 3.039063 -8.390625 2.617188 -8.167969 2.296875 -7.734375 C 1.910156 -7.160156 1.71875 -6.113281 1.71875 -4.59375 Z M 1.71875 -4.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 6.46875 -7.03125 L 5.328125 -6.9375 C 5.234375 -7.382813 5.089844 -7.710938 4.90625 -7.921875 C 4.59375 -8.242188 4.210938 -8.40625 3.765625 -8.40625 C 3.398438 -8.40625 3.074219 -8.300781 2.796875 -8.09375 C 2.441406 -7.832031 2.160156 -7.449219 1.953125 -6.953125 C 1.742188 -6.453125 1.632813 -5.730469 1.625 -4.796875 C 1.894531 -5.210938 2.226563 -5.519531 2.625 -5.71875 C 3.027344 -5.925781 3.453125 -6.03125 3.890625 -6.03125 C 4.648438 -6.03125 5.296875 -5.746094 5.828125 -5.1875 C 6.367188 -4.632813 6.640625 -3.910156 6.640625 -3.015625 C 6.640625 -2.429688 6.507813 -1.886719 6.25 -1.390625 C 6 -0.890625 5.652344 -0.503906 5.21875 -0.234375 C 4.78125 0.0234375 4.277344 0.15625 3.71875 0.15625 C 2.769531 0.15625 1.992188 -0.191406 1.390625 -0.890625 C 0.785156 -1.585938 0.484375 -2.742188 0.484375 -4.359375 C 0.484375 -6.148438 0.816406 -7.457031 1.484375 -8.28125 C 2.066406 -8.988281 2.847656 -9.34375 3.828125 -9.34375 C 4.554688 -9.34375 5.15625 -9.132813 5.625 -8.71875 C 6.089844 -8.3125 6.375 -7.746094 6.46875 -7.03125 Z M 1.796875 -3.015625 C 1.796875 -2.617188 1.878906 -2.238281 2.046875 -1.875 C 2.210938 -1.519531 2.445313 -1.246094 2.75 -1.0625 C 3.050781 -0.875 3.367188 -0.78125 3.703125 -0.78125 C 4.179688 -0.78125 4.59375 -0.972656 4.9375 -1.359375 C 5.289063 -1.753906 5.46875 -2.285156 5.46875 -2.953125 C 5.46875 -3.597656 5.292969 -4.101563 4.953125 -4.46875 C 4.609375 -4.839844 4.175781 -5.03125 3.65625 -5.03125 C 3.132813 -5.03125 2.691406 -4.839844 2.328125 -4.46875 C 1.972656 -4.101563 1.796875 -3.617188 1.796875 -3.015625 Z M 1.796875 -3.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M -1.09375 -6.546875 L 0 -6.546875 L 0 -0.390625 C -0.269531 -0.378906 -0.535156 -0.425781 -0.796875 -0.53125 C -1.210938 -0.683594 -1.625 -0.9375 -2.03125 -1.28125 C -2.433594 -1.621094 -2.90625 -2.125 -3.4375 -2.78125 C -4.269531 -3.789063 -4.925781 -4.472656 -5.40625 -4.828125 C -5.894531 -5.179688 -6.351563 -5.359375 -6.78125 -5.359375 C -7.238281 -5.359375 -7.617188 -5.195313 -7.921875 -4.875 C -8.230469 -4.550781 -8.390625 -4.128906 -8.390625 -3.609375 C -8.390625 -3.054688 -8.222656 -2.613281 -7.890625 -2.28125 C -7.566406 -1.957031 -7.113281 -1.789063 -6.53125 -1.78125 L -6.65625 -0.609375 C -7.527344 -0.691406 -8.195313 -0.992188 -8.65625 -1.515625 C -9.113281 -2.035156 -9.34375 -2.738281 -9.34375 -3.625 C -9.34375 -4.519531 -9.089844 -5.226563 -8.59375 -5.75 C -8.101563 -6.269531 -7.492188 -6.53125 -6.765625 -6.53125 C -6.390625 -6.53125 -6.019531 -6.449219 -5.65625 -6.296875 C -5.300781 -6.148438 -4.917969 -5.898438 -4.515625 -5.546875 C -4.117188 -5.191406 -3.574219 -4.601563 -2.890625 -3.78125 C -2.316406 -3.09375 -1.925781 -2.648438 -1.71875 -2.453125 C -1.507813 -2.265625 -1.300781 -2.105469 -1.09375 -1.984375 Z M -1.09375 -6.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M -4.59375 -0.546875 C -5.683594 -0.546875 -6.566406 -0.65625 -7.234375 -0.875 C -7.910156 -1.101563 -8.429688 -1.441406 -8.796875 -1.890625 C -9.160156 -2.335938 -9.34375 -2.898438 -9.34375 -3.578125 C -9.34375 -4.074219 -9.238281 -4.515625 -9.03125 -4.890625 C -8.832031 -5.261719 -8.542969 -5.570313 -8.171875 -5.8125 C -7.796875 -6.058594 -7.332031 -6.253906 -6.78125 -6.390625 C -6.238281 -6.535156 -5.507813 -6.609375 -4.59375 -6.609375 C -3.5 -6.609375 -2.613281 -6.492188 -1.9375 -6.265625 C -1.269531 -6.046875 -0.753906 -5.710938 -0.390625 -5.265625 C -0.0234375 -4.816406 0.15625 -4.253906 0.15625 -3.578125 C 0.15625 -2.679688 -0.164063 -1.972656 -0.8125 -1.453125 C -1.582031 -0.847656 -2.84375 -0.546875 -4.59375 -0.546875 Z M -4.59375 -1.71875 C -3.0625 -1.71875 -2.039063 -1.894531 -1.53125 -2.25 C -1.03125 -2.601563 -0.78125 -3.046875 -0.78125 -3.578125 C -0.78125 -4.097656 -1.03125 -4.535156 -1.53125 -4.890625 C -2.039063 -5.253906 -3.0625 -5.4375 -4.59375 -5.4375 C -6.121094 -5.4375 -7.140625 -5.253906 -7.640625 -4.890625 C -8.136719 -4.535156 -8.390625 -4.089844 -8.390625 -3.5625 C -8.390625 -3.039063 -8.167969 -2.617188 -7.734375 -2.296875 C -7.160156 -1.910156 -6.113281 -1.71875 -4.59375 -1.71875 Z M -4.59375 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M -7.03125 -6.46875 L -6.9375 -5.328125 C -7.382813 -5.234375 -7.710938 -5.089844 -7.921875 -4.90625 C -8.242188 -4.59375 -8.40625 -4.210938 -8.40625 -3.765625 C -8.40625 -3.398438 -8.300781 -3.074219 -8.09375 -2.796875 C -7.832031 -2.441406 -7.449219 -2.160156 -6.953125 -1.953125 C -6.453125 -1.742188 -5.730469 -1.632813 -4.796875 -1.625 C -5.210938 -1.894531 -5.519531 -2.226563 -5.71875 -2.625 C -5.925781 -3.027344 -6.03125 -3.453125 -6.03125 -3.890625 C -6.03125 -4.648438 -5.746094 -5.296875 -5.1875 -5.828125 C -4.632813 -6.367188 -3.910156 -6.640625 -3.015625 -6.640625 C -2.429688 -6.640625 -1.886719 -6.507813 -1.390625 -6.25 C -0.890625 -6 -0.503906 -5.652344 -0.234375 -5.21875 C 0.0234375 -4.78125 0.15625 -4.277344 0.15625 -3.71875 C 0.15625 -2.769531 -0.191406 -1.992188 -0.890625 -1.390625 C -1.585938 -0.785156 -2.742188 -0.484375 -4.359375 -0.484375 C -6.148438 -0.484375 -7.457031 -0.816406 -8.28125 -1.484375 C -8.988281 -2.066406 -9.34375 -2.847656 -9.34375 -3.828125 C -9.34375 -4.554688 -9.132813 -5.15625 -8.71875 -5.625 C -8.3125 -6.089844 -7.746094 -6.375 -7.03125 -6.46875 Z M -3.015625 -1.796875 C -2.617188 -1.796875 -2.238281 -1.878906 -1.875 -2.046875 C -1.519531 -2.210938 -1.246094 -2.445313 -1.0625 -2.75 C -0.875 -3.050781 -0.78125 -3.367188 -0.78125 -3.703125 C -0.78125 -4.179688 -0.972656 -4.59375 -1.359375 -4.9375 C -1.753906 -5.289063 -2.285156 -5.46875 -2.953125 -5.46875 C -3.597656 -5.46875 -4.101563 -5.292969 -4.46875 -4.953125 C -4.839844 -4.609375 -5.03125 -4.175781 -5.03125 -3.65625 C -5.03125 -3.132813 -4.839844 -2.691406 -4.46875 -2.328125 C -4.101563 -1.972656 -3.617188 -1.796875 -3.015625 -1.796875 Z M -3.015625 -1.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 4.828125 0 L 4.828125 -0.78125 C 4.429688 -0.164063 3.851563 0.140625 3.09375 0.140625 C 2.59375 0.140625 2.132813 0.00390625 1.71875 -0.265625 C 1.300781 -0.542969 0.976563 -0.929688 0.75 -1.421875 C 0.519531 -1.910156 0.40625 -2.472656 0.40625 -3.109375 C 0.40625 -3.722656 0.507813 -4.285156 0.71875 -4.796875 C 0.925781 -5.304688 1.238281 -5.691406 1.65625 -5.953125 C 2.070313 -6.222656 2.535156 -6.359375 3.046875 -6.359375 C 3.417969 -6.359375 3.753906 -6.277344 4.046875 -6.125 C 4.335938 -5.96875 4.578125 -5.761719 4.765625 -5.515625 L 4.765625 -8.59375 L 5.8125 -8.59375 L 5.8125 0 Z M 1.5 -3.109375 C 1.5 -2.304688 1.664063 -1.707031 2 -1.3125 C 2.332031 -0.925781 2.726563 -0.734375 3.1875 -0.734375 C 3.644531 -0.734375 4.035156 -0.921875 4.359375 -1.296875 C 4.679688 -1.667969 4.84375 -2.242188 4.84375 -3.015625 C 4.84375 -3.867188 4.675781 -4.492188 4.34375 -4.890625 C 4.019531 -5.285156 3.617188 -5.484375 3.140625 -5.484375 C 2.671875 -5.484375 2.277344 -5.289063 1.96875 -4.90625 C 1.65625 -4.53125 1.5 -3.929688 1.5 -3.109375 Z M 1.5 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 0.796875 -7.375 L 0.796875 -8.59375 L 1.859375 -8.59375 L 1.859375 -7.375 Z M 0.796875 0 L 0.796875 -6.21875 L 1.859375 -6.21875 L 1.859375 0 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 0.796875 0 L 0.796875 -6.21875 L 1.734375 -6.21875 L 1.734375 -5.34375 C 1.929688 -5.652344 2.191406 -5.898438 2.515625 -6.078125 C 2.835938 -6.261719 3.207031 -6.359375 3.625 -6.359375 C 4.082031 -6.359375 4.457031 -6.261719 4.75 -6.078125 C 5.050781 -5.890625 5.257813 -5.621094 5.375 -5.28125 C 5.871094 -5.996094 6.515625 -6.359375 7.296875 -6.359375 C 7.917969 -6.359375 8.394531 -6.183594 8.71875 -5.84375 C 9.050781 -5.507813 9.21875 -4.980469 9.21875 -4.265625 L 9.21875 0 L 8.171875 0 L 8.171875 -3.921875 C 8.171875 -4.335938 8.132813 -4.640625 8.0625 -4.828125 C 8 -5.011719 7.878906 -5.164063 7.703125 -5.28125 C 7.523438 -5.394531 7.308594 -5.453125 7.0625 -5.453125 C 6.625 -5.453125 6.257813 -5.304688 5.96875 -5.015625 C 5.6875 -4.722656 5.546875 -4.253906 5.546875 -3.609375 L 5.546875 0 L 4.484375 0 L 4.484375 -4.046875 C 4.484375 -4.511719 4.394531 -4.863281 4.21875 -5.09375 C 4.050781 -5.332031 3.773438 -5.453125 3.390625 -5.453125 C 3.085938 -5.453125 2.808594 -5.371094 2.5625 -5.21875 C 2.3125 -5.0625 2.128906 -4.832031 2.015625 -4.53125 C 1.898438 -4.226563 1.84375 -3.792969 1.84375 -3.234375 L 1.84375 0 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 0.78125 -7.359375 L 0.78125 -8.59375 L 1.84375 -8.59375 L 1.84375 -7.359375 Z M -0.546875 2.421875 L -0.359375 1.515625 C -0.140625 1.566406 0.0234375 1.59375 0.140625 1.59375 C 0.355469 1.59375 0.519531 1.519531 0.625 1.375 C 0.726563 1.238281 0.78125 0.882813 0.78125 0.3125 L 0.78125 -6.21875 L 1.84375 -6.21875 L 1.84375 0.34375 C 1.84375 1.101563 1.742188 1.632813 1.546875 1.9375 C 1.285156 2.332031 0.863281 2.53125 0.28125 2.53125 C -0.0078125 2.53125 -0.285156 2.492188 -0.546875 2.421875 Z M -0.546875 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 4.875 0 L 4.875 -0.921875 C 4.382813 -0.210938 3.722656 0.140625 2.890625 0.140625 C 2.523438 0.140625 2.179688 0.0703125 1.859375 -0.0625 C 1.546875 -0.207031 1.308594 -0.382813 1.15625 -0.59375 C 1 -0.808594 0.886719 -1.078125 0.828125 -1.390625 C 0.785156 -1.585938 0.765625 -1.914063 0.765625 -2.375 L 0.765625 -6.21875 L 1.828125 -6.21875 L 1.828125 -2.765625 C 1.828125 -2.222656 1.847656 -1.851563 1.890625 -1.65625 C 1.949219 -1.382813 2.085938 -1.164063 2.296875 -1 C 2.511719 -0.84375 2.785156 -0.765625 3.109375 -0.765625 C 3.417969 -0.765625 3.710938 -0.84375 3.984375 -1 C 4.261719 -1.164063 4.460938 -1.390625 4.578125 -1.671875 C 4.699219 -1.949219 4.765625 -2.359375 4.765625 -2.890625 L 4.765625 -6.21875 L 5.8125 -6.21875 L 5.8125 0 Z M 4.875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 0.375 -1.859375 L 1.40625 -2.015625 C 1.464844 -1.597656 1.628906 -1.277344 1.890625 -1.0625 C 2.160156 -0.84375 2.539063 -0.734375 3.03125 -0.734375 C 3.507813 -0.734375 3.863281 -0.828125 4.09375 -1.015625 C 4.332031 -1.210938 4.453125 -1.445313 4.453125 -1.71875 C 4.453125 -1.957031 4.347656 -2.144531 4.140625 -2.28125 C 3.992188 -2.371094 3.632813 -2.492188 3.0625 -2.640625 C 2.289063 -2.835938 1.753906 -3.003906 1.453125 -3.140625 C 1.160156 -3.285156 0.933594 -3.484375 0.78125 -3.734375 C 0.625 -3.980469 0.546875 -4.265625 0.546875 -4.578125 C 0.546875 -4.847656 0.609375 -5.101563 0.734375 -5.34375 C 0.855469 -5.582031 1.03125 -5.78125 1.25 -5.9375 C 1.414063 -6.050781 1.640625 -6.148438 1.921875 -6.234375 C 2.199219 -6.316406 2.507813 -6.359375 2.84375 -6.359375 C 3.320313 -6.359375 3.742188 -6.285156 4.109375 -6.140625 C 4.480469 -6.003906 4.757813 -5.816406 4.9375 -5.578125 C 5.113281 -5.335938 5.234375 -5.019531 5.296875 -4.625 L 4.265625 -4.484375 C 4.222656 -4.792969 4.085938 -5.039063 3.859375 -5.21875 C 3.640625 -5.402344 3.320313 -5.5 2.90625 -5.5 C 2.425781 -5.5 2.082031 -5.414063 1.875 -5.25 C 1.664063 -5.09375 1.5625 -4.902344 1.5625 -4.6875 C 1.5625 -4.550781 1.601563 -4.429688 1.6875 -4.328125 C 1.777344 -4.210938 1.914063 -4.117188 2.09375 -4.046875 C 2.195313 -4.003906 2.507813 -3.914063 3.03125 -3.78125 C 3.777344 -3.570313 4.300781 -3.402344 4.59375 -3.28125 C 4.882813 -3.15625 5.113281 -2.972656 5.28125 -2.734375 C 5.445313 -2.492188 5.53125 -2.191406 5.53125 -1.828125 C 5.53125 -1.472656 5.425781 -1.136719 5.21875 -0.828125 C 5.019531 -0.523438 4.726563 -0.285156 4.34375 -0.109375 C 3.957031 0.0546875 3.519531 0.140625 3.03125 0.140625 C 2.21875 0.140625 1.597656 -0.0234375 1.171875 -0.359375 C 0.753906 -0.699219 0.488281 -1.203125 0.375 -1.859375 Z M 0.375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 3.09375 -0.9375 L 3.25 -0.015625 C 2.945313 0.0429688 2.679688 0.078125 2.453125 0.078125 C 2.066406 0.078125 1.769531 0.0195313 1.5625 -0.09375 C 1.351563 -0.214844 1.199219 -0.378906 1.109375 -0.578125 C 1.023438 -0.773438 0.984375 -1.191406 0.984375 -1.828125 L 0.984375 -5.40625 L 0.21875 -5.40625 L 0.21875 -6.21875 L 0.984375 -6.21875 L 0.984375 -7.765625 L 2.03125 -8.390625 L 2.03125 -6.21875 L 3.09375 -6.21875 L 3.09375 -5.40625 L 2.03125 -5.40625 L 2.03125 -1.765625 C 2.03125 -1.460938 2.046875 -1.269531 2.078125 -1.1875 C 2.117188 -1.101563 2.179688 -1.035156 2.265625 -0.984375 C 2.347656 -0.929688 2.46875 -0.90625 2.625 -0.90625 C 2.746094 -0.90625 2.90625 -0.914063 3.09375 -0.9375 Z M 3.09375 -0.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 6.34375 -5.046875 L 0.671875 -5.046875 L 0.671875 -6.03125 L 6.34375 -6.03125 Z M 6.34375 -2.4375 L 0.671875 -2.4375 L 0.671875 -3.421875 L 6.34375 -3.421875 Z M 6.34375 -2.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 0.5 -4.234375 C 0.5 -5.253906 0.601563 -6.070313 0.8125 -6.6875 C 1.019531 -7.308594 1.328125 -7.789063 1.734375 -8.125 C 2.148438 -8.457031 2.671875 -8.625 3.296875 -8.625 C 3.753906 -8.625 4.15625 -8.527344 4.5 -8.34375 C 4.851563 -8.15625 5.144531 -7.882813 5.375 -7.53125 C 5.601563 -7.1875 5.78125 -6.761719 5.90625 -6.265625 C 6.027344 -5.765625 6.09375 -5.085938 6.09375 -4.234375 C 6.09375 -3.222656 5.988281 -2.410156 5.78125 -1.796875 C 5.582031 -1.179688 5.273438 -0.699219 4.859375 -0.359375 C 4.453125 -0.0234375 3.929688 0.140625 3.296875 0.140625 C 2.472656 0.140625 1.820313 -0.15625 1.34375 -0.75 C 0.78125 -1.457031 0.5 -2.617188 0.5 -4.234375 Z M 1.578125 -4.234375 C 1.578125 -2.828125 1.742188 -1.886719 2.078125 -1.421875 C 2.410156 -0.953125 2.816406 -0.71875 3.296875 -0.71875 C 3.785156 -0.71875 4.191406 -0.953125 4.515625 -1.421875 C 4.847656 -1.886719 5.015625 -2.828125 5.015625 -4.234375 C 5.015625 -5.648438 4.847656 -6.585938 4.515625 -7.046875 C 4.191406 -7.511719 3.777344 -7.75 3.28125 -7.75 C 2.800781 -7.75 2.414063 -7.542969 2.125 -7.140625 C 1.757813 -6.617188 1.578125 -5.648438 1.578125 -4.234375 Z M 1.578125 -4.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 4.46875 0 L 3.421875 0 L 3.421875 -6.71875 C 3.160156 -6.476563 2.820313 -6.230469 2.40625 -5.984375 C 2 -5.742188 1.632813 -5.566406 1.3125 -5.453125 L 1.3125 -6.46875 C 1.894531 -6.746094 2.40625 -7.082031 2.84375 -7.46875 C 3.289063 -7.863281 3.609375 -8.25 3.796875 -8.625 L 4.46875 -8.625 Z M 4.46875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 6.046875 -1.015625 L 6.046875 0 L 0.359375 0 C 0.359375 -0.246094 0.398438 -0.492188 0.484375 -0.734375 C 0.628906 -1.117188 0.859375 -1.5 1.171875 -1.875 C 1.492188 -2.246094 1.957031 -2.679688 2.5625 -3.171875 C 3.496094 -3.941406 4.128906 -4.550781 4.453125 -5 C 4.785156 -5.445313 4.953125 -5.867188 4.953125 -6.265625 C 4.953125 -6.679688 4.800781 -7.03125 4.5 -7.3125 C 4.195313 -7.601563 3.804688 -7.75 3.328125 -7.75 C 2.816406 -7.75 2.410156 -7.597656 2.109375 -7.296875 C 1.804688 -6.992188 1.648438 -6.570313 1.640625 -6.03125 L 0.5625 -6.140625 C 0.632813 -6.949219 0.910156 -7.566406 1.390625 -7.984375 C 1.878906 -8.410156 2.535156 -8.625 3.359375 -8.625 C 4.179688 -8.625 4.832031 -8.394531 5.3125 -7.9375 C 5.789063 -7.476563 6.03125 -6.910156 6.03125 -6.234375 C 6.03125 -5.890625 5.957031 -5.550781 5.8125 -5.21875 C 5.675781 -4.894531 5.441406 -4.542969 5.109375 -4.171875 C 4.785156 -3.804688 4.246094 -3.304688 3.5 -2.671875 C 2.863281 -2.140625 2.449219 -1.773438 2.265625 -1.578125 C 2.085938 -1.390625 1.941406 -1.199219 1.828125 -1.015625 Z M 6.046875 -1.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 0.5 -2.265625 L 1.5625 -2.40625 C 1.675781 -1.8125 1.878906 -1.378906 2.171875 -1.109375 C 2.460938 -0.847656 2.816406 -0.71875 3.234375 -0.71875 C 3.730469 -0.71875 4.15625 -0.890625 4.5 -1.234375 C 4.839844 -1.574219 5.015625 -2.003906 5.015625 -2.515625 C 5.015625 -2.992188 4.851563 -3.390625 4.53125 -3.703125 C 4.21875 -4.023438 3.816406 -4.1875 3.328125 -4.1875 C 3.128906 -4.1875 2.878906 -4.144531 2.578125 -4.0625 L 2.703125 -5 C 2.773438 -4.988281 2.832031 -4.984375 2.875 -4.984375 C 3.320313 -4.984375 3.722656 -5.097656 4.078125 -5.328125 C 4.441406 -5.566406 4.625 -5.929688 4.625 -6.421875 C 4.625 -6.804688 4.492188 -7.125 4.234375 -7.375 C 3.972656 -7.632813 3.632813 -7.765625 3.21875 -7.765625 C 2.8125 -7.765625 2.464844 -7.632813 2.1875 -7.375 C 1.914063 -7.113281 1.742188 -6.726563 1.671875 -6.21875 L 0.609375 -6.40625 C 0.730469 -7.101563 1.023438 -7.644531 1.484375 -8.03125 C 1.941406 -8.425781 2.507813 -8.625 3.1875 -8.625 C 3.652344 -8.625 4.085938 -8.519531 4.484375 -8.3125 C 4.878906 -8.113281 5.179688 -7.839844 5.390625 -7.5 C 5.597656 -7.15625 5.703125 -6.785156 5.703125 -6.390625 C 5.703125 -6.023438 5.601563 -5.683594 5.40625 -5.375 C 5.207031 -5.070313 4.914063 -4.832031 4.53125 -4.65625 C 5.027344 -4.539063 5.421875 -4.292969 5.703125 -3.921875 C 5.980469 -3.554688 6.125 -3.089844 6.125 -2.53125 C 6.125 -1.78125 5.847656 -1.144531 5.296875 -0.625 C 4.753906 -0.101563 4.066406 0.15625 3.234375 0.15625 C 2.484375 0.15625 1.855469 -0.0664063 1.359375 -0.515625 C 0.859375 -0.972656 0.570313 -1.554688 0.5 -2.265625 Z M 0.5 -2.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 3.875 0 L 3.875 -2.0625 L 0.15625 -2.0625 L 0.15625 -3.03125 L 4.078125 -8.59375 L 4.9375 -8.59375 L 4.9375 -3.03125 L 6.09375 -3.03125 L 6.09375 -2.0625 L 4.9375 -2.0625 L 4.9375 0 Z M 3.875 -3.03125 L 3.875 -6.890625 L 1.1875 -3.03125 Z M 3.875 -3.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 4.859375 -0.765625 C 4.460938 -0.429688 4.082031 -0.195313 3.71875 -0.0625 C 3.363281 0.0703125 2.976563 0.140625 2.5625 0.140625 C 1.875 0.140625 1.347656 -0.0234375 0.984375 -0.359375 C 0.617188 -0.691406 0.4375 -1.117188 0.4375 -1.640625 C 0.4375 -1.941406 0.503906 -2.21875 0.640625 -2.46875 C 0.773438 -2.726563 0.957031 -2.929688 1.1875 -3.078125 C 1.414063 -3.230469 1.671875 -3.347656 1.953125 -3.421875 C 2.148438 -3.480469 2.460938 -3.539063 2.890625 -3.59375 C 3.730469 -3.683594 4.359375 -3.804688 4.765625 -3.953125 C 4.765625 -4.097656 4.765625 -4.1875 4.765625 -4.21875 C 4.765625 -4.652344 4.664063 -4.960938 4.46875 -5.140625 C 4.195313 -5.367188 3.792969 -5.484375 3.265625 -5.484375 C 2.773438 -5.484375 2.410156 -5.394531 2.171875 -5.21875 C 1.929688 -5.050781 1.753906 -4.746094 1.640625 -4.3125 L 0.609375 -4.453125 C 0.699219 -4.886719 0.859375 -5.242188 1.078125 -5.515625 C 1.292969 -5.785156 1.609375 -5.992188 2.015625 -6.140625 C 2.417969 -6.285156 2.890625 -6.359375 3.421875 -6.359375 C 3.949219 -6.359375 4.382813 -6.292969 4.71875 -6.171875 C 5.050781 -6.046875 5.296875 -5.886719 5.453125 -5.703125 C 5.605469 -5.515625 5.71875 -5.273438 5.78125 -4.984375 C 5.808594 -4.804688 5.828125 -4.480469 5.828125 -4.015625 L 5.828125 -2.609375 C 5.828125 -1.628906 5.847656 -1.007813 5.890625 -0.75 C 5.941406 -0.488281 6.035156 -0.238281 6.171875 0 L 5.0625 0 C 4.957031 -0.214844 4.886719 -0.472656 4.859375 -0.765625 Z M 4.765625 -3.125 C 4.378906 -2.96875 3.804688 -2.832031 3.046875 -2.71875 C 2.609375 -2.65625 2.300781 -2.582031 2.125 -2.5 C 1.945313 -2.425781 1.804688 -2.316406 1.703125 -2.171875 C 1.609375 -2.023438 1.5625 -1.855469 1.5625 -1.671875 C 1.5625 -1.390625 1.664063 -1.152344 1.875 -0.96875 C 2.089844 -0.78125 2.40625 -0.6875 2.8125 -0.6875 C 3.214844 -0.6875 3.578125 -0.773438 3.890625 -0.953125 C 4.210938 -1.128906 4.445313 -1.375 4.59375 -1.6875 C 4.707031 -1.925781 4.765625 -2.273438 4.765625 -2.734375 Z M 4.765625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 2.8125 2.53125 C 2.226563 1.789063 1.730469 0.929688 1.328125 -0.046875 C 0.929688 -1.035156 0.734375 -2.054688 0.734375 -3.109375 C 0.734375 -4.035156 0.878906 -4.925781 1.171875 -5.78125 C 1.523438 -6.769531 2.070313 -7.753906 2.8125 -8.734375 L 3.5625 -8.734375 C 3.09375 -7.921875 2.777344 -7.339844 2.625 -7 C 2.382813 -6.457031 2.195313 -5.894531 2.0625 -5.3125 C 1.894531 -4.582031 1.8125 -3.847656 1.8125 -3.109375 C 1.8125 -1.222656 2.394531 0.65625 3.5625 2.53125 Z M 2.8125 2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 1.765625 0 L 0.78125 0 L 0.78125 -8.59375 L 1.84375 -8.59375 L 1.84375 -5.53125 C 2.289063 -6.082031 2.859375 -6.359375 3.546875 -6.359375 C 3.929688 -6.359375 4.289063 -6.277344 4.625 -6.125 C 4.964844 -5.976563 5.25 -5.761719 5.46875 -5.484375 C 5.695313 -5.203125 5.875 -4.863281 6 -4.46875 C 6.121094 -4.070313 6.1875 -3.648438 6.1875 -3.203125 C 6.1875 -2.140625 5.917969 -1.316406 5.390625 -0.734375 C 4.859375 -0.148438 4.226563 0.140625 3.5 0.140625 C 2.757813 0.140625 2.179688 -0.164063 1.765625 -0.78125 Z M 1.75 -3.15625 C 1.75 -2.414063 1.851563 -1.878906 2.0625 -1.546875 C 2.394531 -1.003906 2.84375 -0.734375 3.40625 -0.734375 C 3.863281 -0.734375 4.257813 -0.929688 4.59375 -1.328125 C 4.933594 -1.722656 5.109375 -2.320313 5.109375 -3.125 C 5.109375 -3.933594 4.945313 -4.535156 4.625 -4.921875 C 4.300781 -5.304688 3.910156 -5.5 3.453125 -5.5 C 2.992188 -5.5 2.589844 -5.292969 2.25 -4.890625 C 1.914063 -4.492188 1.75 -3.914063 1.75 -3.15625 Z M 1.75 -3.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 0.40625 -3.109375 C 0.40625 -4.261719 0.722656 -5.117188 1.359375 -5.671875 C 1.886719 -6.128906 2.539063 -6.359375 3.3125 -6.359375 C 4.164063 -6.359375 4.863281 -6.074219 5.40625 -5.515625 C 5.957031 -4.960938 6.234375 -4.191406 6.234375 -3.203125 C 6.234375 -2.398438 6.113281 -1.769531 5.875 -1.3125 C 5.632813 -0.851563 5.277344 -0.492188 4.8125 -0.234375 C 4.351563 0.0117188 3.851563 0.140625 3.3125 0.140625 C 2.445313 0.140625 1.742188 -0.132813 1.203125 -0.6875 C 0.671875 -1.246094 0.40625 -2.054688 0.40625 -3.109375 Z M 1.484375 -3.109375 C 1.484375 -2.316406 1.65625 -1.722656 2 -1.328125 C 2.351563 -0.929688 2.789063 -0.734375 3.3125 -0.734375 C 3.839844 -0.734375 4.28125 -0.929688 4.625 -1.328125 C 4.964844 -1.722656 5.140625 -2.328125 5.140625 -3.140625 C 5.140625 -3.910156 4.960938 -4.492188 4.609375 -4.890625 C 4.265625 -5.285156 3.832031 -5.484375 3.3125 -5.484375 C 2.789063 -5.484375 2.351563 -5.285156 2 -4.890625 C 1.65625 -4.503906 1.484375 -3.910156 1.484375 -3.109375 Z M 1.484375 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 2.515625 0 L 0.15625 -6.21875 L 1.265625 -6.21875 L 2.609375 -2.5 C 2.742188 -2.09375 2.875 -1.675781 3 -1.25 C 3.089844 -1.570313 3.222656 -1.960938 3.390625 -2.421875 L 4.78125 -6.21875 L 5.859375 -6.21875 L 3.5 0 Z M 2.515625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 5.046875 -2 L 6.140625 -1.875 C 5.972656 -1.238281 5.652344 -0.742188 5.1875 -0.390625 C 4.71875 -0.0351563 4.121094 0.140625 3.40625 0.140625 C 2.5 0.140625 1.773438 -0.140625 1.234375 -0.703125 C 0.703125 -1.261719 0.4375 -2.050781 0.4375 -3.0625 C 0.4375 -4.101563 0.707031 -4.910156 1.25 -5.484375 C 1.789063 -6.066406 2.488281 -6.359375 3.34375 -6.359375 C 4.175781 -6.359375 4.851563 -6.074219 5.375 -5.515625 C 5.902344 -4.953125 6.171875 -4.152344 6.171875 -3.125 C 6.171875 -3.0625 6.171875 -2.964844 6.171875 -2.84375 L 1.53125 -2.84375 C 1.570313 -2.15625 1.765625 -1.628906 2.109375 -1.265625 C 2.449219 -0.910156 2.882813 -0.734375 3.40625 -0.734375 C 3.789063 -0.734375 4.117188 -0.832031 4.390625 -1.03125 C 4.667969 -1.238281 4.890625 -1.5625 5.046875 -2 Z M 1.59375 -3.703125 L 5.0625 -3.703125 C 5.019531 -4.230469 4.886719 -4.628906 4.671875 -4.890625 C 4.328125 -5.292969 3.886719 -5.5 3.359375 -5.5 C 2.867188 -5.5 2.457031 -5.335938 2.125 -5.015625 C 1.800781 -4.691406 1.621094 -4.253906 1.59375 -3.703125 Z M 1.59375 -3.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 1.484375 2.53125 L 0.734375 2.53125 C 1.898438 0.65625 2.484375 -1.222656 2.484375 -3.109375 C 2.484375 -3.835938 2.398438 -4.566406 2.234375 -5.296875 C 2.097656 -5.878906 1.910156 -6.441406 1.671875 -6.984375 C 1.515625 -7.324219 1.199219 -7.910156 0.734375 -8.734375 L 1.484375 -8.734375 C 2.210938 -7.753906 2.753906 -6.769531 3.109375 -5.78125 C 3.410156 -4.925781 3.5625 -4.035156 3.5625 -3.109375 C 3.5625 -2.054688 3.355469 -1.035156 2.953125 -0.046875 C 2.546875 0.929688 2.054688 1.789063 1.484375 2.53125 Z M 1.484375 2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 4.859375 -2.28125 L 5.890625 -2.140625 C 5.773438 -1.429688 5.480469 -0.871094 5.015625 -0.46875 C 4.546875 -0.0625 3.972656 0.140625 3.296875 0.140625 C 2.441406 0.140625 1.753906 -0.132813 1.234375 -0.6875 C 0.722656 -1.246094 0.46875 -2.050781 0.46875 -3.09375 C 0.46875 -3.757813 0.578125 -4.34375 0.796875 -4.84375 C 1.023438 -5.351563 1.363281 -5.734375 1.8125 -5.984375 C 2.269531 -6.230469 2.769531 -6.359375 3.3125 -6.359375 C 3.976563 -6.359375 4.523438 -6.183594 4.953125 -5.84375 C 5.386719 -5.507813 5.671875 -5.023438 5.796875 -4.390625 L 4.765625 -4.234375 C 4.671875 -4.648438 4.496094 -4.960938 4.25 -5.171875 C 4 -5.386719 3.695313 -5.5 3.34375 -5.5 C 2.8125 -5.5 2.378906 -5.304688 2.046875 -4.921875 C 1.710938 -4.546875 1.546875 -3.945313 1.546875 -3.125 C 1.546875 -2.28125 1.707031 -1.667969 2.03125 -1.296875 C 2.351563 -0.921875 2.769531 -0.734375 3.28125 -0.734375 C 3.695313 -0.734375 4.039063 -0.859375 4.3125 -1.109375 C 4.589844 -1.355469 4.773438 -1.75 4.859375 -2.28125 Z M 4.859375 -2.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 0.796875 0 L 0.796875 -6.21875 L 1.734375 -6.21875 L 1.734375 -5.34375 C 2.191406 -6.019531 2.851563 -6.359375 3.71875 -6.359375 C 4.089844 -6.359375 4.4375 -6.289063 4.75 -6.15625 C 5.070313 -6.019531 5.3125 -5.839844 5.46875 -5.625 C 5.621094 -5.40625 5.734375 -5.148438 5.796875 -4.859375 C 5.824219 -4.660156 5.84375 -4.316406 5.84375 -3.828125 L 5.84375 0 L 4.796875 0 L 4.796875 -3.78125 C 4.796875 -4.214844 4.753906 -4.539063 4.671875 -4.75 C 4.585938 -4.957031 4.441406 -5.125 4.234375 -5.25 C 4.023438 -5.382813 3.777344 -5.453125 3.5 -5.453125 C 3.050781 -5.453125 2.660156 -5.304688 2.328125 -5.015625 C 2.003906 -4.734375 1.84375 -4.195313 1.84375 -3.40625 L 1.84375 0 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 0.78125 0 L 0.78125 -6.21875 L 1.734375 -6.21875 L 1.734375 -5.28125 C 1.972656 -5.714844 2.191406 -6.003906 2.390625 -6.140625 C 2.597656 -6.285156 2.828125 -6.359375 3.078125 -6.359375 C 3.429688 -6.359375 3.789063 -6.246094 4.15625 -6.03125 L 3.796875 -5.046875 C 3.535156 -5.199219 3.277344 -5.28125 3.03125 -5.28125 C 2.789063 -5.28125 2.574219 -5.207031 2.390625 -5.0625 C 2.210938 -4.925781 2.085938 -4.730469 2.015625 -4.484375 C 1.890625 -4.109375 1.828125 -3.699219 1.828125 -3.265625 L 1.828125 0 Z M 0.78125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 0.765625 0 L 0.765625 -8.59375 L 1.828125 -8.59375 L 1.828125 0 Z M 0.765625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 1.9375 0 L 0.03125 -6.21875 L 1.125 -6.21875 L 2.109375 -2.625 L 2.484375 -1.296875 C 2.503906 -1.355469 2.613281 -1.785156 2.8125 -2.578125 L 3.796875 -6.21875 L 4.875 -6.21875 L 5.8125 -2.609375 L 6.125 -1.421875 L 6.484375 -2.625 L 7.546875 -6.21875 L 8.578125 -6.21875 L 6.625 0 L 5.53125 0 L 4.546875 -3.734375 L 4.296875 -4.78125 L 3.046875 0 Z M 1.9375 0 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 698.046875 L 2651.953125 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 698.046875 L 5145.963542 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 2297.005208 L 4833.984375 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 2348.958333 L 2651.953125 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 2297.005208 L 2964.0625 2245.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.921875 524.53125 L 79.558594 526.089844 L 88.921875 527.648438 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4833.984375 2245.052083 L 5145.963542 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 2297.005208 L 4833.984375 2348.958333 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 145.019531 527.648438 L 154.378906 526.089844 L 145.019531 524.53125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="102.588379" y="523.572133"/>
  <use xlink:href="#glyph0-2" x="109.849499" y="523.572133"/>
  <use xlink:href="#glyph0-2" x="117.110619" y="523.572133"/>
  <use xlink:href="#glyph0-2" x="124.37174" y="523.572133"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 4439.0625 L 2651.953125 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 4439.0625 L 5145.963542 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 6038.020833 L 4833.984375 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 6089.973958 L 2651.953125 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 6038.020833 L 2964.0625 5985.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.921875 412.300781 L 79.558594 413.859375 L 88.921875 415.421875 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4833.984375 5985.9375 L 5145.963542 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 6038.020833 L 4833.984375 6089.973958 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 145.019531 415.421875 L 154.378906 413.859375 L 145.019531 412.300781 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="93.21712" y="411.34149"/>
  <use xlink:href="#glyph0-2" x="100.47824" y="411.34149"/>
  <use xlink:href="#glyph0-2" x="107.739361" y="411.34149"/>
  <use xlink:href="#glyph0-2" x="115.000481" y="411.34149"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 8179.947917 L 2651.953125 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 8179.947917 L 5145.963542 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 9779.036458 L 4833.984375 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 9830.989583 L 2651.953125 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 9779.036458 L 2964.0625 9726.953125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.921875 300.070313 L 79.558594 301.628906 L 88.921875 303.191406 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4833.984375 9726.953125 L 5145.963542 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 9779.036458 L 4833.984375 9830.989583 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 145.019531 303.191406 L 154.378906 301.628906 L 145.019531 300.070313 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="111.959637" y="299.110848"/>
  <use xlink:href="#glyph0-2" x="119.220758" y="299.110848"/>
  <use xlink:href="#glyph0-2" x="126.481878" y="299.110848"/>
  <use xlink:href="#glyph0-2" x="133.742999" y="299.110848"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 11920.963542 L 2651.953125 14766.015625 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 11920.963542 L 5145.963542 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 13520.052083 L 4833.984375 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 13572.005208 L 2651.953125 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 13520.052083 L 2964.0625 13467.96875 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.921875 187.839844 L 79.558594 189.398438 L 88.921875 190.960938 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4833.984375 13467.96875 L 5145.963542 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 13520.052083 L 4833.984375 13572.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 145.019531 190.960938 L 154.378906 189.398438 L 145.019531 187.839844 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="77.074613" y="182.746376"/>
  <use xlink:href="#glyph1-2" x="77.074613" y="175.485256"/>
  <use xlink:href="#glyph1-2" x="77.074613" y="168.224135"/>
  <use xlink:href="#glyph1-2" x="77.074613" y="160.963015"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 15661.979167 L 2651.953125 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 15661.979167 L 5145.963542 18507.03125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 17260.9375 L 4833.984375 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2964.0625 17313.020833 L 2651.953125 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2651.953125 17260.9375 L 2964.0625 17208.984375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.921875 75.609375 L 79.558594 77.171875 L 88.921875 78.730469 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4833.984375 17208.984375 L 5145.963542 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5145.963542 17260.9375 L 4833.984375 17313.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 145.019531 78.730469 L 154.378906 77.171875 L 145.019531 75.609375 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="151.895041" y="70.515733"/>
  <use xlink:href="#glyph1-2" x="151.895041" y="63.254613"/>
  <use xlink:href="#glyph1-2" x="151.895041" y="55.993493"/>
  <use xlink:href="#glyph1-2" x="151.895041" y="48.732372"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="8.255" y="550.740533"/>
  <use xlink:href="#glyph2-2" x="14.644786" y="550.740533"/>
  <use xlink:href="#glyph2-3" x="17.196103" y="550.740533"/>
  <use xlink:href="#glyph2-4" x="26.76929" y="550.740533"/>
  <use xlink:href="#glyph2-5" x="29.320607" y="550.740533"/>
  <use xlink:href="#glyph2-6" x="35.710393" y="550.740533"/>
  <use xlink:href="#glyph2-7" x="41.456604" y="550.740533"/>
  <use xlink:href="#glyph2-0" x="44.651497" y="550.740533"/>
  <use xlink:href="#glyph2-8" x="47.84639" y="550.740533"/>
  <use xlink:href="#glyph2-0" x="54.557963" y="550.740533"/>
  <use xlink:href="#glyph2-9" x="57.752856" y="550.740533"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="8.255" y="438.50989"/>
  <use xlink:href="#glyph2-2" x="14.644786" y="438.50989"/>
  <use xlink:href="#glyph2-3" x="17.196103" y="438.50989"/>
  <use xlink:href="#glyph2-4" x="26.76929" y="438.50989"/>
  <use xlink:href="#glyph2-5" x="29.320607" y="438.50989"/>
  <use xlink:href="#glyph2-6" x="35.710393" y="438.50989"/>
  <use xlink:href="#glyph2-7" x="41.456604" y="438.50989"/>
  <use xlink:href="#glyph2-0" x="44.651497" y="438.50989"/>
  <use xlink:href="#glyph2-8" x="47.84639" y="438.50989"/>
  <use xlink:href="#glyph2-0" x="54.557963" y="438.50989"/>
  <use xlink:href="#glyph2-10" x="57.752856" y="438.50989"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="8.255" y="326.279248"/>
  <use xlink:href="#glyph2-2" x="14.644786" y="326.279248"/>
  <use xlink:href="#glyph2-3" x="17.196103" y="326.279248"/>
  <use xlink:href="#glyph2-4" x="26.76929" y="326.279248"/>
  <use xlink:href="#glyph2-5" x="29.320607" y="326.279248"/>
  <use xlink:href="#glyph2-6" x="35.710393" y="326.279248"/>
  <use xlink:href="#glyph2-7" x="41.456604" y="326.279248"/>
  <use xlink:href="#glyph2-0" x="44.651497" y="326.279248"/>
  <use xlink:href="#glyph2-8" x="47.84639" y="326.279248"/>
  <use xlink:href="#glyph2-0" x="54.557963" y="326.279248"/>
  <use xlink:href="#glyph2-11" x="57.752856" y="326.279248"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="8.255" y="214.048605"/>
  <use xlink:href="#glyph2-2" x="14.644786" y="214.048605"/>
  <use xlink:href="#glyph2-3" x="17.196103" y="214.048605"/>
  <use xlink:href="#glyph2-4" x="26.76929" y="214.048605"/>
  <use xlink:href="#glyph2-5" x="29.320607" y="214.048605"/>
  <use xlink:href="#glyph2-6" x="35.710393" y="214.048605"/>
  <use xlink:href="#glyph2-7" x="41.456604" y="214.048605"/>
  <use xlink:href="#glyph2-0" x="44.651497" y="214.048605"/>
  <use xlink:href="#glyph2-8" x="47.84639" y="214.048605"/>
  <use xlink:href="#glyph2-0" x="54.557963" y="214.048605"/>
  <use xlink:href="#glyph2-12" x="57.752856" y="214.048605"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="8.255" y="101.817962"/>
  <use xlink:href="#glyph2-2" x="14.644786" y="101.817962"/>
  <use xlink:href="#glyph2-3" x="17.196103" y="101.817962"/>
  <use xlink:href="#glyph2-4" x="26.76929" y="101.817962"/>
  <use xlink:href="#glyph2-5" x="29.320607" y="101.817962"/>
  <use xlink:href="#glyph2-6" x="35.710393" y="101.817962"/>
  <use xlink:href="#glyph2-7" x="41.456604" y="101.817962"/>
  <use xlink:href="#glyph2-0" x="44.651497" y="101.817962"/>
  <use xlink:href="#glyph2-8" x="47.84639" y="101.817962"/>
  <use xlink:href="#glyph2-0" x="54.557963" y="101.817962"/>
  <use xlink:href="#glyph2-13" x="57.752856" y="101.817962"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="79.244105" y="29.019145"/>
  <use xlink:href="#glyph2-2" x="85.633891" y="29.019145"/>
  <use xlink:href="#glyph2-3" x="88.185209" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="97.758395" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="100.953288" y="29.019145"/>
  <use xlink:href="#glyph2-1" x="107.343074" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="113.73286" y="29.019145"/>
  <use xlink:href="#glyph2-8" x="116.927753" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="123.639327" y="29.019145"/>
  <use xlink:href="#glyph2-10" x="126.83422" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="133.224006" y="29.019145"/>
  <use xlink:href="#glyph2-15" x="136.418899" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="140.245875" y="29.019145"/>
  <use xlink:href="#glyph2-16" x="146.635661" y="29.019145"/>
  <use xlink:href="#glyph2-17" x="153.025447" y="29.019145"/>
  <use xlink:href="#glyph2-18" x="159.415233" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="165.161443" y="29.019145"/>
  <use xlink:href="#glyph2-20" x="171.551229" y="29.019145"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 698.046875 L 16738.020833 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 698.046875 L 17486.979167 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 2297.005208 L 18954.947917 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 2297.005208 L 17486.979167 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 2297.005208 L 16114.973958 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 2245.052083 L 16738.020833 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 2297.005208 L 16426.953125 2348.958333 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 492.808594 527.648438 L 502.140625 526.089844 L 492.808594 524.53125 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 2348.958333 L 17486.979167 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 2297.005208 L 17798.046875 2245.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 533.941406 524.53125 L 524.609375 526.089844 L 533.941406 527.648438 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="545.172312" y="523.572133"/>
  <use xlink:href="#glyph0-2" x="552.433432" y="523.572133"/>
  <use xlink:href="#glyph0-2" x="559.694552" y="523.572133"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 4439.0625 L 16738.020833 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 4439.0625 L 17486.979167 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 6038.020833 L 15270.052083 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 6038.020833 L 17486.979167 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 6038.020833 L 18110.026042 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 5985.9375 L 16738.020833 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 6038.020833 L 16426.953125 6089.973958 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 492.808594 415.421875 L 502.140625 413.859375 L 492.808594 412.300781 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 6089.973958 L 17486.979167 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 6038.020833 L 17798.046875 5985.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 533.941406 412.300781 L 524.609375 413.859375 L 533.941406 415.421875 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="459.979901" y="411.34149"/>
  <use xlink:href="#glyph0-2" x="467.241022" y="411.34149"/>
  <use xlink:href="#glyph0-2" x="474.502142" y="411.34149"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 8179.947917 L 16738.020833 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 8179.947917 L 17486.979167 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 9779.036458 L 18954.947917 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 9779.036458 L 17486.979167 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 9779.036458 L 16114.973958 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 9726.953125 L 16738.020833 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 9779.036458 L 16426.953125 9830.989583 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 492.808594 303.191406 L 502.140625 301.628906 L 492.808594 300.070313 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 9830.989583 L 17486.979167 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 9779.036458 L 17798.046875 9726.953125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 533.941406 300.070313 L 524.609375 301.628906 L 533.941406 303.191406 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="545.172312" y="299.110848"/>
  <use xlink:href="#glyph0-2" x="552.433432" y="299.110848"/>
  <use xlink:href="#glyph0-2" x="559.694552" y="299.110848"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 11920.963542 L 16738.020833 14520.963542 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 11920.963542 L 17486.979167 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 13520.052083 L 17486.979167 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 13520.052083 L 16114.973958 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 13520.052083 L 18110.026042 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 13467.96875 L 16738.020833 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 13520.052083 L 16426.953125 13572.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 492.808594 190.960938 L 502.140625 189.398438 L 492.808594 187.839844 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 13572.005208 L 17486.979167 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 13520.052083 L 17798.046875 13467.96875 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 533.941406 187.839844 L 524.609375 189.398438 L 533.941406 190.960938 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="499.672138" y="182.849254"/>
  <use xlink:href="#glyph1-2" x="499.672138" y="175.588134"/>
  <use xlink:href="#glyph1-2" x="499.672138" y="168.327013"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 15661.979167 L 16738.020833 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 15661.979167 L 17486.979167 18261.979167 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 17260.9375 L 17486.979167 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 17260.9375 L 16114.973958 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 17260.9375 L 18110.026042 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16426.953125 17208.984375 L 16738.020833 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16738.020833 17260.9375 L 16426.953125 17313.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 492.808594 78.730469 L 502.140625 77.171875 L 492.808594 75.609375 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17798.046875 17313.020833 L 17486.979167 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17486.979167 17260.9375 L 17798.046875 17208.984375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 533.941406 75.609375 L 524.609375 77.171875 L 533.941406 78.730469 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="522.118267" y="70.618612"/>
  <use xlink:href="#glyph1-2" x="522.118267" y="63.357491"/>
  <use xlink:href="#glyph1-2" x="522.118267" y="56.096371"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="468.172439" y="29.019145"/>
  <use xlink:href="#glyph2-2" x="474.562224" y="29.019145"/>
  <use xlink:href="#glyph2-3" x="477.113542" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="486.686728" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="489.881621" y="29.019145"/>
  <use xlink:href="#glyph2-1" x="496.271407" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="502.661193" y="29.019145"/>
  <use xlink:href="#glyph2-8" x="505.856086" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="512.56766" y="29.019145"/>
  <use xlink:href="#glyph2-10" x="515.762553" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="522.152339" y="29.019145"/>
  <use xlink:href="#glyph2-15" x="525.347232" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="529.174208" y="29.019145"/>
  <use xlink:href="#glyph2-16" x="535.563994" y="29.019145"/>
  <use xlink:href="#glyph2-17" x="541.95378" y="29.019145"/>
  <use xlink:href="#glyph2-18" x="548.343566" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="554.089776" y="29.019145"/>
  <use xlink:href="#glyph2-20" x="560.479562" y="29.019145"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 698.046875 L 21157.03125 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 698.046875 L 21904.947917 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 2297.005208 L 22527.994792 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 2297.005208 L 21904.947917 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 2297.005208 L 20532.942708 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 2245.052083 L 21157.03125 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 2297.005208 L 20845.052083 2348.958333 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 625.351563 527.648438 L 634.710938 526.089844 L 625.351563 524.53125 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 2348.958333 L 21904.947917 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 2297.005208 L 22217.057292 2245.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 666.511719 524.53125 L 657.148438 526.089844 L 666.511719 527.648438 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="677.721525" y="530.68475"/>
  <use xlink:href="#glyph0-2" x="684.982645" y="530.68475"/>
  <use xlink:href="#glyph0-2" x="692.243766" y="530.68475"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 4439.0625 L 21157.03125 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 4439.0625 L 21904.947917 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 6038.020833 L 20532.942708 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 6038.020833 L 21904.947917 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 6038.020833 L 22527.994792 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 5985.9375 L 21157.03125 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 6038.020833 L 20845.052083 6089.973958 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 625.351563 415.421875 L 634.710938 413.859375 L 625.351563 412.300781 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 6089.973958 L 21904.947917 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 6038.020833 L 22217.057292 5985.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 666.511719 412.300781 L 657.148438 413.859375 L 666.511719 415.421875 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="592.529114" y="418.454107"/>
  <use xlink:href="#glyph0-2" x="599.790235" y="418.454107"/>
  <use xlink:href="#glyph0-2" x="607.051355" y="418.454107"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 8179.947917 L 21157.03125 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 8179.947917 L 21904.947917 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 9779.036458 L 22527.994792 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 9779.036458 L 21904.947917 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 9779.036458 L 20532.942708 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 9726.953125 L 21157.03125 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 9779.036458 L 20845.052083 9830.989583 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 625.351563 303.191406 L 634.710938 301.628906 L 625.351563 300.070313 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 9830.989583 L 21904.947917 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 9779.036458 L 22217.057292 9726.953125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 666.511719 300.070313 L 657.148438 301.628906 L 666.511719 303.191406 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="677.721525" y="306.223465"/>
  <use xlink:href="#glyph0-2" x="684.982645" y="306.223465"/>
  <use xlink:href="#glyph0-2" x="692.243766" y="306.223465"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 11920.963542 L 21157.03125 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 11920.963542 L 21904.947917 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 13520.052083 L 21904.947917 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 13520.052083 L 20532.942708 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 13520.052083 L 22527.994792 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 13467.96875 L 21157.03125 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 13520.052083 L 20845.052083 13572.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 625.351563 190.960938 L 634.710938 189.398438 L 625.351563 187.839844 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 13572.005208 L 21904.947917 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 13520.052083 L 22217.057292 13467.96875 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 666.511719 187.839844 L 657.148438 189.398438 L 666.511719 190.960938 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="639.333969" y="182.849254"/>
  <use xlink:href="#glyph1-2" x="639.333969" y="175.588134"/>
  <use xlink:href="#glyph1-2" x="639.333969" y="168.327013"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 15661.979167 L 21157.03125 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 15661.979167 L 21904.947917 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 17260.9375 L 21904.947917 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 17260.9375 L 20532.942708 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 17260.9375 L 22527.994792 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20845.052083 17208.984375 L 21157.03125 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21157.03125 17260.9375 L 20845.052083 17313.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 625.351563 78.730469 L 634.710938 77.171875 L 625.351563 75.609375 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22217.057292 17313.020833 L 21904.947917 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21904.947917 17260.9375 L 22217.057292 17208.984375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 666.511719 75.609375 L 657.148438 77.171875 L 666.511719 78.730469 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="661.780097" y="70.618612"/>
  <use xlink:href="#glyph1-2" x="661.780097" y="63.357491"/>
  <use xlink:href="#glyph1-2" x="661.780097" y="56.096371"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="600.721652" y="29.019145"/>
  <use xlink:href="#glyph2-2" x="607.111438" y="29.019145"/>
  <use xlink:href="#glyph2-3" x="609.662755" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="619.235942" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="622.430835" y="29.019145"/>
  <use xlink:href="#glyph2-1" x="628.820621" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="635.210407" y="29.019145"/>
  <use xlink:href="#glyph2-8" x="638.4053" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="645.116873" y="29.019145"/>
  <use xlink:href="#glyph2-9" x="648.311766" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="654.701552" y="29.019145"/>
  <use xlink:href="#glyph2-15" x="657.896445" y="29.019145"/>
  <use xlink:href="#glyph2-21" x="661.723421" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="667.469632" y="29.019145"/>
  <use xlink:href="#glyph2-22" x="673.859418" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="680.249204" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="683.444097" y="29.019145"/>
  <use xlink:href="#glyph2-23" x="689.833883" y="29.019145"/>
  <use xlink:href="#glyph2-20" x="693.660859" y="29.019145"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 698.046875 L 25575 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 698.046875 L 26323.046875 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 2297.005208 L 27791.015625 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 2297.005208 L 26323.046875 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 2297.005208 L 24951.953125 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 2245.052083 L 25575 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 2297.005208 L 25263.020833 2348.958333 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 757.890625 527.648438 L 767.25 526.089844 L 757.890625 524.53125 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 2348.958333 L 26323.046875 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 2297.005208 L 26635.026042 2245.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 799.050781 524.53125 L 789.691406 526.089844 L 799.050781 527.648438 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="810.270738" y="537.797367"/>
  <use xlink:href="#glyph0-2" x="817.531858" y="537.797367"/>
  <use xlink:href="#glyph0-2" x="824.792979" y="537.797367"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 4439.0625 L 25575 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 4439.0625 L 26323.046875 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 6038.020833 L 24107.03125 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 6038.020833 L 26323.046875 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 6038.020833 L 26947.005208 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 5985.9375 L 25575 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 6038.020833 L 25263.020833 6089.973958 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 757.890625 415.421875 L 767.25 413.859375 L 757.890625 412.300781 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 6089.973958 L 26323.046875 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 6038.020833 L 26635.026042 5985.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 799.050781 412.300781 L 789.691406 413.859375 L 799.050781 415.421875 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="725.078328" y="425.566724"/>
  <use xlink:href="#glyph0-2" x="732.339448" y="425.566724"/>
  <use xlink:href="#glyph0-2" x="739.600568" y="425.566724"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 8179.947917 L 25575 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 8179.947917 L 26323.046875 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 9779.036458 L 27791.015625 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 9779.036458 L 26323.046875 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 9779.036458 L 24951.953125 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 9726.953125 L 25575 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 9779.036458 L 25263.020833 9830.989583 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 757.890625 303.191406 L 767.25 301.628906 L 757.890625 300.070313 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 9830.989583 L 26323.046875 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 9779.036458 L 26635.026042 9726.953125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 799.050781 300.070313 L 789.691406 301.628906 L 799.050781 303.191406 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="810.270738" y="313.336082"/>
  <use xlink:href="#glyph0-2" x="817.531858" y="313.336082"/>
  <use xlink:href="#glyph0-2" x="824.792979" y="313.336082"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 11920.963542 L 25575 14520.963542 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 11920.963542 L 26323.046875 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 13520.052083 L 26323.046875 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 13520.052083 L 24951.953125 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 13520.052083 L 26947.005208 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 13467.96875 L 25575 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 13520.052083 L 25263.020833 13572.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 757.890625 190.960938 L 767.25 189.398438 L 757.890625 187.839844 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 13572.005208 L 26323.046875 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 13520.052083 L 26635.026042 13467.96875 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 799.050781 187.839844 L 789.691406 189.398438 L 799.050781 190.960938 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="778.995799" y="182.849254"/>
  <use xlink:href="#glyph1-2" x="778.995799" y="175.588134"/>
  <use xlink:href="#glyph1-2" x="778.995799" y="168.327013"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 15661.979167 L 25575 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 15661.979167 L 26323.046875 18261.979167 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 17260.9375 L 26323.046875 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 17260.9375 L 24951.953125 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 17260.9375 L 26947.005208 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25263.020833 17208.984375 L 25575 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25575 17260.9375 L 25263.020833 17313.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 757.890625 78.730469 L 767.25 77.171875 L 757.890625 75.609375 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26635.026042 17313.020833 L 26323.046875 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26323.046875 17260.9375 L 26635.026042 17208.984375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 799.050781 75.609375 L 789.691406 77.171875 L 799.050781 78.730469 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="801.441927" y="70.618612"/>
  <use xlink:href="#glyph1-2" x="801.441927" y="63.357491"/>
  <use xlink:href="#glyph1-2" x="801.441927" y="56.096371"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="733.270865" y="29.019145"/>
  <use xlink:href="#glyph2-2" x="739.660651" y="29.019145"/>
  <use xlink:href="#glyph2-3" x="742.211968" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="751.785155" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="754.980048" y="29.019145"/>
  <use xlink:href="#glyph2-1" x="761.369834" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="767.75962" y="29.019145"/>
  <use xlink:href="#glyph2-8" x="770.954513" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="777.666087" y="29.019145"/>
  <use xlink:href="#glyph2-13" x="780.860979" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="787.250765" y="29.019145"/>
  <use xlink:href="#glyph2-15" x="790.445658" y="29.019145"/>
  <use xlink:href="#glyph2-16" x="794.272635" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="800.662421" y="29.019145"/>
  <use xlink:href="#glyph2-24" x="807.052207" y="29.019145"/>
  <use xlink:href="#glyph2-17" x="809.603524" y="29.019145"/>
  <use xlink:href="#glyph2-25" x="815.99331" y="29.019145"/>
  <use xlink:href="#glyph2-20" x="824.290838" y="29.019145"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 698.046875 L 7014.973958 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 698.046875 L 9508.984375 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 2297.005208 L 7717.057292 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 2297.005208 L 8807.03125 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 2348.958333 L 7014.973958 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 2297.005208 L 7326.953125 2245.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 219.808594 524.53125 L 210.449219 526.089844 L 219.808594 527.648438 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 2245.052083 L 9508.984375 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 2297.005208 L 9198.046875 2348.958333 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 275.941406 527.648438 L 285.269531 526.089844 L 275.941406 524.53125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="233.491228" y="530.68475"/>
  <use xlink:href="#glyph0-2" x="240.752349" y="530.68475"/>
  <use xlink:href="#glyph0-2" x="248.013469" y="530.68475"/>
  <use xlink:href="#glyph0-2" x="255.27459" y="530.68475"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 4439.0625 L 7014.973958 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 4439.0625 L 9508.984375 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 6038.020833 L 7404.947917 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 6038.020833 L 8495.052083 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 6089.973958 L 7014.973958 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 6038.020833 L 7326.953125 5985.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 219.808594 412.300781 L 210.449219 413.859375 L 219.808594 415.421875 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 5985.9375 L 9508.984375 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 6038.020833 L 9198.046875 6089.973958 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 275.941406 415.421875 L 285.269531 413.859375 L 275.941406 412.300781 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="224.11997" y="418.454107"/>
  <use xlink:href="#glyph0-2" x="231.38109" y="418.454107"/>
  <use xlink:href="#glyph0-2" x="238.64221" y="418.454107"/>
  <use xlink:href="#glyph0-2" x="245.903331" y="418.454107"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 8179.947917 L 7014.973958 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 8179.947917 L 9508.984375 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 9779.036458 L 8029.947917 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 9779.036458 L 9120.052083 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 9830.989583 L 7014.973958 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 9779.036458 L 7326.953125 9726.953125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 219.808594 300.070313 L 210.449219 301.628906 L 219.808594 303.191406 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 9726.953125 L 9508.984375 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 9779.036458 L 9198.046875 9830.989583 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 275.941406 303.191406 L 285.269531 301.628906 L 275.941406 300.070313 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="242.862487" y="306.223465"/>
  <use xlink:href="#glyph0-2" x="250.123607" y="306.223465"/>
  <use xlink:href="#glyph0-2" x="257.384728" y="306.223465"/>
  <use xlink:href="#glyph0-2" x="264.645848" y="306.223465"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 11920.963542 L 7014.973958 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 11920.963542 L 9508.984375 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 13520.052083 L 9198.046875 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 13572.005208 L 7014.973958 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 13520.052083 L 7326.953125 13467.96875 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 219.808594 187.839844 L 210.449219 189.398438 L 219.808594 190.960938 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 13467.96875 L 9508.984375 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 13520.052083 L 9198.046875 13572.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 275.941406 190.960938 L 285.269531 189.398438 L 275.941406 187.839844 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="215.090079" y="182.746376"/>
  <use xlink:href="#glyph1-2" x="215.090079" y="175.485256"/>
  <use xlink:href="#glyph1-2" x="215.090079" y="168.224135"/>
  <use xlink:href="#glyph1-2" x="215.090079" y="160.963015"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 15661.979167 L 7014.973958 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 15661.979167 L 9508.984375 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 17260.9375 L 9198.046875 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7326.953125 17313.020833 L 7014.973958 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7014.973958 17260.9375 L 7326.953125 17208.984375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 219.808594 75.609375 L 210.449219 77.171875 L 219.808594 78.730469 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9198.046875 17208.984375 L 9508.984375 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9508.984375 17260.9375 L 9198.046875 17313.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 275.941406 78.730469 L 285.269531 77.171875 L 275.941406 75.609375 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="289.910508" y="70.515733"/>
  <use xlink:href="#glyph1-2" x="289.910508" y="63.254613"/>
  <use xlink:href="#glyph1-2" x="289.910508" y="55.993493"/>
  <use xlink:href="#glyph1-2" x="289.910508" y="48.732372"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="209.066496" y="29.019145"/>
  <use xlink:href="#glyph2-2" x="215.456282" y="29.019145"/>
  <use xlink:href="#glyph2-3" x="218.007599" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="227.580786" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="230.775679" y="29.019145"/>
  <use xlink:href="#glyph2-1" x="237.165465" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="243.555251" y="29.019145"/>
  <use xlink:href="#glyph2-8" x="246.750144" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="253.461717" y="29.019145"/>
  <use xlink:href="#glyph2-9" x="256.65661" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="263.046396" y="29.019145"/>
  <use xlink:href="#glyph2-15" x="266.241289" y="29.019145"/>
  <use xlink:href="#glyph2-21" x="270.068266" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="275.814476" y="29.019145"/>
  <use xlink:href="#glyph2-22" x="282.204262" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="288.594048" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="291.788941" y="29.019145"/>
  <use xlink:href="#glyph2-23" x="298.178727" y="29.019145"/>
  <use xlink:href="#glyph2-20" x="302.005703" y="29.019145"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 698.046875 L 11219.010417 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 698.046875 L 13713.020833 2452.994792 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 2297.005208 L 13401.041667 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 2348.958333 L 11219.010417 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 2297.005208 L 11530.989583 2245.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 345.929688 524.53125 L 336.570313 526.089844 L 345.929688 527.648438 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13401.041667 2245.052083 L 13713.020833 2297.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 2297.005208 L 13401.041667 2348.958333 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 402.03125 527.648438 L 411.390625 526.089844 L 402.03125 524.53125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="359.605498" y="537.797367"/>
  <use xlink:href="#glyph0-2" x="366.866618" y="537.797367"/>
  <use xlink:href="#glyph0-2" x="374.127738" y="537.797367"/>
  <use xlink:href="#glyph0-2" x="381.388859" y="537.797367"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 4439.0625 L 11219.010417 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 4439.0625 L 13713.020833 6194.010417 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 6038.020833 L 13401.041667 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 6089.973958 L 11219.010417 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 6038.020833 L 11530.989583 5985.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 345.929688 412.300781 L 336.570313 413.859375 L 345.929688 415.421875 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13401.041667 5985.9375 L 13713.020833 6038.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 6038.020833 L 13401.041667 6089.973958 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 402.03125 415.421875 L 411.390625 413.859375 L 402.03125 412.300781 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="350.234239" y="425.566724"/>
  <use xlink:href="#glyph0-2" x="357.495359" y="425.566724"/>
  <use xlink:href="#glyph0-2" x="364.75648" y="425.566724"/>
  <use xlink:href="#glyph0-2" x="372.0176" y="425.566724"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 8179.947917 L 11219.010417 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 8179.947917 L 13713.020833 9935.026042 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 9779.036458 L 13401.041667 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 9830.989583 L 11219.010417 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 9779.036458 L 11530.989583 9726.953125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 345.929688 300.070313 L 336.570313 301.628906 L 345.929688 303.191406 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13401.041667 9726.953125 L 13713.020833 9779.036458 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 9779.036458 L 13401.041667 9830.989583 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 402.03125 303.191406 L 411.390625 301.628906 L 402.03125 300.070313 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="368.976756" y="313.336082"/>
  <use xlink:href="#glyph0-2" x="376.237877" y="313.336082"/>
  <use xlink:href="#glyph0-2" x="383.498997" y="313.336082"/>
  <use xlink:href="#glyph0-2" x="390.760118" y="313.336082"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 11920.963542 L 11219.010417 14766.015625 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 11920.963542 L 13713.020833 13676.041667 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 13520.052083 L 13401.041667 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 13572.005208 L 11219.010417 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 13520.052083 L 11530.989583 13467.96875 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 345.929688 187.839844 L 336.570313 189.398438 L 345.929688 190.960938 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13401.041667 13467.96875 L 13713.020833 13520.052083 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 13520.052083 L 13401.041667 13572.005208 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 402.03125 190.960938 L 411.390625 189.398438 L 402.03125 187.839844 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="348.316965" y="182.746376"/>
  <use xlink:href="#glyph1-2" x="348.316965" y="175.485256"/>
  <use xlink:href="#glyph1-2" x="348.316965" y="168.224135"/>
  <use xlink:href="#glyph1-2" x="348.316965" y="160.963015"/>
</g>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 15661.979167 L 11219.010417 17417.057292 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 15661.979167 L 13713.020833 18507.03125 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:24;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 17260.9375 L 13401.041667 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11530.989583 17313.020833 L 11219.010417 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11219.010417 17260.9375 L 11530.989583 17208.984375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 345.929688 75.609375 L 336.570313 77.171875 L 345.929688 78.730469 "/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13401.041667 17208.984375 L 13713.020833 17260.9375 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13713.020833 17260.9375 L 13401.041667 17313.020833 " transform="matrix(0.03,0,0,-0.03,0,595)"/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 402.03125 78.730469 L 411.390625 77.171875 L 402.03125 75.609375 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="423.137394" y="70.515733"/>
  <use xlink:href="#glyph1-2" x="423.137394" y="63.254613"/>
  <use xlink:href="#glyph1-2" x="423.137394" y="55.993493"/>
  <use xlink:href="#glyph1-2" x="423.137394" y="48.732372"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="336.261224" y="29.019145"/>
  <use xlink:href="#glyph2-2" x="342.65101" y="29.019145"/>
  <use xlink:href="#glyph2-3" x="345.202328" y="29.019145"/>
  <use xlink:href="#glyph2-7" x="354.775514" y="29.019145"/>
  <use xlink:href="#glyph2-14" x="357.970407" y="29.019145"/>
  <use xlink:href="#glyph2-1" x="364.360193" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="370.749979" y="29.019145"/>
  <use xlink:href="#glyph2-8" x="373.944872" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="380.656446" y="29.019145"/>
  <use xlink:href="#glyph2-13" x="383.851339" y="29.019145"/>
  <use xlink:href="#glyph2-0" x="390.241125" y="29.019145"/>
  <use xlink:href="#glyph2-15" x="393.436018" y="29.019145"/>
  <use xlink:href="#glyph2-16" x="397.262994" y="29.019145"/>
  <use xlink:href="#glyph2-19" x="403.65278" y="29.019145"/>
  <use xlink:href="#glyph2-24" x="410.042566" y="29.019145"/>
  <use xlink:href="#glyph2-17" x="412.593883" y="29.019145"/>
  <use xlink:href="#glyph2-25" x="418.983669" y="29.019145"/>
  <use xlink:href="#glyph2-20" x="427.281197" y="29.019145"/>
</g>
</g>
</svg>
 |