-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathkeyswitches.kicad_sch
More file actions
3882 lines (3717 loc) · 166 KB
/
Copy pathkeyswitches.kicad_sch
File metadata and controls
3882 lines (3717 loc) · 166 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
(kicad_sch (version 20211123) (generator eeschema)
(uuid b596872e-ab23-43ee-9b14-422e23c6a294)
(paper "A4")
(lib_symbols
(symbol "00Project-CherryMX:CherryMX_LED" (pin_names (offset -3.9878)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 2.54 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "CherryMX_LED" (id 1) (at 0 -4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CherryMX_LED_1_1"
(circle (center -2.032 1.27) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -3.175)
(xy -2.54 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -3.175)
(xy -1.27 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy 2.54 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.635 0)
(xy -0.635 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 4.318)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy -2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -2.54)
(xy -3.81 -3.175)
(xy -3.175 -3.175)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.54)
(xy -2.54 -3.175)
(xy -1.905 -3.175)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.635 -1.27)
(xy 1.27 0)
(xy 1.27 -2.54)
(xy -0.635 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 2.032 1.27) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 1.27 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 1.27 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -1.27 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -1.27 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "00Project-LEDs:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(no_connect (at 111.76 156.21) (uuid 00513043-a077-4938-a1ef-a4d18a45596d))
(no_connect (at 107.95 123.19) (uuid 0122901c-dc25-4953-b968-27acce8a9ba2))
(no_connect (at 35.56 123.19) (uuid 04ebb86e-35aa-4ac6-bc42-99eb1b1f2daa))
(no_connect (at 266.7 123.19) (uuid 05a2f014-0b5b-431f-9928-c7d2e4e1f70b))
(no_connect (at 57.15 190.5) (uuid 0655d1fe-db92-44cf-af73-79795a2496e9))
(no_connect (at 252.73 123.19) (uuid 0d8b51d7-8f65-470c-8452-e142fa38b23a))
(no_connect (at 149.86 156.21) (uuid 0e6980a9-134b-4ccf-bb74-bec6cb909633))
(no_connect (at 171.45 106.68) (uuid 110524bb-7739-4f72-b588-d59151dfa7f8))
(no_connect (at 68.58 172.72) (uuid 111bf1df-e2ac-4871-a27c-5a9430984acf))
(no_connect (at 49.53 90.17) (uuid 13507f13-2121-45c7-b179-e066e6c2bf71))
(no_connect (at 265.43 26.67) (uuid 13c17175-b703-4d5f-8ae9-a5872f29a3fd))
(no_connect (at 101.6 156.21) (uuid 154eabdc-8beb-4440-a179-c8d1f7ceab98))
(no_connect (at 72.39 123.19) (uuid 16699749-ef80-475a-808a-1c8a918c669b))
(no_connect (at 184.15 41.91) (uuid 195f7850-1af4-4035-8bc8-c80769fe1556))
(no_connect (at 180.34 90.17) (uuid 1a87519f-08ad-4067-8117-9d2f7e3889e5))
(no_connect (at 133.35 58.42) (uuid 1d3ac9a7-2506-4a2a-9a6f-bd9c0dcea842))
(no_connect (at 256.54 156.21) (uuid 1ee9e742-2631-4805-979d-4fc6e6c18b44))
(no_connect (at 157.48 172.72) (uuid 2612c3d6-61e2-458d-abab-8f1ed1d2f450))
(no_connect (at 132.08 123.19) (uuid 27e1a656-c776-46a4-9327-0c45b2fd8fd8))
(no_connect (at 121.92 123.19) (uuid 29acc614-c962-41e2-af2e-01c083f2006e))
(no_connect (at 165.1 73.66) (uuid 2b918592-b63d-4e10-8c2e-8af6f61239b5))
(no_connect (at 63.5 156.21) (uuid 2d0a9f7b-a4d8-444e-bc1b-0a9ba1969250))
(no_connect (at 210.82 41.91) (uuid 2dcfe402-b571-47e8-b112-2e649329e487))
(no_connect (at 129.54 172.72) (uuid 2f1df07e-851c-468b-9a2e-169e79d03b98))
(no_connect (at 127 139.7) (uuid 3042fc9f-b50f-4351-8764-c81e4067147c))
(no_connect (at 238.76 41.91) (uuid 3188826a-e4cf-434d-855a-bf7b8f4c6640))
(no_connect (at 208.28 156.21) (uuid 34110c75-c75a-43c0-81d0-1a03b65a19f6))
(no_connect (at 222.25 156.21) (uuid 35a91ee9-ee93-4e12-b198-3e9af0450a17))
(no_connect (at 199.39 139.7) (uuid 399f4762-14e5-4b15-bf57-d624defd7eb9))
(no_connect (at 31.75 156.21) (uuid 3ae7c084-fdc8-4662-8602-3787bd242855))
(no_connect (at 102.87 172.72) (uuid 3bd24687-493c-4a10-8b2a-12f01488e646))
(no_connect (at 91.44 73.66) (uuid 3bdf061d-a3e7-47f8-a1dd-a5bcc5c51848))
(no_connect (at 218.44 90.17) (uuid 3c33334a-ef8e-4fed-80ac-615c7b9bfce6))
(no_connect (at 99.06 58.42) (uuid 3cb92689-7b7f-47c0-b320-e4e600b96bd0))
(no_connect (at 218.44 123.19) (uuid 3d1387a1-c27b-4119-b18c-0c9d72826736))
(no_connect (at 59.69 90.17) (uuid 3d15d3d5-475c-47cb-a558-b7388227d6e3))
(no_connect (at 275.59 41.91) (uuid 41c34000-13ca-4d02-bcd3-552b74930125))
(no_connect (at 248.92 26.67) (uuid 43ab8773-6b12-4035-a069-cdfcf3339b4d))
(no_connect (at 25.4 90.17) (uuid 45c7173e-fd41-45b7-8459-d38936616363))
(no_connect (at 96.52 190.5) (uuid 461d390c-3dab-44a2-ad5e-5b526b5e9bc3))
(no_connect (at 265.43 41.91) (uuid 488530fb-d5d7-460f-b85e-1499d6359c73))
(no_connect (at 194.31 41.91) (uuid 4b9b03bc-e558-4f2a-b3ea-3cfa7b3192e3))
(no_connect (at 121.92 90.17) (uuid 4b9dcd33-3729-44bb-82b9-1d0565b55b2d))
(no_connect (at 252.73 90.17) (uuid 4dd91865-14d4-48c6-8802-d584f352b1d5))
(no_connect (at 107.95 90.17) (uuid 502c6e55-5435-44f4-a056-4866b65d420b))
(no_connect (at 77.47 156.21) (uuid 54b00947-7035-4f19-9e31-abbacb9f75e8))
(no_connect (at 92.71 172.72) (uuid 5766a274-b5ed-44f0-8bbb-85b6dd0281bd))
(no_connect (at 242.57 90.17) (uuid 57d0df75-c217-4776-b0ef-547f3991d0a9))
(no_connect (at 85.09 58.42) (uuid 58a8e319-fc8e-4af2-b406-98023e0a39a8))
(no_connect (at 195.58 58.42) (uuid 59e816d6-f327-4211-9f59-e1e7e788ba19))
(no_connect (at 166.37 31.75) (uuid 5bc3ed40-ec5d-46a9-8334-19adeacaadae))
(no_connect (at 173.99 156.21) (uuid 5d6af4a6-bb15-4cbc-8f7f-47e1a89ca477))
(no_connect (at 82.55 123.19) (uuid 5dbb2220-3d20-4701-a6ab-1e900c7df45d))
(no_connect (at 60.96 31.75) (uuid 5fde05e9-abb8-466b-9258-37bd03833b2c))
(no_connect (at 276.86 123.19) (uuid 60112df1-3a04-43fe-bc7c-22b0bf732258))
(no_connect (at 140.97 139.7) (uuid 65593f78-12f7-4c9c-8908-14f2c38052bb))
(no_connect (at 180.34 123.19) (uuid 65f88820-d8f9-4685-a600-f429b49618f1))
(no_connect (at 228.6 90.17) (uuid 67b11115-6318-455f-b340-37a48d749dec))
(no_connect (at 140.97 73.66) (uuid 70b0bf7c-4fab-4582-8b3d-aa1fb65f3b93))
(no_connect (at 223.52 73.66) (uuid 7249ef34-2e0f-482d-a9ed-6033884bca6a))
(no_connect (at 127 190.5) (uuid 724fe6b3-3087-437a-bfd3-86b79b10be17))
(no_connect (at 198.12 156.21) (uuid 7353a018-4e8f-478b-98d5-2903dd8f7038))
(no_connect (at 147.32 58.42) (uuid 761cd8ab-c35c-4d64-b248-a3c0a4f54f18))
(no_connect (at 25.4 123.19) (uuid 77805d0e-9faf-4f87-b47d-38ee0ee1381b))
(no_connect (at 97.79 123.19) (uuid 77e7336d-b440-43e6-8fe7-eb7fa8bee3d3))
(no_connect (at 101.6 73.66) (uuid 78ee50ce-54ff-4309-a589-6cee7f3316ad))
(no_connect (at 109.22 58.42) (uuid 7a1469e7-1a2b-4f5b-83ae-532f1d2f7807))
(no_connect (at 116.84 139.7) (uuid 7d7cab1d-95ea-4d45-986b-632e3e39268a))
(no_connect (at 26.67 58.42) (uuid 7e42807c-c2c9-4da8-b73a-2661c249e617))
(no_connect (at 91.44 106.68) (uuid 81145b53-5a3c-47f1-be2f-17974d5002f6))
(no_connect (at 125.73 156.21) (uuid 82d3a000-a0d7-4818-abc4-4ae3a3cacabd))
(no_connect (at 167.64 190.5) (uuid 8357e478-2dd3-4669-a2c4-7608b169dbdb))
(no_connect (at 243.84 58.42) (uuid 840dae04-d16d-41a2-9775-0e2cc34efccf))
(no_connect (at 210.82 26.67) (uuid 86bd35d6-4a5f-4b6d-8030-99e7d4f291a0))
(no_connect (at 146.05 90.17) (uuid 86d915e6-6e6f-4b20-a2dd-bebd8449f784))
(no_connect (at 160.02 156.21) (uuid 877b60d8-96a0-4ef8-bb1c-3d57a96baace))
(no_connect (at 29.21 31.75) (uuid 8d432e31-a387-4570-ab29-41b1800f615c))
(no_connect (at 170.18 123.19) (uuid 8e00b170-2dec-44d4-9314-8f51828b7267))
(no_connect (at 228.6 123.19) (uuid 8e763a54-17f4-4ca5-a1b5-29e83e0e3463))
(no_connect (at 87.63 31.75) (uuid 92835f92-8c22-48ab-ad38-32c1e1e4faef))
(no_connect (at 97.79 31.75) (uuid 92aafa05-34cd-4390-81cf-b2ab0140be21))
(no_connect (at 189.23 139.7) (uuid 92e0a08f-8396-497a-891d-ef9c8a8c5303))
(no_connect (at 184.15 156.21) (uuid 94bb70d4-24bf-4e11-a218-e84a02101f34))
(no_connect (at 232.41 156.21) (uuid 992c65ba-6234-4b94-8a0d-7ff6a0c0edf5))
(no_connect (at 97.79 90.17) (uuid 9a3dc7da-a19a-420b-b96b-2d654725174e))
(no_connect (at 106.68 190.5) (uuid 9b197520-10b1-48b7-9fa7-5b226924a1cc))
(no_connect (at 254 58.42) (uuid 9b25b23a-7c2a-47b7-9af3-e32042551a96))
(no_connect (at 78.74 172.72) (uuid 9ccbb8d7-cc9e-422a-92bb-565b30b408be))
(no_connect (at 73.66 90.17) (uuid 9cefffe8-f8ad-4a7f-8ddc-f78ca0847895))
(no_connect (at 127 73.66) (uuid 9f38b04a-b9f7-4036-8be9-a9e8c4c57eb6))
(no_connect (at 171.45 58.42) (uuid a3c2bbdb-f032-4ea0-89f7-bfc6fdd5a2aa))
(no_connect (at 175.26 73.66) (uuid a557b99b-ca7d-4c58-9eac-04ce6afd36df))
(no_connect (at 229.87 58.42) (uuid a6359088-cd16-474b-ab99-a81144b896d5))
(no_connect (at 139.7 106.68) (uuid a78aa2e8-6aee-4cf8-93e9-fdaec5a40227))
(no_connect (at 83.82 90.17) (uuid a8b8477c-cdee-4f96-9e86-7572d4f04bc9))
(no_connect (at 181.61 106.68) (uuid a9a70a03-544b-4a3f-8777-b359ad71d22b))
(no_connect (at 184.15 26.67) (uuid ac5f4d8c-c25f-4f5e-93a4-b96c3a006993))
(no_connect (at 87.63 156.21) (uuid ad3f69cf-606e-422f-becd-ae86bd37d163))
(no_connect (at 137.16 190.5) (uuid ada0451f-c32b-4b24-985a-4db03e3a5c60))
(no_connect (at 275.59 26.67) (uuid af2e8610-0d3b-4bf0-a973-0cfaf23cc272))
(no_connect (at 151.13 139.7) (uuid b20b05d0-4747-477c-9379-db64f086c27b))
(no_connect (at 135.89 156.21) (uuid b35e2297-4681-49b9-9348-65a84dfe3902))
(no_connect (at 74.93 58.42) (uuid b51f799f-1508-4fc5-9dbf-9390f8e95cec))
(no_connect (at 167.64 172.72) (uuid b536d47a-30b8-4809-b0f2-33effd1da2af))
(no_connect (at 205.74 58.42) (uuid b55d51fd-6897-4b9c-8064-3dbf7b42e2ed))
(no_connect (at 149.86 106.68) (uuid b5a8d9af-8e20-4ea4-88e6-1550d5c52fa7))
(no_connect (at 132.08 90.17) (uuid b9494d63-0a95-47c8-9f2e-fb5129cdacbf))
(no_connect (at 157.48 58.42) (uuid ba34f544-7fab-4bad-b14e-c0f2f84d7deb))
(no_connect (at 194.31 26.67) (uuid bb181ccd-c2c3-4a84-8a97-29692c65a03d))
(no_connect (at 35.56 90.17) (uuid bbf4c51a-7431-4356-a217-b991ee428a3b))
(no_connect (at 60.96 58.42) (uuid bc46ac76-ee85-48b4-857e-8a8b3a26a693))
(no_connect (at 156.21 90.17) (uuid bc8bcbfc-10de-4627-ac18-100a71596807))
(no_connect (at 189.23 73.66) (uuid be665d30-7e59-43bb-a09d-4187eca92e9c))
(no_connect (at 92.71 139.7) (uuid c3207e78-de1b-420e-be2f-c59f7c836b11))
(no_connect (at 102.87 139.7) (uuid c67f7d89-fc1f-4bdc-a9aa-cc86c0f57387))
(no_connect (at 46.99 190.5) (uuid c95f2ef6-f160-4b5b-98f7-93b0f316c8f0))
(no_connect (at 36.83 58.42) (uuid cb411f3e-6c43-4fdb-b4a5-69e40deef262))
(no_connect (at 246.38 156.21) (uuid cb6cece4-000b-4fa7-b3a9-54c0a87beca6))
(no_connect (at 220.98 41.91) (uuid cbf613c0-f26c-4ef0-99e2-54d981ab899d))
(no_connect (at 157.48 190.5) (uuid ccee898a-363f-48b5-b0c4-20dee86559af))
(no_connect (at 156.21 31.75) (uuid d236aaeb-caf8-49fd-8691-a7a09b748814))
(no_connect (at 156.21 123.19) (uuid d96e8a5c-946b-4259-9a50-0c26316682c1))
(no_connect (at 21.59 156.21) (uuid d9729e32-ce3d-4bbc-9083-13e9b7cc8abb))
(no_connect (at 194.31 123.19) (uuid db1f3016-e3bd-4987-a721-232b2672c740))
(no_connect (at 199.39 73.66) (uuid db32ce3c-a09a-4315-af77-c4d4852a0f0b))
(no_connect (at 115.57 106.68) (uuid dd262f21-1698-459d-9355-300243bad4ff))
(no_connect (at 151.13 73.66) (uuid e1099132-77a7-44c0-a0eb-6c89ec26379f))
(no_connect (at 170.18 90.17) (uuid e26a576b-fb3e-45e0-bacc-9186f575cf83))
(no_connect (at 125.73 106.68) (uuid e28242ae-87f0-4332-aad1-3fed5512bc94))
(no_connect (at 194.31 90.17) (uuid e3fbc212-daf5-496c-9036-ba979b872c8e))
(no_connect (at 238.76 26.67) (uuid e4734f7f-c78f-4d32-9eea-b76410a98ee9))
(no_connect (at 220.98 26.67) (uuid e5c40c83-7c1d-4c8c-b446-843df571db9a))
(no_connect (at 204.47 90.17) (uuid e6bf08d4-6103-4a66-8c9c-008e166f949f))
(no_connect (at 204.47 123.19) (uuid e79d3b20-88dc-4cef-9d6e-623e7b6fe618))
(no_connect (at 39.37 31.75) (uuid e7a2aff9-7e5e-4223-8455-1a916b7c7d0b))
(no_connect (at 219.71 58.42) (uuid e7e7481e-5c53-4f07-a0bb-769b4ee4f9d5))
(no_connect (at 215.9 106.68) (uuid e86cdebc-8bcd-42e6-8314-f3121dce15a8))
(no_connect (at 53.34 156.21) (uuid e89791f1-a7f9-4e13-839e-a234313e7ab8))
(no_connect (at 71.12 31.75) (uuid eb56a58d-1231-4624-b86c-a6b2f165b724))
(no_connect (at 181.61 58.42) (uuid ebff2eac-4ade-4672-b4f1-db92b9bc7270))
(no_connect (at 139.7 172.72) (uuid efaf5aca-9792-408e-9425-4328bd7af4b3))
(no_connect (at 116.84 73.66) (uuid f098497e-237d-4953-82d6-32306f43bc0c))
(no_connect (at 101.6 106.68) (uuid f59d1f4f-ed2e-46d3-ad08-c48fb771313e))
(no_connect (at 248.92 41.91) (uuid f827976d-69b9-463c-bab7-868c2c3ba49e))
(no_connect (at 205.74 106.68) (uuid f890d53d-1b9d-486d-b05e-f6efa945498e))
(no_connect (at 213.36 73.66) (uuid f9e49bd8-cd9f-4c63-9459-6e4acbf7cd07))
(no_connect (at 242.57 123.19) (uuid fa19d7d6-2388-45cc-9089-7d67a6f8ad2e))
(no_connect (at 50.8 58.42) (uuid fa855e6a-1954-4414-93c7-ee43c6718c4d))
(no_connect (at 146.05 123.19) (uuid fc975a5e-e973-432e-8b65-4d09bb1b5ab4))
(no_connect (at 123.19 58.42) (uuid fecd2eed-d132-4ebe-a9ad-467be1d8decb))
(wire (pts (xy 107.95 87.63) (xy 111.76 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00c1ca01-87a6-4e70-9783-dd5b559bf98f)
)
(wire (pts (xy 149.86 104.14) (xy 153.67 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 015335b6-0a8e-4727-8e57-14f009248b8a)
)
(wire (pts (xy 228.6 87.63) (xy 232.41 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04a2fb90-cb35-4647-9c18-58e70bdd740d)
)
(wire (pts (xy 254 55.88) (xy 257.81 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1481a4e2-19b1-4ca8-bb8f-273d72739463)
)
(wire (pts (xy 194.31 24.13) (xy 198.12 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a4efc1c-e4aa-4da6-b658-f707907c9631)
)
(wire (pts (xy 167.64 187.96) (xy 171.45 187.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f062d82-81e7-4611-92fb-35f9c3cb0051)
)
(wire (pts (xy 256.54 153.67) (xy 260.35 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2379a66e-243e-4cc2-8db1-62b4b1d7a748)
)
(wire (pts (xy 85.09 55.88) (xy 88.9 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23edba38-a07c-42fd-be48-8306d36b8942)
)
(wire (pts (xy 132.08 120.65) (xy 135.89 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2679642a-15ed-452f-89b8-914c9219982a)
)
(wire (pts (xy 204.47 87.63) (xy 208.28 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34a9a408-3aeb-40e2-9394-f29912696fe7)
)
(wire (pts (xy 167.64 170.18) (xy 171.45 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 380417c0-1ca3-4469-85bc-c12ff5d240a4)
)
(wire (pts (xy 71.12 29.21) (xy 74.93 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39fd9073-a727-4de7-9241-74d1c4fc87c9)
)
(wire (pts (xy 39.37 29.21) (xy 43.18 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a85804a-4c95-4fe6-89b3-224af18d81fd)
)
(wire (pts (xy 228.6 120.65) (xy 232.41 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f9bfc70-dd9a-475b-b61f-0577e2514164)
)
(wire (pts (xy 151.13 71.12) (xy 154.94 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4598787a-57bc-4674-a496-49a2cc5ec77a)
)
(wire (pts (xy 78.74 170.18) (xy 82.55 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 464a9c84-49bc-4981-a3a2-13faf2db3eb2)
)
(wire (pts (xy 215.9 104.14) (xy 219.71 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 472ca4bc-fe8b-476d-9ed7-5e11efbee06e)
)
(wire (pts (xy 97.79 29.21) (xy 101.6 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 476b21f2-2b27-4774-a107-de148069809e)
)
(wire (pts (xy 220.98 24.13) (xy 224.79 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4dd35bff-3d2c-49c4-a39e-7c4c956eee3c)
)
(wire (pts (xy 208.28 153.67) (xy 212.09 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fb32aa6-c602-4888-8b8a-f3475afabdd8)
)
(wire (pts (xy 102.87 170.18) (xy 106.68 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 533c4a02-0c17-442c-b413-38e0997aa4a5)
)
(wire (pts (xy 181.61 104.14) (xy 185.42 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5691bebc-5e71-497d-bf75-5dfbc50f05f0)
)
(wire (pts (xy 223.52 71.12) (xy 227.33 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5709a41a-4659-4ea1-abc7-d10e38aeaaa3)
)
(wire (pts (xy 63.5 153.67) (xy 67.31 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a502fde-f168-4a94-bd3c-aef4db83fd9a)
)
(wire (pts (xy 62.23 132.08) (xy 62.23 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fe50ee1-1f50-45ce-b79f-cfade14f4d43)
)
(wire (pts (xy 151.13 137.16) (xy 154.94 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63a00ce5-55c8-4914-9fcf-b8fed08c1da9)
)
(wire (pts (xy 107.95 120.65) (xy 111.76 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6caa800e-966f-4b53-bf25-95f1dcde3adb)
)
(wire (pts (xy 166.37 29.21) (xy 170.18 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d71beed-c92d-4cb3-a2f9-e7ddd6a8e8bc)
)
(wire (pts (xy 125.73 104.14) (xy 129.54 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72033abd-7cf3-49bc-a773-bbfce2441af5)
)
(wire (pts (xy 204.47 120.65) (xy 208.28 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 735d7cbf-0fc9-4e07-9d86-0ced73207caa)
)
(wire (pts (xy 276.86 120.65) (xy 280.67 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7487a7e6-fd07-40b3-8ec8-52647606b1b4)
)
(wire (pts (xy 35.56 120.65) (xy 39.37 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74eb3744-46eb-4052-8d58-de53b0d0e61e)
)
(wire (pts (xy 156.21 87.63) (xy 160.02 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 779f63e7-5b9f-425c-b6c2-22ebdb978513)
)
(wire (pts (xy 180.34 87.63) (xy 184.15 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a61944b-7e52-4198-9051-7778dd16a3af)
)
(wire (pts (xy 156.21 120.65) (xy 160.02 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d5176a5-dcb0-457e-9575-5a2b4e30e472)
)
(wire (pts (xy 252.73 87.63) (xy 256.54 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86e8d6fe-a7a6-42d0-a492-acbcd7508505)
)
(wire (pts (xy 175.26 71.12) (xy 179.07 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87bb8154-4165-4d56-a464-d1b88fb74dc1)
)
(wire (pts (xy 132.08 29.21) (xy 135.89 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88aa2735-209a-467c-8302-34731aa94144)
)
(wire (pts (xy 62.23 129.54) (xy 66.04 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d63ef73-1f0e-4a31-a465-63f7d9c6052a)
)
(wire (pts (xy 137.16 187.96) (xy 140.97 187.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8df95517-3770-488f-80e8-19df001368dc)
)
(wire (pts (xy 101.6 71.12) (xy 105.41 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 935f7f2f-67c1-4130-919d-6627b4934267)
)
(wire (pts (xy 220.98 39.37) (xy 224.79 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94b5723b-d6e3-46f0-8884-ed92fc528f5c)
)
(wire (pts (xy 205.74 55.88) (xy 209.55 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1604ad1-abdb-493e-b101-0e8b3f393f2a)
)
(wire (pts (xy 132.08 31.75) (xy 132.08 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a413610f-8852-4c60-8083-ccadbcb129d9)
)
(wire (pts (xy 252.73 120.65) (xy 256.54 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa810fcf-7301-4610-b815-3a203466eb3e)
)
(wire (pts (xy 132.08 87.63) (xy 135.89 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac247c03-7fc9-41af-ae9a-cc22ce0885b5)
)
(wire (pts (xy 232.41 153.67) (xy 236.22 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae2464ef-009d-4683-853e-a3bc09250d9b)
)
(wire (pts (xy 229.87 55.88) (xy 233.68 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5a44412-eb2d-41c0-ad72-738e6701d0f9)
)
(wire (pts (xy 199.39 137.16) (xy 203.2 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5fdd498-37ad-4126-8970-4aa2e9d3cf46)
)
(wire (pts (xy 87.63 153.67) (xy 91.44 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6b15004-dbbc-404c-b83c-43311d90f29f)
)
(wire (pts (xy 57.15 187.96) (xy 60.96 187.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be81806c-3660-4eba-aa3f-798027d263f6)
)
(wire (pts (xy 109.22 55.88) (xy 113.03 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c016adfd-a931-432d-8f57-2936be88a435)
)
(wire (pts (xy 160.02 153.67) (xy 163.83 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2486a57-ec76-4931-bf85-89e49a588e95)
)
(wire (pts (xy 35.56 87.63) (xy 39.37 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c4337954-136f-4ec0-8a9d-8da4ef6a0375)
)
(wire (pts (xy 194.31 39.37) (xy 198.12 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c46b9018-e697-4b90-ae6b-0740766b0b83)
)
(wire (pts (xy 102.87 137.16) (xy 106.68 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid caa7a044-3a71-4152-9b8a-47b8c42a3f77)
)
(wire (pts (xy 59.69 87.63) (xy 63.5 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cfe6fa81-e4d9-4c27-b9d9-0e1ec7edbd8e)
)
(wire (pts (xy 275.59 39.37) (xy 279.4 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0a6cc1d-5d16-4f10-aa68-3d2799535982)
)
(wire (pts (xy 157.48 55.88) (xy 161.29 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d24c49ae-e889-4679-888e-c9fadf18df56)
)
(wire (pts (xy 139.7 170.18) (xy 143.51 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3ce38a6-32f2-4e27-a99d-d632e26869a9)
)
(wire (pts (xy 101.6 104.14) (xy 105.41 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d580c303-e9c6-4a14-b398-0eb2a324390d)
)
(wire (pts (xy 31.75 153.67) (xy 35.56 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7c53552-b507-4d79-b9ba-4946695239fb)
)
(wire (pts (xy 275.59 24.13) (xy 279.4 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d802c97d-cd87-49c9-9a1e-2a64a2fcb650)
)
(wire (pts (xy 248.92 24.13) (xy 252.73 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d81b8c4e-e062-4525-85bf-3ef58bf85eaa)
)
(wire (pts (xy 135.89 153.67) (xy 139.7 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8439a19-1285-4fe6-a12b-12da946795a9)
)
(wire (pts (xy 133.35 55.88) (xy 137.16 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da10247b-b942-4a1f-aa81-5254a1ef07f3)
)
(wire (pts (xy 199.39 71.12) (xy 203.2 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc6f7ba7-06dc-4f82-a54f-da8c77c445bf)
)
(wire (pts (xy 248.92 39.37) (xy 252.73 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2303c68-bf88-40ef-8e90-6e36e46622e7)
)
(wire (pts (xy 106.68 187.96) (xy 110.49 187.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2d32ce0-30f3-4423-a95c-0c528d0fa0d8)
)
(wire (pts (xy 83.82 87.63) (xy 87.63 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e3d7d024-4322-4a5a-8faf-03515e4ba2af)
)
(wire (pts (xy 181.61 55.88) (xy 185.42 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e50abca9-b071-4e66-8c03-6d33794bc7ba)
)
(wire (pts (xy 111.76 153.67) (xy 115.57 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ecc374c7-168f-4eea-88e7-7f11ba328a65)
)
(wire (pts (xy 127 71.12) (xy 130.81 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef46e122-d374-4ea0-a8b1-3a76435a1d4d)
)
(wire (pts (xy 36.83 55.88) (xy 40.64 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f805bb36-72a1-4ab0-8dd7-5259b4cb8d50)
)
(wire (pts (xy 60.96 55.88) (xy 64.77 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9cbf8e5-85a5-449b-a045-b73233ff43a6)
)
(wire (pts (xy 180.34 120.65) (xy 184.15 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa68c0e2-eac5-4670-bd07-da1c50704edc)
)
(wire (pts (xy 184.15 153.67) (xy 187.96 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fcb1614d-23ab-4454-a5ca-cb05cf29c9e2)
)
(wire (pts (xy 127 137.16) (xy 130.81 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd78744f-44fd-4768-8877-885af3fb53b7)
)
(wire (pts (xy 82.55 120.65) (xy 86.36 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff6bc5ee-fe56-4ce2-81f6-c9ced01f3dc9)
)
(global_label "KEY_9" (shape output) (at 243.84 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0ac8e58a-ba55-414a-bba2-d55b54fa74da)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 235.7421 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_*" (shape output) (at 139.7 104.14 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0e238887-803f-4a7b-88ec-a81b0cf0b6f4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.844 104.0606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_E" (shape output) (at 97.79 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 11ce1e46-c189-455c-99ff-b12444882301)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 89.7526 87.5506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_0" (shape output) (at 91.44 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 189138d6-763f-4add-89b2-978972f33326)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.3421 71.0406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_F1" (shape output) (at 184.15 24.13 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 18d79316-1470-4f60-9f2d-a076564e9fd6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 174.9636 24.0506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_8" (shape output) (at 219.71 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1cd02f60-3b8a-46b6-bab2-5715df5321e4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 211.6121 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_ESC" (shape output) (at 60.96 29.21 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 232e4f2b-0ad9-4425-94e8-8b0fde1c6fb0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4431 29.1306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_LARR" (shape output) (at 26.67 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 23f8af73-54be-4b80-ba1f-39603e43d48a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 15.125 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_F9" (shape output) (at 184.15 39.37 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 25cc8874-abbf-4c98-ad04-42e9b31b31f2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 174.9636 39.2906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_A" (shape output) (at 72.39 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 29780d8f-c6f8-488e-be44-b2c78c6dcc03)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 64.4131 120.5706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_MEGA" (shape output) (at 21.59 153.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2abf2e46-cbbc-4b22-8c7c-52124427a247)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 9.7426 153.5906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_<" (shape output) (at 246.38 153.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2e567ff6-1764-4067-83cd-d8196f748751)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 237.9193 153.5906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_D" (shape output) (at 121.92 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3123885e-de1a-4dc8-a7ca-68f187768459)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 113.7617 120.5706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_>" (shape output) (at 68.58 170.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 31a00df8-67e4-469a-8b74-ecec63179028)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.1193 170.1006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "LED_CAPSLOCK" (shape input) (at 121.92 31.75 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3de87ae8-f2fa-4024-b031-9faa1fb97d2b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 105.3555 31.6706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_;" (shape output) (at 116.84 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3fa04461-2a30-44de-8c3f-f3cc384a8c12)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.3469 137.0806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_M" (shape output) (at 222.25 153.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3fc9c05c-e01a-4bde-b356-f074cbf9b7cf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.9102 153.5906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_RETURN" (shape output) (at 189.23 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4aaa571b-2a57-402f-9e63-3dbe05668e42)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.024 137.0806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_DEL" (shape output) (at 213.36 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 51969f45-3bcc-4f20-bc27-6d996614fb1a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.0245 71.0406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_=" (shape output) (at 140.97 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 557adbfc-04aa-4c37-a2f8-2bcf5ce82127)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.5093 137.0806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_R" (shape output) (at 121.92 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 55c16f53-a391-4413-b08c-5510c7e4dad7)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 113.7617 87.5506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_CTRL" (shape output) (at 25.4 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 56d89b5c-7724-4a54-990b-7ed91756ba68)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 13.9759 120.5706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_F" (shape output) (at 146.05 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 571ac020-b125-43a0-a417-96ec7dd33a48)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 138.0731 120.5706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_Y" (shape output) (at 170.18 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5c72f94f-730c-49af-9de7-fe097e655177)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.2031 87.5506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_-" (shape output) (at 140.97 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6045060b-ed09-4c60-b5db-37bf6bb28f56)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.5093 71.0406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_+" (shape output) (at 116.84 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 61656e80-9598-49d0-8443-0d50a1ea68eb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 108.3793 71.0406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_I" (shape output) (at 218.44 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 63e0c27d-987c-469c-8756-6213d3898dd1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 210.9469 87.5506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_6" (shape output) (at 171.45 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6a69288f-7dcf-4afc-8a48-4399963f3672)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 163.3521 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_N" (shape output) (at 198.12 153.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6d8fdbc9-ec99-4f46-abc7-5743f1cb124b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 189.9012 153.5906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_Z" (shape output) (at 77.47 153.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6d9cbf5c-9005-4a0a-b8a9-6d55c52dacd7)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.3721 153.5906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_3" (shape output) (at 99.06 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6f4bba30-f7f4-4145-8709-9fcae8cd90f4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 90.9621 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_4" (shape output) (at 123.19 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 71e61ab4-10d7-474f-99e2-85cfa0b05174)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 115.0921 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_F13" (shape output) (at 238.76 39.37 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 739c11a7-4ac8-44d5-8785-c8335ddf85a6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 228.364 39.2906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_NOSCROLL" (shape output) (at 156.21 29.21 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 74b40c6d-f56d-4a1c-a1a0-8492ca3760e4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.5245 29.1306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_HOME" (shape output) (at 189.23 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 74bb23fe-64e3-4d70-898b-95b43e4dcb24)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.0802 71.0406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_LSHIFT" (shape output) (at 53.34 153.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 75c4d0c9-f7a8-4fed-bcf2-96f0e2b82b09)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 40.2226 153.5906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_U" (shape output) (at 194.31 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7746a9fa-6bf8-457d-9b06-e86cb22f243c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.0912 87.5506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_F5" (shape output) (at 238.76 24.13 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 776cb591-548b-479d-9558-02005cd7ad86)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 229.5736 24.0506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_SPACE" (shape output) (at 46.99 187.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 777e731d-4afc-4195-a7fc-0cd75dd93d0e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 34.1145 187.8806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "KEY_Q" (shape output) (at 49.53 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))