-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathI2C.kicad_sch
1532 lines (1503 loc) · 57.9 KB
/
I2C.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 beef77c3-e326-4b5e-8116-35ab69646fc6)
(paper "A4")
(title_block
(title "MAXI030 - 68030 based expandable computer")
(date "2021-10-02")
(comment 1 "Lawrence Manning")
)
(lib_symbols
(symbol "Aslak:LM75A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -6.35 10.16 0)
(effects (font (size 0.9906 0.9906)))
)
(property "Value" "Aslak_LM75A" (id 1) (at 5.08 10.16 0)
(effects (font (size 0.9906 0.9906)))
)
(property "Footprint" "Package_SO:SO-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 3.81 0)
(effects (font (size 0.9906 0.9906)) hide)
)
(property "Datasheet" "" (id 3) (at 0 3.81 0)
(effects (font (size 0.9906 0.9906)) hide)
)
(symbol "LM75A_0_1"
(rectangle (start -6.35 8.89) (end 7.62 -8.89)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "LM75A_1_1"
(pin bidirectional line (at -13.97 2.54 0) (length 7.62)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional clock (at -13.97 0 0) (length 7.62)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -13.97 -2.54 0) (length 7.62)
(name "O.S." (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -16.51 90) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -2.54 180) (length 7.62)
(name "A2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 0 180) (length 7.62)
(name "A1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 2.54 180) (length 7.62)
(name "A0" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 16.51 270) (length 7.62)
(name "Vdd" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Battery_Cell" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "BT" (id 0) (at 2.54 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Battery_Cell" (id 1) (at 2.54 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 1.524 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 1.524 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "battery cell" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single-cell battery" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Battery_Cell_0_1"
(rectangle (start -2.286 1.778) (end 2.286 1.524)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.5748 1.1938) (end 1.4732 0.6858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 0.762)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.778)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.508 3.429)
(xy 1.524 3.429)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 3.937)
(xy 1.016 2.921)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Battery_Cell_1_1"
(pin passive line (at 0 5.08 270) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (id 0) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Crystal" (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" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Two pin crystal" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -1.27)
(xy 1.905 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.905 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Crystal_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device: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 "Interface_Expansion:PCA9544APW" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -8.89 21.59 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PCA9544APW" (id 1) (at 7.62 21.59 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 27.94 -21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.nxp.com/documents/data_sheet/PCA9544A.pdf" (id 3) (at -5.08 -27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "i2c multiplexer" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "4-channel I2C-bus multiplexer with interrupt logic, TSSOP-20" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TSSOP*4.4x6.5mm*P0.65mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PCA9544APW_0_1"
(rectangle (start 10.16 20.32) (end -10.16 -20.32)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "PCA9544APW_1_1"
(pin input line (at -12.7 -12.7 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -22.86 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -7.62 180) (length 2.54)
(name "~{INT2}" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
(name "SD2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -5.08 180) (length 2.54)
(name "SC2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -17.78 180) (length 2.54)
(name "~{INT3}" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -12.7 180) (length 2.54)
(name "SD3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -15.24 180) (length 2.54)
(name "SC3" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -12.7 -7.62 0) (length 2.54)
(name "~{INT}" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -2.54 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -15.24 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 22.86 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 12.7 180) (length 2.54)
(name "~{INT0}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 17.78 180) (length 2.54)
(name "SD0" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 15.24 180) (length 2.54)
(name "SC0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 2.54 180) (length 2.54)
(name "~{INT1}" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 7.62 180) (length 2.54)
(name "SD1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 2.54)
(name "SC1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Timer_RTC:DS1307Z+" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -8.89 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DS1307Z+" (id 1) (at 1.27 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 -12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://datasheets.maximintegrated.com/en/ds/DS1307.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "RTC, I2C Timekeeping Chip" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "64 x 8, Serial, I2C Real-time clock, 4.5V to 5.5V VCC, 0°C to +70°C, SOIC-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm?P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DS1307Z+_0_1"
(rectangle (start -10.16 7.62) (end 10.16 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "DS1307Z+_1_1"
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "X1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "X2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "VBAT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 2.54 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 12.7 0 180) (length 2.54)
(name "SQW/OUT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 10.16 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5VD" (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" "+5VD" (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 \"+5VD\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5VD_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 "+5VD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5VD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GNDD" (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" "GNDD" (id 1) (at 0 -3.175 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 \"GNDD\" , digital ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDD_0_1"
(rectangle (start -1.27 -1.524) (end 1.27 -2.032)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDD_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDD" (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" "power-flag" (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))
)
)
)
)
(junction (at 140.97 35.56) (diameter 0) (color 0 0 0 0)
(uuid 08502c47-7556-4fe6-835e-75f373c3b540)
)
(junction (at 166.37 104.14) (diameter 0) (color 0 0 0 0)
(uuid 0d6d13c2-8500-4c11-afd2-0e96a535248b)
)
(junction (at 156.21 35.56) (diameter 0) (color 0 0 0 0)
(uuid 2334a592-2e37-4758-8a98-c0c11e876b85)
)
(junction (at 134.62 121.92) (diameter 0) (color 0 0 0 0)
(uuid 24ba6ea0-0be6-43f3-a59b-632200389632)
)
(junction (at 224.79 106.68) (diameter 0) (color 0 0 0 0)
(uuid 47840751-18dd-4eb9-96e2-e7e222b4739a)
)
(junction (at 140.97 52.07) (diameter 0) (color 0 0 0 0)
(uuid 6e522b25-f047-4cc2-9c74-e187134070c1)
)
(junction (at 187.96 54.61) (diameter 0) (color 0 0 0 0)
(uuid 77c974a0-6344-45e7-ac59-b9bcaff9895b)
)
(junction (at 151.13 133.35) (diameter 0) (color 0 0 0 0)
(uuid 82838666-a144-48ee-a25e-02dc2810429f)
)
(junction (at 107.95 88.9) (diameter 0) (color 0 0 0 0)
(uuid 871ad4d4-e662-42ed-b30c-385d5447b412)
)
(junction (at 133.35 49.53) (diameter 0) (color 0 0 0 0)
(uuid 8c75a111-378a-4ab4-bb1e-4bdced71a3ca)
)
(junction (at 134.62 124.46) (diameter 0) (color 0 0 0 0)
(uuid 9d277a7c-6c7f-448f-9a77-b4344058f4f2)
)
(junction (at 151.13 82.55) (diameter 0) (color 0 0 0 0)
(uuid ade43123-f9ac-457f-8bfb-6a00e6440ca9)
)
(junction (at 166.37 93.98) (diameter 0) (color 0 0 0 0)
(uuid b34e7f98-9bc8-44f3-a27a-68ff76a67c26)
)
(junction (at 224.79 88.9) (diameter 0) (color 0 0 0 0)
(uuid b959d54f-e633-4c74-a0ce-2f772962b8eb)
)
(junction (at 218.44 106.68) (diameter 0) (color 0 0 0 0)
(uuid bde351ce-86f5-4dac-9ab1-f9b33bfa508c)
)
(junction (at 218.44 88.9) (diameter 0) (color 0 0 0 0)
(uuid c90eb002-604f-4fa0-9f49-c3a639732c53)
)
(junction (at 107.95 86.36) (diameter 0) (color 0 0 0 0)
(uuid cb904d2f-c4f3-4a75-a4ae-81f668dd02a8)
)
(junction (at 177.8 38.1) (diameter 0) (color 0 0 0 0)
(uuid d1251e44-06ef-40d4-8947-61f8eb435c1f)
)
(junction (at 88.9 69.85) (diameter 0) (color 0 0 0 0)
(uuid e4fff58b-ed88-4261-bcc5-82a6e14186dd)
)
(junction (at 166.37 114.3) (diameter 0) (color 0 0 0 0)
(uuid f177b6ee-44e4-4949-8ad0-9e2fdfa44908)
)
(junction (at 158.75 67.31) (diameter 0) (color 0 0 0 0)
(uuid f571c0e9-da06-40dd-8d6a-e785d918cee3)
)
(no_connect (at 138.43 114.3) (uuid 89ac794c-dfe5-42ef-abc3-7d70bcb9da13))
(wire (pts (xy 151.13 82.55) (xy 151.13 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 075d5827-d87e-41e4-9496-0663a26a7870)
)
(wire (pts (xy 133.35 35.56) (xy 140.97 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a278c90-8d3c-4356-81e0-2e055c1f19fd)
)
(wire (pts (xy 74.93 88.9) (xy 71.12 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a338dca-0d60-43d0-89a3-10a43615239a)
)
(wire (pts (xy 218.44 85.09) (xy 218.44 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d9d564f-5c3d-44bd-9444-9775985b42b9)
)
(wire (pts (xy 142.24 59.69) (xy 146.05 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ee22a81-1a00-46d0-9b8f-962c036194fd)
)
(wire (pts (xy 231.14 106.68) (xy 224.79 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f18ee7f-27f7-46a5-9fc7-134d91973e3a)
)
(wire (pts (xy 138.43 119.38) (xy 134.62 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f2c41ba-3117-4b14-af6a-366299b3cff2)
)
(wire (pts (xy 218.44 88.9) (xy 218.44 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 101ee10f-cfff-4b26-91fc-d0341dd24344)
)
(wire (pts (xy 74.93 86.36) (xy 71.12 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10f6682a-6778-4f24-9b8b-56c57b3dd51e)
)
(wire (pts (xy 134.62 119.38) (xy 134.62 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1aa2546f-e71e-4404-a133-924476f2f731)
)
(wire (pts (xy 177.8 67.31) (xy 177.8 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1adc9c52-baf7-4478-8b0a-54af4ea674f1)
)
(wire (pts (xy 158.75 38.1) (xy 177.8 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b515c65-d1de-45b0-bd76-f77b0123b035)
)
(wire (pts (xy 168.91 88.9) (xy 163.83 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d58641f-b8e4-47e9-b22f-0bd922573d01)
)
(wire (pts (xy 107.95 91.44) (xy 107.95 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e88d06a-d186-4f98-9067-ff7eba209a8b)
)
(wire (pts (xy 142.24 57.15) (xy 146.05 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f204edb-8491-4900-b7a7-37eac0821296)
)
(wire (pts (xy 166.37 93.98) (xy 166.37 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fbd8c5a-c948-47ac-81ef-0690ae0b269a)
)
(wire (pts (xy 218.44 106.68) (xy 218.44 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22042985-ab74-43f0-9fee-4078a763b4e5)
)
(wire (pts (xy 138.43 124.46) (xy 134.62 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22ee0f48-4912-4dc5-a6fc-21ed0a0ffab7)
)
(wire (pts (xy 134.62 64.77) (xy 134.62 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29aa9d06-b8b3-4df2-928c-9924930affbc)
)
(wire (pts (xy 177.8 38.1) (xy 177.8 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a378ba0-0d16-41e3-bee2-b30cbfc4e21f)
)
(wire (pts (xy 168.91 101.6) (xy 163.83 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 302b1a9d-88db-425f-94b1-d94dea924505)
)
(wire (pts (xy 166.37 82.55) (xy 151.13 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 364313af-91bb-4157-807b-ad619d0444e5)
)
(wire (pts (xy 142.24 54.61) (xy 142.24 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 382c1a1c-bee1-4c3c-b9a8-3559acf4f9a9)
)
(wire (pts (xy 134.62 67.31) (xy 142.24 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3885c424-0f70-433f-b87d-aae6daed4fbe)
)
(wire (pts (xy 134.62 124.46) (xy 134.62 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c269277-cd2f-4399-8add-89591148056b)
)
(wire (pts (xy 146.05 52.07) (xy 140.97 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c80f27a-d174-4294-8a6c-90a85eee6e80)
)
(wire (pts (xy 151.13 133.35) (xy 151.13 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4121739c-eb15-4a2d-bc27-1988a84fccc1)
)
(wire (pts (xy 142.24 67.31) (xy 142.24 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 438d165a-3362-44ec-9728-adc56e42c500)
)
(wire (pts (xy 166.37 124.46) (xy 166.37 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44730dd9-9ada-4aba-8d6e-da19f47012d0)
)
(wire (pts (xy 104.14 86.36) (xy 107.95 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47b5a7c8-e1a0-48e6-8f22-a1bce8db908d)
)
(wire (pts (xy 138.43 121.92) (xy 134.62 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48f66235-dcb2-41f0-b678-d1a1536d61aa)
)
(wire (pts (xy 168.91 111.76) (xy 163.83 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51a55f78-8f30-4f78-a005-c5cd38ce1ac4)
)
(wire (pts (xy 104.14 88.9) (xy 107.95 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56535e5a-b7ac-4ad6-be23-4c9808af1cad)
)
(wire (pts (xy 138.43 109.22) (xy 134.62 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56dc397f-d347-44c8-bfcf-b7781245e6ad)
)
(wire (pts (xy 134.62 54.61) (xy 142.24 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56fc2800-1206-408e-b7a6-6f795be41259)
)
(wire (pts (xy 133.35 49.53) (xy 146.05 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 590981a2-f410-48d3-b7cd-5449011fe122)
)
(wire (pts (xy 140.97 35.56) (xy 156.21 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b166edd-a1d2-4c38-842e-e048c4cdc991)
)
(wire (pts (xy 151.13 83.82) (xy 151.13 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d4450f8-b370-4ede-98e6-3a52f3712f87)
)
(wire (pts (xy 163.83 104.14) (xy 166.37 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62ec5a02-763a-4d1c-9fd8-c84a187f3ba0)
)
(wire (pts (xy 104.14 91.44) (xy 107.95 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 647d6769-65e6-451f-baf9-95122ba391c8)
)
(wire (pts (xy 129.54 49.53) (xy 133.35 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66cee60d-3d5c-42f0-9c12-acec55b49d07)
)
(wire (pts (xy 224.79 106.68) (xy 218.44 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68556bf6-a1da-46ed-ab01-e65022179b8e)
)
(wire (pts (xy 158.75 67.31) (xy 158.75 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70b5f248-b6f9-495f-8e7d-9208c2bc782d)
)
(wire (pts (xy 166.37 104.14) (xy 166.37 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 717f471e-a44d-40d9-8f03-ef78264ed7de)
)
(wire (pts (xy 134.62 133.35) (xy 151.13 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 754b2904-6f82-4894-8f41-72c0989fdec0)
)
(wire (pts (xy 158.75 64.77) (xy 158.75 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78e9d109-468e-42e8-b5c6-a1afa9b6782e)
)
(wire (pts (xy 156.21 35.56) (xy 187.96 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c14ee2b-bc34-4f4f-9d8f-66d450a456e9)
)
(wire (pts (xy 107.95 88.9) (xy 107.95 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8092ffa6-758b-4657-8093-41327416c885)
)
(wire (pts (xy 163.83 114.3) (xy 166.37 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83cf9c97-e113-45cd-9ef9-289e428298ce)
)
(wire (pts (xy 168.91 91.44) (xy 163.83 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87bdc135-8d61-4329-89ff-bda0da76d877)
)
(wire (pts (xy 231.14 101.6) (xy 231.14 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92038077-6814-4846-a754-ca63b71a0051)
)
(wire (pts (xy 156.21 35.56) (xy 156.21 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93e73526-d3e3-4020-821b-d8617733f913)
)
(wire (pts (xy 166.37 114.3) (xy 166.37 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97931410-2be5-40b8-af09-fa1e27b4cdf0)
)
(wire (pts (xy 88.9 72.39) (xy 88.9 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98f311d4-20a7-47fa-824d-b7899b53c3a5)
)
(wire (pts (xy 71.12 91.44) (xy 74.93 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b7f2610-2dc8-43d2-b17b-a9778a3004cb)
)
(wire (pts (xy 224.79 88.9) (xy 224.79 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f33b9a4-fd7d-4f68-b3af-43cbdc8f3094)
)
(wire (pts (xy 88.9 105.41) (xy 88.9 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3c24268-a20a-48bf-baa9-851eaffc6411)
)
(wire (pts (xy 158.75 67.31) (xy 177.8 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a60b7631-e653-430a-9139-8b3f485c15f2)
)
(wire (pts (xy 231.14 88.9) (xy 231.14 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6c2120b-2b52-4fb9-80a6-27dfaa84211f)
)
(wire (pts (xy 163.83 93.98) (xy 166.37 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a71904b7-cd64-4a8f-8327-fe9278ebac64)
)
(wire (pts (xy 134.62 57.15) (xy 134.62 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a900f762-e3f1-496b-bbdf-a2c04730145e)
)
(wire (pts (xy 138.43 111.76) (xy 134.62 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a922fb01-0b5a-4f73-9621-f5bf7de24061)
)
(wire (pts (xy 187.96 35.56) (xy 187.96 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac21954d-fe76-46cb-ba93-17d3a5ab6dad)
)
(wire (pts (xy 140.97 45.72) (xy 140.97 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b59b0d19-3e39-472f-89f1-86e64b25f574)
)
(wire (pts (xy 158.75 44.45) (xy 158.75 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8f18cb0-f601-466e-812c-62931dd974e4)
)
(wire (pts (xy 88.9 69.85) (xy 88.9 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid beee16e7-cdcf-40b2-b558-979cd5bc2256)
)
(wire (pts (xy 168.91 109.22) (xy 163.83 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1fed907-0914-4c24-88d4-e3a5f0977e5b)
)
(wire (pts (xy 133.35 45.72) (xy 133.35 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5178208-bbd3-4ec2-80c8-6c22e65a8895)
)
(wire (pts (xy 133.35 38.1) (xy 133.35 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c51de1af-8fe6-4926-8282-26b3d99b92e5)
)
(wire (pts (xy 140.97 35.56) (xy 140.97 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c720377a-0d49-462a-80b5-cafb0f0c3bdc)
)
(wire (pts (xy 224.79 101.6) (xy 224.79 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8ba1893-2fc9-4a6d-9ace-8a611aa37a2f)
)
(wire (pts (xy 224.79 88.9) (xy 231.14 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8cb1fcd-0b20-4c76-b766-152176f7e1e1)
)
(wire (pts (xy 187.96 54.61) (xy 195.58 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd65e79d-a038-4e8a-94a4-f7c56286b8ea)
)
(wire (pts (xy 151.13 133.35) (xy 151.13 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d60d0607-d82d-42a4-85f3-6bb381c36242)
)
(wire (pts (xy 134.62 121.92) (xy 134.62 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dbe9db46-53ba-442f-b8f9-7ebd7558565c)
)
(wire (pts (xy 168.91 99.06) (xy 163.83 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e102720e-0d8c-4322-93dc-86c45996473d)
)
(wire (pts (xy 107.95 69.85) (xy 88.9 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e324dd5d-432f-4c59-8bfb-0bb700f1e7ad)
)
(wire (pts (xy 218.44 88.9) (xy 224.79 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4c5afdb-005a-4fd9-8df1-95c2e7bc7502)
)
(wire (pts (xy 218.44 101.6) (xy 218.44 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5af2f43-8c6c-4b38-89e5-fc85dd73eb46)
)
(wire (pts (xy 163.83 124.46) (xy 166.37 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5b60fc5-7002-4bcd-b38c-1c48412e8328)
)
(wire (pts (xy 187.96 45.72) (xy 187.96 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5c229bd-fbd5-49f4-bfe9-52fc90682cfc)
)
(wire (pts (xy 171.45 54.61) (xy 187.96 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))