This repository was archived by the owner on Feb 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyboard-drl_map.ps
More file actions
7764 lines (7764 loc) · 131 KB
/
Copy pathkeyboard-drl_map.ps
File metadata and controls
7764 lines (7764 loc) · 131 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0
%%Creator: PCBNEW
%%CreationDate: Sun Aug 30 16:27:38 2020
%%Title: C:\Users\Nighthawk\Documents\GitHub\merc-stealth-mech\keyboard-drl_map.ps
%%Pages: 1
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentMedia: A4 595 842 0 () ()
%%Orientation: Landscape
%%EndComments
%%BeginProlog
/line { newpath moveto lineto stroke } bind def
/cir0 { newpath 0 360 arc stroke } bind def
/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def
/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def
/arc0 { newpath arc stroke } bind def
/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/poly0 { stroke } bind def
/poly1 { closepath gsave fill grestore stroke } bind def
/poly2 { closepath gsave fill grestore stroke } bind def
/rect0 { rectstroke } bind def
/rect1 { rectfill } bind def
/rect2 { rectfill } bind def
/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def
/linemode1 { 1 setlinecap 1 setlinejoin } bind def
/dashedline { [200] 100 setdash } bind def
/solidline { [] 0 setdash } bind def
/phantomshow { moveto
/KicadFont findfont 0.000001 scalefont setfont
show } bind def
/textshow { gsave
findfont exch scalefont setfont concat 1 scale 0 0 moveto show
} bind def
/reencodefont {
findfont dup length dict begin
{ 1 index /FID ne
{ def }
{ pop pop } ifelse
} forall
/Encoding ISOLatin1Encoding def
currentdict
end } bind def
/KicadFont /Helvetica reencodefont definefont pop
/KicadFont-Bold /Helvetica-Bold reencodefont definefont pop
/KicadFont-Oblique /Helvetica-Oblique reencodefont definefont pop
/KicadFont-BoldOblique /Helvetica-BoldOblique reencodefont definefont pop
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
gsave
0.0072 0.0072 scale
linemode1
82680 0 translate 90 rotate
23.4344 setlinewidth
%%EndPageSetup
0 0 0 setrgbcolor
36.9045 setlinewidth
newpath
7892.47 72833.3 moveto
109038 72833.3 lineto
stroke
0 0 0 setrgbcolor
newpath
109038 72833.3 moveto
109038 42918.7 lineto
stroke
0 0 0 setrgbcolor
newpath
109038 42918.7 moveto
7892.47 42918.7 lineto
stroke
0 0 0 setrgbcolor
newpath
7892.47 42918.7 moveto
7892.47 72833.3 lineto
stroke
0 0 0 setrgbcolor
0 0 0 setrgbcolor
0 0 0 setrgbcolor
0 0 0 setrgbcolor
78.7401 setlinewidth
newpath
95157.7 48837.8 moveto
95429 48566.6 lineto
stroke
newpath
95429 48837.8 moveto
95157.7 48566.6 lineto
stroke
newpath
95399.5 49107.2 moveto
95670.7 48836 lineto
stroke
newpath
95670.7 49107.2 moveto
95399.5 48836 lineto
stroke
newpath
96322.1 49199.5 moveto
96593.3 48928.2 lineto
stroke
newpath
96593.3 49199.5 moveto
96322.1 48928.2 lineto
stroke
newpath
96329.5 49306.5 moveto
96600.7 49035.2 lineto
stroke
newpath
96600.7 49306.5 moveto
96329.5 49035.2 lineto
stroke
newpath
77581.9 52353 moveto
77853.2 52081.7 lineto
stroke
newpath
77853.2 52353 moveto
77581.9 52081.7 lineto
stroke
newpath
77823.7 52622.4 moveto
78094.9 52351.1 lineto
stroke
newpath
78094.9 52622.4 moveto
77823.7 52351.1 lineto
stroke
newpath
78746.3 52714.6 moveto
79017.5 52443.4 lineto
stroke
newpath
79017.5 52714.6 moveto
78746.3 52443.4 lineto
stroke
newpath
78753.7 52821.7 moveto
79024.9 52550.4 lineto
stroke
newpath
79024.9 52821.7 moveto
78753.7 52550.4 lineto
stroke
newpath
41551.6 62898.4 moveto
41822.8 62627.2 lineto
stroke
newpath
41822.8 62898.4 moveto
41551.6 62627.2 lineto
stroke
newpath
41793.3 63167.8 moveto
42064.5 62896.6 lineto
stroke
newpath
42064.5 63167.8 moveto
41793.3 62896.6 lineto
stroke
newpath
42715.9 63260.1 moveto
42987.2 62988.9 lineto
stroke
newpath
42987.2 63260.1 moveto
42715.9 62988.9 lineto
stroke
newpath
42723.3 63367.1 moveto
42994.5 63095.9 lineto
stroke
newpath
42994.5 63367.1 moveto
42723.3 63095.9 lineto
stroke
newpath
11808.5 58497.7 moveto
12079.7 58226.4 lineto
stroke
newpath
12079.7 58497.7 moveto
11808.5 58226.4 lineto
stroke
newpath
12050.2 58767.1 moveto
12321.4 58495.9 lineto
stroke
newpath
12321.4 58767.1 moveto
12050.2 58495.9 lineto
stroke
newpath
12972.8 58859.4 moveto
13244 58588.1 lineto
stroke
newpath
13244 58859.4 moveto
12972.8 58588.1 lineto
stroke
newpath
12980.2 58966.4 moveto
13251.4 58695.1 lineto
stroke
newpath
13251.4 58966.4 moveto
12980.2 58695.1 lineto
stroke
newpath
30226.5 64362.3 moveto
30497.7 64091.1 lineto
stroke
newpath
30497.7 64362.3 moveto
30226.5 64091.1 lineto
stroke
newpath
30468.2 64631.7 moveto
30739.5 64360.5 lineto
stroke
newpath
30739.5 64631.7 moveto
30468.2 64360.5 lineto
stroke
newpath
31390.8 64724 moveto
31662.1 64452.8 lineto
stroke
newpath
31662.1 64724 moveto
31390.8 64452.8 lineto
stroke
newpath
31398.2 64831 moveto
31669.5 64559.8 lineto
stroke
newpath
31669.5 64831 moveto
31398.2 64559.8 lineto
stroke
newpath
82854.7 55868.1 moveto
83125.9 55596.9 lineto
stroke
newpath
83125.9 55868.1 moveto
82854.7 55596.9 lineto
stroke
newpath
83096.4 56137.5 moveto
83367.7 55866.3 lineto
stroke
newpath
83367.7 56137.5 moveto
83096.4 55866.3 lineto
stroke
newpath
84019 56229.8 moveto
84290.3 55958.5 lineto
stroke
newpath
84290.3 56229.8 moveto
84019 55958.5 lineto
stroke
newpath
84026.4 56336.8 moveto
84297.6 56065.6 lineto
stroke
newpath
84297.6 56336.8 moveto
84026.4 56065.6 lineto
stroke
newpath
27148.6 58026.5 moveto
27419.9 57755.2 lineto
stroke
newpath
27419.9 58026.5 moveto
27148.6 57755.2 lineto
stroke
newpath
27390.3 58295.9 moveto
27661.6 58024.6 lineto
stroke
newpath
27661.6 58295.9 moveto
27390.3 58024.6 lineto
stroke
newpath
28313 58388.1 moveto
28584.2 58116.9 lineto
stroke
newpath
28584.2 58388.1 moveto
28313 58116.9 lineto
stroke
newpath
28320.3 58495.2 moveto
28591.6 58223.9 lineto
stroke
newpath
28591.6 58495.2 moveto
28320.3 58223.9 lineto
stroke
newpath
63960.7 48837.8 moveto
64232 48566.6 lineto
stroke
newpath
64232 48837.8 moveto
63960.7 48566.6 lineto
stroke
newpath
64202.4 49107.2 moveto
64473.7 48836 lineto
stroke
newpath
64473.7 49107.2 moveto
64202.4 48836 lineto
stroke
newpath
65125 49199.5 moveto
65396.3 48928.2 lineto
stroke
newpath
65396.3 49199.5 moveto
65125 48928.2 lineto
stroke
newpath
65132.4 49306.5 moveto
65403.7 49035.2 lineto
stroke
newpath
65403.7 49306.5 moveto
65132.4 49035.2 lineto
stroke
newpath
33621.9 63452.6 moveto
33893.1 63181.3 lineto
stroke
newpath
33893.1 63452.6 moveto
33621.9 63181.3 lineto
stroke
newpath
33863.6 63722 moveto
34134.9 63450.7 lineto
stroke
newpath
34134.9 63722 moveto
33863.6 63450.7 lineto
stroke
newpath
34786.2 63814.2 moveto
35057.5 63543 lineto
stroke
newpath
35057.5 63814.2 moveto
34786.2 63543 lineto
stroke
newpath
34793.6 63921.2 moveto
35064.8 63650 lineto
stroke
newpath
35064.8 63921.2 moveto
34793.6 63650 lineto
stroke
newpath
59127.4 62898.4 moveto
59398.6 62627.2 lineto
stroke
newpath
59398.6 62898.4 moveto
59127.4 62627.2 lineto
stroke
newpath
59369.1 63167.8 moveto
59640.3 62896.6 lineto
stroke
newpath
59640.3 63167.8 moveto
59369.1 62896.6 lineto
stroke
newpath
60291.7 63260.1 moveto
60562.9 62988.9 lineto
stroke
newpath
60562.9 63260.1 moveto
60291.7 62988.9 lineto
stroke
newpath
60299.1 63367.1 moveto
60570.3 63095.9 lineto
stroke
newpath
60570.3 63367.1 moveto
60299.1 63095.9 lineto
stroke
newpath
53854.6 59383.3 moveto
54125.9 59112 lineto
stroke
newpath
54125.9 59383.3 moveto
53854.6 59112 lineto
stroke
newpath
54096.3 59652.7 moveto
54367.6 59381.4 lineto
stroke
newpath
54367.6 59652.7 moveto
54096.3 59381.4 lineto
stroke
newpath
55019 59744.9 moveto
55290.2 59473.7 lineto
stroke
newpath
55290.2 59744.9 moveto
55019 59473.7 lineto
stroke
newpath
55026.3 59852 moveto
55297.6 59580.7 lineto
stroke
newpath
55297.6 59852 moveto
55026.3 59580.7 lineto
stroke
newpath
29194.8 53721.3 moveto
29466.1 53450.1 lineto
stroke
newpath
29466.1 53721.3 moveto
29194.8 53450.1 lineto
stroke
newpath
29436.5 53990.7 moveto
29707.8 53719.5 lineto
stroke
newpath
29707.8 53990.7 moveto
29436.5 53719.5 lineto
stroke
newpath
30359.2 54083 moveto
30630.4 53811.7 lineto
stroke
newpath
30630.4 54083 moveto
30359.2 53811.7 lineto
stroke
newpath
30366.5 54190 moveto
30637.8 53918.7 lineto
stroke
newpath
30637.8 54190 moveto
30366.5 53918.7 lineto
stroke
newpath
16645 68001.5 moveto
16916.2 67730.3 lineto
stroke
newpath
16916.2 68001.5 moveto
16645 67730.3 lineto
stroke
newpath
16886.7 68270.9 moveto
17157.9 67999.7 lineto
stroke
newpath
17157.9 68270.9 moveto
16886.7 67999.7 lineto
stroke
newpath
17809.3 68363.2 moveto
18080.6 68091.9 lineto
stroke
newpath
18080.6 68363.2 moveto
17809.3 68091.9 lineto
stroke
newpath
17816.7 68470.2 moveto
18087.9 68198.9 lineto
stroke
newpath
18087.9 68470.2 moveto
17816.7 68198.9 lineto
stroke
newpath
87688 52353 moveto
87959.3 52081.7 lineto
stroke
newpath
87959.3 52353 moveto
87688 52081.7 lineto
stroke
newpath
87929.7 52622.4 moveto
88201 52351.1 lineto
stroke
newpath
88201 52622.4 moveto
87929.7 52351.1 lineto
stroke
newpath
88852.4 52714.6 moveto
89123.6 52443.4 lineto
stroke
newpath
89123.6 52714.6 moveto
88852.4 52443.4 lineto
stroke
newpath
88859.7 52821.7 moveto
89131 52550.4 lineto
stroke
newpath
89131 52821.7 moveto
88859.7 52550.4 lineto
stroke
newpath
95157.7 59383.3 moveto
95429 59112 lineto
stroke
newpath
95429 59383.3 moveto
95157.7 59112 lineto
stroke
newpath
95399.5 59652.7 moveto
95670.7 59381.4 lineto
stroke
newpath
95670.7 59652.7 moveto
95399.5 59381.4 lineto
stroke
newpath
96322.1 59744.9 moveto
96593.3 59473.7 lineto
stroke
newpath
96593.3 59744.9 moveto
96322.1 59473.7 lineto
stroke
newpath
96329.5 59852 moveto
96600.7 59580.7 lineto
stroke
newpath
96600.7 59852 moveto
96329.5 59580.7 lineto
stroke
newpath
32712.1 60057.2 moveto
32983.3 59785.9 lineto
stroke
newpath
32983.3 60057.2 moveto
32712.1 59785.9 lineto
stroke
newpath
32953.8 60326.6 moveto
33225.1 60055.3 lineto
stroke
newpath
33225.1 60326.6 moveto
32953.8 60055.3 lineto
stroke
newpath
33876.4 60418.8 moveto
34147.7 60147.6 lineto
stroke
newpath
34147.7 60418.8 moveto
33876.4 60147.6 lineto
stroke
newpath
33883.8 60525.9 moveto
34155.1 60254.6 lineto
stroke
newpath
34155.1 60525.9 moveto
33883.8 60254.6 lineto
stroke
newpath
85491 59383.3 moveto
85762.3 59112 lineto
stroke
newpath
85762.3 59383.3 moveto
85491 59112 lineto
stroke
newpath
85732.8 59652.7 moveto
86004 59381.4 lineto
stroke
newpath
86004 59652.7 moveto
85732.8 59381.4 lineto
stroke
newpath
86655.4 59744.9 moveto
86926.6 59473.7 lineto
stroke
newpath
86926.6 59744.9 moveto
86655.4 59473.7 lineto
stroke
newpath
86662.8 59852 moveto
86934 59580.7 lineto
stroke
newpath
86934 59852 moveto
86662.8 59580.7 lineto
stroke
newpath
22647.8 70032.2 moveto
22919.1 69761 lineto
stroke
newpath
22919.1 70032.2 moveto
22647.8 69761 lineto
stroke
newpath
22889.6 70301.6 moveto
23160.8 70030.4 lineto
stroke
newpath
23160.8 70301.6 moveto
22889.6 70030.4 lineto
stroke
newpath
23812.2 70393.9 moveto
24083.4 70122.6 lineto
stroke
newpath
24083.4 70393.9 moveto
23812.2 70122.6 lineto
stroke
newpath
23819.6 70500.9 moveto
24090.8 70229.6 lineto
stroke
newpath
24090.8 70500.9 moveto
23819.6 70229.6 lineto
stroke
newpath
83733.5 62898.4 moveto
84004.7 62627.2 lineto
stroke
newpath
84004.7 62898.4 moveto
83733.5 62627.2 lineto
stroke
newpath
83975.2 63167.8 moveto
84246.4 62896.6 lineto
stroke
newpath
84246.4 63167.8 moveto
83975.2 62896.6 lineto
stroke
newpath
84897.8 63260.1 moveto
85169.1 62988.9 lineto
stroke
newpath
85169.1 63260.1 moveto
84897.8 62988.9 lineto
stroke
newpath
84905.2 63367.1 moveto
85176.4 63095.9 lineto
stroke
newpath
85176.4 63367.1 moveto
84905.2 63095.9 lineto
stroke
newpath
59127.4 67292.4 moveto
59398.6 67021.1 lineto
stroke
newpath
59398.6 67292.4 moveto
59127.4 67021.1 lineto
stroke
newpath
59369.1 67561.8 moveto
59640.3 67290.5 lineto
stroke
newpath
59640.3 67561.8 moveto
59369.1 67290.5 lineto
stroke
newpath
60291.7 67654 moveto
60562.9 67382.8 lineto
stroke
newpath
60562.9 67654 moveto
60291.7 67382.8 lineto
stroke
newpath
60299.1 67761.1 moveto
60570.3 67489.8 lineto
stroke
newpath
60570.3 67761.1 moveto
60299.1 67489.8 lineto
stroke
newpath
67915.3 67292.4 moveto
68186.5 67021.1 lineto
stroke
newpath
68186.5 67292.4 moveto
67915.3 67021.1 lineto
stroke
newpath
68157 67561.8 moveto
68428.2 67290.5 lineto
stroke
newpath
68428.2 67561.8 moveto
68157 67290.5 lineto
stroke
newpath
69079.6 67654 moveto
69350.8 67382.8 lineto
stroke
newpath
69350.8 67654 moveto
69079.6 67382.8 lineto
stroke
newpath
69087 67761.1 moveto
69358.2 67489.8 lineto
stroke
newpath
69358.2 67761.1 moveto
69087 67489.8 lineto
stroke
newpath
70551.6 52353 moveto
70822.9 52081.7 lineto
stroke
newpath
70822.9 52353 moveto
70551.6 52081.7 lineto
stroke
newpath
70793.4 52622.4 moveto
71064.6 52351.1 lineto
stroke
newpath
71064.6 52622.4 moveto
70793.4 52351.1 lineto
stroke
newpath
71716 52714.6 moveto
71987.2 52443.4 lineto
stroke
newpath
71987.2 52714.6 moveto
71716 52443.4 lineto
stroke
newpath
71723.3 52821.7 moveto
71994.6 52550.4 lineto
stroke
newpath
71994.6 52821.7 moveto
71723.3 52550.4 lineto
stroke
newpath
74066.8 52353 moveto
74338 52081.7 lineto
stroke
newpath
74338 52353 moveto
74066.8 52081.7 lineto
stroke
newpath
74308.5 52622.4 moveto
74579.8 52351.1 lineto
stroke
newpath
74579.8 52622.4 moveto
74308.5 52351.1 lineto
stroke
newpath
75231.1 52714.6 moveto
75502.4 52443.4 lineto
stroke
newpath
75502.4 52714.6 moveto
75231.1 52443.4 lineto
stroke
newpath
75238.5 52821.7 moveto
75509.8 52550.4 lineto
stroke
newpath
75509.8 52821.7 moveto
75238.5 52550.4 lineto
stroke
newpath
102188 55868.1 moveto
102459 55596.9 lineto
stroke
newpath
102459 55868.1 moveto
102188 55596.9 lineto
stroke
newpath
102430 56137.5 moveto
102701 55866.3 lineto
stroke
newpath
102701 56137.5 moveto
102430 55866.3 lineto
stroke
newpath
103352 56229.8 moveto
103624 55958.5 lineto
stroke
newpath
103624 56229.8 moveto
103352 55958.5 lineto
stroke
newpath
103360 56336.8 moveto
103631 56065.6 lineto
stroke
newpath
103631 56336.8 moveto
103360 56065.6 lineto
stroke
newpath
90324.4 48837.8 moveto
90595.6 48566.6 lineto
stroke
newpath
90595.6 48837.8 moveto
90324.4 48566.6 lineto
stroke
newpath
90566.1 49107.2 moveto
90837.4 48836 lineto
stroke
newpath
90837.4 49107.2 moveto
90566.1 48836 lineto
stroke
newpath
91488.7 49199.5 moveto
91760 48928.2 lineto
stroke
newpath
91760 49199.5 moveto
91488.7 48928.2 lineto
stroke
newpath
91496.1 49306.5 moveto
91767.4 49035.2 lineto
stroke
newpath
91767.4 49306.5 moveto
91496.1 49035.2 lineto
stroke
newpath
14886.3 64833.6 moveto
15157.6 64562.3 lineto
stroke
newpath
15157.6 64833.6 moveto
14886.3 64562.3 lineto
stroke
newpath
15128.1 65103 moveto
15399.3 64831.7 lineto
stroke
newpath
15399.3 65103 moveto
15128.1 64831.7 lineto
stroke
newpath
16050.7 65195.2 moveto
16321.9 64924 lineto
stroke
newpath
16321.9 65195.2 moveto
16050.7 64924 lineto
stroke
newpath
16058.1 65302.3 moveto
16329.3 65031 lineto
stroke
newpath
16329.3 65302.3 moveto
16058.1 65031 lineto
stroke
newpath
48581.9 62898.4 moveto
48853.1 62627.2 lineto
stroke
newpath
48853.1 62898.4 moveto
48581.9 62627.2 lineto
stroke
newpath
48823.6 63167.8 moveto
49094.9 62896.6 lineto
stroke
newpath
49094.9 63167.8 moveto
48823.6 62896.6 lineto
stroke
newpath
49746.2 63260.1 moveto
50017.5 62988.9 lineto
stroke
newpath
50017.5 63260.1 moveto
49746.2 62988.9 lineto
stroke
newpath
49753.6 63367.1 moveto
50024.9 63095.9 lineto
stroke
newpath
50024.9 63367.1 moveto
49753.6 63095.9 lineto
stroke
newpath
75824.4 55868.1 moveto
76095.6 55596.9 lineto
stroke
newpath
76095.6 55868.1 moveto
75824.4 55596.9 lineto
stroke
newpath
76066.1 56137.5 moveto
76337.3 55866.3 lineto
stroke
newpath
76337.3 56137.5 moveto
76066.1 55866.3 lineto
stroke
newpath
76988.7 56229.8 moveto
77259.9 55958.5 lineto
stroke
newpath
77259.9 56229.8 moveto
76988.7 55958.5 lineto
stroke
newpath
76996.1 56336.8 moveto
77267.3 56065.6 lineto
stroke
newpath
77267.3 56336.8 moveto
76996.1 56065.6 lineto
stroke
newpath
102188 48837.8 moveto
102459 48566.6 lineto
stroke
newpath
102459 48837.8 moveto
102188 48566.6 lineto
stroke
newpath
102430 49107.2 moveto
102701 48836 lineto
stroke
newpath
102701 49107.2 moveto
102430 48836 lineto
stroke
newpath
103352 49199.5 moveto
103624 48928.2 lineto
stroke