-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTS1_connector.kicad_sch
1759 lines (1725 loc) · 68.8 KB
/
STS1_connector.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 ed298ada-b824-4cb3-9735-4fc91dd92331)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_02x25_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 33.02 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x25_Odd_Even" (id 1) (at 1.27 -33.02 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x25_Odd_Even_1_1"
(rectangle (start -1.27 -30.353) (end 0 -30.607)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -27.813) (end 0 -28.067)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -25.273) (end 0 -25.527)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -22.733) (end 0 -22.987)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -20.193) (end 0 -20.447)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 17.907) (end 0 17.653)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 20.447) (end 0 20.193)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 22.987) (end 0 22.733)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 25.527) (end 0 25.273)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 28.067) (end 0 27.813)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 30.607) (end 0 30.353)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 31.75) (end 3.81 -31.75)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -30.353) (end 2.54 -30.607)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -27.813) (end 2.54 -28.067)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -25.273) (end 2.54 -25.527)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -22.733) (end 2.54 -22.987)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -20.193) (end 2.54 -20.447)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -17.653) (end 2.54 -17.907)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -15.113) (end 2.54 -15.367)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -12.573) (end 2.54 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -10.033) (end 2.54 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -7.493) (end 2.54 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 7.747) (end 2.54 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 10.287) (end 2.54 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 12.827) (end 2.54 12.573)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 15.367) (end 2.54 15.113)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 17.907) (end 2.54 17.653)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 20.447) (end 2.54 20.193)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 22.987) (end 2.54 22.733)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 25.527) (end 2.54 25.273)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 28.067) (end 2.54 27.813)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 30.607) (end 2.54 30.353)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 30.48 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 20.32 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 17.78 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 17.78 180) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 15.24 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 15.24 180) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 12.7 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 12.7 180) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 10.16 180) (length 3.81)
(name "Pin_18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 30.48 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 7.62 180) (length 3.81)
(name "Pin_20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_24" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_25" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_26" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_27" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_28" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_29" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 27.94 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_30" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_31" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -7.62 180) (length 3.81)
(name "Pin_32" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_33" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -10.16 180) (length 3.81)
(name "Pin_34" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_35" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -12.7 180) (length 3.81)
(name "Pin_36" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_37" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -15.24 180) (length 3.81)
(name "Pin_38" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_39" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 27.94 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -17.78 180) (length 3.81)
(name "Pin_40" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -20.32 0) (length 3.81)
(name "Pin_41" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -20.32 180) (length 3.81)
(name "Pin_42" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -22.86 0) (length 3.81)
(name "Pin_43" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -22.86 180) (length 3.81)
(name "Pin_44" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -25.4 0) (length 3.81)
(name "Pin_45" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -25.4 180) (length 3.81)
(name "Pin_46" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -27.94 0) (length 3.81)
(name "Pin_47" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -27.94 180) (length 3.81)
(name "Pin_48" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -30.48 0) (length 3.81)
(name "Pin_49" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 25.4 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -30.48 180) (length 3.81)
(name "Pin_50" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 25.4 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 22.86 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 22.86 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 20.32 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (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" "global power" (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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "flag power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:VBUS" (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" "VBUS" (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" "global power" (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 \"VBUS\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VBUS_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 "VBUS_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 171.45 78.74) (diameter 0) (color 0 0 0 0)
(uuid 02e959c5-70a2-42e6-bf58-1d8e1e085d66)
)
(junction (at 173.99 91.44) (diameter 0) (color 0 0 0 0)
(uuid 0372e32f-1333-438c-81f2-6a52cbad4e54)
)
(junction (at 82.55 73.66) (diameter 0) (color 0 0 0 0)
(uuid 04833e07-018b-466d-af4c-93fc53a662e4)
)
(junction (at 85.09 58.42) (diameter 0) (color 0 0 0 0)
(uuid 0b939372-8a8c-4118-ad5e-ec9f2a46d21a)
)
(junction (at 173.99 63.5) (diameter 0) (color 0 0 0 0)
(uuid 168fb81d-9aa9-4492-a9b3-4d7746d37e21)
)
(junction (at 173.99 45.72) (diameter 0) (color 0 0 0 0)
(uuid 1ca3982b-ecb6-443f-bae1-eb32dc6c8075)
)
(junction (at 85.09 71.12) (diameter 0) (color 0 0 0 0)
(uuid 1dd6506d-99da-4acb-99cd-123668c60975)
)
(junction (at 173.99 73.66) (diameter 0) (color 0 0 0 0)
(uuid 2449efc4-dba0-429d-8536-a3bce3f2c6ec)
)
(junction (at 173.99 76.2) (diameter 0) (color 0 0 0 0)
(uuid 2769920b-7da6-4912-b971-82aa506cdf96)
)
(junction (at 85.09 83.82) (diameter 0) (color 0 0 0 0)
(uuid 27b9bd50-44b6-4e60-8a70-577a3951da10)
)
(junction (at 171.45 104.14) (diameter 0) (color 0 0 0 0)
(uuid 30565b86-516e-438a-8dcc-f558f3cfb209)
)
(junction (at 82.55 48.26) (diameter 0) (color 0 0 0 0)
(uuid 3652c370-8a74-4fb4-87f6-0d0515f9ef4d)
)
(junction (at 85.09 101.6) (diameter 0) (color 0 0 0 0)
(uuid 37f2af68-930c-4177-a4d0-6323caf07aee)
)
(junction (at 173.99 66.04) (diameter 0) (color 0 0 0 0)
(uuid 3a23a1c0-5a31-4029-b9ed-22b74824f48d)
)
(junction (at 173.99 88.9) (diameter 0) (color 0 0 0 0)
(uuid 3af0494a-ce84-4ac3-8efd-18d067eb9d7e)
)
(junction (at 85.09 68.58) (diameter 0) (color 0 0 0 0)
(uuid 41149caa-59dd-4bdf-9f27-88d5ec13baba)
)
(junction (at 173.99 55.88) (diameter 0) (color 0 0 0 0)
(uuid 416d9d64-b9e6-4a25-ac7c-6ab11549146a)
)
(junction (at 85.09 106.68) (diameter 0) (color 0 0 0 0)
(uuid 491edce5-a64f-4675-bd71-1e02a6b2fb06)
)
(junction (at 173.99 93.98) (diameter 0) (color 0 0 0 0)
(uuid 4d773ffe-96ab-4fdc-9106-f63aca735704)
)
(junction (at 85.09 96.52) (diameter 0) (color 0 0 0 0)
(uuid 4dd87618-ce40-4b08-a9dd-a4dfade4a6ea)
)
(junction (at 173.99 71.12) (diameter 0) (color 0 0 0 0)
(uuid 4e3641f6-3434-43f8-9591-f86ad800526b)
)
(junction (at 173.99 81.28) (diameter 0) (color 0 0 0 0)
(uuid 50f262a6-207a-423d-8b9d-6f58620f5058)
)
(junction (at 173.99 106.68) (diameter 0) (color 0 0 0 0)
(uuid 5703df67-ebd0-4bbd-a11a-8c0997886516)
)
(junction (at 171.45 48.26) (diameter 0) (color 0 0 0 0)
(uuid 58c3aa4d-b254-4ff0-819d-ed8f39f1b669)
)
(junction (at 173.99 99.06) (diameter 0) (color 0 0 0 0)
(uuid 59bc5ab9-d6b6-4ce0-9b3f-b91a950e5653)
)
(junction (at 173.99 48.26) (diameter 0) (color 0 0 0 0)
(uuid 6218524d-d3df-4184-bbe2-42b1a880fd15)
)
(junction (at 85.09 45.72) (diameter 0) (color 0 0 0 0)
(uuid 638d863e-ddf0-4b6a-9f29-519396c60b83)
)
(junction (at 171.45 96.52) (diameter 0) (color 0 0 0 0)
(uuid 6cc50ce4-9f5c-49a1-b356-fa0470379e5a)
)
(junction (at 173.99 104.14) (diameter 0) (color 0 0 0 0)
(uuid 70c2e66c-5970-47af-b7e5-2186bde2a0cd)
)
(junction (at 82.55 106.68) (diameter 0) (color 0 0 0 0)
(uuid 70ee7b11-3bc9-4892-87c2-49f5985346a6)
)
(junction (at 80.01 50.8) (diameter 0) (color 0 0 0 0)
(uuid 7a79847d-c36d-46ae-ae72-61ab4e2c2d08)
)
(junction (at 85.09 93.98) (diameter 0) (color 0 0 0 0)
(uuid 7b15bccc-3778-400f-84d1-568a04290a73)
)
(junction (at 82.55 96.52) (diameter 0) (color 0 0 0 0)
(uuid 7c3d5d85-8c30-4798-b8bc-aff5436ed589)
)
(junction (at 85.09 66.04) (diameter 0) (color 0 0 0 0)
(uuid 87517a62-067d-46ff-ab97-11a51813dad0)
)
(junction (at 85.09 48.26) (diameter 0) (color 0 0 0 0)
(uuid 8b83d2f3-2d7d-4ed4-ac0f-c8464281c093)
)
(junction (at 173.99 58.42) (diameter 0) (color 0 0 0 0)
(uuid 8cfc81e8-cd85-4843-9bad-d3c83b56598c)
)
(junction (at 85.09 104.14) (diameter 0) (color 0 0 0 0)
(uuid 8d12e4db-8878-4799-939b-dacc3de9ddf3)
)
(junction (at 85.09 60.96) (diameter 0) (color 0 0 0 0)
(uuid 9124167e-b0c1-4d72-a503-9c843a9413df)
)
(junction (at 82.55 55.88) (diameter 0) (color 0 0 0 0)
(uuid 93bb136d-ec00-4a9e-a1cf-1aec5059e811)
)
(junction (at 173.99 86.36) (diameter 0) (color 0 0 0 0)
(uuid 979b6ca9-13cc-4776-aa27-67d250bbb26b)
)
(junction (at 82.55 104.14) (diameter 0) (color 0 0 0 0)
(uuid 9abac7f2-1422-4587-8446-63d848b6db4d)
)
(junction (at 85.09 55.88) (diameter 0) (color 0 0 0 0)
(uuid 9f30794c-ef19-4c44-8e43-1826896ca396)
)
(junction (at 173.99 68.58) (diameter 0) (color 0 0 0 0)
(uuid a0f78324-bf3c-4ab3-99fd-8cca79005fff)
)
(junction (at 173.99 50.8) (diameter 0) (color 0 0 0 0)
(uuid a540b35f-58df-40bc-87e3-7a988d075965)
)
(junction (at 173.99 83.82) (diameter 0) (color 0 0 0 0)
(uuid b0166be0-3a4b-49ed-b228-5399c96dc28a)
)
(junction (at 173.99 60.96) (diameter 0) (color 0 0 0 0)
(uuid b106d2b4-47d6-4ec2-b7d8-94cca58309b5)
)
(junction (at 85.09 99.06) (diameter 0) (color 0 0 0 0)
(uuid b11498e0-bd71-48e2-a99a-2fa0a4b9414e)
)
(junction (at 85.09 88.9) (diameter 0) (color 0 0 0 0)
(uuid b13bd2a8-1890-4188-b5cb-90c539254ceb)
)
(junction (at 85.09 63.5) (diameter 0) (color 0 0 0 0)
(uuid b37f33ff-4618-453f-a270-a215b5f7a488)
)
(junction (at 85.09 76.2) (diameter 0) (color 0 0 0 0)
(uuid c49a4894-0028-4782-a61b-b5b699f7d4d9)
)
(junction (at 85.09 53.34) (diameter 0) (color 0 0 0 0)
(uuid c50abde3-770b-4ad4-850f-4c63501ab5fe)
)
(junction (at 85.09 73.66) (diameter 0) (color 0 0 0 0)
(uuid cc10a456-2ab8-4cd7-a143-b005e013ed74)
)
(junction (at 82.55 86.36) (diameter 0) (color 0 0 0 0)
(uuid d04cda1a-284f-4506-8ab8-b6edd649a3e7)
)
(junction (at 173.99 53.34) (diameter 0) (color 0 0 0 0)
(uuid d04e9c47-a23e-4c3a-8e59-2159443398f5)
)
(junction (at 85.09 86.36) (diameter 0) (color 0 0 0 0)
(uuid dfc88150-f924-41db-abf5-8130f8dc4005)
)
(junction (at 85.09 50.8) (diameter 0) (color 0 0 0 0)
(uuid e3812a12-325d-4ab1-87d2-2c244800c440)
)
(junction (at 171.45 106.68) (diameter 0) (color 0 0 0 0)
(uuid ed843b07-812a-4b85-8d5e-6210ebd80a97)
)
(junction (at 173.99 78.74) (diameter 0) (color 0 0 0 0)
(uuid f2acc756-595d-4b0e-8557-e2172e869a3b)
)
(junction (at 173.99 101.6) (diameter 0) (color 0 0 0 0)
(uuid fb2791f2-ac59-4cb3-8b6e-76c8cdecd0ea)
)
(junction (at 85.09 91.44) (diameter 0) (color 0 0 0 0)
(uuid fda23267-ab6b-40de-9617-37f9fd8517f9)
)
(junction (at 173.99 96.52) (diameter 0) (color 0 0 0 0)
(uuid ff7fc194-bcc8-4ee9-b2c8-3a9b36885eba)
)
(bus_entry (at 151.13 93.98) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ee8bca8-700f-4afe-b5eb-01b39cad8d91)
)
(bus_entry (at 57.15 63.5) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 168c4990-1668-44ea-b59f-52a365f8964f)
)
(bus_entry (at 144.78 58.42) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a84c675-fc3f-4ed4-a6bb-cdfb3793dea8)
)
(bus_entry (at 144.78 68.58) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2829a487-7b6a-4da7-b96f-f273e14b5bea)
)
(bus_entry (at 57.15 71.12) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c689884-ed93-4b32-a173-e98ed36324b2)
)
(bus_entry (at 55.88 104.14) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32a42971-c8b7-4776-b674-334dcb59afaf)
)
(bus_entry (at 151.13 83.82) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39d6d7d7-d313-4ccb-9ba3-9256965c5da7)
)
(bus_entry (at 57.15 68.58) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 443a3baa-e16d-49ef-b8c3-a136fc70511e)
)
(bus_entry (at 151.13 91.44) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4990e44c-2879-4518-8841-b216e19d44ef)
)
(bus_entry (at 144.78 63.5) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ce32598-bb12-405b-81c7-f64acf7ea91a)
)
(bus_entry (at 55.88 101.6) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50545c77-ce8e-4cbd-8c08-a7292cc485f8)
)
(bus_entry (at 144.78 60.96) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 549d2222-3fa3-487d-a9ca-1261584e556a)
)
(bus_entry (at 151.13 96.52) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 716ef219-3d00-4de5-ac4d-1c55c7cb00f2)
)
(bus_entry (at 144.78 53.34) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73f0ec61-579f-4fdc-b819-3409794d8eb5)
)
(bus_entry (at 144.78 66.04) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7655ac37-1077-402e-bef3-6e5c35208a29)
)
(bus_entry (at 57.15 73.66) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8be831d2-e6ed-48e1-a9b8-af7b00113dac)
)
(bus_entry (at 57.15 66.04) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 929e2a27-b278-4db6-8848-731b04487eb5)
)
(bus_entry (at 144.78 55.88) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a63e38c8-b52a-4b16-b235-145800ff8ada)
)
(bus_entry (at 57.15 60.96) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afb17faf-4b94-4543-99b1-db5c0f16cfcc)
)
(bus_entry (at 151.13 86.36) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b521116d-a5d3-4d79-8712-a2ce20ffb934)
)
(bus_entry (at 151.13 88.9) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7f583a5-188a-47f8-ae89-e843a389d9b4)
)
(wire (pts (xy 85.09 48.26) (xy 97.79 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0043becb-d2ff-4a4b-9f15-dcbd06b39d3d)
)
(wire (pts (xy 85.09 99.06) (xy 97.79 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 049d3049-6148-44e9-b743-98fe0d9d9375)
)
(wire (pts (xy 147.32 60.96) (xy 173.99 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05071214-94b3-40f2-b56e-31bfd2c1f3f2)
)
(wire (pts (xy 85.09 73.66) (xy 97.79 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0832d6e1-4729-4273-ac3a-00c5abc3744d)
)
(wire (pts (xy 80.01 50.8) (xy 80.01 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 091a31fa-9998-4540-8811-4cb54fa9dd25)
)
(wire (pts (xy 77.47 76.2) (xy 85.09 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a97adf0-7171-4553-bf3d-72d80187b3f6)
)
(bus (pts (xy 144.78 66.04) (xy 144.78 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bc92207-ed0a-4264-b5c0-fe57b4c08ab6)
)
(wire (pts (xy 85.09 88.9) (xy 97.79 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f08b304-e4d7-48ab-8e55-a8974c683e04)
)
(wire (pts (xy 171.45 96.52) (xy 173.99 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f755c66-901b-4bba-9dc1-814ee4a02637)
)
(bus (pts (xy 144.78 60.96) (xy 144.78 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10c49efb-cdcf-4ae7-9a95-f0dad4256865)
)
(wire (pts (xy 173.99 104.14) (xy 186.69 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11de17fb-fd27-4ea6-89bc-9af1f4779865)
)
(bus (pts (xy 57.15 71.12) (xy 57.15 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13a13c95-a3c3-4b02-813c-cd734d18ebd4)
)
(bus (pts (xy 55.88 101.6) (xy 55.88 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15991abf-9cbb-4e0e-9616-94ca11f0ac59)
)
(wire (pts (xy 173.99 99.06) (xy 173.99 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15b8184a-3a0c-4005-9fec-799835343edb)
)
(wire (pts (xy 173.99 96.52) (xy 186.69 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 177495c2-365d-4212-a274-13d66270a117)
)
(wire (pts (xy 85.09 86.36) (xy 97.79 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 178b626b-296d-4117-bef1-41f579b2e432)
)
(wire (pts (xy 77.47 91.44) (xy 85.09 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 181b05f5-1708-45ba-a547-7c8bccb285b0)
)
(wire (pts (xy 173.99 88.9) (xy 186.69 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1969cb7e-7312-4591-9936-d63da2d35478)
)
(wire (pts (xy 85.09 76.2) (xy 97.79 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c888c25-6cb2-4ca5-8f83-187d34de1449)
)
(bus (pts (xy 151.13 88.9) (xy 151.13 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d8476c3-a4bd-421a-aaac-75ed789ef7cf)
)
(wire (pts (xy 234.95 80.01) (xy 224.79 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e673394-5edb-4d43-9485-3968eabc5b84)
)
(bus (pts (xy 140.97 68.58) (xy 144.78 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24613834-2528-4b2b-9e1e-acea387a1a4c)
)
(wire (pts (xy 82.55 73.66) (xy 85.09 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2652517b-af26-442a-982f-33a338de9657)
)
(wire (pts (xy 173.99 106.68) (xy 186.69 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2887cba4-bb51-44b1-85da-4ab6bb056845)
)
(wire (pts (xy 166.37 68.58) (xy 173.99 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2942d7d6-e4d2-4322-810e-44559f00d99f)
)
(wire (pts (xy 153.67 91.44) (xy 173.99 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c53feb7-2a9b-49ec-ae62-588a4d3346d1)
)
(wire (pts (xy 173.99 71.12) (xy 186.69 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d128298-9faf-4201-ae0a-6edb47784c63)
)
(wire (pts (xy 82.55 106.68) (xy 85.09 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31b83763-e32e-4168-830b-c82a090f0ca0)
)
(wire (pts (xy 173.99 53.34) (xy 186.69 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3261ad61-d1eb-4024-9ad8-51da8ff5aecb)
)
(wire (pts (xy 166.37 76.2) (xy 173.99 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 335f79a5-b149-4bc4-a8e1-4f966fe86024)
)
(wire (pts (xy 82.55 86.36) (xy 82.55 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3394fea7-3a79-4f05-be4c-b497ba6e5718)
)
(bus (pts (xy 140.97 55.88) (xy 144.78 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3406d0af-8ed7-4912-8465-99803d7c88f3)
)
(wire (pts (xy 85.09 83.82) (xy 97.79 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35fe5c9b-8c01-4d2d-a2d3-236b1cbf00e0)
)
(wire (pts (xy 173.99 73.66) (xy 186.69 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38a42369-3bb7-40f1-9e2e-78afa52d5c8e)
)
(wire (pts (xy 171.45 106.68) (xy 171.45 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38c3b871-eb68-4a02-a46b-b0a123087e7c)
)
(wire (pts (xy 173.99 83.82) (xy 186.69 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 394fd956-c739-4d18-90b9-95c3d201cd97)
)
(wire (pts (xy 82.55 48.26) (xy 82.55 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b3bf863-650e-4c72-8a20-af657c7871ed)
)
(wire (pts (xy 173.99 63.5) (xy 186.69 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e5b93ae-f360-4dcc-8677-a66c49501679)
)
(wire (pts (xy 173.99 60.96) (xy 186.69 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 407475d0-9c41-4833-906d-653686d9a02d)