-
Notifications
You must be signed in to change notification settings - Fork 4
/
Console.kicad_sch
1736 lines (1720 loc) · 99.4 KB
/
Console.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 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa)
(paper "A4")
(title_block
(title "TI-99/4A")
(date "2022-02-18")
(rev "1.1")
(company "Robert Krenicki - https://github.com/rkrenicki/TI99-Motherboard")
(comment 1 "Main schematic for separating each function block to its own sub schematic.")
(comment 3 "Based on the HackMac KiCAD Design")
)
(lib_symbols
)
(sheet (at 266.7 21.59) (size 15.24 137.16) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-0000560691d6)
(property "Sheet name" "GROM-IO-Port" (id 0) (at 266.7 20.7514 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "GROM-IO-Port.kicad_sch" (id 1) (at 266.7 159.4362 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 50.8 132.08) (size 26.67 58.42) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00005607313d)
(property "Sheet name" "8Bit16BitSwitch" (id 0) (at 50.8 131.2414 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "8bit16bitSwitch.kicad_sch" (id 1) (at 50.8 191.1862 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 102.87 163.83) (size 27.94 26.67) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-000056079ced)
(property "Sheet name" "GROM-Logic" (id 0) (at 102.87 162.9914 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "GROM-Logic.kicad_sch" (id 1) (at 102.87 191.1862 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 50.8 31.75) (size 27.94 36.83) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00005607ac3b)
(property "Sheet name" "AddressDecoding" (id 0) (at 50.8 30.9114 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "AddressDecoding.kicad_sch" (id 1) (at 50.8 69.2662 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 15.24 15.24) (size 15.24 175.26) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-000056085f00)
(property "Sheet name" "CPU" (id 0) (at 15.24 14.4014 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "CPU.kicad_sch" (id 1) (at 15.24 191.1862 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 154.94 25.4) (size 33.02 29.21) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-0000560e4e44)
(property "Sheet name" "Video" (id 0) (at 154.94 24.5614 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "Video.kicad_sch" (id 1) (at 154.94 55.2962 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 102.87 132.08) (size 27.94 22.86) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-0000560f49b9)
(property "Sheet name" "Power" (id 0) (at 102.87 131.2414 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "Power.kicad_sch" (id 1) (at 102.87 155.6262 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 213.36 25.4) (size 27.94 44.45) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00005613dcca)
(property "Sheet name" "Keyboard" (id 0) (at 213.36 24.5614 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "Keyboard.kicad_sch" (id 1) (at 213.36 70.5362 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet (at 106.68 25.4) (size 27.94 43.18) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-0000561cdf3b)
(property "Sheet name" "ROM/RAM/Sound" (id 0) (at 106.68 24.5614 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Sheet file" "ROM-RAM-Sound.kicad_sch" (id 1) (at 106.68 69.2662 0)
(effects (font (size 1.524 1.524)) (justify left top))
)
)
(sheet_instances
(path "/" (page "1"))
(path "/00000000-0000-0000-0000-000056085f00" (page "2"))
(path "/00000000-0000-0000-0000-00005607ac3b" (page "3"))
(path "/00000000-0000-0000-0000-00005607313d" (page "4"))
(path "/00000000-0000-0000-0000-0000560f49b9" (page "5"))
(path "/00000000-0000-0000-0000-000056079ced" (page "6"))
(path "/00000000-0000-0000-0000-0000561cdf3b" (page "7"))
(path "/00000000-0000-0000-0000-0000560e4e44" (page "8"))
(path "/00000000-0000-0000-0000-00005613dcca" (page "9"))
(path "/00000000-0000-0000-0000-0000560691d6" (page "10"))
)
(symbol_instances
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606de79"
(reference "#PWR01") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606de91"
(reference "#PWR02") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606dea7"
(reference "#PWR03") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606e023"
(reference "#PWR04") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606e047"
(reference "#PWR05") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606e078"
(reference "#PWR06") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606e406"
(reference "#PWR07") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606e4aa"
(reference "#PWR08") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-0000560b4793"
(reference "#PWR09") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005609dfb7"
(reference "#PWR010") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005609dfef"
(reference "#PWR011") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005609e320"
(reference "#PWR012") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-0000560d664b"
(reference "#PWR013") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000561122b8"
(reference "#PWR014") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-000056098b69"
(reference "#PWR015") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-000056098b95"
(reference "#PWR016") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b08f2"
(reference "#PWR017") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b0cc5"
(reference "#PWR018") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b2bb3"
(reference "#PWR019") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b3581"
(reference "#PWR020") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b3d14"
(reference "#PWR021") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b492d"
(reference "#PWR022") (unit 1) (value "+12V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b49e1"
(reference "#PWR023") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b65a6"
(reference "#PWR024") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b6d80"
(reference "#PWR025") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b9271"
(reference "#PWR026") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b95a3"
(reference "#PWR027") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560ba4a6"
(reference "#PWR028") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560ba844"
(reference "#PWR031") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-00005606670f"
(reference "#PWR032") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-00005606672f"
(reference "#PWR033") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-000056067f1d"
(reference "#PWR034") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-000056067f3d"
(reference "#PWR035") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-000056067fb6"
(reference "#PWR036") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-000056068054"
(reference "#PWR037") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-00005606ae5d"
(reference "#PWR038") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-00005606b03d"
(reference "#PWR039") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-00005606b1d0"
(reference "#PWR040") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-00005606b52a"
(reference "#PWR042") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-0000560724f3"
(reference "#PWR043") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-0000560729e1"
(reference "#PWR044") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-0000560733bb"
(reference "#PWR045") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-0000560736ce"
(reference "#PWR046") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-0000560c1107"
(reference "#PWR047") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-0000560b6755"
(reference "#PWR048") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-00005621ff92"
(reference "#PWR049") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-00005607c3fc"
(reference "#PWR050") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-0000560b5b5d"
(reference "#PWR051") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-0000560b5e4f"
(reference "#PWR052") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005607a11c"
(reference "#PWR053") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606de5a"
(reference "#PWR054") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606de78"
(reference "#PWR055") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606de94"
(reference "#PWR056") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606e0e2"
(reference "#PWR057") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606e100"
(reference "#PWR058") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606e11c"
(reference "#PWR059") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606f2b3"
(reference "#PWR060") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606f2e2"
(reference "#PWR061") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606feb2"
(reference "#PWR062") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-0000560f5c8a"
(reference "#PWR063") (unit 1) (value "+12V") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-0000560f79ba"
(reference "#PWR064") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-0000560f86f4"
(reference "#PWR065") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-0000560f8fd2"
(reference "#PWR066") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000561d045f"
(reference "#PWR067") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000561d0479"
(reference "#PWR068") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-00005621d759"
(reference "#PWR069") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056111077"
(reference "#PWR073") (unit 1) (value "+12V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561110ac"
(reference "#PWR074") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056111b82"
(reference "#PWR075") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611756f"
(reference "#PWR076") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561180f7"
(reference "#PWR077") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611819e"
(reference "#PWR078") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056118236"
(reference "#PWR079") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561195c4"
(reference "#PWR080") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611971f"
(reference "#PWR081") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561197d3"
(reference "#PWR082") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056119912"
(reference "#PWR083") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611db8f"
(reference "#PWR084") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611dc2d"
(reference "#PWR085") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611e5d1"
(reference "#PWR086") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561371f8"
(reference "#PWR087") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561371fe"
(reference "#PWR088") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056138b34"
(reference "#PWR089") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613bf98"
(reference "#PWR090") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613c01a"
(reference "#PWR091") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613d9d2"
(reference "#PWR092") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613b3ea"
(reference "#PWR093") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613bd6e"
(reference "#PWR094") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056141305"
(reference "#PWR095") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056141e5c"
(reference "#PWR096") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005614523a"
(reference "#PWR097") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056146e8d"
(reference "#PWR098") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618931b"
(reference "#PWR099") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056189846"
(reference "#PWR0100") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561898ab"
(reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618a49b"
(reference "#PWR0102") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9b88"
(reference "#PWR0103") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618aa21"
(reference "#PWR0104") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000623c4681"
(reference "#PWR0105") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618e45f"
(reference "#PWR0106") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056194db6"
(reference "#PWR0107") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056194e12"
(reference "#PWR0108") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000623c5464"
(reference "#PWR0109") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000623c6263"
(reference "#PWR0110") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000623c87da"
(reference "#PWR0111") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00006244c1ca"
(reference "#PWR0112") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00006244cab9"
(reference "#PWR0113") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561acc68"
(reference "#PWR0114") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005616a139"
(reference "#PWR0115") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005616a37e"
(reference "#PWR0116") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005616adef"
(reference "#PWR0117") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005616adf6"
(reference "#PWR0118") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561723d0"
(reference "#PWR0119") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005617954a"
(reference "#PWR0120") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561795fa"
(reference "#PWR0121") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056181d04"
(reference "#PWR0122") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056188b1e"
(reference "#PWR0123") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618ae1a"
(reference "#PWR0124") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618ffea"
(reference "#PWR0125") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005619487e"
(reference "#PWR0126") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056194958"
(reference "#PWR0127") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056199d40"
(reference "#PWR0128") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561ad056"
(reference "#PWR0129") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561af365"
(reference "#PWR0130") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561b001e"
(reference "#PWR0131") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561b48e9"
(reference "#PWR0132") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561b695f"
(reference "#PWR0133") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9b8e"
(reference "#PWR0134") (unit 1) (value "-5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9b94"
(reference "#PWR0135") (unit 1) (value "+12V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9b9a"
(reference "#PWR0136") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9c25"
(reference "#PWR0137") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000060d4d343"
(reference "#PWR0138") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-000067601de6"
(reference "#PWR0139") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-00006113c9f1"
(reference "#PWR0140") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604c9549"
(reference "#PWR0141") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604ca555"
(reference "#PWR0142") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604cbcae"
(reference "#PWR0143") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604cc642"
(reference "#PWR0144") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604cd002"
(reference "#PWR0145") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604cd9dd"
(reference "#PWR0146") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604ce27d"
(reference "#PWR0147") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604cec3c"
(reference "#PWR0148") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000604cf58c"
(reference "#PWR0149") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00006248d2d9"
(reference "#PWR0150") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-0000678ee79d"
(reference "#PWR0151") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-0000678ef229"
(reference "#PWR0152") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-00006208b1ec"
(reference "#PWR0153") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000060d53707"
(reference "#PWR0154") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000060d540d0"
(reference "#PWR0155") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-00006208b4c2"
(reference "#PWR0156") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560691d6/00000000-0000-0000-0000-0000656fae74"
(reference "#PWR0157") (unit 1) (value "VSS") (footprint "")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-0000656ccaff"
(reference "#PWR0158") (unit 1) (value "VSS") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00006669b8c4"
(reference "#PWR0159") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000670281de"
(reference "#PWR0160") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671d98ae"
(reference "#PWR0161") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671dfc54"
(reference "#PWR0162") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671e01b7"
(reference "#PWR0163") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671e042d"
(reference "#PWR0164") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671e0914"
(reference "#PWR0165") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671e4e2d"
(reference "#PWR0166") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671e52f4"
(reference "#PWR0167") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671e56b6"
(reference "#PWR0168") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-0000671e5a59"
(reference "#PWR0169") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-000067601dfd"
(reference "#PWR0170") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-000067601e03"
(reference "#PWR0171") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-000067601e0d"
(reference "#PWR0172") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-000067808c7e"
(reference "#PWR0173") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-0000678093ef"
(reference "#PWR0174") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-0000678477fe"
(reference "#PWR0175") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-000067a210a5"
(reference "#PWR0176") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-000067a210ab"
(reference "#PWR0177") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-000067d54560"
(reference "#PWR0178") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-000067d55209"
(reference "#PWR0179") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-000067d55ec6"
(reference "#PWR0180") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000688ea5a0"
(reference "#PWR0181") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000688eb272"
(reference "#PWR0182") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000068a714c6"
(reference "#PWR0183") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000068a729db"
(reference "#PWR0184") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613b7e8"
(reference "C100") (unit 1) (value "56pF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613b760"
(reference "C101") (unit 1) (value "12pF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613e8fb"
(reference "C102") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613d9be"
(reference "C103") (unit 1) (value "100µF") (footprint "TI99_Connectors:Capacitor-22.75mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613d9b8"
(reference "C104") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056116f18"
(reference "C105") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056116f55"
(reference "C106") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056118228"
(reference "C107") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611822e"
(reference "C108") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561180e9"
(reference "C109") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561180ef"
(reference "C110") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561195b5"
(reference "C111") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056119710"
(reference "C112") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056119716"
(reference "C113") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561197c4"
(reference "C114") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561197ca"
(reference "C115") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056118190"
(reference "C116") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056118196"
(reference "C117") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056119903"
(reference "C118") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056119909"
(reference "C119") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056116ed9"
(reference "C120") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056118222"
(reference "C121") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561180e3"
(reference "C122") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561195af"
(reference "C123") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611970a"
(reference "C124") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561197be"
(reference "C125") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611818a"
(reference "C126") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561198fd"
(reference "C127") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611276f"
(reference "C128") (unit 1) (value "22µF") (footprint "TI99_Connectors:Capacitor-19.00mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056112736"
(reference "C129") (unit 1) (value "22µF") (footprint "TI99_Connectors:Capacitor-19.00mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561126ea"
(reference "C130") (unit 1) (value "22µF") (footprint "TI99_Connectors:Capacitor-19.00mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561195bb"
(reference "C131") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9bc1"
(reference "C134") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9bc7"
(reference "C135") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9bcd"
(reference "C136") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9bdf"
(reference "C137") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9be5"
(reference "C138") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9beb"
(reference "C139") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9bfb"
(reference "C140") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9c01"
(reference "C141") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9c07"
(reference "C142") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056111882"
(reference "C143") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561118c7"
(reference "C145") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613b0e2"
(reference "C200") (unit 1) (value "82pF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613c7ae"
(reference "C201") (unit 1) (value "10µF") (footprint "TI99_Connectors:Capacitor-22.75mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-000056141212"
(reference "C202") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005614533b"
(reference "C203") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611ccc2"
(reference "C205") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561371e3"
(reference "C206") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005611cdde"
(reference "C207") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-0000561371e9"
(reference "C208") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618980c"
(reference "C300") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618a99a"
(reference "C301") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618dfe9"
(reference "C302") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618e0cd"
(reference "C303") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618e101"
(reference "C304") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618e136"
(reference "C305") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618e16d"
(reference "C306") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa64f"
(reference "C307") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa6df"
(reference "C308") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa76e"
(reference "C309") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa800"
(reference "C310") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa424"
(reference "C311") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa4ac"
(reference "C312") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa537"
(reference "C313") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa5c3"
(reference "C314") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aa37a"
(reference "C315") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9ba4"
(reference "C317") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560f49b9/00000000-0000-0000-0000-0000676f9c1f"
(reference "C319") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056194177"
(reference "C320") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561940fe"
(reference "C321") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618e09f"
(reference "C331") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618a93a"
(reference "C400") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618a85f"
(reference "C401") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056180ced"
(reference "C402") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056174fa2"
(reference "C403") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005617134f"
(reference "C404") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056174e9e"
(reference "C405") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561726b7"
(reference "C406") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561944a7"
(reference "C407") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561946ac"
(reference "C408") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561848b2"
(reference "C409") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561ae55f"
(reference "C410") (unit 1) (value "0.022µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561a8fc5"
(reference "C411") (unit 1) (value "220pF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561aeda7"
(reference "C412") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-0000561b4cda"
(reference "C413") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-000056180c2e"
(reference "C414") (unit 1) (value "0.001µF") (footprint "Capacitor_THT:C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal")
)
(path "/00000000-0000-0000-0000-00005613dcca/00000000-0000-0000-0000-00005618f3d2"
(reference "C415") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005607ac3b/00000000-0000-0000-0000-00006208aa7e"
(reference "C500") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-000067601df4"
(reference "C501") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-000067601dd9"
(reference "C502") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-0000561cdf3b/00000000-0000-0000-0000-000067601dd3"
(reference "C503") (unit 1) (value "100µF") (footprint "TI99_Connectors:Capacitor-22.75mm")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606eece"
(reference "C505") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560afc0f"
(reference "C506") (unit 1) (value "22µF") (footprint "TI99_Connectors:Capacitor-19.00mm")
)
(path "/00000000-0000-0000-0000-000056079ced/00000000-0000-0000-0000-00005606fe67"
(reference "C507") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b8fbe"
(reference "C600") (unit 1) (value "100µF") (footprint "TI99_Connectors:Capacitor-22.75mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560ba511"
(reference "C601") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560ba374"
(reference "C602") (unit 1) (value "0.01µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b1a73"
(reference "C603") (unit 1) (value "22pF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b497d"
(reference "C604") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b3c51"
(reference "C605") (unit 1) (value "1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b0ace"
(reference "C606") (unit 1) (value "22µF") (footprint "TI99_Connectors:Capacitor-19.00mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b3485"
(reference "C607") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606e4d0"
(reference "C608") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-00005607313d/00000000-0000-0000-0000-00005606e313"
(reference "C609") (unit 1) (value "0.1µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b8f49"
(reference "C611") (unit 1) (value "0.001µF") (footprint "TI99_Connectors:Passive-11.50mm")
)
(path "/00000000-0000-0000-0000-000056085f00/00000000-0000-0000-0000-0000560b6515"
(reference "C612") (unit 1) (value "0.1µF") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613d2a4"
(reference "CR200") (unit 1) (value "1N4148") (footprint "TI99_Connectors:Diode-11.50mm")
)
(path "/00000000-0000-0000-0000-0000560e4e44/00000000-0000-0000-0000-00005613d7ab"