-
Notifications
You must be signed in to change notification settings - Fork 1
/
TRS-80_100_200_Option_ROM_programming_adapter.kicad_pcb
11333 lines (11319 loc) · 407 KB
/
TRS-80_100_200_Option_ROM_programming_adapter.kicad_pcb
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_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "USLetter")
(title_block
(title "TRS-80 Model 100/102/200 Option ROM reader")
(date "2022-12-01")
(rev "004")
(company "Brian K. White - [email protected]")
(comment 1 "CC-BY-SA")
(comment 2 "github.com/bkw777/aDIPters")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.22)
(grid_origin 150 100)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GERBER_${TITLE}_${REVISION}")
)
)
(net 0 "")
(net 1 "/D3")
(net 2 "/A10")
(net 3 "/D4")
(net 4 "/A7")
(net 5 "/D5")
(net 6 "/A6")
(net 7 "/D6")
(net 8 "/A5")
(net 9 "/D7")
(net 10 "/A4")
(net 11 "/A11")
(net 12 "/A3")
(net 13 "/~{OE}")
(net 14 "/A2")
(net 15 "/A13")
(net 16 "/A1")
(net 17 "/A0")
(net 18 "/A12")
(net 19 "/D0")
(net 20 "/A9")
(net 21 "/D1")
(net 22 "/A8")
(net 23 "/D2")
(net 24 "/A14")
(net 25 "/~{CE}")
(net 26 "/VPP")
(net 27 "VCC")
(net 28 "/ALE{slash}~{CE}")
(net 29 "GND")
(footprint "000_LOCAL:Molex_78805" (layer "F.Cu")
(tedit 608EEAE2) (tstamp 00000000-0000-0000-0000-00005f9f86e2)
(at 148.73 100 90)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
(property "Sheetfile" "TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5c209e")
(attr through_hole)
(fp_text reference "J2" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 078bdc06-7fb9-4dc5-8850-b1c414e2843b)
)
(fp_text value "Model 100/102/200 Option ROM Socket" (at 0 16.51 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 395cc2c4-c298-402f-8f00-03460f4166ea)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d5d5544-3567-4c8a-a49e-eb967f936071)
)
(fp_line (start -8.509 -17.399) (end -8.509 17.399) (layer "F.CrtYd") (width 0.01) (tstamp 7a79fe38-14de-41fc-8c19-ac2849498ce0))
(fp_line (start 8.509 17.399) (end 8.509 -17.399) (layer "F.CrtYd") (width 0.01) (tstamp b7eb9def-b591-46b0-a07a-bc6e3e2b5048))
(fp_line (start 8.509 -17.399) (end -8.509 -17.399) (layer "F.CrtYd") (width 0.01) (tstamp eb545ead-e84b-43aa-bdd3-c7bf2d86a0ea))
(fp_line (start -8.509 17.399) (end 8.509 17.399) (layer "F.CrtYd") (width 0.01) (tstamp fc22a57d-b36e-407d-8025-f22eb227f449))
(pad "1" thru_hole roundrect locked (at -7.62 -16.51 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask) (roundrect_rratio 0.1)
(net 27 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 851ab082-8b6d-4697-a3d0-3fb28b21c440))
(pad "2" thru_hole circle locked (at -7.62 -13.97 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp f94d1c4c-7ff5-4ad6-a157-f07aeaaf2134))
(pad "3" thru_hole circle locked (at -7.62 -11.43 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 4 "/A7") (pinfunction "A7") (pintype "input") (tstamp b1b085c8-3621-48d8-8834-fb89e1dd9d51))
(pad "4" thru_hole circle locked (at -7.62 -8.89 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 6 "/A6") (pinfunction "A6") (pintype "input") (tstamp acc41cfb-71f5-410c-b6ff-b003ad13c715))
(pad "5" thru_hole circle locked (at -7.62 -6.35 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 8 "/A5") (pinfunction "A5") (pintype "input") (tstamp 313f3234-715e-4df0-83ec-cb8cb563c0a2))
(pad "6" thru_hole circle locked (at -7.62 -3.81 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp f6a12bd7-9758-492f-a6af-30f9a4f3dc36))
(pad "7" thru_hole circle locked (at -7.62 -1.27 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 12 "/A3") (pinfunction "A3") (pintype "input") (tstamp 6cd45101-c819-43e7-ba29-cd7b8a8c01a7))
(pad "8" thru_hole circle locked (at -7.62 1.27 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 14 "/A2") (pinfunction "A2") (pintype "input") (tstamp 73ca3c7e-8d3c-4cb0-93fe-e6fb2e6b974d))
(pad "9" thru_hole circle locked (at -7.62 3.81 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 16 "/A1") (pinfunction "A1") (pintype "input") (tstamp 00c2a0ac-5ac4-4d8f-b28a-376b559bcf2d))
(pad "10" thru_hole circle locked (at -7.62 6.35 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp ee734e0e-d293-48e9-90cf-566a3ac34eef))
(pad "11" thru_hole circle locked (at -7.62 8.89 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 19 "/D0") (pinfunction "AD0") (pintype "tri_state") (tstamp 8653e2cb-53a2-4105-892d-bfb3a8ed9f73))
(pad "12" thru_hole circle locked (at -7.62 11.43 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 21 "/D1") (pinfunction "AD1") (pintype "tri_state") (tstamp 310b6133-c79e-4011-982d-5d139412b34c))
(pad "13" thru_hole circle locked (at -7.62 13.97 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 23 "/D2") (pinfunction "AD2") (pintype "tri_state") (tstamp 3a0e8c5d-4a4a-4043-b202-598e1634866a))
(pad "14" thru_hole circle locked (at -7.62 16.51 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 29 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp f9377adf-f2b1-4f5d-840b-d8fb6f0c3ac8))
(pad "15" thru_hole circle locked (at 7.62 16.51 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 1 "/D3") (pinfunction "AD3") (pintype "tri_state") (tstamp 8090cf02-9f12-4c1b-9727-42c0d24ceafc))
(pad "16" thru_hole circle locked (at 7.62 13.97 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 3 "/D4") (pinfunction "AD4") (pintype "tri_state") (tstamp c8785c30-7423-421b-847e-52b3ea37f439))
(pad "17" thru_hole circle locked (at 7.62 11.43 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 5 "/D5") (pinfunction "AD5") (pintype "tri_state") (tstamp fbf42d7b-6c15-4cb3-a907-c822b078a2f0))
(pad "18" thru_hole circle locked (at 7.62 8.89 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 7 "/D6") (pinfunction "AD6") (pintype "tri_state") (tstamp d9405616-9c34-4021-a5de-75ba68c225ab))
(pad "19" thru_hole circle locked (at 7.62 6.35 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 9 "/D7") (pinfunction "AD7") (pintype "tri_state") (tstamp 9a2adcca-f7be-4585-9909-7f656708febe))
(pad "20" thru_hole circle locked (at 7.62 3.81 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 11 "/A11") (pinfunction "A11") (pintype "input") (tstamp 33ef3fff-e888-4e9a-86e2-737de672b761))
(pad "21" thru_hole circle locked (at 7.62 1.27 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 63c74d3c-901c-4268-a5b9-87f1d0aba32f))
(pad "22" thru_hole circle locked (at 7.62 -1.27 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 15 "/A13") (pinfunction "A13") (pintype "input") (tstamp d327290f-e769-4322-bacc-24308708003e))
(pad "23" thru_hole circle locked (at 7.62 -3.81 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 28 "/ALE{slash}~{CE}") (pinfunction "ALE/~{CE}") (pintype "input") (tstamp 462209b6-c12a-4e0d-9501-3d30e5168bc2))
(pad "24" thru_hole circle locked (at 7.62 -6.35 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 18 "/A12") (pinfunction "A12") (pintype "input") (tstamp 2cbaf864-3c4d-44ab-8f0c-2c596dc0de29))
(pad "25" thru_hole circle locked (at 7.62 -8.89 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp cf647f8b-8ef1-48b0-bd6f-e9d235c7bcfd))
(pad "26" thru_hole circle locked (at 7.62 -11.43 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 22 "/A8") (pinfunction "A8") (pintype "input") (tstamp 70b8f313-4de8-4970-9730-3c31cd18fdfa))
(pad "27" thru_hole circle locked (at 7.62 -13.97 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 25 "/~{CE}") (pinfunction "~{CS}") (pintype "input") (tstamp 60b032c6-515d-4e3e-90da-be2ad1a922ef))
(pad "28" thru_hole circle locked (at 7.62 -16.51 90) (size 1.778 1.778) (drill 0.9652) (layers *.Cu *.Mask)
(net 24 "/A14") (pinfunction "A14") (pintype "input") (tstamp aa70965f-8725-47ce-baae-e36b9d42eea0))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/Molex_78805.step"
(offset (xyz 0 0 9.906))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 609AD73E) (tstamp 00000000-0000-0000-0000-0000609b3450)
(at 175.654 101.27 -90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000609fda51")
(attr through_hole)
(fp_text reference "JP2" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db4b4a0e-5488-40ed-bf0b-f8296ac9dbfa)
)
(fp_text value "VPP" (at 0.254 -2.159 -270 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp f9223363-9596-4b21-9727-e3dd9ecfa384)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 907efbce-419f-49c1-850d-c930bb1fdf79)
)
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 9bf8df1d-06f8-4b12-a82a-976acc26e711))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp b680185d-4a3b-4a6c-987d-8358ba7913c8))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp ed14d902-0b67-4ef0-8d73-4c6f82094e4c))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp f2b6b8cb-18bc-4222-bb1d-37a017111ccb))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 0801b3e1-a3a7-481b-8d48-8ba68c20761b))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 6e3ac203-8ea2-49ee-ba51-ce7977f355c8))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7327b7cf-cee9-435a-a9ed-e5fbb46ff4e6))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp bba4d31c-45ec-476c-b882-fe6e062a6d56))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp be9e8bb5-2495-45f3-978c-997d121e60e5))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 28 "/ALE{slash}~{CE}") (pinfunction "A") (pintype "passive") (tstamp d7ce21da-1bcd-4f8d-8e9c-d5c31382ef32))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 26 "/VPP") (pinfunction "B") (pintype "passive") (tstamp 7fbaf6a5-65f1-4cb4-8a13-8c85dc8e1728))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 609AD73E) (tstamp 00000000-0000-0000-0000-0000609b345c)
(at 175.654 98.73 -90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060a022b6")
(attr through_hole)
(fp_text reference "JP3" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fc8c4da-a4d8-4570-a36c-1df1322802ac)
)
(fp_text value "VCC" (at -0.254 -2.159 -270 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp dd7f039e-5962-44d8-b251-531680bea2ad)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39705950-5f01-465f-bee3-b7702b272078)
)
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 41e969c7-39e7-4617-8dc0-33546af0e230))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp 5727c805-77c8-41db-b575-a281200465b8))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp 8d4575dd-56a8-4933-9efc-809fe053bc74))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp e73de1fb-73fc-4a3c-87d8-a7a9f8a8a030))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 1a82e3f1-7efd-4b95-a18b-b030e9f15462))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 20418d28-b4f1-4945-bd25-72b51e65fcc0))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 465a6bbe-6aba-4654-bd60-810308da127b))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 58a0050c-a3b4-422c-bbb1-4ec221fde00d))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9200cdfa-dcd0-411e-a545-62fd9885c889))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 28 "/ALE{slash}~{CE}") (pinfunction "A") (pintype "passive") (tstamp 67868ed9-e1be-47c2-b47b-b101586f7b0c))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 27 "VCC") (pinfunction "B") (pintype "passive") (tstamp 5672975c-5385-4509-b907-1d46fdd2d680))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical_shorted" (layer "F.Cu")
(tedit 60A3184F) (tstamp 00000000-0000-0000-0000-0000609b3468)
(at 175.654 96.19 -90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006090dbee")
(attr through_hole)
(fp_text reference "JP4" (at 0 -2.33 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d32b5489-0c08-4aff-9c1f-13b1f9819ac3)
)
(fp_text value "~{CE}" (at -0.635 -2.159 -270) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp a9baac99-828b-4d38-97de-af3a8aebd65a)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6b69459-3f64-429c-872b-5ae91c4df625)
)
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 12a7f00c-0699-4e36-b970-6d2a9edb1b38))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp 527492e6-660b-4760-a09d-2c58baed8382))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp 7f11c157-a57a-41a3-b110-84c5f200c8ed))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp e49e85f1-36ed-4124-aa78-f286263916f3))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 1321c99b-7744-442e-9c93-f3f1c9e89e6a))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1a9e21f3-63a5-48a1-bf8c-3943faac3abd))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 5b38540e-8eba-47c5-a29b-659af922c507))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7169bcc5-1068-4ffe-92f4-aea3b0a27494))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 7a0e470f-082d-4045-a862-9b22b37f4fa5))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 28 "/ALE{slash}~{CE}") (pinfunction "A") (pintype "passive") (tstamp 63c5fdfe-74c4-4262-b0f4-eae0adf73d1b))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 25 "/~{CE}") (pinfunction "B") (pintype "passive") (tstamp 200b4c75-816d-4eee-98b5-825b3f672412))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/Jumper.stp"
(offset (xyz 1.20015 -3.76555 2.54))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 609AD73E) (tstamp 00000000-0000-0000-0000-0000609b5263)
(at 175.654 103.81 -90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060adfbd6")
(attr through_hole)
(fp_text reference "JP1" (at 0 4.572 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d85825a7-6a08-4bce-a537-1c7a587b97fe)
)
(fp_text value "GND" (at 0.635 -2.159 -270 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp a3a4019f-397f-408c-b296-0052de4b6f61)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fee488d-6625-4dbd-951a-38aa4d6b195f)
)
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp 0623f521-383e-4949-b125-e00c6336f7ec))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 550a473e-944d-48f6-9ca9-bb45463f57b4))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 620b98aa-8e11-4ceb-a0bb-dbb3f8c80540))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer "F.SilkS") (width 0.12) (tstamp 8055b5c0-95fd-4102-ac94-9e5058db9432))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0f0ffefa-c0eb-4fd6-9a0e-8d7f4a267834))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 3d5d6f4e-8596-4306-a920-37311bf71d43))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 6252ad86-05f8-4ab3-9d26-927ef2915982))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp a31ffb8e-8ffd-4d63-8aa9-b79af9dee778))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp d68947e9-ab14-470e-9563-b3e869545031))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 28 "/ALE{slash}~{CE}") (pinfunction "A") (pintype "passive") (tstamp 5d40af79-960a-4ea7-8fc9-9defb51cb12f))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 29 "GND") (pinfunction "B") (pintype "passive") (tstamp f4cc90e7-4273-4fb0-be84-bd049179394e))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:2x28_0.3_0.1_pins" (layer "F.Cu")
(tedit 5F9F8BDA) (tstamp 00000000-0000-0000-0000-0000609b5d67)
(at 147.46 100 90)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
(property "Sheetfile" "TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5b130a")
(attr through_hole)
(fp_text reference "J1" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d9a0601-72a2-4e29-a5cd-797f020bccb3)
)
(fp_text value "27C256 pinout to programmer" (at 0 16.51 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b59cb8b-6502-4bac-afd7-1dbaec297f0a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a35ea9f8-0858-46aa-a43f-45f7d3db78fe)
)
(fp_line (start -8.382 -17.272) (end -8.382 17.272) (layer "F.CrtYd") (width 0.01) (tstamp 10add4ff-3596-4798-85b6-e81cd49a3b7e))
(fp_line (start 8.382 17.272) (end 8.382 -17.272) (layer "F.CrtYd") (width 0.01) (tstamp e01372db-1cbd-4e97-bdf7-bf9caff371a1))
(fp_line (start 8.382 -17.272) (end -8.382 -17.272) (layer "F.CrtYd") (width 0.01) (tstamp e38d2f24-e927-4d78-9bf2-928ecae71760))
(fp_line (start -8.382 17.272) (end 8.382 17.272) (layer "F.CrtYd") (width 0.01) (tstamp eab716f0-66ff-4c4d-92bf-531be71f3667))
(pad "1" thru_hole roundrect locked (at -3.81 -16.51 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask) (roundrect_rratio 0.1)
(net 26 "/VPP") (pinfunction "VPP") (pintype "power_in") (tstamp f6bbd79f-b196-4769-998e-084e48cad7d8))
(pad "2" thru_hole circle locked (at -3.81 -13.97 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 18 "/A12") (pinfunction "A12") (pintype "input") (tstamp 6758703e-f1fc-4efa-8da4-8bf7df47c8e4))
(pad "3" thru_hole circle locked (at -3.81 -11.43 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 4 "/A7") (pinfunction "A7") (pintype "input") (tstamp 87e78699-6df2-4df3-ac7d-77ce8a09547b))
(pad "4" thru_hole circle locked (at -3.81 -8.89 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 6 "/A6") (pinfunction "A6") (pintype "input") (tstamp 13920585-f006-4a91-97a1-be017d87e53d))
(pad "5" thru_hole circle locked (at -3.81 -6.35 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 8 "/A5") (pinfunction "A5") (pintype "input") (tstamp 223a7a6c-aaca-48cc-bb24-9e86f3861f88))
(pad "6" thru_hole circle locked (at -3.81 -3.81 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp 6e7dcf5c-767a-4989-9e1f-84ae83ec8a13))
(pad "7" thru_hole circle locked (at -3.81 -1.27 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 12 "/A3") (pinfunction "A3") (pintype "input") (tstamp 9173d016-c512-4f2e-9719-3faad15b95bf))
(pad "8" thru_hole circle locked (at -3.81 1.27 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 14 "/A2") (pinfunction "A2") (pintype "input") (tstamp 18cf08bc-d3e7-4625-bac5-90eb64557304))
(pad "9" thru_hole circle locked (at -3.81 3.81 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 16 "/A1") (pinfunction "A1") (pintype "input") (tstamp bb8e5dc3-9869-4f99-9cc4-f9cd549996a2))
(pad "10" thru_hole circle locked (at -3.81 6.35 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 077eaaa6-354e-47d2-ae64-c9a29ecad98a))
(pad "11" thru_hole circle locked (at -3.81 8.89 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 19 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp d3e3dc87-efa7-4539-bd27-d96e08899288))
(pad "12" thru_hole circle locked (at -3.81 11.43 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 21 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp 09a8069f-aaaa-445a-ab60-b0312d9db5c5))
(pad "13" thru_hole circle locked (at -3.81 13.97 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 23 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp 9707c9da-54e4-463c-82cc-85aa9974eeb6))
(pad "14" thru_hole circle locked (at -3.81 16.51 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 29 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 00bbf164-1119-4013-b5fe-907a0d2fc43f))
(pad "15" thru_hole circle locked (at 3.81 16.51 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 1 "/D3") (pinfunction "D3") (pintype "tri_state") (tstamp 715a1903-8e8b-4240-9e3b-189bafc746e6))
(pad "16" thru_hole circle locked (at 3.81 13.97 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 3 "/D4") (pinfunction "D4") (pintype "tri_state") (tstamp 2a573a7f-ab80-4a50-ae4e-fce5631053a0))
(pad "17" thru_hole circle locked (at 3.81 11.43 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 5 "/D5") (pinfunction "D5") (pintype "tri_state") (tstamp 8c3441af-6f5a-452f-8b2d-96ef81c44f21))
(pad "18" thru_hole circle locked (at 3.81 8.89 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 7 "/D6") (pinfunction "D6") (pintype "tri_state") (tstamp 332b67a1-390a-48ba-923a-01e4e7088d90))
(pad "19" thru_hole circle locked (at 3.81 6.35 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 9 "/D7") (pinfunction "D7") (pintype "tri_state") (tstamp 4c793c57-21a0-494f-b61a-0cbeccbba9eb))
(pad "20" thru_hole circle locked (at 3.81 3.81 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 25 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp 3d0d4eef-9c1e-4d7f-9f42-f5441db114dc))
(pad "21" thru_hole circle locked (at 3.81 1.27 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp 6162f08d-af0c-44fa-8f21-d8b474715b1d))
(pad "22" thru_hole circle locked (at 3.81 -1.27 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 85d9654c-13f2-495e-9792-ea3b0872fced))
(pad "23" thru_hole circle locked (at 3.81 -3.81 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 11 "/A11") (pinfunction "A11") (pintype "input") (tstamp 04867c6a-70c0-4114-9d19-a8e02df2473f))
(pad "24" thru_hole circle locked (at 3.81 -6.35 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp 24589d63-df44-4eaa-a6c1-86453a033667))
(pad "25" thru_hole circle locked (at 3.81 -8.89 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 22 "/A8") (pinfunction "A8") (pintype "input") (tstamp d7bce7a0-e7b8-49b8-8bd7-d1b8b65bccc6))
(pad "26" thru_hole circle locked (at 3.81 -11.43 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 15 "/A13") (pinfunction "A13") (pintype "input") (tstamp 45b0dbbe-ff64-42fd-bafa-6287084c91eb))
(pad "27" thru_hole circle locked (at 3.81 -13.97 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 24 "/A14") (pinfunction "A14") (pintype "input") (tstamp 4e57863f-dfb5-4534-b87f-601d86798d22))
(pad "28" thru_hole circle locked (at 3.81 -16.51 90) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 27 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 7fc9a082-d45f-400e-96cf-3db62f54ee2f))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x14_P2.54mm_Vertical.step"
(offset (xyz 3.81 16.51 -1.7272))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x14_P2.54mm_Vertical.step"
(offset (xyz -3.81 16.51 -1.7272))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
)
(gr_line (start 129.68 97.46) (end 129.68 94.92) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005f9fdd0b))
(gr_line (start 129.68 105.08) (end 129.68 102.54) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005f9fdd21))
(gr_line (start 144.92 94.031) (end 144.92 93.65) (layer "B.SilkS") (width 0.4) (tstamp 00000000-0000-0000-0000-0000609b974c))
(gr_circle (center 144.92 92.38) (end 144.92 91.11) (layer "B.SilkS") (width 0.4) (fill none) (tstamp 13a8aeba-6764-4088-a121-38c88ea5fa4f))
(gr_line (start 173.114 103.81) (end 165.24 103.81) (layer "B.SilkS") (width 0.4) (tstamp 144c24dd-51d5-45e8-a240-ba687d3f3321))
(gr_line (start 130.95 97.46) (end 130.95 98.73) (layer "B.SilkS") (width 0.4) (tstamp 1c1672ce-607b-4134-a416-c0024fb4ed3f))
(gr_line (start 130.95 102.54) (end 130.95 101.27) (layer "B.SilkS") (width 0.4) (tstamp 20eec652-e618-4ddc-b1b9-3e5e52cd210d))
(gr_line (start 175.654 94.92) (end 174.765 94.031) (layer "B.SilkS") (width 0.4) (tstamp 2e1b10ab-5a23-4a6f-b629-85666b6fd6de))
(gr_line (start 174.765 94.031) (end 144.92 94.031) (layer "B.SilkS") (width 0.4) (tstamp 31244a65-3288-4105-b9c1-845ce13abbdd))
(gr_circle (center 130.95 96.19) (end 130.95 94.92) (layer "B.SilkS") (width 0.4) (fill none) (tstamp 3eb6f6f7-7c43-40d2-853b-65b89858ea5b))
(gr_line (start 166.002 97.968) (end 151.27 97.968) (layer "B.SilkS") (width 0.4) (tstamp 453f37bf-b5c1-47e9-9c46-ca2c400d2888))
(gr_line (start 129.68 102.54) (end 165.24 102.54) (layer "B.SilkS") (width 0.12) (tstamp 4c226156-994c-4a0e-ac93-056a734cba03))
(gr_line (start 175.654 103.81) (end 175.654 94.92) (layer "B.SilkS") (width 0.4) (tstamp 6af1a264-bb64-4f4b-946e-538e2b625794))
(gr_line (start 165.24 105.08) (end 129.68 105.08) (layer "B.SilkS") (width 0.12) (tstamp 9c0c258d-0ea9-4d36-bff2-b595dacabe5a))
(gr_line (start 165.24 97.46) (end 129.68 97.46) (layer "B.SilkS") (width 0.12) (tstamp b02da43d-906f-4ba3-bf44-815a50e5b576))
(gr_line (start 167.78 96.19) (end 173.114 96.19) (layer "B.SilkS") (width 0.4) (tstamp b2cbae40-a7da-4e11-bbd5-6a28f14d9a09))
(gr_circle (center 130.95 103.81) (end 130.95 102.54) (layer "B.SilkS") (width 0.4) (fill none) (tstamp c54669ce-9846-4f2f-975d-4291320fc3c2))
(gr_line (start 173.114 98.73) (end 130.95 98.73) (layer "B.SilkS") (width 0.4) (tstamp c5559ab5-1570-4c08-9a3f-3d92830be07a))
(gr_line (start 165.24 94.92) (end 165.24 97.46) (layer "B.SilkS") (width 0.12) (tstamp c7aa0523-24b8-474a-97f6-511b77983c40))
(gr_line (start 167.78 96.19) (end 166.002 97.968) (layer "B.SilkS") (width 0.4) (tstamp d0f56f81-44d7-49d7-80fc-102a2f725051))
(gr_circle (center 163.97 103.81) (end 163.97 102.54) (layer "B.SilkS") (width 0.4) (fill none) (tstamp de891d4d-3350-4462-ba10-1b1ded653c64))
(gr_line (start 151.27 97.968) (end 151.27 97.46) (layer "B.SilkS") (width 0.4) (tstamp ebaaf4f7-0223-4fdd-9cc8-a67105951a09))
(gr_circle (center 151.27 96.19) (end 151.27 94.92) (layer "B.SilkS") (width 0.4) (fill none) (tstamp f0e27a34-6bbb-45d3-a689-8135d21d704f))
(gr_line (start 129.68 94.92) (end 165.24 94.92) (layer "B.SilkS") (width 0.12) (tstamp f4f5290f-0f50-4a1e-994c-5b121d12eacf))
(gr_line (start 165.24 102.54) (end 165.24 105.08) (layer "B.SilkS") (width 0.12) (tstamp fbfafa2e-41ec-47ad-8e8a-2a438815114b))
(gr_line (start 173.114 101.27) (end 130.95 101.27) (layer "B.SilkS") (width 0.4) (tstamp fd901c47-d883-4e60-865c-a95b47bcbb63))
(gr_line (start 172.86 92.38) (end 173.368 91.872) (layer "F.SilkS") (width 0.3) (tstamp 0fa80964-e8e6-4dd0-9c5c-03f0ad20d8c6))
(gr_line (start 175.654 94.92) (end 175.654 92.38) (layer "F.SilkS") (width 0.3) (tstamp 1218060a-33be-49fb-afca-5b05d7fe98dd))
(gr_line (start 172.86 92.38) (end 173.368 92.888) (layer "F.SilkS") (width 0.3) (tstamp 3072d9ac-06c0-4bd7-aa5b-9a4c2212bb8b))
(gr_line (start 175.654 92.38) (end 172.86 92.38) (layer "F.SilkS") (width 0.3) (tstamp 49094246-a2e7-4608-97e7-288bbe96e932))
(gr_rect (start 176.924 96.825) (end 178.448 94.285) (layer "F.SilkS") (width 0.2) (fill none) (tstamp b650e15f-1c08-4c94-8753-13bd11242fd6))
(gr_line (start 129.68 90.475) (end 177.94 90.475) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e36f1c5))
(gr_line (start 177.94 109.525) (end 129.68 109.525) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e36f1c6))
(gr_arc (start 129.045 91.11) (mid 129.230987 90.660987) (end 129.68 90.475) (layer "Edge.Cuts") (width 0.05) (tstamp 1265c16c-e602-4952-8307-ee95f74155b7))
(gr_arc (start 129.045 98.73) (mid 130.315 100) (end 129.045 101.27) (layer "Edge.Cuts") (width 0.05) (tstamp 19f2e069-7e9c-40c9-900b-bc8bc21d636c))
(gr_arc (start 129.68 109.525) (mid 129.230987 109.339013) (end 129.045 108.89) (layer "Edge.Cuts") (width 0.05) (tstamp 501ff1ed-d114-4feb-a12e-41287ae48965))
(gr_arc (start 178.575 108.89) (mid 178.389013 109.339013) (end 177.94 109.525) (layer "Edge.Cuts") (width 0.05) (tstamp 9e1e040e-2ace-4859-bfcb-0fdd20932dd3))
(gr_line (start 129.045 98.73) (end 129.045 91.11) (layer "Edge.Cuts") (width 0.05) (tstamp aa9cf869-0415-4be4-ab0b-7de30a2cdeaf))
(gr_line (start 129.045 101.27) (end 129.045 108.89) (layer "Edge.Cuts") (width 0.05) (tstamp b349f5ea-96cd-4fef-bc33-d2cbe39732af))
(gr_arc (start 177.94 90.475) (mid 178.389013 90.660987) (end 178.575 91.11) (layer "Edge.Cuts") (width 0.05) (tstamp d3b1d115-1577-4f94-b7b2-a5c442e4a687))
(gr_line (start 178.575 108.89) (end 178.575 91.11) (layer "Edge.Cuts") (width 0.05) (tstamp ec5525f8-6544-4fb6-a2c2-6a909ac69400))
(gr_text "${TITLE}" (at 150 100) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-0000609b2859)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "~{CE}" (at 170.32 97.333) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-0000609b9978)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "VPP" (at 170.32 102.159) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-0000609b9a82)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "VCC" (at 170.32 99.619) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-0000609b9a84)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "GND" (at 170.32 104.699) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-0000609b9a86)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "${COMMENT2}" (at 177.432 100 90) (layer "B.SilkS") (tstamp 59b53c58-a204-4bc3-833c-30dcd231bbf5)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "ALE" (at 172.86 93.015) (layer "B.SilkS") (tstamp 69b42888-19dd-4ab1-8999-420aca7a37f2)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "Molex 78805 socket this side" (at 150 100) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000608f58df)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "23\nALE" (at 171.336 92.38 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000609b50fa)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(segment (start 163.97 96.19) (end 163.97 94.92) (width 0.2) (layer "F.Cu") (net 1) (tstamp 3fa2f639-9c44-4d01-92e7-89cf3978b82e))
(segment (start 163.97 94.92) (end 165.24 93.65) (width 0.2) (layer "F.Cu") (net 1) (tstamp 8621c8d7-b01b-4ddd-8f64-10cfc43cf764))
(segment (start 165.24 93.65) (end 165.24 92.38) (width 0.2) (layer "F.Cu") (net 1) (tstamp e0076499-a7df-4077-874f-0c474e69de6a))
(segment (start 146.19 100) (end 148.73 97.46) (width 0.2) (layer "F.Cu") (net 2) (tstamp 048b96bc-9530-491d-bba6-8bcdd2d2a783))
(segment (start 134.76 103.175) (end 137.935 100) (width 0.2) (layer "F.Cu") (net 2) (tstamp 6f2ce8b5-e5d7-49ba-a591-d3e245a416c1))
(segment (start 134.76 107.62) (end 134.76 103.175) (width 0.2) (layer "F.Cu") (net 2) (tstamp 70095cf4-87f0-4c43-af00-3a87d0f5b6ac))
(segment (start 148.73 97.46) (end 148.73 96.19) (width 0.2) (layer "F.Cu") (net 2) (tstamp c62ad1dd-19f7-4b2f-9e9b-da73b1a899d9))
(segment (start 137.935 100) (end 146.19 100) (width 0.2) (layer "F.Cu") (net 2) (tstamp ea36276e-1e0d-4526-b9ad-59697073ce71))
(segment (start 161.43 94.92) (end 162.7 93.65) (width 0.2) (layer "F.Cu") (net 3) (tstamp 1dbbf2fe-4de7-4a78-8c66-ec6deac47be1))
(segment (start 162.7 93.65) (end 162.7 92.38) (width 0.2) (layer "F.Cu") (net 3) (tstamp c24e15d1-e0b4-46e3-badb-1818b82ad5b5))
(segment (start 161.43 96.19) (end 161.43 94.92) (width 0.2) (layer "F.Cu") (net 3) (tstamp e4a522b4-da4e-4153-a55b-24e972dcc7a1))
(segment (start 137.3 107.62) (end 137.3 106.35) (width 0.2) (layer "F.Cu") (net 4) (tstamp 13470951-d732-4ebd-9fc0-ae82f1f330bc))
(segment (start 136.03 105.08) (end 136.03 103.81) (width 0.2) (layer "F.Cu") (net 4) (tstamp 6d707a5a-20c9-420a-bdf6-41338fa4b028))
(segment (start 137.3 106.35) (end 136.03 105.08) (width 0.2) (layer "F.Cu") (net 4) (tstamp e1c31831-e7ac-4e99-be60-587b5deb8b6a))
(segment (start 160.16 93.65) (end 160.16 92.38) (width 0.2) (layer "F.Cu") (net 5) (tstamp 75831624-d6cd-45b7-8e1f-2c6e33b7b0f9))
(segment (start 158.89 96.19) (end 158.89 94.92) (width 0.2) (layer "F.Cu") (net 5) (tstamp 95935279-2e91-48c8-af41-68863c3adb97))
(segment (start 158.89 94.92) (end 160.16 93.65) (width 0.2) (layer "F.Cu") (net 5) (tstamp d9bdbfce-d7ae-46ad-a22f-aff09a1d550d))
(segment (start 139.84 107.62) (end 139.84 106.35) (width 0.2) (layer "F.Cu") (net 6) (tstamp 51c779be-6e6f-4d4e-a48e-aabb1cf4b319))
(segment (start 139.84 106.35) (end 138.57 105.08) (width 0.2) (layer "F.Cu") (net 6) (tstamp ba4c06d9-2290-43a8-9eaf-0aa544cb8dc6))
(segment (start 138.57 105.08) (end 138.57 103.81) (width 0.2) (layer "F.Cu") (net 6) (tstamp e61717b8-8102-4f90-b092-3419a394bdc8))
(segment (start 157.62 93.65) (end 157.62 92.38) (width 0.2) (layer "F.Cu") (net 7) (tstamp 9257032d-cc99-457a-9d02-c32a8706c301))
(segment (start 156.35 96.19) (end 156.35 94.92) (width 0.2) (layer "F.Cu") (net 7) (tstamp b7f3811c-3d64-4587-9f50-cceb894c1523))
(segment (start 156.35 94.92) (end 157.62 93.65) (width 0.2) (layer "F.Cu") (net 7) (tstamp e98a6de6-2de7-4017-a6fe-1fb2f0a18e97))
(segment (start 142.38 106.35) (end 141.11 105.08) (width 0.2) (layer "F.Cu") (net 8) (tstamp 229c7186-8cb4-4c6b-ad6b-95733dcca838))
(segment (start 141.11 105.08) (end 141.11 103.81) (width 0.2) (layer "F.Cu") (net 8) (tstamp d057c090-dad3-4883-a2c8-709360eaa24a))
(segment (start 142.38 107.62) (end 142.38 106.35) (width 0.2) (layer "F.Cu") (net 8) (tstamp e045e6e4-27e7-4ba4-9216-d34131cb1da6))
(segment (start 155.08 93.65) (end 155.08 92.38) (width 0.2) (layer "F.Cu") (net 9) (tstamp 34bbf3f0-c7ee-47a4-accc-26af3d83b549))
(segment (start 153.81 94.92) (end 155.08 93.65) (width 0.2) (layer "F.Cu") (net 9) (tstamp 828803a1-4f3e-4bda-b4e4-8fb44d9936e3))
(segment (start 153.81 96.19) (end 153.81 94.92) (width 0.2) (layer "F.Cu") (net 9) (tstamp c2960584-3142-46d6-b730-42f1b5071192))
(segment (start 144.92 106.35) (end 143.65 105.08) (width 0.2) (layer "F.Cu") (net 10) (tstamp 70f041c9-2f83-4d1b-9dbe-6e43baf0a555))
(segment (start 144.92 107.62) (end 144.92 106.35) (width 0.2) (layer "F.Cu") (net 10) (tstamp 85a45c48-515f-4d7f-ba15-1e265a6fff39))
(segment (start 143.65 105.08) (end 143.65 103.81) (width 0.2) (layer "F.Cu") (net 10) (tstamp afba88a7-2989-4174-bc4a-d28b54652c4b))
(segment (start 147.7775 94.3485) (end 150.5715 94.3485) (width 0.2) (layer "F.Cu") (net 11) (tstamp 50b8fac9-852d-467d-b4d4-d83db86ebeff))
(segment (start 150.5715 94.3485) (end 152.54 92.38) (width 0.2) (layer "F.Cu") (net 11) (tstamp a20112ec-367f-4687-9ca1-36986425d746))
(segment (start 147.206 94.92) (end 147.7775 94.3485) (width 0.2) (layer "F.Cu") (net 11) (tstamp a31b0c7c-017e-4ee2-8562-663dbc72e478))
(segment (start 143.65 96.19) (end 144.92 94.92) (width 0.2) (layer "F.Cu") (net 11) (tstamp b5ebc7bd-27c4-461a-9e2a-2a487f4aa6cb))
(segment (start 144.92 94.92) (end 147.206 94.92) (width 0.2) (layer "F.Cu") (net 11) (tstamp e27d10bc-6258-48ed-a40e-a246827db301))
(segment (start 147.46 107.62) (end 147.46 106.35) (width 0.2) (layer "F.Cu") (net 12) (tstamp 5d0047f4-0bfc-4fbf-9b5c-6a9586ecc889))
(segment (start 147.46 106.35) (end 146.19 105.08) (width 0.2) (layer "F.Cu") (net 12) (tstamp 74b7512c-37d0-449f-8aeb-d0c0d98f8e20))
(segment (start 146.19 105.08) (end 146.19 103.81) (width 0.2) (layer "F.Cu") (net 12) (tstamp d13a86c1-5bf1-4e8e-b720-017e2cf819e5))
(segment (start 148.603 93.777) (end 147.3965 93.777) (width 0.2) (layer "F.Cu") (net 13) (tstamp 4053abf0-8066-4454-8f3f-98ec9f0a692f))
(segment (start 143.5865 94.3485) (end 142.38 95.555) (width 0.2) (layer "F.Cu") (net 13) (tstamp 4ef34284-d585-4443-8a94-472d646154e1))
(segment (start 142.38 95.555) (end 142.38 96.7615) (width 0.2) (layer "F.Cu") (net 13) (tstamp 656065fe-5d58-4359-acb2-25379d64394a))
(segment (start 147.3965 93.777) (end 146.825 94.3485) (width 0.2) (layer "F.Cu") (net 13) (tstamp 84d2682a-93a2-4364-9848-9f623968c98a))
(segment (start 146.825 94.3485) (end 143.5865 94.3485) (width 0.2) (layer "F.Cu") (net 13) (tstamp 8baa6d1d-ecc1-4168-a118-01002ee4161a))
(segment (start 143.0785 97.46) (end 144.92 97.46) (width 0.2) (layer "F.Cu") (net 13) (tstamp 9aa54575-ba6f-42af-ad19-962dc3cce0e3))
(segment (start 142.38 96.7615) (end 143.0785 97.46) (width 0.2) (layer "F.Cu") (net 13) (tstamp a177c5f3-d62a-4ab4-8162-05c85e34497f))
(segment (start 150 92.38) (end 148.603 93.777) (width 0.2) (layer "F.Cu") (net 13) (tstamp e7533a05-4b1d-49d9-ac0a-2a4a33e9b2c5))
(segment (start 144.92 97.46) (end 146.19 96.19) (width 0.2) (layer "F.Cu") (net 13) (tstamp f862b360-d76c-41d0-9424-e5c7c274de3e))
(segment (start 150 106.35) (end 148.73 105.08) (width 0.2) (layer "F.Cu") (net 14) (tstamp 50ac8fbc-f9e6-4b29-a8e4-52658ca093d4))
(segment (start 148.73 105.08) (end 148.73 103.81) (width 0.2) (layer "F.Cu") (net 14) (tstamp 9c0b7675-a2de-4c98-b83c-25ed84498b0b))
(segment (start 150 107.62) (end 150 106.35) (width 0.2) (layer "F.Cu") (net 14) (tstamp ac4b872f-f143-4884-b47c-39e203b330a1))
(segment (start 138.443 93.777) (end 136.03 96.19) (width 0.2) (layer "F.Cu") (net 15) (tstamp 3091f213-e98c-40a0-88de-7de1707191b3))
(segment (start 146.063 93.777) (end 138.443 93.777) (width 0.2) (layer "F.Cu") (net 15) (tstamp 45a99f3b-3212-486a-a457-0a44375db0fe))
(segment (start 147.46 92.38) (end 146.063 93.777) (width 0.2) (layer "F.Cu") (net 15) (tstamp a653e1a6-1d1a-42c5-b343-898905d7f5a2))
(segment (start 151.27 105.08) (end 151.27 103.81) (width 0.2) (layer "F.Cu") (net 16) (tstamp 45aeec45-d6ea-4f2e-a237-899d9890dc09))
(segment (start 152.54 107.62) (end 152.54 106.35) (width 0.2) (layer "F.Cu") (net 16) (tstamp b2360636-eaec-42d8-83da-e072c6932733))
(segment (start 152.54 106.35) (end 151.27 105.08) (width 0.2) (layer "F.Cu") (net 16) (tstamp ce5e11c5-7a09-4b11-8d98-24514cca0587))
(segment (start 155.08 107.62) (end 155.08 106.35) (width 0.2) (layer "F.Cu") (net 17) (tstamp 05a9ddfd-3a76-4095-b887-68bd2c8efb27))
(segment (start 155.08 106.35) (end 153.81 105.08) (width 0.2) (layer "F.Cu") (net 17) (tstamp 587b99fe-e566-4695-b57b-398bcd048ef3))
(segment (start 153.81 105.08) (end 153.81 103.81) (width 0.2) (layer "F.Cu") (net 17) (tstamp d43c7e50-1e49-4be4-93b7-c42618efca89))
(segment (start 139.205 100) (end 142.38 96.825) (width 0.2) (layer "B.Cu") (net 18) (tstamp 1185cb27-2dda-459a-a0ec-1102061b86c3))
(segment (start 142.38 96.825) (end 142.38 92.38) (width 0.2) (layer "B.Cu") (net 18) (tstamp 1a033fe0-c440-40d2-b3e0-95b287b5bccf))
(segment (start 133.49 103.81) (end 137.3 100) (width 0.2) (layer "B.Cu") (net 18) (tstamp 87914dd4-f6d5-4737-a257-a9513c5697ef))
(segment (start 137.3 100) (end 139.205 100) (width 0.2) (layer "B.Cu") (net 18) (tstamp d5bf07e6-b4b5-4351-b96f-d2e9c4893e6b))
(segment (start 157.62 107.62) (end 157.62 106.35) (width 0.2) (layer "F.Cu") (net 19) (tstamp 666a6fa0-e0db-475e-b76b-00c4b75711b6))
(segment (start 156.35 105.08) (end 156.35 103.81) (width 0.2) (layer "F.Cu") (net 19) (tstamp 8d399346-b1b0-4c77-84e7-afa36b49188c))
(segment (start 157.62 106.35) (end 156.35 105.08) (width 0.2) (layer "F.Cu") (net 19) (tstamp 907f5e03-f353-456f-aa5e-aae449b4a1b9))
(segment (start 139.84 92.38) (end 139.84 93.65) (width 0.2) (layer "B.Cu") (net 20) (tstamp 2586edd3-d63c-4de3-881f-075cfef63f3d))
(segment (start 139.84 93.65) (end 141.11 94.92) (width 0.2) (layer "B.Cu") (net 20) (tstamp b4aa7dad-1f16-435e-8c19-ad9628e0b82c))
(segment (start 141.11 94.92) (end 141.11 96.19) (width 0.2) (layer "B.Cu") (net 20) (tstamp ef9ae25e-b203-444f-8308-5f01fbb357aa))
(segment (start 160.16 107.62) (end 160.16 106.35) (width 0.2) (layer "F.Cu") (net 21) (tstamp ac1ef532-c5f5-4e30-9e4b-4432791c68f9))
(segment (start 160.16 106.35) (end 158.89 105.08) (width 0.2) (layer "F.Cu") (net 21) (tstamp c1723017-f309-47be-a617-bcc7feb7182d))
(segment (start 158.89 105.08) (end 158.89 103.81) (width 0.2) (layer "F.Cu") (net 21) (tstamp d2cd584c-0a1d-4bf3-95eb-b189d6e3ef1c))
(segment (start 137.3 92.38) (end 137.3 93.65) (width 0.2) (layer "B.Cu") (net 22) (tstamp 5d4ea2cf-1c3c-4436-a012-908ca8d9c3b9))
(segment (start 137.3 93.65) (end 138.57 94.92) (width 0.2) (layer "B.Cu") (net 22) (tstamp 6edefc0f-a9b9-4fe8-a713-dc0f625df0b6))
(segment (start 138.57 94.92) (end 138.57 96.19) (width 0.2) (layer "B.Cu") (net 22) (tstamp cfe3d6d1-aaa6-4a80-a1ff-b519b022bb6d))
(segment (start 162.7 106.35) (end 161.43 105.08) (width 0.2) (layer "F.Cu") (net 23) (tstamp 5ac2a4e8-980a-4dea-9dd3-ad21d59f918a))
(segment (start 162.7 107.62) (end 162.7 106.35) (width 0.2) (layer "F.Cu") (net 23) (tstamp 830e02a5-6330-4844-8005-5db2fd1fcaed))
(segment (start 161.43 105.08) (end 161.43 103.81) (width 0.2) (layer "F.Cu") (net 23) (tstamp fe65bffd-d911-4196-84b1-701425e69a3b))
(segment (start 133.49 94.92) (end 133.49 96.19) (width 0.2) (layer "F.Cu") (net 24) (tstamp 54b5b6c3-41b3-4ab5-9be9-ca816d29d608))
(segment (start 132.22 93.65) (end 133.49 94.92) (width 0.2) (layer "F.Cu") (net 24) (tstamp 70846d6b-5dc8-4bff-b64b-9fa4de146735))
(segment (start 132.22 92.38) (end 132.22 93.65) (width 0.2) (layer "F.Cu") (net 24) (tstamp aa963e17-ab86-4e82-a8e0-10c343f79544))
(segment (start 134.76 92.38) (end 134.76 96.825) (width 0.2) (layer "F.Cu") (net 25) (tstamp 0edc4448-5b3e-42f2-8af5-6496ec7ad8ad))
(segment (start 147.46 95.682) (end 148.222 94.92) (width 0.2) (layer "F.Cu") (net 25) (tstamp 14fe7c4c-95e9-4f0e-a382-e3f6f227eccd))
(segment (start 146.118563 98.095) (end 147.46 96.753563) (width 0.2) (layer "F.Cu") (net 25) (tstamp 16aa7477-b32b-4db5-9373-ca9ab59c4dd9))
(segment (start 169.685 98.095) (end 171.59 96.19) (width 0.2) (layer "F.Cu") (net 25) (tstamp 3becdd22-0fba-45a6-b390-36ef3e0d7103))
(segment (start 171.59 96.19) (end 173.114 96.19) (width 0.2) (layer "F.Cu") (net 25) (tstamp 59e7dda6-1fda-49f6-9fd5-4e73ee2c6417))
(segment (start 136.03 98.095) (end 146.118563 98.095) (width 0.2) (layer "F.Cu") (net 25) (tstamp 5fdd2120-4a55-46c3-bdfe-dea2d070abc2))
(segment (start 153.175 98.095) (end 169.685 98.095) (width 0.2) (layer "F.Cu") (net 25) (tstamp 99f97bed-8e50-49f8-8f86-519df9b1f06c))
(segment (start 147.46 96.753563) (end 147.46 95.682) (width 0.2) (layer "F.Cu") (net 25) (tstamp a757556c-8226-4fa6-a1cb-676edb1fd716))
(segment (start 150 94.92) (end 153.175 98.095) (width 0.2) (layer "F.Cu") (net 25) (tstamp ae6473ff-ec45-4a64-a116-6f78dbca198b))
(segment (start 134.76 96.825) (end 136.03 98.095) (width 0.2) (layer "F.Cu") (net 25) (tstamp bdaf385a-17ce-47e7-9d94-f6533e8e0177))
(segment (start 148.222 94.92) (end 150 94.92) (width 0.2) (layer "F.Cu") (net 25) (tstamp da8b3ed8-32ef-4b71-acf9-7a6a92e39f8c))
(segment (start 130.95 103.81) (end 132.315 105.175) (width 0.6) (layer "B.Cu") (net 26) (tstamp 7b342e33-be0a-4cd7-8d3b-ba82551b5023))
(segment (start 170.955 101.27) (end 173.114 101.27) (width 0.6) (layer "B.Cu") (net 26) (tstamp e5e3d2c9-3ce5-41d2-aa8c-b1ac9f4f559c))
(segment (start 132.315 105.175) (end 167.05 105.175) (width 0.6) (layer "B.Cu") (net 26) (tstamp ef6aa335-e69b-4ba5-b661-c3f857c7a049))
(segment (start 167.05 105.175) (end 170.955 101.27) (width 0.6) (layer "B.Cu") (net 26) (tstamp fe863866-717b-4cc9-8a30-e9a4f31c56d7))
(segment (start 132.22 98.73) (end 130.95 97.46) (width 0.6) (layer "F.Cu") (net 27) (tstamp 6ab9c6e9-0a52-4d44-9db9-0c34c7d67e4f))
(segment (start 132.22 107.62) (end 132.22 98.73) (width 0.6) (layer "F.Cu") (net 27) (tstamp ba223cc9-d9b3-4460-ae6e-e39203603542))
(segment (start 130.95 97.46) (end 130.95 96.19) (width 0.6) (layer "F.Cu") (net 27) (tstamp df986cb4-47a6-4d07-bc5d-676460a6b2bc))
(segment (start 133.715 106.125) (end 132.22 107.62) (width 0.6) (layer "B.Cu") (net 27) (tstamp 1310d28c-5947-41d4-b677-c0f81522a9eb))
(segment (start 173.114 98.73) (end 174.384 100) (width 0.6) (layer "B.Cu") (net 27) (tstamp 2af72931-7e4b-4008-a16e-b3a0035a41f2))
(segment (start 173.212 106.125) (end 133.715 106.125) (width 0.6) (layer "B.Cu") (net 27) (tstamp b0492d2b-db06-4a78-975e-e3b7ecd2c909))
(segment (start 174.384 104.953) (end 173.212 106.125) (width 0.6) (layer "B.Cu") (net 27) (tstamp ca1bb796-6a68-461e-8e70-c69a0c7599a6))
(segment (start 174.384 100) (end 174.384 104.953) (width 0.6) (layer "B.Cu") (net 27) (tstamp fcfeb86c-93b6-4475-9aac-b006e578fdac))
(segment (start 173.8125 94.3485) (end 146.8885 94.3485) (width 0.6) (layer "B.Cu") (net 28) (tstamp 4f7073bd-521c-491e-91c5-de681c831390))
(segment (start 175.654 96.19) (end 175.654 98.73) (width 0.6) (layer "B.Cu") (net 28) (tstamp 628c4e05-06c7-4f75-b944-aa0b40895810))
(segment (start 175.654 96.19) (end 173.8125 94.3485) (width 0.6) (layer "B.Cu") (net 28) (tstamp 8cc77c7f-eb1b-4913-8960-daf7fc596314))
(segment (start 175.654 101.27) (end 175.654 103.81) (width 0.6) (layer "B.Cu") (net 28) (tstamp c71ce767-76ff-4c2f-97c8-32ac4bbaf5f8))
(segment (start 146.8885 94.3485) (end 144.92 92.38) (width 0.6) (layer "B.Cu") (net 28) (tstamp ea6ce175-fc47-4ba4-a393-34f7b0f47f21))
(segment (start 175.654 98.73) (end 175.654 101.27) (width 0.6) (layer "B.Cu") (net 28) (tstamp ef10a04f-0361-4ff1-8426-5c0cb1055edf))
(zone (net 29) (net_name "GND") (layer "F.Cu") (tstamp 4e645bff-2429-462d-8e36-623015744b42) (hatch edge 0.508)
(connect_pads yes (clearance 0.2))
(min_thickness 0.2) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 178.575 90.475)
(xy 178.575 109.525)
(xy 129.045 109.525)
(xy 129.045 90.475)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 177.928169 90.678018)
(xy 177.928776 90.678158)
(xy 177.928778 90.678158)
(xy 177.939641 90.680656)
(xy 177.950516 90.678196)
(xy 177.954206 90.678202)
(xy 177.966955 90.679049)
(xy 178.039534 90.688604)
(xy 178.064498 90.695293)
(xy 178.14521 90.728725)
(xy 178.167586 90.741643)
(xy 178.236906 90.794834)
(xy 178.255166 90.813094)
(xy 178.308357 90.882414)
(xy 178.321275 90.90479)
(xy 178.354707 90.985502)
(xy 178.361396 91.010466)
(xy 178.370999 91.083409)
(xy 178.371846 91.096503)
(xy 178.371842 91.098779)
(xy 178.369344 91.109641)
(xy 178.371804 91.120513)
(xy 178.372059 91.121638)
(xy 178.3745 91.143488)
(xy 178.3745 108.855983)
(xy 178.371982 108.878169)
(xy 178.369344 108.889641)
(xy 178.371804 108.900516)
(xy 178.371798 108.904206)
(xy 178.370951 108.916955)
(xy 178.361396 108.989534)
(xy 178.354707 109.014498)
(xy 178.321275 109.09521)
(xy 178.308357 109.117586)
(xy 178.255166 109.186906)
(xy 178.236906 109.205166)
(xy 178.167586 109.258357)
(xy 178.14521 109.271275)
(xy 178.064498 109.304707)
(xy 178.039534 109.311396)
(xy 177.966591 109.320999)
(xy 177.953497 109.321846)
(xy 177.951221 109.321842)
(xy 177.940359 109.319344)
(xy 177.929487 109.321804)
(xy 177.929302 109.321846)
(xy 177.928359 109.322059)
(xy 177.906512 109.3245)
(xy 129.714017 109.3245)
(xy 129.691831 109.321982)
(xy 129.691224 109.321842)
(xy 129.691222 109.321842)
(xy 129.680359 109.319344)
(xy 129.669484 109.321804)
(xy 129.665794 109.321798)
(xy 129.653045 109.320951)
(xy 129.580466 109.311396)
(xy 129.555502 109.304707)
(xy 129.47479 109.271275)
(xy 129.452414 109.258357)
(xy 129.383094 109.205166)
(xy 129.364834 109.186906)
(xy 129.311643 109.117586)
(xy 129.298725 109.09521)
(xy 129.265293 109.014499)
(xy 129.258604 108.989534)
(xy 129.249549 108.920751)
(xy 129.249351 108.896514)
(xy 129.24939 108.896178)
(xy 129.250655 108.890718)
(xy 129.250656 108.89)
(xy 129.248096 108.878776)
(xy 129.24798 108.878266)
(xy 129.2455 108.856248)
(xy 129.2455 101.542195)
(xy 129.264407 101.484004)
(xy 129.313907 101.44804)
(xy 129.321389 101.44593)
(xy 129.497038 101.40376)
(xy 129.497041 101.403759)
(xy 129.500815 101.402853)
(xy 129.504401 101.401368)
(xy 129.504406 101.401366)
(xy 129.633004 101.348099)
(xy 129.714657 101.314277)
(xy 129.912011 101.193338)
(xy 130.088016 101.043016)
(xy 130.238338 100.867011)
(xy 130.359277 100.669657)
(xy 130.398087 100.57596)
(xy 130.446366 100.459406)
(xy 130.446368 100.459401)
(xy 130.447853 100.455815)
(xy 130.465883 100.380717)
(xy 130.485336 100.299687)
(xy 130.501887 100.230748)
(xy 130.502797 100.219195)
(xy 130.519742 100.003875)
(xy 130.520047 100)
(xy 130.504845 99.806839)
(xy 130.502192 99.773122)
(xy 130.502191 99.773117)
(xy 130.501887 99.769252)
(xy 130.468864 99.631703)
(xy 130.44876 99.547962)
(xy 130.448759 99.547959)
(xy 130.447853 99.544185)
(xy 130.440546 99.526543)
(xy 130.360765 99.333936)
(xy 130.359277 99.330343)
(xy 130.238338 99.132989)
(xy 130.23013 99.123378)
(xy 130.09055 98.959951)
(xy 130.088016 98.956984)
(xy 129.912011 98.806662)
(xy 129.714657 98.685723)
(xy 129.633004 98.651901)
(xy 129.504406 98.598634)
(xy 129.504401 98.598632)
(xy 129.500815 98.597147)
(xy 129.497041 98.596241)
(xy 129.497038 98.59624)
(xy 129.321389 98.55407)
(xy 129.26922 98.5221)
(xy 129.245805 98.465572)
(xy 129.2455 98.457805)
(xy 129.2455 96.176496)
(xy 129.982937 96.176496)
(xy 129.998732 96.36459)
(xy 130.000065 96.369238)
(xy 130.000065 96.369239)
(xy 130.010111 96.404272)
(xy 130.05076 96.546034)
(xy 130.052975 96.550343)
(xy 130.052975 96.550344)
(xy 130.134827 96.709612)
(xy 130.13483 96.709616)
(xy 130.13704 96.713917)
(xy 130.254285 96.861844)
(xy 130.257972 96.864982)
(xy 130.257974 96.864984)
(xy 130.353506 96.946287)
(xy 130.39803 96.98418)
(xy 130.402255 96.986541)
(xy 130.406234 96.989307)
(xy 130.404914 96.991207)
(xy 130.440379 97.029523)
(xy 130.4495 97.071029)
(xy 130.4495 97.392834)
(xy 130.448081 97.405535)
(xy 130.448103 97.405537)
(xy 130.447537 97.412569)
(xy 130.445981 97.419447)
(xy 130.446418 97.426485)
(xy 130.44931 97.473102)
(xy 130.4495 97.479233)
(xy 130.4495 97.49594)
(xy 130.449999 97.499427)
(xy 130.45 97.499435)
(xy 130.451101 97.507121)
(xy 130.451911 97.515024)
(xy 130.454859 97.562538)
(xy 130.457252 97.569167)
(xy 130.457253 97.569171)
(xy 130.458342 97.572187)
(xy 130.463223 97.591763)
(xy 130.464677 97.601918)
(xy 130.467596 97.608337)
(xy 130.467597 97.608342)
(xy 130.484381 97.645257)
(xy 130.487377 97.652615)
(xy 130.488579 97.655945)
(xy 130.50354 97.697387)
(xy 130.509592 97.705672)
(xy 130.519768 97.723086)
(xy 130.524016 97.732428)
(xy 130.528621 97.737772)
(xy 130.555093 97.768495)
(xy 130.560033 97.774716)
(xy 130.568522 97.786336)
(xy 130.579986 97.7978)
(xy 130.584981 97.803181)
(xy 130.610906 97.833268)
(xy 130.6176 97.841037)
(xy 130.62352 97.844874)
(xy 130.624811 97.845711)
(xy 130.640968 97.858782)
(xy 131.690504 98.908318)
(xy 131.718281 98.962835)
(xy 131.7195 98.978322)
(xy 131.7195 102.751456)
(xy 131.700593 102.809647)
(xy 131.651093 102.845611)
(xy 131.606212 102.849419)
(xy 131.596604 102.848018)
(xy 131.596602 102.848018)
(xy 131.593052 102.8475)
(xy 130.306948 102.8475)
(xy 130.303376 102.848026)
(xy 130.303373 102.848026)
(xy 130.27957 102.85153)
(xy 130.237588 102.85771)
(xy 130.132128 102.909489)
(xy 130.126346 102.915281)
(xy 130.116963 102.92468)
(xy 130.049126 102.992636)
(xy 130.025166 103.041652)
(xy 130.016179 103.060038)
(xy 129.997531 103.098186)
(xy 129.9875 103.166948)
(xy 129.9875 104.453052)
(xy 129.99771 104.522412)
(xy 130.049489 104.627872)
(xy 130.132636 104.710874)
(xy 130.162461 104.725453)
(xy 130.231281 104.759094)
(xy 130.231283 104.759095)
(xy 130.238186 104.762469)
(xy 130.283382 104.769062)
(xy 130.303403 104.771983)
(xy 130.303405 104.771983)
(xy 130.306948 104.7725)
(xy 131.593052 104.7725)
(xy 131.596622 104.771975)
(xy 131.596629 104.771974)
(xy 131.606083 104.770582)
(xy 131.666407 104.780814)
(xy 131.709196 104.824549)
(xy 131.7195 104.868527)
(xy 131.7195 106.4315)
(xy 131.700593 106.489691)
(xy 131.651093 106.525655)
(xy 131.6205 106.5305)
(xy 131.472944 106.5305)
(xy 131.469373 106.531026)
(xy 131.469368 106.531026)
(xy 131.435104 106.53607)
(xy 131.398588 106.541445)
(xy 131.285538 106.596951)
(xy 131.196561 106.686082)
(xy 131.141254 106.79923)
(xy 131.1305 106.872944)
(xy 131.1305 108.367056)
(xy 131.141445 108.441412)
(xy 131.196951 108.554462)
(xy 131.286082 108.643439)
(xy 131.39923 108.698746)
(xy 131.406828 108.699855)
(xy 131.40683 108.699855)
(xy 131.449308 108.706052)
(xy 131.472944 108.7095)
(xy 132.967056 108.7095)
(xy 132.970627 108.708974)
(xy 132.970632 108.708974)
(xy 133.005746 108.703805)
(xy 133.041412 108.698555)
(xy 133.154462 108.643049)
(xy 133.243439 108.553918)
(xy 133.298746 108.44077)
(xy 133.3095 108.367056)
(xy 133.3095 106.872944)
(xy 133.3086 106.866824)
(xy 133.299675 106.806199)
(xy 133.298555 106.798588)
(xy 133.243049 106.685538)
(xy 133.153918 106.596561)
(xy 133.04077 106.541254)
(xy 133.033172 106.540145)
(xy 133.03317 106.540145)
(xy 132.990692 106.533948)
(xy 132.967056 106.5305)
(xy 132.8195 106.5305)
(xy 132.761309 106.511593)
(xy 132.725345 106.462093)
(xy 132.7205 106.4315)
(xy 132.7205 104.633303)
(xy 132.739407 104.575112)
(xy 132.788907 104.539148)
(xy 132.850093 104.539148)
(xy 132.883664 104.557911)
(xy 132.93803 104.60418)
(xy 132.942253 104.60654)
(xy 132.942257 104.606543)
(xy 132.990139 104.633303)
(xy 133.1028 104.696267)
(xy 133.150308 104.711703)
(xy 133.277718 104.753101)
(xy 133.277721 104.753102)
(xy 133.282317 104.754595)
(xy 133.287113 104.755167)
(xy 133.287118 104.755168)
(xy 133.376031 104.76577)
(xy 133.469745 104.776945)
(xy 133.474567 104.776574)
(xy 133.47457 104.776574)
(xy 133.536278 104.771826)
(xy 133.657945 104.762464)
(xy 133.839748 104.711703)
(xy 134.008229 104.626598)
(xy 134.15697 104.510388)
(xy 134.160132 104.506725)
(xy 134.160137 104.50672)
(xy 134.277141 104.371169)
(xy 134.277143 104.371166)
(xy 134.280307 104.367501)
(xy 134.280651 104.366895)
(xy 134.328594 104.331028)
(xy 134.389774 104.330173)
(xy 134.439772 104.365441)
(xy 134.4595 104.424746)
(xy 134.4595 106.500501)
(xy 134.440593 106.558692)
(xy 134.394767 106.593382)
(xy 134.288949 106.63242)
(xy 134.28505 106.63474)
(xy 134.285045 106.634742)
(xy 134.12077 106.732475)
(xy 134.116864 106.734799)
(xy 134.113449 106.737793)
(xy 134.113446 106.737796)
(xy 134.093811 106.755016)
(xy 133.966319 106.866824)
(xy 133.842354 107.024073)
(xy 133.749121 107.20128)
(xy 133.689742 107.39251)
(xy 133.666207 107.591358)
(xy 133.679303 107.791166)
(xy 133.728592 107.985241)
(xy 133.812423 108.167084)
(xy 133.927988 108.330605)
(xy 134.071418 108.470328)