forked from afternoonlabs/BreezeKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Breeze.kicad_sch
3800 lines (3684 loc) · 154 KB
/
Breeze.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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(title_block
(title "Breeze")
(date "2023-05-21")
(rev "Rev1.2")
(company "Afternoon Labs LLC")
)
(lib_symbols
(symbol "Breeze-rescue:2M-HOLE-Breeze-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "2M-HOLE-Breeze-rescue" (id 1) (at 0 -5.08 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "2M-HOLE-Breeze-rescue_0_0"
(text "HOLE" (at 0 3.81 0)
(effects (font (size 1.524 1.524)))
)
)
(symbol "2M-HOLE-Breeze-rescue_0_1"
(rectangle (start 3.81 5.08) (end -3.81 -3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "Breeze-rescue:3M-HOLE-Merkaba_Rev0-rescue-Breeze-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "3M-HOLE-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at 0 -5.08 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "3M-HOLE-Merkaba_Rev0-rescue-Breeze-rescue_0_0"
(text "HOLE" (at 0 3.81 0)
(effects (font (size 1.524 1.524)))
)
)
(symbol "3M-HOLE-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(rectangle (start 3.81 5.08) (end -3.81 -3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "Breeze-rescue:CHOCXHSPCB-1U-cache-Merkaba_Rev0-rescue-Breeze-rescue" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 3.81 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "CHOCXHSPCB-1U-cache-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at 0 -2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "CHOCXHSPCB-1U-cache-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(rectangle (start -4.318 1.27) (end 4.318 1.524)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.524)
(xy -0.762 2.286)
(xy 0.762 2.286)
(xy 1.016 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive inverted (at -7.62 0 0) (length 5.08)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive inverted (at 7.62 0 180) (length 5.08)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Breeze-rescue:Diode-cache-Merkaba_Rev0-rescue-Breeze-rescue" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Diode-cache-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at 0 -2.54 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_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Diode-cache-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Diode-cache-Merkaba_Rev0-rescue-Breeze-rescue_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (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 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Breeze-rescue:GND-power-Merkaba_Rev0-rescue-Breeze-rescue" (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-power-Merkaba_Rev0-rescue-Breeze-rescue" (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)
)
(symbol "GND-power-Merkaba_Rev0-rescue-Breeze-rescue_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-power-Merkaba_Rev0-rescue-Breeze-rescue_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 "Breeze-rescue:Logo-Breeze-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "LGO" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Logo-Breeze-rescue" (id 1) (at 0 0 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 "Logo-Breeze-rescue_0_1"
(circle (center 0 0) (radius 2.8448)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "Breeze-rescue:MJ-4PP-9-Lily58-cache-Merkaba_Rev0-rescue-Breeze-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -8.89 -7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MJ-4PP-9-Lily58-cache-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at -3.81 6.35 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "MJ-4PP-9-Lily58-cache-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(rectangle (start -7.62 2.54) (end -8.89 -3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 7.62 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -5.08)
(xy 7.62 -5.08)
(xy 7.62 -5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy -2.54 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 1.27 1.27)
(xy 2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 7.62 3.81)
(xy -7.62 3.81)
(xy -7.62 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -5.08)
(xy -3.81 -3.81)
(xy -5.08 -5.08)
(xy -5.08 -5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 7.62 -2.54)
(xy 7.62 -2.54)
(xy 7.62 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 7.62 -6.35) (end -10.16 5.08)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "MJ-4PP-9-Lily58-cache-Merkaba_Rev0-rescue-Breeze-rescue_1_1"
(pin passive line (at 11.43 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -2.54 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -5.08 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 3.81 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Breeze-rescue:MX-STABILIZER-2U-Merkaba_Rev0-rescue-Breeze-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MX-STABILIZER-2U-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at 0 0 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 "MX-STABILIZER-2U-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(rectangle (start -2.54 2.54) (end 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "Breeze-rescue:ProMicro-Merkaba_Rev0-rescue-Breeze-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "ProMicro-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at 0 -26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ProMicro-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(rectangle (start -11.43 16.51) (end 11.43 -22.86)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ProMicro-Merkaba_Rev0-rescue-Breeze-rescue_1_1"
(pin input line (at -16.51 13.97 0) (length 5.08)
(name "TX(PD3)" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -8.89 0) (length 5.08)
(name "D7(PE6)" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -11.43 0) (length 5.08)
(name "D8(PB4)" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -13.97 0) (length 5.08)
(name "D9(PB5)" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -13.97 180) (length 5.08)
(name "D10(PB6)" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -11.43 180) (length 5.08)
(name "D16(PB2)" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -19.05 180) (length 5.08)
(name "fD14(PB3)" (effects (font (size 1.27 1.27))))
(number "15.1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -21.59 180) (length 5.08)
(name "bD14(PB3)" (effects (font (size 1.27 1.27))))
(number "15.2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -6.35 180) (length 5.08)
(name "D15(PB1)" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -3.81 180) (length 5.08)
(name "A0(PF7)" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -1.27 180) (length 5.08)
(name "A1(PF6)" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 1.27 180) (length 5.08)
(name "A2(PF5)" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 11.43 0) (length 5.08)
(name "RX(PD2)" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 3.81 180) (length 5.08)
(name "A3(PF4)" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 6.35 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 8.89 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 11.43 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 13.97 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 8.89 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 6.35 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 3.81 0) (length 5.08)
(name "SDA(PD1)" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 1.27 0) (length 5.08)
(name "SCL(PD0)" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -1.27 0) (length 5.08)
(name "D4(PD4)" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -3.81 0) (length 5.08)
(name "D5(PC6)" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -6.35 0) (length 5.08)
(name "D6(PD7)" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Breeze-rescue:ProMicro-Partial2-Merkaba_Rev0-rescue-Breeze-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "ProMicro-Partial2-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at 0 -17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ProMicro-Partial2-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(rectangle (start -11.43 16.51) (end 11.43 -16.51)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ProMicro-Partial2-Merkaba_Rev0-rescue-Breeze-rescue_1_1"
(pin input line (at -16.51 13.97 0) (length 5.08)
(name "TX(PD3)" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 6.35 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 3.81 180) (length 5.08)
(name "A3(PF4)" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 1.27 180) (length 5.08)
(name "A2(PF5)" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 11.43 0) (length 5.08)
(name "RX(PD2)" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 8.89 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 6.35 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 3.81 0) (length 5.08)
(name "SDA(PD1)" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 1.27 0) (length 5.08)
(name "SCL(PD0)" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 13.97 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 11.43 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 8.89 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Breeze-rescue:SW_RST-Lily58-cache-Merkaba_Rev0-rescue-Breeze-rescue" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "RSW" (id 0) (at 2.54 2.54 0)
(effects (font (size 1.016 1.016)))
)
(property "Value" "SW_RST-Lily58-cache-Merkaba_Rev0-rescue-Breeze-rescue" (id 1) (at 0 -2.54 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 "SW_RST-Lily58-cache-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(polyline
(pts
(xy -2.54 1.27)
(xy 2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive inverted (at -3.81 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 inverted (at 3.81 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Breeze-rescue:VCC-power-Merkaba_Rev0-rescue-Breeze-rescue" (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" "VCC-power-Merkaba_Rev0-rescue-Breeze-rescue" (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)
)
(symbol "VCC-power-Merkaba_Rev0-rescue-Breeze-rescue_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 1.905) (radius 0.635)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC-power-Merkaba_Rev0-rescue-Breeze-rescue_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 256.54 40.64) (diameter 0) (color 0 0 0 0)
(uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
)
(junction (at 144.78 113.03) (diameter 0) (color 0 0 0 0)
(uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
)
(junction (at 256.54 72.39) (diameter 0) (color 0 0 0 0)
(uuid 109caac1-5036-4f23-9a66-f569d871501b)
)
(junction (at 142.24 40.64) (diameter 0) (color 0 0 0 0)
(uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
)
(junction (at 256.54 57.15) (diameter 0) (color 0 0 0 0)
(uuid 19b0959e-a79b-43b2-a5ad-525ced7e9131)
)
(junction (at 219.71 72.39) (diameter 0) (color 0 0 0 0)
(uuid 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)
)
(junction (at 142.24 57.15) (diameter 0) (color 0 0 0 0)
(uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
)
(junction (at 144.78 96.52) (diameter 0) (color 0 0 0 0)
(uuid 20cca02e-4c4d-4961-b6b4-b40a1731b220)
)
(junction (at 240.03 96.52) (diameter 0) (color 0 0 0 0)
(uuid 22999e73-da32-43a5-9163-4b3a41614f25)
)
(junction (at 185.42 96.52) (diameter 0) (color 0 0 0 0)
(uuid 240c10af-51b5-420e-a6f4-a2c8f5db1db5)
)
(junction (at 220.98 48.26) (diameter 0) (color 0 0 0 0)
(uuid 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)
)
(junction (at 144.78 80.01) (diameter 0) (color 0 0 0 0)
(uuid 2846428d-39de-4eae-8ce2-64955d56c493)
)
(junction (at 182.88 40.64) (diameter 0) (color 0 0 0 0)
(uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
)
(junction (at 219.71 40.64) (diameter 0) (color 0 0 0 0)
(uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
)
(junction (at 57.15 175.26) (diameter 0) (color 0 0 0 0)
(uuid 43707e99-bdd7-4b02-9974-540ed6c2b0aa)
)
(junction (at 219.71 57.15) (diameter 0) (color 0 0 0 0)
(uuid 4a850cb6-bb24-4274-a902-e49f34f0a0e3)
)
(junction (at 165.1 80.01) (diameter 0) (color 0 0 0 0)
(uuid 4e315e69-0417-463a-8b7f-469a08d1496e)
)
(junction (at 165.1 96.52) (diameter 0) (color 0 0 0 0)
(uuid 592f25e6-a01b-47fd-8172-3da01117d00a)
)
(junction (at 124.46 113.03) (diameter 0) (color 0 0 0 0)
(uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
)
(junction (at 274.32 40.64) (diameter 0) (color 0 0 0 0)
(uuid 61fe4c73-be59-4519-98f1-a634322a841d)
)
(junction (at 220.98 96.52) (diameter 0) (color 0 0 0 0)
(uuid 658dad07-97fd-466c-8b49-21892ac96ea4)
)
(junction (at 182.88 88.9) (diameter 0) (color 0 0 0 0)
(uuid 699feae1-8cdd-4d2b-947f-f24849c73cdb)
)
(junction (at 121.92 57.15) (diameter 0) (color 0 0 0 0)
(uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
)
(junction (at 240.03 64.77) (diameter 0) (color 0 0 0 0)
(uuid 70fb572d-d5ec-41e7-9482-63d4578b4f47)
)
(junction (at 162.56 72.39) (diameter 0) (color 0 0 0 0)
(uuid 71989e06-8659-4605-b2da-4f729cc41263)
)
(junction (at 201.93 72.39) (diameter 0) (color 0 0 0 0)
(uuid 79e31048-072a-4a40-a625-26bb0b5f046b)
)
(junction (at 220.98 64.77) (diameter 0) (color 0 0 0 0)
(uuid 7afa54c4-2181-41d3-81f7-39efc497ecae)
)
(junction (at 165.1 64.77) (diameter 0) (color 0 0 0 0)
(uuid 88668202-3f0b-4d07-84d4-dcd790f57272)
)
(junction (at 142.24 72.39) (diameter 0) (color 0 0 0 0)
(uuid 8fc062a7-114d-48eb-a8f8-71128838f380)
)
(junction (at 185.42 64.77) (diameter 0) (color 0 0 0 0)
(uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
)
(junction (at 203.2 80.01) (diameter 0) (color 0 0 0 0)
(uuid 926001fd-2747-4639-8c0f-4fc46ff7218d)
)
(junction (at 124.46 80.01) (diameter 0) (color 0 0 0 0)
(uuid 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)
)
(junction (at 104.14 80.01) (diameter 0) (color 0 0 0 0)
(uuid a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
)
(junction (at 124.46 96.52) (diameter 0) (color 0 0 0 0)
(uuid a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)
)
(junction (at 203.2 48.26) (diameter 0) (color 0 0 0 0)
(uuid a6ccc556-da88-4006-ae1a-cc35733efef3)
)
(junction (at 104.14 64.77) (diameter 0) (color 0 0 0 0)
(uuid afd38b10-2eca-4abe-aed1-a96fb07ffdbe)
)
(junction (at 124.46 64.77) (diameter 0) (color 0 0 0 0)
(uuid b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
)
(junction (at 165.1 48.26) (diameter 0) (color 0 0 0 0)
(uuid b6135480-ace6-42b2-9c47-856ef57cded1)
)
(junction (at 121.92 72.39) (diameter 0) (color 0 0 0 0)
(uuid b6cd701f-4223-4e72-a305-466869ccb250)
)
(junction (at 240.03 48.26) (diameter 0) (color 0 0 0 0)
(uuid b7867831-ef82-4f33-a926-59e5c1c09b91)
)
(junction (at 203.2 96.52) (diameter 0) (color 0 0 0 0)
(uuid c09938fd-06b9-4771-9f63-2311626243b3)
)
(junction (at 121.92 88.9) (diameter 0) (color 0 0 0 0)
(uuid c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)
)
(junction (at 144.78 64.77) (diameter 0) (color 0 0 0 0)
(uuid c106154f-d948-43e5-abfa-e1b96055d91b)
)
(junction (at 182.88 72.39) (diameter 0) (color 0 0 0 0)
(uuid c49d23ab-146d-4089-864f-2d22b5b414b9)
)
(junction (at 182.88 57.15) (diameter 0) (color 0 0 0 0)
(uuid c7af8405-da2e-4a34-b9b8-518f342f8995)
)
(junction (at 104.14 48.26) (diameter 0) (color 0 0 0 0)
(uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f)
)
(junction (at 203.2 64.77) (diameter 0) (color 0 0 0 0)
(uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
)
(junction (at 185.42 80.01) (diameter 0) (color 0 0 0 0)
(uuid d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)
)
(junction (at 142.24 88.9) (diameter 0) (color 0 0 0 0)
(uuid d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)
)
(junction (at 185.42 48.26) (diameter 0) (color 0 0 0 0)
(uuid dc2801a1-d539-4721-b31f-fe196b9f13df)
)
(junction (at 237.49 40.64) (diameter 0) (color 0 0 0 0)
(uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
)
(junction (at 144.78 48.26) (diameter 0) (color 0 0 0 0)
(uuid e4aa537c-eb9d-4dbb-ac87-fae46af42391)
)
(junction (at 274.32 57.15) (diameter 0) (color 0 0 0 0)
(uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
)
(junction (at 162.56 88.9) (diameter 0) (color 0 0 0 0)
(uuid eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)
)
(junction (at 104.14 96.52) (diameter 0) (color 0 0 0 0)
(uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
)
(junction (at 162.56 57.15) (diameter 0) (color 0 0 0 0)
(uuid f66398f1-1ae7-4d4d-939f-958c174c6bce)
)
(junction (at 237.49 57.15) (diameter 0) (color 0 0 0 0)
(uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd)
)
(junction (at 201.93 57.15) (diameter 0) (color 0 0 0 0)
(uuid f7667b23-296e-4362-a7e3-949632c8954b)
)
(junction (at 162.56 40.64) (diameter 0) (color 0 0 0 0)
(uuid f78e02cd-9600-4173-be8d-67e530b5d19f)
)
(junction (at 201.93 40.64) (diameter 0) (color 0 0 0 0)
(uuid f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)
)
(junction (at 124.46 48.26) (diameter 0) (color 0 0 0 0)
(uuid f9403623-c00c-4b71-bc5c-d763ff009386)
)
(junction (at 104.14 113.03) (diameter 0) (color 0 0 0 0)
(uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
)
(junction (at 121.92 40.64) (diameter 0) (color 0 0 0 0)
(uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
)
(wire (pts (xy 220.98 64.77) (xy 203.2 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
)
(wire (pts (xy 121.92 57.15) (xy 121.92 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00e38d63-5436-49db-81f5-697421f168fc)
)
(wire (pts (xy 57.15 175.26) (xy 57.15 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
)
(wire (pts (xy 36.83 36.83) (xy 21.59 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02165243-61a3-4857-84ba-71a77cb9a387)
)
(wire (pts (xy 167.64 88.9) (xy 165.1 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)
)
(wire (pts (xy 99.06 48.26) (xy 104.14 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
)
(wire (pts (xy 186.69 72.39) (xy 185.42 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)
)
(wire (pts (xy 185.42 48.26) (xy 165.1 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 065b9982-55f2-4822-977e-07e8a06e7b35)
)
(wire (pts (xy 144.78 80.01) (xy 124.46 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 071522c0-d0ed-49b9-906e-6295f67fb0dc)
)
(wire (pts (xy 57.15 165.1) (xy 63.5 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 076046ab-4b56-4060-b8d9-0d80806d0277)
)
(wire (pts (xy 162.56 88.9) (xy 162.56 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 088f77ba-fca9-42b3-876e-a6937267f957)
)
(wire (pts (xy 256.54 40.64) (xy 256.54 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
)
(wire (pts (xy 219.71 40.64) (xy 219.71 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cc45b5b-96b3-4284-9cae-a3a9e324a916)
)
(wire (pts (xy 127 57.15) (xy 124.46 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ce8d3ab-2662-4158-8a2a-18b782908fc5)
)
(wire (pts (xy 106.68 72.39) (xy 104.14 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
)
(wire (pts (xy 77.47 24.13) (xy 77.47 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e)
)
(wire (pts (xy 63.5 165.1) (xy 63.5 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1171ce37-6ad7-4662-bb68-5592c945ebf3)
)
(wire (pts (xy 104.14 64.77) (xy 97.79 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1199146e-a60b-416a-b503-e77d6d2892f9)
)
(wire (pts (xy 204.47 88.9) (xy 203.2 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee)
)
(wire (pts (xy 165.1 113.03) (xy 144.78 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
)
(wire (pts (xy 121.92 40.64) (xy 121.92 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3)
)
(wire (pts (xy 147.32 105.41) (xy 144.78 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 262f1ea9-0133-4b43-be36-456207ea857c)
)
(wire (pts (xy 162.56 40.64) (xy 162.56 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26801cfb-b53b-4a6a-a2f4-5f4986565765)
)
(wire (pts (xy 259.08 40.64) (xy 257.81 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27d56953-c620-4d5b-9c1c-e48bc3d9684a)
)
(wire (pts (xy 147.32 57.15) (xy 144.78 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29195ea4-8218-44a1-b4bf-466bee0082e4)
)
(wire (pts (xy 147.32 40.64) (xy 144.78 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29e058a7-50a3-43e5-81c3-bfee53da08be)
)
(wire (pts (xy 185.42 96.52) (xy 165.1 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43)
)
(wire (pts (xy 257.81 64.77) (xy 240.03 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)
)
(wire (pts (xy 222.25 88.9) (xy 220.98 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e842263-c0ba-46fd-a760-6624d4c78278)
)
(wire (pts (xy 259.08 88.9) (xy 257.81 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 309b3bff-19c8-41ec-a84d-63399c649f46)
)
(wire (pts (xy 256.54 72.39) (xy 256.54 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)
)
(wire (pts (xy 182.88 40.64) (xy 182.88 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)
)
(wire (pts (xy 203.2 64.77) (xy 185.42 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37f31dec-63fc-4634-a141-5dc5d2b60fe4)
)
(wire (pts (xy 106.68 57.15) (xy 104.14 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 382ca670-6ae8-4de6-90f9-f241d1337171)
)
(wire (pts (xy 121.92 88.9) (xy 121.92 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
)
(wire (pts (xy 121.92 40.64) (xy 121.92 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
)
(wire (pts (xy 104.14 96.52) (xy 97.79 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f43d730-2a73-49fe-9672-32428e7f5b49)
)
(wire (pts (xy 167.64 40.64) (xy 165.1 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fd54105-4b7e-4004-9801-76ec66108a22)
)
(wire (pts (xy 203.2 96.52) (xy 185.42 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)
)
(wire (pts (xy 204.47 72.39) (xy 203.2 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4632212f-13ce-4392-bc68-ccb9ba333770)
)
(wire (pts (xy 53.34 168.91) (xy 57.15 168.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 479331ff-c540-41f4-84e6-b48d65171e59)
)
(wire (pts (xy 64.77 95.25) (xy 71.12 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
)
(wire (pts (xy 142.24 57.15) (xy 142.24 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e)
)
(wire (pts (xy 124.46 80.01) (xy 104.14 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fa10683-33cd-4dcd-8acc-2415cd63c62a)
)
(wire (pts (xy 165.1 96.52) (xy 144.78 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
)
(wire (pts (xy 124.46 96.52) (xy 104.14 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5487601b-81d3-4c70-8f3d-cf9df9c63302)
)
(wire (pts (xy 165.1 72.39) (xy 167.64 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 576c6616-e95d-4f1e-8ead-dea30fcdc8c2)
)
(wire (pts (xy 203.2 80.01) (xy 185.42 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 597a11f2-5d2c-4a65-ac95-38ad106e1367)
)
(wire (pts (xy 185.42 80.01) (xy 165.1 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59ec3156-036e-4049-89db-91a9dd07095f)
)
(wire (pts (xy 127 40.64) (xy 124.46 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)
)
(wire (pts (xy 106.68 88.9) (xy 104.14 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5edcefbe-9766-42c8-9529-28d0ec865573)
)
(wire (pts (xy 257.81 48.26) (xy 240.03 48.26))