forked from tompi/cheapino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheapino.kicad_sch
1897 lines (1845 loc) · 79.7 KB
/
cheapino.kicad_sch
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 9203b006-47ac-4f34-8cc4-2b709e3df56f)
(paper "A4")
(title_block
(title "Cheapino")
(rev "1.1")
(company "Tompi")
)
(lib_symbols
(symbol "Connector:RJ45_Shielded" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -5.08 13.97 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "RJ45_Shielded" (id 1) (at 2.54 13.97 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0.635 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0.635 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "8P8C RJ female connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "RJ connector, 8P8C (8 positions 8 connected), Shielded" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "8P8C* RJ31* RJ32* RJ33* RJ34* RJ35* RJ41* RJ45* RJ49* RJ61*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "RJ45_Shielded_0_1"
(polyline
(pts
(xy -5.08 4.445)
(xy -6.35 4.445)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 5.715)
(xy -6.35 5.715)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -3.175)
(xy -5.08 -3.175)
(xy -5.08 -3.175)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -1.905)
(xy -5.08 -1.905)
(xy -5.08 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -0.635)
(xy -5.08 -0.635)
(xy -5.08 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 0.635)
(xy -5.08 0.635)
(xy -5.08 0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 1.905)
(xy -5.08 1.905)
(xy -5.08 1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 3.175)
(xy -6.35 3.175)
(xy -6.35 3.175)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -4.445)
(xy -6.35 6.985)
(xy 3.81 6.985)
(xy 3.81 4.445)
(xy 5.08 4.445)
(xy 5.08 3.175)
(xy 6.35 3.175)
(xy 6.35 -0.635)
(xy 5.08 -0.635)
(xy 5.08 -1.905)
(xy 3.81 -1.905)
(xy 3.81 -4.445)
(xy -6.35 -4.445)
(xy -6.35 -4.445)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 7.62 12.7) (end -7.62 -10.16)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "RJ45_Shielded_1_1"
(pin passive line (at 10.16 -7.62 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -5.08 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 10.16 -2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 5.08 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 7.62 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 10.16 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -12.7 90) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "SH" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:RotaryEncoder_Switch" (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 0 6.604 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "RotaryEncoder_Switch" (id 1) (at 0 -6.604 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -3.81 4.064 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 6.604 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "rotary switch encoder switch push button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Rotary encoder, dual channel, incremental quadrate outputs, with switch" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "RotaryEncoder*Switch*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "RotaryEncoder_Switch_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(circle (center -3.81 0) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(arc (start -0.381 -2.794) (mid 2.3622 -0.0508) (end -0.381 2.667)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -0.381 0) (radius 1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.635 -1.778)
(xy -0.635 1.778)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.381 -1.778)
(xy -0.381 1.778)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.127 1.778)
(xy -0.127 -1.778)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.81 0)
(xy 3.429 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.81 1.016)
(xy 3.81 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -2.54)
(xy -3.81 -2.54)
(xy -3.81 -2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 2.54)
(xy -3.81 2.54)
(xy -3.81 2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 -3.048)
(xy -0.508 -2.794)
(xy 0.127 -2.413)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 2.921)
(xy -0.508 2.667)
(xy 0.127 2.286)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 5.08 -2.54)
(xy 4.318 -2.54)
(xy 4.318 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 5.08 2.54)
(xy 4.318 2.54)
(xy 4.318 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 0)
(xy -3.81 0)
(xy -3.81 -1.016)
(xy -3.302 -2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -4.318 0)
(xy -3.81 0)
(xy -3.81 1.016)
(xy -3.302 2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 4.318 -1.016) (radius 0.127)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 4.318 1.016) (radius 0.127)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "RotaryEncoder_Switch_1_1"
(pin passive line (at -7.62 2.54 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "A" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -2.54 0) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "B" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 0 0) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "C" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 2.54)
(name "S1" (effects (font (size 1.27 1.27))))
(number "S1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 2.54)
(name "S2" (effects (font (size 1.27 1.27))))
(number "S2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(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))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "project:RP2040-Zero" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "RP2040-Zero" (id 1) (at -6.35 22.86 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 "RP2040-Zero_0_0"
(text "" (at 13.97 13.97 0)
(effects (font (size 1.27 1.27)))
)
(text "" (at 15.24 21.59 0)
(effects (font (size 1.27 1.27)))
)
)
(symbol "RP2040-Zero_0_1"
(rectangle (start -26.67 36.83) (end 13.97 8.89)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "RP2040-Zero_1_1"
(pin bidirectional line (at 13.97 33.02 180) (length 2.54)
(name "GP0" (effects (font (size 1.27 1.27))))
(number "0" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 30.48 180) (length 2.54)
(name "GP1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -5.08 8.89 90) (length 2.54)
(name "GP10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -7.62 8.89 90) (length 2.54)
(name "GP11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -10.16 8.89 90) (length 2.54)
(name "GP12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 8.89 90) (length 2.54)
(name "GP13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -26.67 12.7 0) (length 2.54)
(name "GP14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -26.67 15.24 0) (length 2.54)
(name "GP15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 27.94 180) (length 2.54)
(name "GP2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -26.67 17.78 0) (length 2.54)
(name "GP26" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -26.67 20.32 0) (length 2.54)
(name "GP27" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -26.67 22.86 0) (length 2.54)
(name "GP28" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -26.67 25.4 0) (length 2.54)
(name "GP29" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 25.4 180) (length 2.54)
(name "GP3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -26.67 27.94 0) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -26.67 30.48 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -26.67 33.02 0) (length 2.54)
(name "5V" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 22.86 180) (length 2.54)
(name "GP4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 20.32 180) (length 2.54)
(name "GP5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 17.78 180) (length 2.54)
(name "GP6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 15.24 180) (length 2.54)
(name "GP7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 13.97 12.7 180) (length 2.54)
(name "GP8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -2.54 8.89 90) (length 2.54)
(name "GP9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "pspice:DIODE" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DIODE" (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)
)
(property "ki_keywords" "simulation" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode symbol for simulation only. Pin order incompatible with official kicad footprints" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DIODE_0_1"
(polyline
(pts
(xy 1.905 2.54)
(xy 1.905 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 2.54)
(xy -1.905 -2.54)
(xy 1.905 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "DIODE_1_1"
(pin input line (at -5.08 0 0) (length 3.81)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 5.08 0 180) (length 3.81)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(no_connect (at 91.44 144.78) (uuid 79f723c2-7860-4bc5-8293-b61e5ec039d3))
(no_connect (at 88.9 144.78) (uuid 79f723c2-7860-4bc5-8293-b61e5ec039d4))
(no_connect (at 86.36 144.78) (uuid 79f723c2-7860-4bc5-8293-b61e5ec039d5))
(no_connect (at 72.39 120.65) (uuid 7ebba0ea-31c7-4382-af89-87f513e31a21))
(no_connect (at 72.39 125.73) (uuid 7ebba0ea-31c7-4382-af89-87f513e31a22))
(no_connect (at 96.52 144.78) (uuid 8eb773b2-1c18-4551-96ee-460c6a41faee))
(no_connect (at 93.98 144.78) (uuid 8eb773b2-1c18-4551-96ee-460c6a41faef))
(no_connect (at 72.39 135.89) (uuid 8eb773b2-1c18-4551-96ee-460c6a41faf0))
(no_connect (at 72.39 138.43) (uuid 8eb773b2-1c18-4551-96ee-460c6a41faf1))
(no_connect (at 72.39 140.97) (uuid 8eb773b2-1c18-4551-96ee-460c6a41faf2))
(no_connect (at 113.03 138.43) (uuid 8f7df26f-df8a-43a7-afbb-24aa85468e43))
(no_connect (at 113.03 140.97) (uuid 8f7df26f-df8a-43a7-afbb-24aa85468e44))
(wire (pts (xy 146.05 132.08) (xy 153.924 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93b75c0b-4ef4-412e-8d6c-cb585bff411d)
)
(wire (pts (xy 136.144 132.08) (xy 135.89 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99e15939-9a90-4b11-a141-5669a9245ac1)
)
(global_label "COL_1" (shape input) (at 254 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 09ca30e3-bdb7-4e5d-8fa8-3708ba53f920)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 253.9206 97.1188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape input) (at 169.164 134.62 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0f3d8bc7-86ed-4408-82d3-6d93ba402abd)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.3828 134.5406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_2" (shape input) (at 113.03 123.19 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 17f2af18-b14a-4ce5-8eea-fb3b5d513f19)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.2488 123.1106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_2" (shape input) (at 113.03 133.35 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1c41b368-5d60-4c01-a71f-0cd1ab2e435f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.6721 133.2706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_2" (shape input) (at 177.8 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1e57139a-d8a5-49fb-a902-0d36998d9a06)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.7206 46.3188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape input) (at 160.02 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1ec342d8-9968-4db2-a7d7-8252e360d44d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 159.9406 46.7421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape input) (at 215.9 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 24729dff-133e-4769-93a8-22b2e3edd2f3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 215.8206 97.1188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_3" (shape input) (at 214.884 130.302 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 25da41e5-751b-4db4-bbd2-b55ab050ba5d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.5261 130.2226 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "REMOTE_COL_2" (shape input) (at 72.39 130.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 26a0cc1d-7fe4-4a22-b7ca-c18e8ba8ab0c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.8859 130.7306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_3" (shape input) (at 113.03 125.73 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 29d0437f-fcf0-4521-89de-73c22afd9410)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.2488 125.6506 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_4" (shape input) (at 214.884 132.842 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 31d581fc-2947-4cbd-81f4-f705f8397b30)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.5261 132.7626 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_3" (shape input) (at 101.6 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 35a3d999-c777-443c-8794-8f78f81b34a8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.5206 71.7188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_2" (shape input) (at 81.28 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 35e3b27e-9f39-47fb-bf9d-c127c699876f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 72.1421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_4" (shape input) (at 136.144 132.08 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3a17c817-c4b4-43fc-a0df-6f1336723449)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 136.0646 140.7221 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_2" (shape input) (at 274.32 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 413b4b8c-e093-4d95-b929-34463ef89acd)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 274.2406 72.1421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_3" (shape input) (at 121.92 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 45499f30-e139-4d52-800b-45424e6ce312)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.8406 97.5421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_2" (shape input) (at 139.7 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 45b5e1b0-00b6-4705-8533-f4e4a1e37632)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.6206 97.1188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 204.724 145.542 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 49505773-5c38-4d7d-991e-271a648a44d5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.6446 151.8256 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_2" (shape input) (at 261.874 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 49a0b8b3-67c4-46d6-a2de-cc7761cef32d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 270.0928 137.0806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_3" (shape input) (at 60.96 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4b340195-d74d-414e-9675-eab169f97352)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.8806 71.7188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape input) (at 254 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c67601b-b124-4a12-a614-b8aa3fbe1d21)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 253.9206 71.7188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 214.884 122.682 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 509f3c44-26c6-4eb8-8c2f-b0a2c0229227)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 221.1676 122.6026 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_2" (shape input) (at 139.7 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 53a0529c-e81d-4a54-b297-4efc38acf531)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.6206 46.3188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "REMOTE_COL_3" (shape input) (at 72.39 133.35 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 584b0ba3-e8e5-4bdb-a511-4160e079f835)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.8859 133.2706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 251.714 144.78 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5d730b52-fe86-4d2a-8f23-5ce68a144412)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 251.6346 151.0636 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 261.874 132.08 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5ee58c6d-7fe0-4e63-92c6-051247cbee39)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 268.1576 132.0006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "REMOTE_COL_1" (shape input) (at 72.39 128.27 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 62c5d2eb-304f-4f01-968f-da3f7a194888)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.8859 128.1906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_3" (shape input) (at 113.03 130.81 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 65ac31d2-f067-43ba-853c-de282377e630)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.6721 130.7306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_3" (shape input) (at 81.28 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 70db046e-2984-46ab-aff3-ff539606e69e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 97.5421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 72.39 123.19 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 72fc3d77-49e6-4527-8ea9-a4d1ebb6c76a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 66.1064 123.1106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_2" (shape input) (at 261.874 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 764cd944-c43a-4361-9947-e5d4fb2fea4e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 270.5161 126.9206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_1" (shape input) (at 113.03 135.89 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 792a3b9c-abc0-474f-8ae1-3e97ff1677fb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.6721 135.8106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "REMOTE_COL_3" (shape input) (at 214.884 135.382 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7beec52b-f73b-4916-87df-477b1422c905)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 231.3881 135.3026 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_2" (shape input) (at 153.924 129.54 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 874f1581-ece7-414d-9efd-0b5656adc8f8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 145.7052 129.4606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_3" (shape input) (at 60.96 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 89129433-a7d2-4c79-9b2b-65bf0d256420)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.8806 97.1188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_3" (shape input) (at 274.32 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8b718927-77ba-4247-a5e2-2f535afe30e8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 274.2406 97.5421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape input) (at 215.9 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8ec6921a-2824-48f7-9ffe-517778d8c33a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 215.8206 71.7188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape input) (at 254 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 909269cb-3056-4a3b-8055-deffbc520617)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 253.9206 46.3188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_3" (shape input) (at 101.6 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 94f56679-5f6b-4ab2-86c5-533f68022850)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.5206 46.3188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape input) (at 261.874 129.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 960eafed-afb8-4997-b074-c13e54cf5d58)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 270.5161 129.4606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_4" (shape input) (at 261.874 121.92 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9a16a558-6e5c-4a1d-b5c7-9318ed2c0443)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 270.5161 121.8406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_2" (shape input) (at 177.8 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9acf268e-7273-490a-b245-690f2f5bda3c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.7206 71.7188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_2" (shape input) (at 139.7 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9c1185aa-bd89-4a86-b6d2-22a98a75af88)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.6206 71.7188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "REMOTE_COL_2" (shape input) (at 214.884 137.922 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9d83c36d-a8a8-4120-994a-73389ac90bc2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 231.3881 137.8426 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_2" (shape input) (at 236.22 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9dacb6e0-d1e2-4ee6-9873-d4a1a90629e8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 236.1406 72.1421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_2" (shape input) (at 121.92 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a343c226-ad90-461b-97d3-a82272b44f7d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.8406 72.1421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape input) (at 274.32 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid aa11daf2-b8dc-42d7-9ded-1bfeac374429)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 274.2406 46.7421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_3" (shape input) (at 101.6 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid aca82f62-b0f3-4516-a5c8-0dcc30bc80b4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.5206 97.1188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_3" (shape input) (at 236.22 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ae12c66c-1fa2-4d77-8cbe-a4e2b6a34130)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 236.1406 97.5421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape input) (at 198.12 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid afc67cb6-cbd0-4b3c-9235-995c2339bfd5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 198.0406 46.7421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape input) (at 113.03 120.65 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bbf82cab-fc6f-47b3-b6fa-599b22084de8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.2488 120.5706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_2" (shape input) (at 177.8 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bebce449-1f52-4626-9e39-a4e29fd1bf90)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.7206 97.1188 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape input) (at 236.22 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c117a936-593d-466c-8f0e-5b8672ce8017)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 236.1406 46.7421 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_4" (shape input) (at 179.324 129.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c1c46f32-ffa8-400d-b0c2-070cb19ac59f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 187.9661 129.4606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "REMOTE_COL_1" (shape input) (at 214.884 140.462 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c1de9d23-c1a6-4036-8cde-c53c0075f158)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 231.3881 140.3826 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_2" (shape input) (at 214.884 127.762 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c4881eeb-275e-4d47-9765-8f7aa4dbdedf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.5261 127.6826 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_1" (shape input) (at 121.92 38.1 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c51c4269-11d5-435a-af6f-97e6e712f87a)