-
Notifications
You must be signed in to change notification settings - Fork 0
/
hall_sensors.kicad_sch
10433 lines (10170 loc) · 412 KB
/
hall_sensors.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 a76312a3-dbaa-4c44-aae2-87aeace1aeab)
(paper "User" 432.003 350.012)
(title_block
(title "Smart Chessboard - Hall Effect Sensors")
(date "2022-11-12")
(rev "B")
(company "Butler Electronics")
(comment 1 "Design by Joshua Butler, MD, MHI")
)
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(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.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(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 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "User_Symbols:UHE4913" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 6.35 8.89 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "UHE4913" (id 1) (at 6.35 6.35 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 0 21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/1811061532_UTC-Unisonic-Tech-UHE4913G-AE3-R_C86815.pdf" (id 3) (at 1.27 -20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Hall Effect Switch Sensor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Low Power Hall Effect Switch, SOT-23" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "UHE4913_0_1"
(rectangle (start -6.35 5.08) (end 6.35 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "UHE4913_1_1"
(pin output line (at 8.89 0 180) (length 2.54)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 7.62 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 185.42 152.4) (diameter 0) (color 0 0 0 0)
(uuid 01127c2e-2f10-48ab-bac2-c022bf948e69)
)
(junction (at 378.46 49.53) (diameter 0) (color 0 0 0 0)
(uuid 01a8c9d2-b1da-460e-908b-e276fdcd09f8)
)
(junction (at 104.14 40.64) (diameter 0) (color 0 0 0 0)
(uuid 027c1464-8400-4e20-b0e0-b998c0bbd720)
)
(junction (at 233.68 186.69) (diameter 0) (color 0 0 0 0)
(uuid 029d73e1-593f-4dfe-b8c1-614b593ac1cf)
)
(junction (at 55.88 246.38) (diameter 0) (color 0 0 0 0)
(uuid 033b5ef3-0724-4710-817d-e939039b227e)
)
(junction (at 88.9 64.77) (diameter 0) (color 0 0 0 0)
(uuid 04c9af64-a4f8-4fff-9075-397589fe391c)
)
(junction (at 88.9 270.51) (diameter 0) (color 0 0 0 0)
(uuid 06a85f96-c2b2-4376-a09d-f53f058ec776)
)
(junction (at 185.42 118.11) (diameter 0) (color 0 0 0 0)
(uuid 077ce443-cb16-4ae2-93f0-014c504bce2e)
)
(junction (at 88.9 289.56) (diameter 0) (color 0 0 0 0)
(uuid 08b052c6-b775-4cf4-914c-fcf7ce8d9df1)
)
(junction (at 200.66 143.51) (diameter 0) (color 0 0 0 0)
(uuid 0cde1954-e476-4923-b1c4-4f1328f855d5)
)
(junction (at 281.94 167.64) (diameter 0) (color 0 0 0 0)
(uuid 11b0d228-8558-40ce-b76c-9a1ee396cbb6)
)
(junction (at 88.9 30.48) (diameter 0) (color 0 0 0 0)
(uuid 1301df8b-b5ca-47af-bd48-46f63e092fdc)
)
(junction (at 88.9 152.4) (diameter 0) (color 0 0 0 0)
(uuid 13066b42-58cc-4412-9252-d323548dc18c)
)
(junction (at 40.64 255.27) (diameter 0) (color 0 0 0 0)
(uuid 13c6aca7-3950-4f93-9897-66876e66b4cb)
)
(junction (at 88.9 220.98) (diameter 0) (color 0 0 0 0)
(uuid 16922532-25e9-4f1e-9661-1a69c55b2a26)
)
(junction (at 393.7 143.51) (diameter 0) (color 0 0 0 0)
(uuid 194a8e20-8096-4715-a2f6-f9837d57da23)
)
(junction (at 297.18 109.22) (diameter 0) (color 0 0 0 0)
(uuid 1a88ea70-b74a-486a-acbb-16f9f803960a)
)
(junction (at 40.64 186.69) (diameter 0) (color 0 0 0 0)
(uuid 1b6482b5-a14d-4b4f-aeed-e78d545a944a)
)
(junction (at 345.44 177.8) (diameter 0) (color 0 0 0 0)
(uuid 1b861847-32ea-4c36-8264-3e9a7928b870)
)
(junction (at 137.16 64.77) (diameter 0) (color 0 0 0 0)
(uuid 1c796b8b-5490-41a6-b11e-aaa194a77e9f)
)
(junction (at 281.94 64.77) (diameter 0) (color 0 0 0 0)
(uuid 1d765c03-cdc2-4dcd-96aa-32bd920caced)
)
(junction (at 137.16 133.35) (diameter 0) (color 0 0 0 0)
(uuid 1e013168-004e-4f6f-94bd-3bf2d6d0faa4)
)
(junction (at 393.7 177.8) (diameter 0) (color 0 0 0 0)
(uuid 206f51b8-a21a-495f-a2ff-32e0abeea830)
)
(junction (at 152.4 246.38) (diameter 0) (color 0 0 0 0)
(uuid 211207e5-12d0-4632-a6ec-11844e5504a6)
)
(junction (at 185.42 289.56) (diameter 0) (color 0 0 0 0)
(uuid 21216ea6-e7e9-47a4-b377-87a00baba4da)
)
(junction (at 378.46 133.35) (diameter 0) (color 0 0 0 0)
(uuid 226721fd-a25c-465c-8e4b-ad82b9ac424e)
)
(junction (at 137.16 201.93) (diameter 0) (color 0 0 0 0)
(uuid 227e04e2-6df1-4d22-94f6-be4401decfbc)
)
(junction (at 330.2 152.4) (diameter 0) (color 0 0 0 0)
(uuid 22e37f6d-9536-49bf-a6f7-ecbf59e0c068)
)
(junction (at 233.68 99.06) (diameter 0) (color 0 0 0 0)
(uuid 230e7b52-847f-420f-9f0e-d0f74f64eefc)
)
(junction (at 233.68 133.35) (diameter 0) (color 0 0 0 0)
(uuid 239ea700-5680-43bf-add3-850b5cd56ce7)
)
(junction (at 330.2 201.93) (diameter 0) (color 0 0 0 0)
(uuid 2474db86-7193-4ba9-80bc-1ff3a8020f22)
)
(junction (at 185.42 236.22) (diameter 0) (color 0 0 0 0)
(uuid 267cecc0-3bdb-4772-ab91-e36893c95ab3)
)
(junction (at 104.14 177.8) (diameter 0) (color 0 0 0 0)
(uuid 267f40ee-adc2-40ad-a0ca-aad622d0bc87)
)
(junction (at 104.14 143.51) (diameter 0) (color 0 0 0 0)
(uuid 2705cc69-9a59-4c10-a264-f3376914c3e9)
)
(junction (at 345.44 109.22) (diameter 0) (color 0 0 0 0)
(uuid 27791de1-e44b-4bee-8e80-2187ed10d304)
)
(junction (at 88.9 118.11) (diameter 0) (color 0 0 0 0)
(uuid 27ab6713-b116-4e52-a1e0-c769292f247d)
)
(junction (at 40.64 49.53) (diameter 0) (color 0 0 0 0)
(uuid 288e77cb-9d7a-47eb-b8e8-2726ef9e687f)
)
(junction (at 233.68 118.11) (diameter 0) (color 0 0 0 0)
(uuid 297086a0-d81c-4f9b-93eb-26594f115724)
)
(junction (at 137.16 118.11) (diameter 0) (color 0 0 0 0)
(uuid 2ab2e5cd-9f5a-4032-b7be-c2d9b11c19eb)
)
(junction (at 40.64 152.4) (diameter 0) (color 0 0 0 0)
(uuid 2b11fc26-6312-4737-86d0-71c1b4b670d5)
)
(junction (at 233.68 270.51) (diameter 0) (color 0 0 0 0)
(uuid 2c60a757-fa13-46ce-91f7-c22c67592df1)
)
(junction (at 185.42 167.64) (diameter 0) (color 0 0 0 0)
(uuid 2d623eab-a169-42a1-ae12-de9eec4fafc1)
)
(junction (at 88.9 133.35) (diameter 0) (color 0 0 0 0)
(uuid 3023fd36-4e1e-4758-9f31-33141127ae3f)
)
(junction (at 55.88 40.64) (diameter 0) (color 0 0 0 0)
(uuid 31202f4c-91e4-4be7-9ea5-c1c1c7ea7981)
)
(junction (at 55.88 143.51) (diameter 0) (color 0 0 0 0)
(uuid 379f6837-6751-4412-b3ef-eb53e089b1d7)
)
(junction (at 88.9 167.64) (diameter 0) (color 0 0 0 0)
(uuid 38bd9a94-5b80-47df-b520-6431dc36ac51)
)
(junction (at 248.92 74.93) (diameter 0) (color 0 0 0 0)
(uuid 38f1338a-2d93-4665-87a1-732823500a9a)
)
(junction (at 297.18 246.38) (diameter 0) (color 0 0 0 0)
(uuid 3accc6d1-96aa-441c-ba24-029cf576608d)
)
(junction (at 248.92 143.51) (diameter 0) (color 0 0 0 0)
(uuid 3cb8e505-4f51-4064-a38d-65594fd77c65)
)
(junction (at 55.88 177.8) (diameter 0) (color 0 0 0 0)
(uuid 3eb455f7-06f8-49b7-83c5-c470a09f1c42)
)
(junction (at 152.4 212.09) (diameter 0) (color 0 0 0 0)
(uuid 3f95a403-760b-4878-b29b-bd665fdf6994)
)
(junction (at 345.44 280.67) (diameter 0) (color 0 0 0 0)
(uuid 4068d024-8b1f-47f7-9f43-17b11ca76119)
)
(junction (at 185.42 186.69) (diameter 0) (color 0 0 0 0)
(uuid 4352f583-dbcb-4675-a1b8-e9d37e3d60be)
)
(junction (at 152.4 40.64) (diameter 0) (color 0 0 0 0)
(uuid 45ae0fab-f693-4fe5-92dc-264c6c43ecee)
)
(junction (at 152.4 143.51) (diameter 0) (color 0 0 0 0)
(uuid 47116bfb-8a40-4178-aba1-ec05fa8228e6)
)
(junction (at 330.2 64.77) (diameter 0) (color 0 0 0 0)
(uuid 48e37c9c-0d74-4d15-bf58-90c5fb41c6be)
)
(junction (at 378.46 201.93) (diameter 0) (color 0 0 0 0)
(uuid 4934d64c-4c79-47a5-9ac5-eebc192c40e9)
)
(junction (at 248.92 212.09) (diameter 0) (color 0 0 0 0)
(uuid 4acb9169-1448-4790-add4-1388ad80fdd3)
)
(junction (at 88.9 236.22) (diameter 0) (color 0 0 0 0)
(uuid 4b279134-9359-4f23-bc1b-1e1c0a6645a4)
)
(junction (at 185.42 64.77) (diameter 0) (color 0 0 0 0)
(uuid 4ec6039c-9488-4a0b-8dd9-963b1ea89fec)
)
(junction (at 88.9 255.27) (diameter 0) (color 0 0 0 0)
(uuid 536c1fd2-141b-490f-b64d-c4043a3c0754)
)
(junction (at 281.94 152.4) (diameter 0) (color 0 0 0 0)
(uuid 56c0c31b-fc89-4b0c-9127-23be6a58501b)
)
(junction (at 330.2 118.11) (diameter 0) (color 0 0 0 0)
(uuid 5781b7ff-c9a6-4717-b14f-95212ed81e11)
)
(junction (at 330.2 270.51) (diameter 0) (color 0 0 0 0)
(uuid 58742add-4581-4720-b0b5-5e68b0488164)
)
(junction (at 185.42 255.27) (diameter 0) (color 0 0 0 0)
(uuid 58b15002-8de0-4072-98d7-56c35a3f1f2d)
)
(junction (at 137.16 83.82) (diameter 0) (color 0 0 0 0)
(uuid 59298b12-d365-4f16-aa8b-7a5cf44d79ef)
)
(junction (at 185.42 220.98) (diameter 0) (color 0 0 0 0)
(uuid 59302094-27ba-44b3-8ee7-3e94b4ebca35)
)
(junction (at 185.42 201.93) (diameter 0) (color 0 0 0 0)
(uuid 59c9b5d7-faa7-488a-8a8a-9990b7fa4456)
)
(junction (at 297.18 74.93) (diameter 0) (color 0 0 0 0)
(uuid 5a1497f4-8bdf-4d5d-b222-38c0bf35c58b)
)
(junction (at 281.94 270.51) (diameter 0) (color 0 0 0 0)
(uuid 5b30934f-702d-4b97-84b6-60fe175c87ce)
)
(junction (at 40.64 201.93) (diameter 0) (color 0 0 0 0)
(uuid 5cac3b61-ad43-4ce1-a7a2-f99ab6b3dc4c)
)
(junction (at 200.66 109.22) (diameter 0) (color 0 0 0 0)
(uuid 5eb2f626-5651-4cac-a825-66252c203f70)
)
(junction (at 378.46 83.82) (diameter 0) (color 0 0 0 0)
(uuid 5ef99f66-e377-49f4-8c17-91b50e3f96f7)
)
(junction (at 281.94 118.11) (diameter 0) (color 0 0 0 0)
(uuid 60eef399-1f0b-4e88-92de-d6e4fd0bce13)
)
(junction (at 378.46 152.4) (diameter 0) (color 0 0 0 0)
(uuid 63801f21-bccc-4e9d-becd-58ca6625593a)
)
(junction (at 104.14 280.67) (diameter 0) (color 0 0 0 0)
(uuid 64dbf0ee-3d93-486e-a5d1-31a867a5b6b0)
)
(junction (at 393.7 109.22) (diameter 0) (color 0 0 0 0)
(uuid 658d1761-78be-48ae-8966-2f1d3db5e65d)
)
(junction (at 393.7 212.09) (diameter 0) (color 0 0 0 0)
(uuid 662da760-1385-4e9f-92ac-ec1bdd369e17)
)
(junction (at 281.94 83.82) (diameter 0) (color 0 0 0 0)
(uuid 67669732-94b0-4490-813a-541de0b17273)
)
(junction (at 88.9 99.06) (diameter 0) (color 0 0 0 0)
(uuid 6771cb6a-6ed7-4c22-8790-315b9938e408)
)
(junction (at 248.92 246.38) (diameter 0) (color 0 0 0 0)
(uuid 681c8717-0444-4ccf-91fb-46bc685ee7af)
)
(junction (at 40.64 64.77) (diameter 0) (color 0 0 0 0)
(uuid 68b29fdb-8f7b-4d06-9dd6-a785152c0119)
)
(junction (at 88.9 201.93) (diameter 0) (color 0 0 0 0)
(uuid 697e4055-7fc9-411c-bec3-3504b1416169)
)
(junction (at 200.66 74.93) (diameter 0) (color 0 0 0 0)
(uuid 699ee2c5-281e-4e0e-9b84-9da5e8d29f3c)
)
(junction (at 345.44 40.64) (diameter 0) (color 0 0 0 0)
(uuid 69ce4681-a113-48de-bdbe-ef43a9c24814)
)
(junction (at 200.66 177.8) (diameter 0) (color 0 0 0 0)
(uuid 69eec1a6-aea5-4483-aaf6-d1f54d48d66b)
)
(junction (at 137.16 220.98) (diameter 0) (color 0 0 0 0)
(uuid 6b2d3b40-bf82-4047-9c28-d90da095ad09)
)
(junction (at 137.16 289.56) (diameter 0) (color 0 0 0 0)
(uuid 6db88353-700e-4c2b-9bef-054536917eaf)
)
(junction (at 330.2 49.53) (diameter 0) (color 0 0 0 0)
(uuid 6efcd9cb-44a4-423c-b9ba-b7ac42e47d66)
)
(junction (at 281.94 186.69) (diameter 0) (color 0 0 0 0)
(uuid 6f45c90a-1720-4374-a6ac-b415d7fd942d)
)
(junction (at 248.92 40.64) (diameter 0) (color 0 0 0 0)
(uuid 6fd33438-bf49-4402-a0d3-9876904a1c71)
)
(junction (at 40.64 167.64) (diameter 0) (color 0 0 0 0)
(uuid 713c9c42-0c58-4e0b-bdb6-f16179d8166b)
)
(junction (at 152.4 280.67) (diameter 0) (color 0 0 0 0)
(uuid 72d241d2-c3a7-45c6-9e29-259a71a6e4d8)
)
(junction (at 233.68 220.98) (diameter 0) (color 0 0 0 0)
(uuid 72e7a135-2b4a-4d91-a8ce-d0343ebdf037)
)
(junction (at 378.46 220.98) (diameter 0) (color 0 0 0 0)
(uuid 732654fb-d571-4426-a8ae-41fafe25ec9f)
)
(junction (at 378.46 99.06) (diameter 0) (color 0 0 0 0)
(uuid 75b617e2-ed42-47d0-a480-7909f58f65c3)
)
(junction (at 185.42 83.82) (diameter 0) (color 0 0 0 0)
(uuid 75ec82ef-cf95-40bd-a143-287ef3dba109)
)
(junction (at 152.4 74.93) (diameter 0) (color 0 0 0 0)
(uuid 7603f5b1-fb50-417c-a530-801f4631ee65)
)
(junction (at 40.64 83.82) (diameter 0) (color 0 0 0 0)
(uuid 768bb624-585c-42e7-a555-f1813fe632f3)
)
(junction (at 88.9 83.82) (diameter 0) (color 0 0 0 0)
(uuid 77340dec-23a5-4c87-abbb-7d384088f809)
)
(junction (at 40.64 133.35) (diameter 0) (color 0 0 0 0)
(uuid 7b994c23-b785-439a-a2f5-7927f76996f7)
)
(junction (at 152.4 177.8) (diameter 0) (color 0 0 0 0)
(uuid 7cc5923c-8ae7-465e-b56b-43e2e3c2c4d3)
)
(junction (at 281.94 99.06) (diameter 0) (color 0 0 0 0)
(uuid 84edc325-b067-4d98-a7ea-2f23f0403f8d)
)
(junction (at 104.14 109.22) (diameter 0) (color 0 0 0 0)
(uuid 862bc357-de83-44d6-8d49-c1a68a2290a7)
)
(junction (at 378.46 167.64) (diameter 0) (color 0 0 0 0)
(uuid 862c79f2-8459-486b-878f-1074e43f217c)
)
(junction (at 281.94 236.22) (diameter 0) (color 0 0 0 0)
(uuid 890a7fb1-7a0e-47b1-ac34-d08bf2072531)
)
(junction (at 248.92 280.67) (diameter 0) (color 0 0 0 0)
(uuid 89ea1238-1140-430e-9f70-164e8279806b)
)
(junction (at 393.7 246.38) (diameter 0) (color 0 0 0 0)
(uuid 8d431ba5-f9a3-4e8a-92a8-5fece08d7494)
)
(junction (at 248.92 177.8) (diameter 0) (color 0 0 0 0)
(uuid 8d9512c6-5a0c-4aad-86cd-a1599f81ee80)
)
(junction (at 330.2 99.06) (diameter 0) (color 0 0 0 0)
(uuid 8ef5770f-ca33-48d9-9c5d-4a8538d61889)
)
(junction (at 40.64 236.22) (diameter 0) (color 0 0 0 0)
(uuid 9009bf9f-a248-45f3-9ad4-8ac1290b3d80)
)
(junction (at 137.16 99.06) (diameter 0) (color 0 0 0 0)
(uuid 9038a782-ab6c-4550-91bb-57c64508cbac)
)
(junction (at 330.2 133.35) (diameter 0) (color 0 0 0 0)
(uuid 9106e5d4-d033-4a60-a892-b6d3ef164077)
)
(junction (at 330.2 30.48) (diameter 0) (color 0 0 0 0)
(uuid 91984951-f861-4091-a92e-3102468c53c0)
)
(junction (at 200.66 246.38) (diameter 0) (color 0 0 0 0)
(uuid 9267b917-4a13-48fc-899a-d411b9481b48)
)
(junction (at 88.9 186.69) (diameter 0) (color 0 0 0 0)
(uuid 94c91fcc-fe65-42aa-91d1-90b65ad34f9c)
)
(junction (at 233.68 201.93) (diameter 0) (color 0 0 0 0)
(uuid 962fe93c-6e88-42fc-b04c-f5508bec508f)
)
(junction (at 55.88 280.67) (diameter 0) (color 0 0 0 0)
(uuid 964e0c4b-8b76-4d7e-a13e-bd757f430e34)
)
(junction (at 378.46 270.51) (diameter 0) (color 0 0 0 0)
(uuid 97c9d7b1-20a3-4fa4-a58f-cc5652a62a1b)
)
(junction (at 200.66 40.64) (diameter 0) (color 0 0 0 0)
(uuid 9f1e129d-8b5f-435d-ae01-f0016388a170)
)
(junction (at 297.18 212.09) (diameter 0) (color 0 0 0 0)
(uuid a071c314-17be-4396-81b9-280c6e415921)
)
(junction (at 330.2 83.82) (diameter 0) (color 0 0 0 0)
(uuid a794a592-b185-4962-b033-12b1271c17fc)
)
(junction (at 200.66 280.67) (diameter 0) (color 0 0 0 0)
(uuid a8108075-4c01-4ffd-bcbe-44efa43c657c)
)
(junction (at 233.68 289.56) (diameter 0) (color 0 0 0 0)
(uuid a9cf5d7d-7e50-4708-b0a6-811c8b17c00a)
)
(junction (at 330.2 186.69) (diameter 0) (color 0 0 0 0)
(uuid ab829989-83fc-4241-81a6-d26bcc4fd175)
)
(junction (at 248.92 109.22) (diameter 0) (color 0 0 0 0)
(uuid ac61d257-ab96-45be-bf6c-60f393495570)
)
(junction (at 200.66 212.09) (diameter 0) (color 0 0 0 0)
(uuid aeaccde9-708a-4052-bad3-836e038da3d1)
)
(junction (at 233.68 64.77) (diameter 0) (color 0 0 0 0)
(uuid aecb0d73-2656-466a-8d7c-6893329bd699)
)
(junction (at 330.2 289.56) (diameter 0) (color 0 0 0 0)
(uuid b449b18b-d789-4be3-a078-47dde5064f34)
)
(junction (at 281.94 201.93) (diameter 0) (color 0 0 0 0)
(uuid b4f9632e-aa09-45af-96b9-351630c3b308)
)
(junction (at 297.18 280.67) (diameter 0) (color 0 0 0 0)
(uuid b52e061e-daeb-4483-a137-9e68dc9d5b27)
)
(junction (at 40.64 30.48) (diameter 0) (color 0 0 0 0)
(uuid b9938d02-d2f0-4066-8e8b-6044cd1b8ee7)
)
(junction (at 185.42 270.51) (diameter 0) (color 0 0 0 0)
(uuid ba018e0a-5435-404d-820c-6feb33d07b19)
)
(junction (at 393.7 74.93) (diameter 0) (color 0 0 0 0)
(uuid ba18b652-5dbe-45a3-90d4-4d1a57258e1b)
)
(junction (at 281.94 30.48) (diameter 0) (color 0 0 0 0)
(uuid ba38a658-11ac-4ac1-9674-73a5e95fe397)
)
(junction (at 330.2 220.98) (diameter 0) (color 0 0 0 0)
(uuid ba5ec95f-1568-46ca-95ed-1afd78a0090e)
)
(junction (at 137.16 270.51) (diameter 0) (color 0 0 0 0)
(uuid ba895860-0922-4049-b52e-0a6bc81efef7)
)
(junction (at 185.42 133.35) (diameter 0) (color 0 0 0 0)
(uuid bbee9c73-d380-476b-a8e2-6d4299eadc91)
)
(junction (at 55.88 74.93) (diameter 0) (color 0 0 0 0)
(uuid bd278e58-a807-418d-a24a-5ab6a0c6ee15)
)
(junction (at 281.94 220.98) (diameter 0) (color 0 0 0 0)
(uuid bd28e293-02c4-4d56-808c-98c3138434fd)
)
(junction (at 40.64 289.56) (diameter 0) (color 0 0 0 0)
(uuid c04d2fdf-4b18-4b53-bca2-f57b25c3c028)
)
(junction (at 345.44 212.09) (diameter 0) (color 0 0 0 0)
(uuid c0fc7d25-144f-4901-8dae-bc45ce824ae4)
)
(junction (at 152.4 109.22) (diameter 0) (color 0 0 0 0)
(uuid c14d7cbb-364d-4324-bf13-eda0c5ecbd2d)
)
(junction (at 233.68 152.4) (diameter 0) (color 0 0 0 0)
(uuid c1c8883f-9e94-4ccc-82a3-d9d6a5338708)
)
(junction (at 378.46 30.48) (diameter 0) (color 0 0 0 0)
(uuid c3e8f0cf-379e-4382-bead-7eb98b767bb0)
)
(junction (at 330.2 167.64) (diameter 0) (color 0 0 0 0)
(uuid c5c95961-23ca-452f-820c-f640d4f419a5)
)
(junction (at 137.16 49.53) (diameter 0) (color 0 0 0 0)
(uuid c96198d2-f7b3-4318-9a68-30812cf0a6db)
)
(junction (at 393.7 280.67) (diameter 0) (color 0 0 0 0)
(uuid c968019a-d0e8-4c54-8de5-31e2307af124)
)
(junction (at 330.2 236.22) (diameter 0) (color 0 0 0 0)
(uuid caf8fbf6-ad38-4ad9-a5cf-f2af4f53f8f6)
)
(junction (at 40.64 118.11) (diameter 0) (color 0 0 0 0)
(uuid cca4b98a-2ae7-4414-be61-a2d77e8c9c9f)
)
(junction (at 137.16 186.69) (diameter 0) (color 0 0 0 0)
(uuid ccb894b3-1236-4be0-bd28-f27e30e37040)
)
(junction (at 137.16 236.22) (diameter 0) (color 0 0 0 0)
(uuid ccbb6fdd-79c7-4092-b46d-934f225062ec)
)
(junction (at 40.64 270.51) (diameter 0) (color 0 0 0 0)
(uuid cde2f64a-0bc5-42f0-9aaa-903665cd2016)
)
(junction (at 330.2 255.27) (diameter 0) (color 0 0 0 0)
(uuid cf667fd6-b1da-41e5-8e03-9700709e1b11)
)
(junction (at 378.46 118.11) (diameter 0) (color 0 0 0 0)
(uuid cf91d8fe-ba2c-40e7-86bd-fe5e6e4877c9)
)
(junction (at 378.46 64.77) (diameter 0) (color 0 0 0 0)
(uuid d31e9532-2384-4853-8bf4-2bd8f9797a95)
)
(junction (at 378.46 255.27) (diameter 0) (color 0 0 0 0)
(uuid d5983ed3-2dd9-4db5-8eb3-b227a7818599)
)
(junction (at 297.18 143.51) (diameter 0) (color 0 0 0 0)
(uuid d6722803-9ee3-4b71-b7f9-6d97723d1e0a)
)
(junction (at 297.18 177.8) (diameter 0) (color 0 0 0 0)
(uuid d801782b-4137-44fe-820c-9920b3d773c7)
)
(junction (at 233.68 167.64) (diameter 0) (color 0 0 0 0)
(uuid d9b639fb-4a22-4ea6-8cc0-63d4585f50ef)
)
(junction (at 137.16 152.4) (diameter 0) (color 0 0 0 0)
(uuid d9ea935c-4880-499f-9197-ee232d89ac77)
)
(junction (at 281.94 289.56) (diameter 0) (color 0 0 0 0)
(uuid da85d014-4b19-4272-aa7f-cdd5b8bb00d4)
)
(junction (at 55.88 109.22) (diameter 0) (color 0 0 0 0)
(uuid da8760ad-871d-466e-8943-72dd2554ebf4)
)
(junction (at 233.68 83.82) (diameter 0) (color 0 0 0 0)
(uuid ddc8c88f-7ae0-4ad0-8904-fc0e8a2ef303)
)
(junction (at 233.68 30.48) (diameter 0) (color 0 0 0 0)
(uuid de4f1901-049b-4a8c-919c-0993bad7e4c3)
)
(junction (at 345.44 143.51) (diameter 0) (color 0 0 0 0)
(uuid df227e2e-2213-4c14-a7f2-88512b1bef03)
)
(junction (at 40.64 99.06) (diameter 0) (color 0 0 0 0)
(uuid dfa0aef0-0852-4860-93ef-16afb639fb89)
)
(junction (at 137.16 255.27) (diameter 0) (color 0 0 0 0)
(uuid e0335196-543d-4506-bd4a-de391402d0db)
)
(junction (at 137.16 167.64) (diameter 0) (color 0 0 0 0)
(uuid e0bd6f1c-22ae-4585-aaff-a8736cc0acf9)
)
(junction (at 281.94 133.35) (diameter 0) (color 0 0 0 0)
(uuid e0e96144-9d16-4e75-b0a7-fb40e31c0147)
)
(junction (at 281.94 49.53) (diameter 0) (color 0 0 0 0)
(uuid e2353d90-bc01-4221-b39d-eb7affd4c891)
)
(junction (at 297.18 40.64) (diameter 0) (color 0 0 0 0)
(uuid e462d7ec-ed12-4ab8-9923-f797fab1a369)
)
(junction (at 345.44 246.38) (diameter 0) (color 0 0 0 0)
(uuid e4ecc942-fefb-4add-9e87-7dfbd5ab1662)
)
(junction (at 88.9 49.53) (diameter 0) (color 0 0 0 0)
(uuid e640b400-2f6b-4de4-8a92-61dde0a297b7)
)
(junction (at 185.42 30.48) (diameter 0) (color 0 0 0 0)
(uuid e656d32e-5e8c-4cf8-9cb4-1d8ecac7b5ae)
)
(junction (at 378.46 186.69) (diameter 0) (color 0 0 0 0)
(uuid e7b00839-df60-44b8-85c6-6660cb262fd0)
)
(junction (at 393.7 40.64) (diameter 0) (color 0 0 0 0)
(uuid e9256c76-e508-4966-8054-61bc75b11ddf)
)
(junction (at 345.44 74.93) (diameter 0) (color 0 0 0 0)
(uuid e985cdf7-d170-41f3-a271-26fb30f1cafa)
)
(junction (at 40.64 220.98) (diameter 0) (color 0 0 0 0)
(uuid eaf39937-ebc0-4d6d-a090-fc9bc0826527)
)
(junction (at 233.68 255.27) (diameter 0) (color 0 0 0 0)
(uuid ebaf9075-2737-431f-8fb5-7658702df7ab)
)
(junction (at 104.14 246.38) (diameter 0) (color 0 0 0 0)
(uuid ebb03db5-3e36-47fd-8d5e-f3c98a6a8e22)
)
(junction (at 233.68 49.53) (diameter 0) (color 0 0 0 0)
(uuid edca3e11-a0eb-4c24-947a-83150a5f95f0)
)
(junction (at 378.46 236.22) (diameter 0) (color 0 0 0 0)
(uuid f2ed832b-fea0-4f4f-af73-919f74c39a53)
)
(junction (at 378.46 289.56) (diameter 0) (color 0 0 0 0)
(uuid f30009b6-40a9-41b4-bb8b-d637f2697e51)
)
(junction (at 104.14 212.09) (diameter 0) (color 0 0 0 0)
(uuid f4b23877-dfc3-457b-878a-fd10e2b72304)
)
(junction (at 281.94 255.27) (diameter 0) (color 0 0 0 0)
(uuid f5da3628-814d-4090-be33-a1016e722703)
)
(junction (at 55.88 212.09) (diameter 0) (color 0 0 0 0)
(uuid f69410dc-299b-4d1b-8021-7c099523d6c7)
)
(junction (at 104.14 74.93) (diameter 0) (color 0 0 0 0)
(uuid f8a02373-a2a0-4694-b971-074fa1255929)
)
(junction (at 185.42 49.53) (diameter 0) (color 0 0 0 0)
(uuid faebf00c-5fe3-479e-999d-a533ccb20ce3)
)
(junction (at 185.42 99.06) (diameter 0) (color 0 0 0 0)
(uuid fe2e4dca-f851-4063-aa56-78a9d299d843)
)
(junction (at 233.68 236.22) (diameter 0) (color 0 0 0 0)
(uuid fe39c648-5b7c-4dad-a283-dd4a3298227d)
)
(junction (at 137.16 30.48) (diameter 0) (color 0 0 0 0)
(uuid ffbe3b2c-11b4-4736-9fb3-8c9c415370b3)
)
(wire (pts (xy 55.88 74.93) (xy 59.69 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 005b2be6-9551-4ad5-abda-37b4f81f6c9e)
)
(wire (pts (xy 185.42 118.11) (xy 185.42 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0095e295-7941-412b-ba6c-9a03d95b4cdd)
)
(wire (pts (xy 104.14 167.64) (xy 88.9 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 009f5eef-8002-4fcd-b4d2-538b84874fc2)
)
(wire (pts (xy 200.66 74.93) (xy 204.47 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00c31bb1-bfd2-4bc9-8dd0-426cdf81d17c)
)
(wire (pts (xy 345.44 201.93) (xy 330.2 201.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0178b5ff-6f8a-474d-b609-0150f56110aa)
)
(wire (pts (xy 274.32 255.27) (xy 281.94 255.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 021f07c8-415d-4d60-82cd-e4c76fab659b)
)
(wire (pts (xy 200.66 270.51) (xy 185.42 270.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02cf83f5-f29d-4db8-be6d-22b47f07f243)
)
(wire (pts (xy 370.84 43.18) (xy 370.84 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 033ede7f-cf7f-4ba2-8ad5-e0d2bee87478)
)
(wire (pts (xy 177.8 220.98) (xy 185.42 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05beca03-9d25-4764-9368-fe71b3eaafa7)
)
(wire (pts (xy 274.32 77.47) (xy 274.32 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0612bc15-ff4b-417d-8a6b-45a3079a53c6)
)
(wire (pts (xy 177.8 167.64) (xy 185.42 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 067fbe7d-25b5-428f-bd95-f0ba7a64c39f)
)
(wire (pts (xy 226.06 186.69) (xy 233.68 186.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0696da75-0030-4553-bf8b-172634956114)
)
(wire (pts (xy 322.58 186.69) (xy 330.2 186.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06c3f0e0-8553-407f-8cd1-49da0e5e9c77)
)
(wire (pts (xy 378.46 270.51) (xy 378.46 273.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06d076b4-1d9f-467c-a41f-06aa9182558f)
)
(wire (pts (xy 177.8 146.05) (xy 177.8 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06d41c7e-0440-413b-9b83-854ed92f5140)
)
(wire (pts (xy 281.94 288.29) (xy 281.94 289.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07428e57-9f44-4fa6-ab04-a08c0c83297d)
)
(wire (pts (xy 129.54 243.84) (xy 129.54 236.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 074f2631-554f-4b96-b410-34840a338e7d)
)
(wire (pts (xy 55.88 204.47) (xy 55.88 201.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07954a06-b284-4e29-8fca-42d98e471b92)
)
(wire (pts (xy 297.18 40.64) (xy 300.99 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 079f5e6b-5169-453b-ae88-53226bcfc768)
)
(wire (pts (xy 330.2 152.4) (xy 330.2 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 087a00a5-c086-440f-8988-ae80f31e98e6)
)
(wire (pts (xy 88.9 255.27) (xy 88.9 256.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08bd640e-1250-4bf5-b96a-c860adfa167a)
)
(wire (pts (xy 152.4 170.18) (xy 152.4 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08ffc5d0-8447-41a9-bcf1-018d76db96cd)
)
(wire (pts (xy 33.02 106.68) (xy 33.02 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 091d4ef2-3e7b-4acc-a723-1beb1d1767b8)
)
(wire (pts (xy 378.46 289.56) (xy 378.46 290.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09a79329-9ff9-4d39-9407-74e7a1a9fb6c)
)
(wire (pts (xy 342.9 280.67) (xy 345.44 280.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09e0c5c2-3716-4965-9eb3-b68077c48cde)
)
(wire (pts (xy 248.92 133.35) (xy 233.68 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a034994-57c2-4fad-81cf-f3919770029d)
)
(wire (pts (xy 370.84 140.97) (xy 370.84 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a59193e-e3df-4020-83e6-1871958644e8)
)
(wire (pts (xy 345.44 243.84) (xy 345.44 246.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a62d172-3a84-480a-b38c-202152e103bb)
)
(wire (pts (xy 177.8 140.97) (xy 177.8 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ae87d8e-b624-4c10-ad8e-0f2f288d2d0c)
)
(wire (pts (xy 152.4 106.68) (xy 152.4 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b469cab-69d6-475c-8a49-a6c966987a1a)
)
(wire (pts (xy 248.92 175.26) (xy 248.92 177.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b930452-1258-4c03-ac0f-814313eea118)
)
(wire (pts (xy 101.6 40.64) (xy 104.14 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ba04ae6-2887-41d3-b61d-83c990ed31c2)
)
(wire (pts (xy 322.58 106.68) (xy 322.58 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bc6a1a6-1ac2-4d6f-9294-58bde1042f69)
)
(wire (pts (xy 294.64 280.67) (xy 297.18 280.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c5b7e93-a035-4ba1-a965-d0e0c7544e44)
)
(wire (pts (xy 370.84 270.51) (xy 378.46 270.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c759d72-74bf-4145-822e-21c84e910223)
)
(wire (pts (xy 226.06 64.77) (xy 233.68 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ca1e741-1121-4ec2-a1c2-03c0aa5033ff)
)
(wire (pts (xy 370.84 248.92) (xy 370.84 255.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cc5ce93-b144-4e9b-96dc-5bf30cbd9b8e)
)
(wire (pts (xy 137.16 186.69) (xy 137.16 187.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d49166a-8525-46e8-94c7-14838b7099df)
)
(wire (pts (xy 177.8 152.4) (xy 185.42 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0dac3351-b8a6-465c-a577-42074bf2e084)
)
(wire (pts (xy 81.28 186.69) (xy 88.9 186.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0dc10d15-2fe7-4221-8c05-43c9d448004f)
)
(wire (pts (xy 370.84 220.98) (xy 378.46 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ead7d34-21a7-4a6b-8e9e-53d8cadbbb4d)
)
(wire (pts (xy 81.28 180.34) (xy 81.28 186.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ec4ff04-b35e-4a97-8e11-5f44564250b4)
)
(wire (pts (xy 137.16 49.53) (xy 137.16 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f93b45b-d686-4c1f-a57a-db43747572a7)
)
(wire (pts (xy 33.02 270.51) (xy 40.64 270.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fda0674-3179-41eb-9715-c310c2bc2789)
)
(wire (pts (xy 200.66 40.64) (xy 204.47 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1009ad5c-199d-42c4-ae35-dae5e2e31fa4)
)
(wire (pts (xy 129.54 248.92) (xy 129.54 255.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1033eae9-eaaf-4836-86d1-cac6fa4967f6)
)
(wire (pts (xy 200.66 143.51) (xy 204.47 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 109f39f8-8223-4e79-ac8c-03199e7f0304)
)
(wire (pts (xy 81.28 175.26) (xy 81.28 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10c8530c-9bd4-418a-a1c7-805dfbae2e7c)
)
(wire (pts (xy 233.68 130.81) (xy 233.68 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 113cfcf5-9d95-415e-ad83-34a7ce92acb4)
)
(wire (pts (xy 274.32 175.26) (xy 274.32 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1189ef9c-cf86-4a3b-9f3e-63a9076af40c)
)
(wire (pts (xy 185.42 254) (xy 185.42 255.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11da649f-1d1d-4f4d-97da-f9957cf2140a)
)
(wire (pts (xy 345.44 40.64) (xy 349.25 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12460b5c-8af7-4bd2-9d6a-59a97ed94275)
)
(wire (pts (xy 393.7 246.38) (xy 397.51 246.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 135d2b14-2fd1-423f-9ca3-3082aac2e027)
)
(wire (pts (xy 200.66 67.31) (xy 200.66 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13dc294b-6ac6-4afc-8d9b-68f57f743592)
)
(wire (pts (xy 233.68 82.55) (xy 233.68 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1429b123-bbbb-4b3c-a0f8-6bebfdbf2de0)
)
(wire (pts (xy 104.14 67.31) (xy 104.14 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 142cce6b-b5f9-43bb-b7b8-622175d7e897)
)
(wire (pts (xy 330.2 233.68) (xy 330.2 236.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1457c261-984d-47e3-8a1c-18226f88b22b)
)
(wire (pts (xy 370.84 255.27) (xy 378.46 255.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 149989c9-eabb-4cfa-b1a8-24a003dee03a)
)
(wire (pts (xy 393.7 38.1) (xy 393.7 40.64))