-
Notifications
You must be signed in to change notification settings - Fork 1
/
FlexROM_200_M13.kicad_pcb
8818 lines (8801 loc) · 335 KB
/
FlexROM_200_M13.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 "FlexROM_200_M13")
(date "2022-11-30")
(rev "002")
(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 127 101.6)
(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 "/A12")
(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 "/A3")
(net 12 "/A10")
(net 13 "/A2")
(net 14 "/~{OE}")
(net 15 "/A1")
(net 16 "/A11")
(net 17 "/A0")
(net 18 "/A9")
(net 19 "/D0")
(net 20 "/A8")
(net 21 "/D1")
(net 22 "/D2")
(net 23 "/~{OE0}")
(net 24 "/~{WE}")
(net 25 "GND")
(net 26 "VCC")
(net 27 "/~{OE0}_bus")
(net 28 "/OE1")
(net 29 "/~{CS}")
(net 30 "/OE0")
(net 31 "unconnected-(J1-Pad1)")
(net 32 "unconnected-(J1-Pad26)")
(net 33 "/OE1{slash}~{WE}")
(footprint "000_LOCAL:DIP28_0.6_pcb" (layer "F.Cu")
(tedit 616C066F) (tstamp 00000000-0000-0000-0000-00005e369e74)
(at 127 101.6 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" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5c209e")
(attr through_hole)
(fp_text reference "J1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4959cf9-12df-44fb-b7c8-50be987847fb)
)
(fp_text value "HN61364_TANDY_200_M13" (at -1.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98346b90-56bf-410b-9e1c-71bb8d929c84)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d2ef6df-e12d-4efd-8754-0111469d98bd)
)
(fp_line (start -8.255 -17.78) (end -1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 0412ab52-c3b7-4688-9ea6-5f85ba676d4b))
(fp_line (start 8.89 17.145) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 45252e68-09e9-4ad2-8729-1daf32233130))
(fp_line (start 1.524 -17.78) (end 8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 7b7bda2f-737c-4a61-a5ee-8f3920cf5a4e))
(fp_line (start -8.255 17.78) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 84013bea-ce6f-411c-b68d-bbc1de9cbafb))
(fp_line (start -8.89 -17.145) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp f14a9861-7b9a-4f08-9f36-413ae3f93aa7))
(fp_arc (start 1.27 -17.526) (mid 1.344395 -17.705605) (end 1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 03e8233a-6b40-4e4d-862e-3501add6b000))
(fp_arc (start 8.89 17.145) (mid 8.704013 17.594013) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 2d43bfa6-40c1-49f6-b2bc-7c15885843bc))
(fp_arc (start -8.89 -17.145) (mid -8.704013 -17.594013) (end -8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 3f00999b-f29d-4162-8582-63da15ab6c15))
(fp_arc (start -8.255 17.78) (mid -8.704013 17.594013) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 7eb2c6b5-2103-4fdc-a1b1-e5a63ea054ac))
(fp_arc (start -1.524 -17.78) (mid -1.344395 -17.705605) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp 7f33e39f-944b-4a0a-b8d1-d089b65d32c7))
(fp_arc (start 1.27 -17.526) (mid 0 -16.256) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp a068b0fb-2d8d-4294-910c-54394048ea6d))
(fp_arc (start 8.255 -17.78) (mid 8.704013 -17.594013) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp f6a990d5-86b7-4f92-91b3-c5343b8a70b7))
(pad "1" thru_hole roundrect (at -7.62 -16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask) (roundrect_rratio 0.1)
(net 31 "unconnected-(J1-Pad1)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp a826d6bd-fcbb-4567-a27e-880890b9f224))
(pad "2" thru_hole circle (at -7.62 -13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "/A12") (pinfunction "A12") (pintype "input") (tstamp 0fa85c80-7abe-49fc-938c-5d7cec631657))
(pad "3" thru_hole circle (at -7.62 -11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 4 "/A7") (pinfunction "A7") (pintype "input") (tstamp c7c1415d-710a-4f3f-b977-a78f3e178dcf))
(pad "4" thru_hole circle (at -7.62 -8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 6 "/A6") (pinfunction "A6") (pintype "input") (tstamp 65457b5d-2208-42b1-985b-5c803dbb6c43))
(pad "5" thru_hole circle (at -7.62 -6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 8 "/A5") (pinfunction "A5") (pintype "input") (tstamp 02447fc1-6a30-4cdd-aaa2-e47448c7488f))
(pad "6" thru_hole circle (at -7.62 -3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp a4bc6829-ac55-4f42-86ad-a94426a96cdc))
(pad "7" thru_hole circle (at -7.62 -1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 11 "/A3") (pinfunction "A3") (pintype "input") (tstamp ea43a02b-cefa-45d2-a54f-cf8aa7b6b7f3))
(pad "8" thru_hole circle (at -7.62 1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 13 "/A2") (pinfunction "A2") (pintype "input") (tstamp dbefa6d6-8c22-4ab5-9ec6-2af28e16d9ef))
(pad "9" thru_hole circle (at -7.62 3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 15 "/A1") (pinfunction "A1") (pintype "input") (tstamp 0c08bcf4-9702-48a0-aa37-dae6e9692dea))
(pad "10" thru_hole circle (at -7.62 6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 3a90af2d-8efb-4b00-a068-8f7326f77861))
(pad "11" thru_hole circle (at -7.62 8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 19 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp be635e13-fc25-4511-a39a-aa0897e72539))
(pad "12" thru_hole circle (at -7.62 11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 21 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp 29719ae2-c9b3-40d6-9966-92e05a2c3659))
(pad "13" thru_hole circle (at -7.62 13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 22 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp a0371f78-fbff-4632-9094-3dffbd4726b7))
(pad "14" thru_hole circle (at -7.62 16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 25 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 76084905-3163-43c5-9483-7f673de1ba88))
(pad "15" thru_hole circle (at 7.62 16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 1 "/D3") (pinfunction "D3") (pintype "tri_state") (tstamp 08bcbb5c-b8d2-414e-a24d-0b36b0d5eb0c))
(pad "16" thru_hole circle (at 7.62 13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 3 "/D4") (pinfunction "D4") (pintype "tri_state") (tstamp aa8b21d0-ab73-4101-9d3f-bad2f618fbf8))
(pad "17" thru_hole circle (at 7.62 11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 5 "/D5") (pinfunction "D5") (pintype "tri_state") (tstamp ee1b436d-148f-4a50-91f9-73f8aed261e6))
(pad "18" thru_hole circle (at 7.62 8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 7 "/D6") (pinfunction "D6") (pintype "tri_state") (tstamp c7ac3877-a453-47a6-946c-5f58d34bd074))
(pad "19" thru_hole circle (at 7.62 6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 9 "/D7") (pinfunction "D7") (pintype "tri_state") (tstamp 24e66d38-9a96-4ef6-ad9f-f8f936c612e3))
(pad "20" thru_hole circle (at 7.62 3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 29 "/~{CS}") (pinfunction "~{CS}") (pintype "input") (tstamp d3baf260-763e-4683-8e4b-890a9a6aa376))
(pad "21" thru_hole circle (at 7.62 1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 12 "/A10") (pinfunction "A10") (pintype "input") (tstamp ed362e7a-fac9-45b0-bcd5-351b97d8a0d6))
(pad "22" thru_hole circle (at 7.62 -1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 27 "/~{OE0}_bus") (pinfunction "~{OE0}") (pintype "input") (tstamp 70d89332-e648-4eb9-930f-6e8f499eedf8))
(pad "23" thru_hole circle (at 7.62 -3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 16 "/A11") (pinfunction "A11") (pintype "input") (tstamp d346fc71-7414-4608-a756-a3b0bb179862))
(pad "24" thru_hole circle (at 7.62 -6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 18 "/A9") (pinfunction "A9") (pintype "input") (tstamp 1a9979e8-dc0e-49e0-9585-025cf26c4de4))
(pad "25" thru_hole circle (at 7.62 -8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 20 "/A8") (pinfunction "A8") (pintype "input") (tstamp a1933c93-d92c-4fb7-83bd-5b5cdb80522d))
(pad "26" thru_hole circle (at 7.62 -11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 32 "unconnected-(J1-Pad26)") (pinfunction "~{OE2}") (pintype "input+no_connect") (tstamp 05dbd26d-b8ac-496c-a7fb-c2a1aa950815))
(pad "27" thru_hole circle (at 7.62 -13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 33 "/OE1{slash}~{WE}") (pinfunction "OE1") (pintype "input") (tstamp f02b74f4-52fe-4eb7-bbeb-b96c4096f85f))
(pad "28" thru_hole circle (at 7.62 -16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 26 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 09dc9127-fffd-4f60-a889-2e1926d4212d))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/DIP28_legs_solder.step"
(offset (xyz -7.62 16.51 -1.7399))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/DIP28_legs.step_"
(offset (xyz -7.62 16.51 -1.6002))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tedit 5F9E65BE) (tstamp 00000000-0000-0000-0000-00005f9fca13)
(at 116.75 105.1 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/06941a7e-c338-4eee-b9ef-b6cab887e65e")
(attr smd)
(fp_text reference "R1" (at 2 -0.015 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 63deaba7-6188-49be-898b-021f7969ce47)
)
(fp_text value "47K" (at 0 1.75 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b73d496d-411b-4da4-8318-14cd14968c8c)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 61804d63-73ba-4897-9a2e-d5fe4bc3f6d0)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 329a530c-85a1-4a59-8334-e776f826c5a9))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 8883283a-079f-40a2-a637-2a2ed5cfe819))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 08670d80-68a8-49d8-a186-dc384636bc50))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 8b85831f-b07c-4063-bca1-40154c90aaa9))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp b4e9905a-c347-405e-a29e-aa43470922e0))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp e9ba043b-7bab-43aa-8f2a-de837054080e))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 5ba17d60-8475-48bd-bc96-2ad7014eba7c))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 7fc75643-71d5-4d6a-bc13-fae8029f01eb))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp bc84fbf9-a23e-49ac-8516-5b8136df5a0b))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp c2e6295a-3987-476d-a48c-03c75f2d75d4))
(pad "1" smd roundrect locked (at -0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 23 "/~{OE0}") (pintype "passive") (tstamp 5978fbe8-88f9-40bc-b6dd-06bd8baafe91))
(pad "2" smd roundrect locked (at 0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "VCC") (pintype "passive") (tstamp 7185665e-5ade-41ae-a08d-be09ed758624))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tedit 5F9E65BE) (tstamp 00000000-0000-0000-0000-00005f9fca43)
(at 116.75 101.6 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/a9781b87-76ef-471b-9307-47ed3755d272")
(attr smd)
(fp_text reference "R2" (at 0 1.5 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp ff213fdf-ced9-4927-aa94-e7ca3157232a)
)
(fp_text value "47K" (at 0 1.75 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e645618e-79bd-407f-8863-d33d1218e10a)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp be3698a5-ac0c-46a8-85f4-2a445ffc749b)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 1aa1f903-6ee4-4f0a-bd1c-de756da7af1b))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 77eab665-eb64-41c3-84f2-0e38955911d6))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 265bfc58-45eb-4cf1-b5eb-43550c3a8ecb))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 568bab44-c33e-4c93-83d0-b05928e617c0))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 9610d228-58e7-4a32-9b4a-121fcec7f34a))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp d6d7cb44-4fa1-47f0-aa7a-c133ceef788b))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 03a220cb-f006-4311-b2fc-449b1d340b78))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 6a7b51ff-12c4-49e0-8a88-676b4cb451af))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp b7dbd2e2-c2e0-4995-9549-1ae6f0438ac0))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp ecc40daa-015c-45ec-92ea-074a1be7f7ce))
(pad "1" smd roundrect locked (at -0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "VCC") (pintype "passive") (tstamp 2ca05278-6df5-4c15-b4c0-86e580d144e1))
(pad "2" smd roundrect locked (at 0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 24 "/~{WE}") (pintype "passive") (tstamp 7ebe23f2-8ec0-423c-83cc-8fdde8ad1b1c))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:SOIC28W" (layer "F.Cu")
(tedit 5E621A1B) (tstamp 00000000-0000-0000-0000-00005fa06128)
(at 127 101.6 90)
(descr "28-Lead Plastic Small Outline (SO) - Wide, 7.50 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "SOIC 1.27")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5b130a")
(attr smd)
(fp_text reference "U1" (at 1.4 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c17b704c-42cb-42e0-a428-f6ee3f7d3653)
)
(fp_text value "28C64 / FM16W08" (at -0.0003 -0.0002) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 095017c5-5795-4e76-a7ae-25a8dcad0866)
)
(fp_text user "${REFERENCE}" (at -0.01 1.61 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8169e491-5d5d-47da-80f2-3b19eaf553bb)
)
(fp_line (start 3.875 9.125) (end 3.875 8.78) (layer "F.SilkS") (width 0.15) (tstamp 1611a32c-5553-498a-9ec2-71f48bca5737))
(fp_line (start -3.875 -9.125) (end 3.875 -9.125) (layer "F.SilkS") (width 0.15) (tstamp 678d3f88-6c1d-4859-850c-694e2da4a419))
(fp_line (start -3.875 9.125) (end 3.875 9.125) (layer "F.SilkS") (width 0.15) (tstamp 7950b0f2-5d64-4826-9e94-670a2f839338))
(fp_line (start -3.875 9.125) (end -3.875 8.78) (layer "F.SilkS") (width 0.15) (tstamp b789266f-89a3-4f8a-b7c7-3a4803303b72))
(fp_line (start -3.875 -9.125) (end -3.875 -8.78) (layer "F.SilkS") (width 0.15) (tstamp cfc0e1d1-a0d4-4445-a47a-51701f1f1c4e))
(fp_line (start 3.875 -9.125) (end 3.875 -8.78) (layer "F.SilkS") (width 0.15) (tstamp f51bb2fc-9650-4586-b32f-bcd9efa66bf6))
(fp_circle (center -2.54 -7.747) (end -2.3368 -7.747) (layer "F.SilkS") (width 0.4064) (fill none) (tstamp 554f842d-49fe-496c-bed7-4394f2e71228))
(fp_line (start -5.95 -9.3) (end 5.95 -9.3) (layer "F.CrtYd") (width 0.05) (tstamp 0dfdfdfc-4395-4724-a70f-8bbfdeb803ff))
(fp_line (start -5.95 -9.3) (end -5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp 6fa165f0-ba72-4f22-a26a-ebcbf7458d43))
(fp_line (start 5.95 -9.3) (end 5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp cb89d73e-b216-476f-84c3-5f9a54eb3483))
(fp_line (start -5.95 9.3) (end 5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp dc82ce56-27ab-453b-84c8-7fa1221779ac))
(fp_line (start -3.75 8.95) (end -3.75 -7.95) (layer "F.Fab") (width 0.15) (tstamp 155bad14-a7ed-461c-8a20-f7b30013daf5))
(fp_line (start -3.75 -7.95) (end -2.75 -8.95) (layer "F.Fab") (width 0.15) (tstamp 1e046411-ec1b-463b-bf85-6a7d558c093f))
(fp_line (start 3.75 -8.95) (end 3.75 8.95) (layer "F.Fab") (width 0.15) (tstamp 8b42d49c-439e-4626-9856-d691a7a53068))
(fp_line (start -2.75 -8.95) (end 3.75 -8.95) (layer "F.Fab") (width 0.15) (tstamp aec29e02-2ce8-445d-8e67-056920184c2b))
(fp_line (start 3.75 8.95) (end -3.75 8.95) (layer "F.Fab") (width 0.15) (tstamp d676467d-f0b5-4c09-8712-5051909f7cc2))
(pad "1" smd roundrect locked (at -4.7 -8.255 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "GND") (pinfunction "NC") (pintype "passive") (tstamp 7af4072d-b45f-4ade-b3b1-8e793ea85e46))
(pad "2" smd roundrect locked (at -4.7 -6.985 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/A12") (pinfunction "A12") (pintype "input") (tstamp 83fdccad-3a07-4ea9-a6dc-17577dca973c))
(pad "3" smd roundrect locked (at -4.7 -5.715 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/A7") (pinfunction "A7") (pintype "input") (tstamp c76f1e0c-cc85-4b93-9be9-c5513869922d))
(pad "4" smd roundrect locked (at -4.7 -4.445 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/A6") (pinfunction "A6") (pintype "input") (tstamp d451dfcf-d494-477d-9de2-06ef2302806a))
(pad "5" smd roundrect locked (at -4.7 -3.175 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A5") (pinfunction "A5") (pintype "input") (tstamp 295c2026-0bb2-413a-9934-edfaf8de58b8))
(pad "6" smd roundrect locked (at -4.7 -1.905 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp 9393800b-c344-4ed5-9bd3-993518a8a63d))
(pad "7" smd roundrect locked (at -4.7 -0.635 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/A3") (pinfunction "A3") (pintype "input") (tstamp 909ec5fb-41ee-47a1-b07a-85da6dd448b4))
(pad "8" smd roundrect locked (at -4.7 0.635 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/A2") (pinfunction "A2") (pintype "input") (tstamp 4d1bc3b3-922a-483d-949e-89a54b0d2472))
(pad "9" smd roundrect locked (at -4.7 1.905 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/A1") (pinfunction "A1") (pintype "input") (tstamp 4f889092-9439-4fc3-b7d2-3038b279da09))
(pad "10" smd roundrect locked (at -4.7 3.175 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 77e4c6e3-cd8c-4082-a796-e8d0b1dd1281))
(pad "11" smd roundrect locked (at -4.7 4.445 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp 8dca0e19-a733-48ea-9567-48630111968f))
(pad "12" smd roundrect locked (at -4.7 5.715 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp a948a781-13aa-4ffb-b885-0c3fcae246bc))
(pad "13" smd roundrect locked (at -4.7 6.985 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp 86cf2bc0-ced5-4114-b3fb-5514a7b49871))
(pad "14" smd roundrect locked (at -4.7 8.255 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5bb511c3-b153-433b-996f-a088cfdace85))
(pad "15" smd roundrect locked (at 4.7 8.255 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/D3") (pinfunction "D3") (pintype "tri_state") (tstamp ff5a8644-c784-454a-9f52-e94216783f1c))
(pad "16" smd roundrect locked (at 4.7 6.985 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/D4") (pinfunction "D4") (pintype "tri_state") (tstamp cd7cc437-85a2-4f03-8657-eeb1405b0270))
(pad "17" smd roundrect locked (at 4.7 5.715 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/D5") (pinfunction "D5") (pintype "tri_state") (tstamp c45c66d0-aa68-4def-a48d-f213357bb4ad))
(pad "18" smd roundrect locked (at 4.7 4.445 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/D6") (pinfunction "D6") (pintype "tri_state") (tstamp 4475fadc-40c3-4c48-8a96-e51ada438e92))
(pad "19" smd roundrect locked (at 4.7 3.175 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/D7") (pinfunction "D7") (pintype "tri_state") (tstamp 4f0c60a4-1a67-40dc-9b62-81a28fff7521))
(pad "20" smd roundrect locked (at 4.7 1.905 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/~{CS}") (pinfunction "~{CE}") (pintype "input") (tstamp c9060513-3344-4bcb-9ead-3305c98a91b3))
(pad "21" smd roundrect locked (at 4.7 0.635 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A10") (pinfunction "A10") (pintype "input") (tstamp f30b88cd-16f9-408c-8444-dfd7b5efa982))
(pad "22" smd roundrect locked (at 4.7 -0.635 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp a2f83446-ef11-4bab-8f6d-f6570d16a980))
(pad "23" smd roundrect locked (at 4.7 -1.905 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A11") (pinfunction "A11") (pintype "input") (tstamp 2f3493b5-94de-47b3-a88d-2428835419f7))
(pad "24" smd roundrect locked (at 4.7 -3.175 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A9") (pinfunction "A9") (pintype "input") (tstamp 4b33f211-df2a-4388-8516-59b8d8bd8c4c))
(pad "25" smd roundrect locked (at 4.7 -4.445 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/A8") (pinfunction "A8") (pintype "input") (tstamp 4aec0e9e-31a4-458d-888c-44dfb1e06d8c))
(pad "26" smd roundrect locked (at 4.7 -5.715 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "GND") (pinfunction "NC") (pintype "passive") (tstamp 6d531206-d710-4847-b698-f79211ad294c))
(pad "27" smd roundrect locked (at 4.7 -6.985 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp d3ff2526-ade1-4635-8662-e0763b2af168))
(pad "28" smd roundrect locked (at 4.7 -8.255 90) (size 1.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 78edcb0d-4d57-48cd-895e-216bef479722))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/SOIC28W.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tedit 5F9E65BE) (tstamp 0c67ce68-0289-4139-b826-7e3a92653c83)
(at 142.8 98.55 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/16b353ff-3dca-4268-beaf-25f62a734a60")
(attr smd)
(fp_text reference "R3" (at 1.95 0) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 127b2800-793f-4747-b8b0-c293d33d5b69)
)
(fp_text value "47K" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ed8573d-8080-410a-8a79-90c215b3671a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 09432059-9477-419f-9c66-db98b52909ac)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 10a1bbe2-7683-4871-ba5d-a9356a0b02aa))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 996dab37-49f7-4642-9c34-d9ce7bad521a))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 49ca9fdc-d1a8-4b2f-8926-c916c9ec5cb8))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 69919d6b-717f-4e7c-b3ae-59dccd68b674))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 76712196-e830-4645-84ec-4d57edb20504))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp d7da4ca6-5c29-4725-8040-2f89bccb5932))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 2ca87473-17b0-4027-ad4c-551aac622a10))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 32724b9f-a795-4cc4-b141-bfd077f82356))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 7b08cb9b-220f-4042-ad44-40cb90f2bf69))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp ff9cde92-3bee-441c-81c2-7f468de8869d))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 28 "/OE1") (pintype "passive") (tstamp 73d4ebf9-23cb-40cd-bb62-e98ee69f02d6))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "VCC") (pintype "passive") (tstamp 13a69ee7-ee7d-43b8-ac6c-5ad10cd4d796))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:SSOP-8_2.95x2.8x0.65" (layer "F.Cu")
(tedit 5A02F25C) (tstamp 7d0efb14-35d7-40aa-96f5-408b9024bd0a)
(at 139.2 98.55)
(descr "SSOP-8 2.9 x2.8mm Pitch 0.65mm")
(tags "SSOP-8 2.95x2.8mm Pitch 0.65mm")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/8ba8e3e8-5447-4606-a642-cce6b66df7c9")
(attr smd)
(fp_text reference "U2" (at 0 0.254) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e0353c1-c8e8-480d-a81b-a22ffab4235b)
)
(fp_text value "74LVC2G00" (at 0 2.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94f05a84-bddb-43dc-b87c-d03c6c011331)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp cdcc9e27-290b-42a2-a16b-6a6a8b4ec48a)
)
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 08fb5cd6-fe41-472a-9502-797f82c9f3ff))
(fp_line (start 1.5 -1.5) (end -2.25 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 30c9839e-6059-43a6-8893-90e52f9be2e6))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.SilkS") (width 0.12) (tstamp 42b8ab61-0db1-4a5d-90f7-13eee2c6b8d0))
(fp_line (start 1.5 -1.25) (end 1.5 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 83b97db3-2b94-43a6-a9b3-1da81d05785d))
(fp_line (start 1.5 1.5) (end 1.5 1.25) (layer "F.SilkS") (width 0.12) (tstamp a759a653-bbef-48cc-8ce0-3eb028c0cf88))
(fp_line (start -1.5 1.5) (end -1.5 1.25) (layer "F.SilkS") (width 0.12) (tstamp df5fb71e-4994-416c-83b7-46f51d51ea3c))
(fp_circle (center -0.889 -1.016) (end -0.709395 -1.016) (layer "F.SilkS") (width 0.2) (fill solid) (tstamp 3d725723-81bb-4b71-849b-37d7b202b298))
(fp_line (start -2.6 1.65) (end -2.6 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 2f1facef-7883-4142-aee8-2ced369c70d9))
(fp_line (start 2.6 -1.65) (end 2.6 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 703fcb88-f859-4b84-b0d3-60b8e8d01a06))
(fp_line (start -2.6 -1.65) (end 2.6 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 83e0a6e3-55c7-4031-9c6f-e57a8cac46ee))
(fp_line (start 2.6 1.65) (end -2.6 1.65) (layer "F.CrtYd") (width 0.05) (tstamp a562a833-5982-4562-b451-aa2a7ab51641))
(fp_line (start -1.475 1.4) (end -1.475 -0.7) (layer "F.Fab") (width 0.1) (tstamp 004cb341-9035-4471-89e6-a4efa51b6cfe))
(fp_line (start -0.475 -1.4) (end 1.475 -1.4) (layer "F.Fab") (width 0.1) (tstamp 39b4d2e2-fde2-4ddd-945a-3ce2a247ba30))
(fp_line (start 1.475 -1.4) (end 1.475 1.4) (layer "F.Fab") (width 0.1) (tstamp 8706a6c5-8e1a-4810-afb1-86b281393b82))
(fp_line (start -0.475 -1.4) (end -1.475 -0.7) (layer "F.Fab") (width 0.1) (tstamp d5359cb3-76f4-4168-a26b-b0d3ce0c16e2))
(fp_line (start 1.475 1.4) (end -1.475 1.4) (layer "F.Fab") (width 0.1) (tstamp fd3f3984-bb1e-4961-9fcf-2c28bed652f4))
(pad "1" smd roundrect (at -1.8 -0.975 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/~{OE0}") (pintype "input") (tstamp ce014065-8020-4fc4-84b9-b547daf53684))
(pad "2" smd roundrect (at -1.8 -0.325 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/~{OE0}") (pintype "input") (tstamp c38503b6-4b23-43b9-a9a6-44dd34490299))
(pad "3" smd roundrect (at -1.8 0.325 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/~{OE}") (pintype "output") (tstamp 7859f37d-6262-4327-b44c-fc9a9f9c548b))
(pad "4" smd roundrect (at -1.8 0.975 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2d68dd42-df79-4a97-b032-6c4be4cf1da4))
(pad "5" smd roundrect (at 1.8 0.975 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/OE1") (pintype "input") (tstamp 03e2ffe3-5fc4-4d9d-91b9-db27b5e97a3a))
(pad "6" smd roundrect (at 1.8 0.325 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/OE0") (pintype "input") (tstamp aeb65c8a-476d-4eec-b790-ccff3e64c529))
(pad "7" smd roundrect (at 1.8 -0.325 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/OE0") (pintype "output") (tstamp 5c1a445d-1c85-47eb-8729-6722fc825c25))
(pad "8" smd roundrect (at 1.8 -0.975 270) (size 0.4 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 88bdc880-bc33-469d-b25f-3175e386df7d))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/SSOP-8_2.95x2.8mm_P0.65mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:C_0805" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 9745923e-b3f3-4f78-9da8-cbeee6cd8cf3)
(at 116.75 98.1 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/7519e5dc-3348-4291-a04a-daca03823562")
(attr smd)
(fp_text reference "C1" (at 2 0) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 679b98fb-c570-4a44-a709-d4c4189a41e7)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3398501-6706-45f0-8e97-f409e0afb899)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0aa6229c-6c46-4421-ab49-195bd9ef103e)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 09af5c81-972f-442d-b472-efdf8454f940))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 76ee54de-5d9a-40fb-aac2-2cad7a89057f))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 03136217-d6e7-49c6-bb3d-f10bac8200b4))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 46bf4f6f-3785-4899-aa5b-114f4db44e9e))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 4e1a4e82-76c3-431f-bf82-029c047954a3))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b04d90bb-9d20-42c5-b23c-89ecdc48a69b))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 1e5a5e55-ea54-4f8f-ba02-70ea78d936d9))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 66b0484d-56fd-40fc-9876-c73eb6f21092))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp adcde77f-96d9-4d4b-8f3b-d750608657fa))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b0939d51-0fbc-421e-b2b2-edd5fa09a185))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "VCC") (pintype "passive") (tstamp 2bd252e0-22a7-48f0-89b9-00df16f8c359))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "GND") (pintype "passive") (tstamp d77c222c-f29c-4049-9cc3-da90250e7e15))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:Pin_Header_Angled_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5F9E6982) (tstamp b6e5ecfa-8725-4acb-8195-6a2ba62d6a18)
(at 114.3 95.885 -90)
(descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/ed26c246-1f18-4f4f-b7b5-de0e03375935")
(attr through_hole)
(fp_text reference "JP1" (at 2.77 1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 748cab4a-f09e-405c-98c9-77cfc76798b1)
)
(fp_text value "Jumper_2_bridged" (at 4.385 4.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac863642-57b0-4bfd-bf69-71c84133be63)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb970df8-c4f8-403b-8bca-0272c1511d56)
)
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp 026fac93-ab19-46f8-ac6e-bf11d39a1caf))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 05545dd3-989c-4792-a557-b411721eff77))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 068f2c21-ad56-493d-9af3-ba49ab2ced39))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 0b47a15e-c729-4c86-b49c-f5e35f391057))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 36dd1674-6150-410b-a7a9-d616d61bfd1c))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 4fc619d4-d3af-4b81-a332-c5ead8b2f25d))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 655bc174-e7e2-4306-8fe5-39cc2eacac05))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 798efd69-6385-4979-98a4-06b147478184))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 83dcf3eb-f543-461b-af52-f2cdfeb75464))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp 8979b77f-22c4-4d3e-b4f5-fc3f897209bc))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 97a6361d-9506-4e53-b408-9c4334b525a2))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp cf41000a-0f80-4121-9e36-4278179a493f))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp d302c546-656e-419e-8dc3-593474445174))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp db87bb5e-a38c-4fa1-b228-d49298eebf97))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp f07c207b-d11d-4223-aaa3-909c76253a1f))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 4132294c-2251-40e7-bf00-a1afdf749ec1))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 44c13003-72a4-4ae0-b73b-22880285968e))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 543528d6-c629-42f6-8cba-42af1afb3675))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b4a527ca-3cd5-4b9d-9328-7275be26506b))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 17d84fec-43a5-4eef-b3b1-607da359ed57))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 3f1bf657-1542-43fe-b53b-421a8a0d039a))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 49c2ff45-314a-4df6-a260-c08044f47d5f))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4fd2b652-3e77-4050-bfa4-823a8525ddd9))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 6148d4c8-de79-4224-a2f6-41e9f196fe38))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 619ade73-c239-477c-8c0d-abb26ad41407))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 632e6910-9dca-484a-a58f-765d539382f4))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 6f70937d-b4e5-4de4-93ea-a006f4e8ef7a))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 74d6094f-4cf2-4d89-a7df-e9a074888cda))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 7aab5410-ab37-450e-888f-605c8c3d1926))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp 838e58a3-478e-4839-b89d-0f0dcc0c288a))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp 8bd9c234-2a72-4b19-a0a5-fe42680d93c7))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp bb1f765f-0633-4302-8e37-a030ebeddaf3))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp bce6cd4b-b056-4bf5-bdb2-45f864fbf5f7))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp cfd32146-f128-480f-ad5d-ec04d949188c))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp e61f186d-a001-4666-bc3b-8e5fa0e2a626))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp fbc6f63b-182d-498e-8444-2e94efc82f95))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 23 "/~{OE0}") (pinfunction "A") (pintype "passive") (tstamp 07043e65-1d3a-4b20-af74-cf7e44a3c85b))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 27 "/~{OE0}_bus") (pinfunction "B") (pintype "passive") (tstamp 6f3b908a-8e79-48d6-8e3a-9af9aed53372))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:PinHeader_1x03_P2.00mm_Horizontal" (layer "F.Cu")
(tedit 5F9FCD4A) (tstamp ee0554db-3fb7-4a09-837e-26d8216fc26a)
(at 136.9 101.4)
(descr "Through hole angled pin header, 1x03, 2.00mm pitch, 4.2mm pin length, single row")
(tags "Through hole angled pin header THT 1x03 2.00mm single row")
(property "Sheetfile" "FlexROM_200_M13.kicad_sch")
(property "Sheetname" "")
(path "/2094680d-12ef-41ee-8f08-aa3544b37d37")
(attr through_hole)
(fp_text reference "JP2" (at 2.272 1.995 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e61bd2c-2013-4538-ad22-d74636181b6b)
)
(fp_text value "Jumper_3_Bridged23" (at -1.853 1.325 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1aee895-5b34-4142-b916-d84cb859c598)
)
(fp_text user "${REFERENCE}" (at 2.25 2 90) (layer "F.Fab")
(effects (font (size 0.9 0.9) (thickness 0.135)))
(tstamp f4a0445f-1e48-4d09-a552-18bef844835f)
)
(fp_line (start 0.882114 3.69) (end 1.44 3.69) (layer "F.SilkS") (width 0.12) (tstamp 0371a208-64c4-4b45-9ab9-b65a7aea2521))
(fp_line (start 0.935 -0.31) (end 1.44 -0.31) (layer "F.SilkS") (width 0.12) (tstamp 08734fef-5c63-4ee5-8726-66005c9b39b1))
(fp_line (start 0.882114 4.31) (end 1.44 4.31) (layer "F.SilkS") (width 0.12) (tstamp 240b51e2-a365-4d35-bac7-11ff32b1fe7c))
(fp_line (start 7.26 0.31) (end 3.06 0.31) (layer "F.SilkS") (width 0.12) (tstamp 2891b63c-0c9c-4555-8ae3-edb7a80c3870))
(fp_line (start 3.06 5) (end 3.06 -1.06) (layer "F.SilkS") (width 0.12) (tstamp 2eeec117-44c0-4429-8e5a-f6c4c6fc23c5))
(fp_line (start 7.26 1.69) (end 7.26 2.31) (layer "F.SilkS") (width 0.12) (tstamp 34c62ca8-2ad2-43fc-b209-892c3a40186e))
(fp_line (start 0.882114 1.69) (end 1.44 1.69) (layer "F.SilkS") (width 0.12) (tstamp 54ac2cb8-2b10-4c45-a5da-ea1a8065e36a))
(fp_line (start 1.44 -1.06) (end 1.44 5) (layer "F.SilkS") (width 0.12) (tstamp 680b1615-6f03-4325-8727-43bea0c775d8))
(fp_line (start 3.06 -1.06) (end 1.44 -1.06) (layer "F.SilkS") (width 0.12) (tstamp 755dc10c-3caf-4faa-9134-fe5817ac7fb1))
(fp_line (start 3.06 -0.31) (end 7.26 -0.31) (layer "F.SilkS") (width 0.12) (tstamp 81b536c0-e74d-456c-9111-f0416c088a3a))
(fp_line (start 1.44 5) (end 3.06 5) (layer "F.SilkS") (width 0.12) (tstamp 82d5731f-7017-4151-8fa4-5c0162be01ef))
(fp_line (start 7.26 4.31) (end 3.06 4.31) (layer "F.SilkS") (width 0.12) (tstamp 83246af0-7ffc-4a6c-b743-27ea6d7452c4))
(fp_line (start 3.06 3.69) (end 7.26 3.69) (layer "F.SilkS") (width 0.12) (tstamp 847e0dfe-6fd1-4644-ad59-8b4290306131))
(fp_line (start 0.882114 2.31) (end 1.44 2.31) (layer "F.SilkS") (width 0.12) (tstamp 9cd8fb2d-7aa9-48bd-abcc-d5d24eb3fd54))
(fp_line (start 7.26 2.31) (end 3.06 2.31) (layer "F.SilkS") (width 0.12) (tstamp a87e26df-9b7a-4e16-b64e-9f9641701d4e))
(fp_line (start 7.26 3.69) (end 7.26 4.31) (layer "F.SilkS") (width 0.12) (tstamp ba23748c-d69d-466f-b02c-310507afefbf))
(fp_line (start 1.44 1) (end 3.06 1) (layer "F.SilkS") (width 0.12) (tstamp c8c5a72f-5285-4bd8-b35f-c93a1b2299ee))
(fp_line (start 1.44 3) (end 3.06 3) (layer "F.SilkS") (width 0.12) (tstamp db4db11e-3575-4e09-b259-812d1fc1c419))
(fp_line (start 3.06 1.69) (end 7.26 1.69) (layer "F.SilkS") (width 0.12) (tstamp dca5a36d-686b-4184-8249-ab34bf0162f9))
(fp_line (start 7.26 -0.31) (end 7.26 0.31) (layer "F.SilkS") (width 0.12) (tstamp e3c24b45-75dc-4746-a7c7-b409e07dc730))
(fp_line (start 0.935 0.31) (end 1.44 0.31) (layer "F.SilkS") (width 0.12) (tstamp ea410887-0465-4e99-b78a-d1985e80fdcd))
(fp_line (start 7.7 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3f1265df-904b-4004-834b-59bdaa6b516c))
(fp_line (start -1.5 -1.5) (end -1.5 5.5) (layer "F.CrtYd") (width 0.05) (tstamp 43849e18-3e98-4994-bfda-2b35897e2c4c))
(fp_line (start 7.7 5.5) (end 7.7 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9499e3c8-d2de-45c2-9c71-3b8b84d44e68))
(fp_line (start -1.5 5.5) (end 7.7 5.5) (layer "F.CrtYd") (width 0.05) (tstamp bec73519-35ea-440f-bb42-2e5e3a57c1cc))
(fp_line (start 1.5 -0.625) (end 1.875 -1) (layer "F.Fab") (width 0.1) (tstamp 00483436-462e-4ab0-99ec-31ccd860733f))
(fp_line (start -0.25 1.75) (end 1.5 1.75) (layer "F.Fab") (width 0.1) (tstamp 01337e69-560c-4c3f-9623-ddf98564fd18))
(fp_line (start -0.25 1.75) (end -0.25 2.25) (layer "F.Fab") (width 0.1) (tstamp 06bb1578-153a-4d90-b812-c8785fa52389))
(fp_line (start 3 0.25) (end 7.2 0.25) (layer "F.Fab") (width 0.1) (tstamp 0ef52983-8f01-43a6-8874-e7d7929e2769))
(fp_line (start 3 2.25) (end 7.2 2.25) (layer "F.Fab") (width 0.1) (tstamp 27cf4332-fa22-4b94-a885-4d6ddb6d4174))
(fp_line (start 7.2 3.75) (end 7.2 4.25) (layer "F.Fab") (width 0.1) (tstamp 3977548c-d627-4c80-ac70-7ed08fdf7b52))
(fp_line (start -0.25 -0.25) (end 1.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 40b73daa-6397-4ed5-8e44-9b08ab108da8))
(fp_line (start -0.25 2.25) (end 1.5 2.25) (layer "F.Fab") (width 0.1) (tstamp 478e5e0b-0d2b-49b7-93cf-0b1ae79a0370))
(fp_line (start 7.2 -0.25) (end 7.2 0.25) (layer "F.Fab") (width 0.1) (tstamp 4bbdd0d1-590a-43d7-8b23-40e7280a8632))
(fp_line (start 3 -1) (end 3 4.95) (layer "F.Fab") (width 0.1) (tstamp 578505b2-fc42-4391-b1b0-16d95ebed86b))
(fp_line (start 7.2 1.75) (end 7.2 2.25) (layer "F.Fab") (width 0.1) (tstamp 62d9d33a-86c8-4355-9124-68f0541edbb6))
(fp_line (start -0.25 4.25) (end 1.5 4.25) (layer "F.Fab") (width 0.1) (tstamp 670d4b4b-f110-4810-a20e-2b5a90f82398))
(fp_line (start 3 4.95) (end 1.5 4.95) (layer "F.Fab") (width 0.1) (tstamp 7317c332-89dd-401a-9738-edd30c3f02b8))
(fp_line (start -0.25 0.25) (end 1.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7d29c916-b959-407c-96ee-31f3ea6e93fd))
(fp_line (start 3 4.25) (end 7.2 4.25) (layer "F.Fab") (width 0.1) (tstamp 9a3ca2c1-4e7b-4a2b-9ca7-2bf769b36df9))
(fp_line (start 3 1.75) (end 7.2 1.75) (layer "F.Fab") (width 0.1) (tstamp a264480b-2317-4f85-bf6a-667d421e2141))
(fp_line (start 1.875 -1) (end 3 -1) (layer "F.Fab") (width 0.1) (tstamp a91d601b-7b18-478e-8652-f6427b38baf1))
(fp_line (start -0.25 3.75) (end 1.5 3.75) (layer "F.Fab") (width 0.1) (tstamp b7ce2501-4282-4c40-9b63-94d750d524b6))
(fp_line (start -0.25 3.75) (end -0.25 4.25) (layer "F.Fab") (width 0.1) (tstamp c968caaf-ecc7-43b0-a503-ab7e47a7a090))
(fp_line (start 3 3.75) (end 7.2 3.75) (layer "F.Fab") (width 0.1) (tstamp cd80093d-565c-481e-aa91-8bb86e73c917))
(fp_line (start 1.5 4.95) (end 1.5 -0.625) (layer "F.Fab") (width 0.1) (tstamp d8136b74-9376-45cc-ba02-805bfd659d97))
(fp_line (start 3 -0.25) (end 7.2 -0.25) (layer "F.Fab") (width 0.1) (tstamp f448e7d6-1765-4b0b-8405-68dadd19a00d))
(fp_line (start -0.25 -0.25) (end -0.25 0.25) (layer "F.Fab") (width 0.1) (tstamp f844c9e4-836e-4484-aa1c-db4787535f5d))
(pad "1" thru_hole circle (at 0 0) (size 1.35 1.35) (drill 0.75) (layers *.Cu *.Mask)
(net 24 "/~{WE}") (pinfunction "1") (pintype "passive") (tstamp 90de2386-8ca1-4b01-9e53-0e5d15aa8685))
(pad "2" thru_hole circle (at 0 2) (size 1.35 1.35) (drill 0.75) (layers *.Cu *.Mask)
(net 33 "/OE1{slash}~{WE}") (pinfunction "2") (pintype "input") (tstamp d9aba955-e77e-4d40-beb6-903e7c638d20))
(pad "3" thru_hole circle (at 0 4) (size 1.35 1.35) (drill 0.75) (layers *.Cu *.Mask)
(net 28 "/OE1") (pinfunction "3") (pintype "passive") (tstamp 8905b65a-a9a1-4bd4-b146-c928189e02ac))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x03_P2.00mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 110.405 107.605) (end 110.405 107.405) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 00000000-0000-0000-0000-00005f9fca64))
(gr_rect (start 140.2 102.5) (end 144.5 106.3) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp bda64ada-326a-4895-bb28-3f7c3f072948))
(gr_text "R1,R2,R3: ${00000000-0000-0000-0000-00005f9fca43:VALUE} C1: ${9745923e-b3f3-4f78-9da8-cbeee6cd8cf3:VALUE}\nU2: ${7d0efb14-35d7-40aa-96f5-408b9024bd0a:VALUE} Legs: TE 1544210 or Mill-Max 3121" (at 144.145 107.315) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005f9fc84b)
(effects (font (size 0.6 0.6) (thickness 0.08)) (justify left mirror))
)
(gr_text "PROG-(" (at 137.7 102.4) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005fa060b9)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "${TITLE} ${REVISION}\n${COMMENT2}" (at 127 96.52) (layer "B.SilkS") (tstamp 7c471cd6-8e8a-44aa-bd31-dbc9bbde562a)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "RUN-(" (at 137.7 104.4) (layer "B.SilkS") (tstamp 8a5802ac-38ad-42c6-8836-2ea693296bec)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "To boot from EEPROM/FRAM:\n Connect ~{OE}_BUS to ~{OE}_IC\n\nTo boot from REX_Classic:\n Connect ~{OE}_BUS to REX TP2" (at 133.65 102.2) (layer "B.SilkS") (tstamp bfe23769-f164-4776-822c-fed84d569ec9)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left mirror))
)
(gr_text "tandy.wiki/FlexROM_200" (at 127 107.85) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f9fc827)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "~{OE}" (at 113.225 104.475 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f9fc851)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Install in TANDY 200 position M13" (at 128.5 95.4) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f9fc85a)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "PRG" (at 143.1 100.6) (layer "F.SilkS") (tstamp 0c080e09-29a6-4049-a79d-86630ed9d083)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "BUS" (at 111.76 106.172 90) (layer "F.SilkS") (tstamp 1548c290-0f81-4bf6-adfc-703364e9cbf5)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "IC" (at 114.3 106.172 90) (layer "F.SilkS") (tstamp 9c9b8ddb-d44e-46d0-834e-170040dc725b)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "RUN" (at 143.1 106.9) (layer "F.SilkS") (tstamp ecc45773-1895-494e-8265-d5962e2abda1)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(segment (start 143.515 93.985) (end 141.2086 96.2914) (width 0.2) (layer "F.Cu") (net 1) (tstamp bfd6fcbd-9da0-4275-bc0d-39fe0ead729d))
(segment (start 135.26 96.2914) (end 135.26 96.905) (width 0.2) (layer "F.Cu") (net 1) (tstamp e12be1de-405e-43d7-ad1c-30a7e59c1f1a))
(segment (start 141.2086 96.2914) (end 135.26 96.2914) (width 0.2) (layer "F.Cu") (net 1) (tstamp e5a3a120-de8b-4a71-a124-f3064e0fc4c9))
(segment (start 120.015 106.3) (end 120.015 106.7435) (width 0.2) (layer "F.Cu") (net 2) (tstamp 44da49c3-f31c-4fa7-9508-6e800018cfb6))
(segment (start 120.015 106.7435) (end 119.38 107.3785) (width 0.2) (layer "F.Cu") (net 2) (tstamp 84033474-2fb7-46c7-aab4-a165ebb336c3))
(segment (start 119.38 107.3785) (end 114.8715 107.3785) (width 0.2) (layer "F.Cu") (net 2) (tstamp e700d726-c42b-49dc-aee8-391d73c2b2d9))
(segment (start 114.8715 107.3785) (end 113.03 109.22) (width 0.2) (layer "F.Cu") (net 2) (tstamp f3551b4c-892f-4d1e-913a-3a8a7b1924a7))
(segment (start 134.62 95.8215) (end 139.1385 95.8215) (width 0.2) (layer "F.Cu") (net 3) (tstamp 0576e4ac-69a2-46cc-9904-00fa18f07809))
(segment (start 133.99 96.4515) (end 134.62 95.8215) (width 0.2) (layer "F.Cu") (net 3) (tstamp 3426acdc-3484-4176-8fd8-47b78903698e))
(segment (start 139.1385 95.8215) (end 140.975 93.985) (width 0.2) (layer "F.Cu") (net 3) (tstamp 3ce637e4-966a-4706-add1-4bf35b609e59))
(segment (start 133.99 96.905) (end 133.99 96.4515) (width 0.2) (layer "F.Cu") (net 3) (tstamp 66bc3952-2ea9-4e61-85e3-7931a171fa63))
(segment (start 116.967 107.823) (end 115.57 109.22) (width 0.2) (layer "F.Cu") (net 4) (tstamp 07aa1ca7-1a8b-422a-a1fe-baa626e0048b))
(segment (start 121.285 106.7435) (end 120.2055 107.823) (width 0.2) (layer "F.Cu") (net 4) (tstamp 116a11d6-44c1-459c-b8b2-2d15884ed40a))
(segment (start 121.285 106.3) (end 121.285 106.7435) (width 0.2) (layer "F.Cu") (net 4) (tstamp 4bc10b94-263b-47dd-8d95-c8e0b2ea2e8b))
(segment (start 120.2055 107.823) (end 116.967 107.823) (width 0.2) (layer "F.Cu") (net 4) (tstamp bb544f9d-8712-4b49-9a2b-ac2ff86579a1))
(segment (start 132.715 96.4565) (end 133.7945 95.377) (width 0.2) (layer "F.Cu") (net 5) (tstamp 253c0789-f3fb-43da-8c62-248b8c86766d))
(segment (start 137.033 95.377) (end 138.43 93.98) (width 0.2) (layer "F.Cu") (net 5) (tstamp 35920dd3-7dba-4d96-a82d-517f1a2a46ea))
(segment (start 132.715 96.9) (end 132.715 96.4565) (width 0.2) (layer "F.Cu") (net 5) (tstamp a1c81e26-bd1d-4442-b5d7-12a634cb6d01))
(segment (start 133.7945 95.377) (end 137.033 95.377) (width 0.2) (layer "F.Cu") (net 5) (tstamp c6652418-7358-46df-8c57-37795b73e754))
(segment (start 121.031 108.2675) (end 119.0625 108.2675) (width 0.2) (layer "F.Cu") (net 6) (tstamp 0dbb21d0-483e-43a7-b0e9-63950e47e1af))
(segment (start 122.555 106.7435) (end 121.031 108.2675) (width 0.2) (layer "F.Cu") (net 6) (tstamp 59ae8473-34c7-47ad-bf93-55e6b8dfb248))
(segment (start 122.555 106.3) (end 122.555 106.7435) (width 0.2) (layer "F.Cu") (net 6) (tstamp 5f1db007-96c8-4156-94b2-176648d7fd7e))
(segment (start 119.0625 108.2675) (end 118.11 109.22) (width 0.2) (layer "F.Cu") (net 6) (tstamp 6b9c41b9-6da1-481f-bb5d-dfbfdb824518))
(segment (start 132.969 94.9325) (end 131.45 96.4515) (width 0.2) (layer "F.Cu") (net 7) (tstamp 021a7fcc-5d38-4a21-8c5c-553215354c4d))
(segment (start 135.89 93.98) (end 134.9375 94.9325) (width 0.2) (layer "F.Cu") (net 7) (tstamp 0af03c1a-e5d2-4647-b80b-1a29cd6ab928))
(segment (start 131.45 96.4515) (end 131.45 96.905) (width 0.2) (layer "F.Cu") (net 7) (tstamp 5a19fc71-3d00-42af-9ec4-194b189e8940))
(segment (start 134.9375 94.9325) (end 132.969 94.9325) (width 0.2) (layer "F.Cu") (net 7) (tstamp e6141693-a4eb-4254-92de-b0a6b3e6cc7d))
(segment (start 120.88 109.22) (end 122.4 107.7) (width 0.2) (layer "F.Cu") (net 8) (tstamp 0d2bb388-39c2-443b-b89f-499dae6f5643))
(segment (start 122.8685 107.7) (end 123.83 106.7385) (width 0.2) (layer "F.Cu") (net 8) (tstamp 497478cf-c2e6-4cf6-9b5e-774b118aae72))
(segment (start 122.4 107.7) (end 122.8685 107.7) (width 0.2) (layer "F.Cu") (net 8) (tstamp 95eabf6e-8d63-489e-8f20-a3d8964b627d))
(segment (start 123.83 106.7385) (end 123.83 106.305) (width 0.2) (layer "F.Cu") (net 8) (tstamp a1bb2053-be4a-4a3d-8453-401095b8a649))
(segment (start 120.65 109.22) (end 120.88 109.22) (width 0.2) (layer "F.Cu") (net 8) (tstamp c26c5a51-a46a-4ea8-bf1a-ca6d420ad941))
(segment (start 130.175 96.9) (end 130.175 96.4692) (width 0.2) (layer "F.Cu") (net 9) (tstamp 06763700-6da1-47b3-9fe2-57b2fa7000d3))
(segment (start 133.12 93.98) (end 133.35 93.98) (width 0.2) (layer "F.Cu") (net 9) (tstamp 6be0d715-e59e-4ad5-87e3-28a044827935))
(segment (start 130.175 96.4692) (end 131.1442 95.5) (width 0.2) (layer "F.Cu") (net 9) (tstamp af6493d1-d217-47c4-b91c-6042ed266a3f))
(segment (start 131.6 95.5) (end 133.12 93.98) (width 0.2) (layer "F.Cu") (net 9) (tstamp c17608aa-39ab-4661-b41c-512efa55dafa))
(segment (start 131.1442 95.5) (end 131.6 95.5) (width 0.2) (layer "F.Cu") (net 9) (tstamp f607497e-f8d2-4d6b-8ca2-6268f02d1947))
(segment (start 125.095 107.315) (end 125.095 106.3) (width 0.2) (layer "F.Cu") (net 10) (tstamp 1746c856-6ee9-415f-aac8-9ad6514effd7))
(segment (start 123.19 109.22) (end 125.095 107.315) (width 0.2) (layer "F.Cu") (net 10) (tstamp 1cbf66fb-4df4-4d2e-b019-a4110fda576e))
(segment (start 126.365 108.585) (end 126.365 106.3) (width 0.2) (layer "F.Cu") (net 11) (tstamp 017dcf69-dfce-42e6-9661-593a7dc55e8e))
(segment (start 125.73 109.22) (end 126.365 108.585) (width 0.2) (layer "F.Cu") (net 11) (tstamp 8c68a59a-bbf6-4b47-93b4-835b97e6f325))
(segment (start 127.64 94.62) (end 128.275 93.985) (width 0.2) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f9fc8c0))
(segment (start 127.64 96.905) (end 127.64 94.62) (width 0.2) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f9fc95f))
(segment (start 127.64 106.305) (end 127.64 108.59) (width 0.2) (layer "F.Cu") (net 13) (tstamp 00000000-0000-0000-0000-00005f9fc959))
(segment (start 127.64 108.59) (end 128.275 109.225) (width 0.2) (layer "F.Cu") (net 13) (tstamp 00000000-0000-0000-0000-00005f9fc95c))
(segment (start 127.325 98.875) (end 126.365 97.915) (width 0.2) (layer "F.Cu") (net 14) (tstamp 156c6162-9533-49f7-b382-21ad271753e6))
(segment (start 126.365 97.915) (end 126.365 96.9) (width 0.2) (layer "F.Cu") (net 14) (tstamp 50ba6c65-35f3-4213-85cb-492287bd50a4))
(segment (start 137.4 98.875) (end 127.325 98.875) (width 0.2) (layer "F.Cu") (net 14) (tstamp ed3cbe20-0cbe-4b75-b117-ec80f52ddd4b))
(segment (start 128.905 106.3) (end 128.905 107.315) (width 0.2) (layer "F.Cu") (net 15) (tstamp 6d743904-7720-4c31-bf7c-5038312844e3))
(segment (start 128.905 107.315) (end 130.815 109.225) (width 0.2) (layer "F.Cu") (net 15) (tstamp f6b5b56f-6541-461c-9dd4-e1aa5b11f1b5))
(segment (start 125.1 96.905) (end 125.1 95.89) (width 0.2) (layer "F.Cu") (net 16) (tstamp 00000000-0000-0000-0000-00005f9fc8de))
(segment (start 125.1 95.89) (end 123.195 93.985) (width 0.2) (layer "F.Cu") (net 16) (tstamp 00000000-0000-0000-0000-00005f9fc93b))
(segment (start 131.6 107.7) (end 133.12 109.22) (width 0.2) (layer "F.Cu") (net 17) (tstamp 2557fa9c-c592-44a6-b15f-702321546c22))
(segment (start 131.1315 107.7) (end 131.6 107.7) (width 0.2) (layer "F.Cu") (net 17) (tstamp 4dd002df-00fd-49a7-9168-26eda913cdda))
(segment (start 130.18 106.305) (end 130.18 106.7485) (width 0.2) (layer "F.Cu") (net 17) (tstamp 86c045e1-2bb1-460b-abd5-7f72c592d308))
(segment (start 130.18 106.7485) (end 131.1315 107.7) (width 0.2) (layer "F.Cu") (net 17) (tstamp 924f7646-66b1-448c-94c9-2d4e47018801))
(segment (start 133.12 109.22) (end 133.35 109.22) (width 0.2) (layer "F.Cu") (net 17) (tstamp b7a44a88-d0d3-458c-92d0-38d0ccefe9a6))
(segment (start 123.825 96.4565) (end 123.825 96.9) (width 0.2) (layer "F.Cu") (net 18) (tstamp 3d28d5fc-8458-4a14-aad9-bfe56976c42d))
(segment (start 120.885 93.985) (end 122.4 95.5) (width 0.2) (layer "F.Cu") (net 18) (tstamp 86e83375-6853-4511-bdf1-ca0dfa8f5ee3))
(segment (start 122.4 95.5) (end 122.8685 95.5) (width 0.2) (layer "F.Cu") (net 18) (tstamp 9fd95216-8073-4546-8091-0c8ba453cf87))
(segment (start 122.8685 95.5) (end 123.825 96.4565) (width 0.2) (layer "F.Cu") (net 18) (tstamp bd084692-0d5d-4694-a9df-6b03931df487))
(segment (start 120.655 93.985) (end 120.885 93.985) (width 0.2) (layer "F.Cu") (net 18) (tstamp eff6ae81-b0ad-4192-8beb-70f8e9542112))
(segment (start 134.9375 108.2675) (end 135.895 109.225) (width 0.2) (layer "F.Cu") (net 19) (tstamp 3b4973e5-6fe6-4741-b5a9-043719aaf993))
(segment (start 131.445 106.3) (end 131.445 106.745) (width 0.2) (layer "F.Cu") (net 19) (tstamp 7c5046b2-ebc4-494d-ad80-dc48cd92a66f))
(segment (start 132.9675 108.2675) (end 134.9375 108.2675) (width 0.2) (layer "F.Cu") (net 19) (tstamp 922f32de-4940-4789-9392-e122c4195a4e))
(segment (start 131.445 106.745) (end 132.9675 108.2675) (width 0.2) (layer "F.Cu") (net 19) (tstamp f93fe59e-cbfa-4b54-8932-9955b49ae201))
(segment (start 122.56 96.905) (end 122.56 96.4615) (width 0.2) (layer "F.Cu") (net 20) (tstamp 0438c791-3db1-46c6-aaf6-698ad4fa8aa4))
(segment (start 119.253 95.123) (end 118.11 93.98) (width 0.2) (layer "F.Cu") (net 20) (tstamp 882762c0-ee6c-4f67-b09b-845e15c96306))
(segment (start 121.2215 95.123) (end 119.253 95.123) (width 0.2) (layer "F.Cu") (net 20) (tstamp db0cb1c0-8494-4bae-bc84-a85ddbd08a9a))
(segment (start 122.56 96.4615) (end 121.2215 95.123) (width 0.2) (layer "F.Cu") (net 20) (tstamp f6487406-a9c0-4d5c-a6e6-66dcfda9fc6c))
(segment (start 132.715 106.3) (end 132.715 106.7435) (width 0.2) (layer "F.Cu") (net 21) (tstamp 2137c1ed-d465-4524-8662-2956cd054a5a))
(segment (start 137.033 107.823) (end 138.43 109.22) (width 0.2) (layer "F.Cu") (net 21) (tstamp 7fab1029-4444-4bf5-86d5-b56911cabfff))
(segment (start 132.715 106.7435) (end 133.7945 107.823) (width 0.2) (layer "F.Cu") (net 21) (tstamp 97877138-b017-46a6-99a4-60459a523930))
(segment (start 133.7945 107.823) (end 137.033 107.823) (width 0.2) (layer "F.Cu") (net 21) (tstamp ba652517-9776-4a73-a953-ce36b43e6571))
(segment (start 133.99 106.305) (end 133.99 106.7485) (width 0.2) (layer "F.Cu") (net 22) (tstamp 18416dd0-4856-4349-a916-90794d3c3f08))
(segment (start 133.99 106.7485) (end 134.62 107.3785) (width 0.2) (layer "F.Cu") (net 22) (tstamp 547c14a6-33ac-4d31-b299-6506d76efe0a))
(segment (start 139.1285 107.3785) (end 140.975 109.225) (width 0.2) (layer "F.Cu") (net 22) (tstamp 5c614d65-2a2f-40d2-af67-237e5443fb2f))
(segment (start 134.62 107.3785) (end 139.1285 107.3785) (width 0.2) (layer "F.Cu") (net 22) (tstamp f5675f06-cd6c-4387-b2f9-77b2be9bdedf))
(segment (start 117.7 104.15) (end 119.45 102.4) (width 0.2) (layer "F.Cu") (net 23) (tstamp 1724bbc3-4700-48bd-9680-d2266d16df51))
(segment (start 137.4 98.225) (end 137.4 97.575) (width 0.2) (layer "F.Cu") (net 23) (tstamp 5560129f-09ca-488b-b7b4-01b9ce29397c))
(segment (start 138.557 101.743) (end 138.557 98.557) (width 0.2) (layer "F.Cu") (net 23) (tstamp 6feed71d-612b-4097-a3d9-77522370c50c))
(segment (start 119.45 102.4) (end 137.9 102.4) (width 0.2) (layer "F.Cu") (net 23) (tstamp 86d023d1-49b8-4837-b2c5-e2090a364357))
(segment (start 114.3 95.885) (end 114.3 102.65) (width 0.2) (layer "F.Cu") (net 23) (tstamp 8c2336f0-6dba-4655-a966-0207efcb7620))
(segment (start 138.557 98.557) (end 138.225 98.225) (width 0.2) (layer "F.Cu") (net 23) (tstamp 90bac382-ccf5-47e6-ac15-6aa7ad854b4b))
(segment (start 138.225 98.225) (end 137.4 98.225) (width 0.2) (layer "F.Cu") (net 23) (tstamp ad7234e6-7802-46a2-86fd-cd8df2fe0d28))
(segment (start 114.3 102.65) (end 115.8 104.15) (width 0.2) (layer "F.Cu") (net 23) (tstamp dd62121b-9ebe-48c9-a8e8-a0a4c773449b))
(segment (start 137.9 102.4) (end 138.557 101.743) (width 0.2) (layer "F.Cu") (net 23) (tstamp e9245142-b175-49ac-b2f0-a29066020e27))
(segment (start 115.8 104.15) (end 117.7 104.15) (width 0.2) (layer "F.Cu") (net 23) (tstamp fd1622d9-649c-4d6f-bfc8-634f8b63a285))
(segment (start 117.8 102.55) (end 116.675 102.55) (width 0.2) (layer "F.Cu") (net 24) (tstamp 56ac9b43-5d1b-4603-95a3-3d50153c8951))
(segment (start 136.9 101.4) (end 120.015 101.4) (width 0.2) (layer "F.Cu") (net 24) (tstamp 707f2537-293d-4be9-b9ab-f97c3067ef89))
(segment (start 118.95 101.4) (end 117.8 102.55) (width 0.2) (layer "F.Cu") (net 24) (tstamp 9e2d7113-48d1-4d2d-bc78-0946b41b28f8))
(segment (start 120.015 101.4) (end 120.015 96.9) (width 0.2) (layer "F.Cu") (net 24) (tstamp 9e32f579-3ef5-4b34-9f0a-52a7e6246af4))
(segment (start 120.015 101.4) (end 118.95 101.4) (width 0.2) (layer "F.Cu") (net 24) (tstamp a2f23908-01a9-4cc3-a651-b2413ab8c341))
(via (at 117.775 97.975) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 25) (tstamp 1d621e3e-4e5b-4191-ba49-6e794467ae53))
(via (at 115.275 99.925) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 25) (tstamp 4b44b97c-31cc-4b63-bee8-b6d2958fa7b0))
(via (at 135.25 104.5) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 25) (tstamp a1e609e2-087b-4a9d-bcd0-769a6862c558))
(via (at 135.5 100.325) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 25) (tstamp bdd2f05b-c1d5-454b-ae72-ffc5fa7e620e))
(segment (start 142.775 97.575) (end 142.8 97.6) (width 0.2) (layer "F.Cu") (net 26) (tstamp 1cca1418-32cd-442c-9c03-f3624fbfe6fc))
(segment (start 141 97.575) (end 142.775 97.575) (width 0.2) (layer "F.Cu") (net 26) (tstamp 287ea4dd-1576-4482-a819-8c95555ade7f))
(segment (start 118.75 99.05) (end 118.75 97.435) (width 0.6) (layer "F.Cu") (net 26) (tstamp 59ac33da-a5ea-463f-953f-a8c58e88a29c))
(segment (start 112.3 103.025) (end 112.3 98.33) (width 0.2) (layer "F.Cu") (net 26) (tstamp 5beb210f-43e2-404a-9f8b-3294532ea5da))
(segment (start 110.49 96.52) (end 110.49 93.98) (width 0.2) (layer "F.Cu") (net 26) (tstamp 6576f4ef-cfd6-40f0-b76a-e89825ad3a02))
(segment (start 112.3 98.33) (end 110.49 96.52) (width 0.2) (layer "F.Cu") (net 26) (tstamp 69f4ecb2-ee33-4063-88d1-b93328d81f2f))
(segment (start 118.75 99.05) (end 116.75 99.05) (width 0.6) (layer "F.Cu") (net 26) (tstamp 6f4b1612-e0e7-47b1-98fa-280a12afc070))
(segment (start 116.75 99.05) (end 116.75 100.65) (width 0.2) (layer "F.Cu") (net 26) (tstamp 73c1c8c4-9cb1-4c64-aab7-b3c706b0ad2e))
(segment (start 118.745 97.43) (end 118.745 96.9) (width 0.6) (layer "F.Cu") (net 26) (tstamp a08d61ec-7710-4a1e-a600-8fe9d5352913))
(segment (start 116.75 106.05) (end 115.325 106.05) (width 0.2) (layer "F.Cu") (net 26) (tstamp db017b56-7b11-4599-b783-8f280ac5db8e))
(segment (start 118.75 97.435) (end 118.745 97.43) (width 0.6) (layer "F.Cu") (net 26) (tstamp db715269-21b8-4b9c-8734-7dbde8cdd5e4))
(segment (start 115.325 106.05) (end 112.3 103.025) (width 0.2) (layer "F.Cu") (net 26) (tstamp f948e7d7-4c97-4a7d-a23b-45f5c73a95dd))
(segment (start 139.925 97.575) (end 141 97.575) (width 0.4) (layer "F.Cu") (net 26) (tstamp fd26073e-0e50-4da1-865a-a26e7a71d790))
(via (at 118.75 99.05) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (tstamp a8ecc078-001f-49d5-b4c7-5ce6a0efc56b))
(via (at 139.925 97.575) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (tstamp b83f28fd-9ee7-4718-b120-10706109f05c))
(segment (start 110.425 94.055) (end 110.495 93.985) (width 0.6) (layer "B.Cu") (net 26) (tstamp 09dc4122-f3cb-4e5d-b337-74eb5ced38c1))
(segment (start 118.75 99.05) (end 138.45 99.05) (width 0.6) (layer "B.Cu") (net 26) (tstamp 0f4d6435-2251-4943-b6f9-20312e756712))
(segment (start 110.425 96.45) (end 110.425 94.055) (width 0.6) (layer "B.Cu") (net 26) (tstamp 444b0e9b-cd11-44ee-8f9e-1b4ba99f4b0f))
(segment (start 118.75 99.05) (end 113.025 99.05) (width 0.6) (layer "B.Cu") (net 26) (tstamp 644ecc19-c37c-4707-a6d7-9f8717bbc4f4))
(segment (start 110.495 93.985) (end 110.49 93.98) (width 0.3) (layer "B.Cu") (net 26) (tstamp 9251c02b-26b9-4eed-8a1b-2395b11351b3))
(segment (start 113.025 99.05) (end 110.425 96.45) (width 0.6) (layer "B.Cu") (net 26) (tstamp ab518473-2410-4f2e-af39-c5771463c03b))
(segment (start 138.45 99.05) (end 139.925 97.575) (width 0.6) (layer "B.Cu") (net 26) (tstamp ff4c2171-835a-464a-b419-40cc9a55112f))
(segment (start 111.76 95.885) (end 112.9665 97.0915) (width 0.2) (layer "B.Cu") (net 27) (tstamp 2a79a2fd-e23e-496b-815b-b71868497b7b))
(segment (start 122.6185 97.0915) (end 125.73 93.98) (width 0.2) (layer "B.Cu") (net 27) (tstamp 349595fb-6af5-41a1-9899-27c05da8f25c))
(segment (start 112.9665 97.0915) (end 122.6185 97.0915) (width 0.2) (layer "B.Cu") (net 27) (tstamp d3290e16-fc6d-46a6-867a-9fb3f54225c7))
(segment (start 136.9 105.4) (end 141 101.3) (width 0.2) (layer "F.Cu") (net 28) (tstamp 094f0c0b-ecc0-4c1c-b156-248f122eaeb3))
(segment (start 142.775 99.525) (end 142.8 99.5) (width 0.2) (layer "F.Cu") (net 28) (tstamp 57cbf24b-9573-4881-9c91-b73f501d9a99))
(segment (start 141 101.3) (end 141 99.525) (width 0.2) (layer "F.Cu") (net 28) (tstamp 65182264-48e4-4264-9971-990117f35e21))
(segment (start 141 99.525) (end 142.775 99.525) (width 0.2) (layer "F.Cu") (net 28) (tstamp 9e47d13c-dae5-429c-a418-7c7bb829351c))
(segment (start 128.905 95.885) (end 130.81 93.98) (width 0.2) (layer "F.Cu") (net 29) (tstamp 12bd6735-2768-414e-98bf-dee9e097c01c))
(segment (start 128.905 96.9) (end 128.905 95.885) (width 0.2) (layer "F.Cu") (net 29) (tstamp c2de63bb-05ec-45ac-bf33-f82244fcce28))
(segment (start 141 98.875) (end 141 98.225) (width 0.2) (layer "F.Cu") (net 30) (tstamp bd4b1bd3-7e78-4285-a236-cca32597942e))
(segment (start 113.03 102.58) (end 113.03 93.98) (width 0.2) (layer "F.Cu") (net 33) (tstamp 2c5740c1-b986-4dfc-aa6f-08c31e587a3d))
(segment (start 117.725 105.1) (end 115.55 105.1) (width 0.2) (layer "F.Cu") (net 33) (tstamp 4807fd46-bb98-4ee4-ba98-f034651e542c))
(segment (start 119.425 103.4) (end 117.725 105.1) (width 0.2) (layer "F.Cu") (net 33) (tstamp 80edba24-0016-480d-938f-b886ce2f311a))
(segment (start 115.55 105.1) (end 113.03 102.58) (width 0.2) (layer "F.Cu") (net 33) (tstamp 8bfef8a2-3408-4c99-af9c-37ee793e4262))
(segment (start 136.9 103.4) (end 119.425 103.4) (width 0.2) (layer "F.Cu") (net 33) (tstamp ce1678b6-a6c3-48c3-9092-77d03dc2207e))
(zone (net 25) (net_name "GND") (layer "F.Cu") (tstamp 28c75945-9ac7-48ef-af57-291f2557ec3f) (hatch edge 0.508)
(connect_pads yes (clearance 0.2))
(min_thickness 0.2) (filled_areas_thickness no)
(fill yes (thermal_gap 0.2) (thermal_bridge_width 0.3) (smoothing fillet) (radius 0.1))
(polygon
(pts
(xy 144.78 92.71)
(xy 144.78 110.49)
(xy 109.22 110.49)
(xy 109.22 92.71)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 144.133169 92.913018)
(xy 144.133776 92.913158)
(xy 144.133778 92.913158)
(xy 144.144641 92.915656)
(xy 144.155516 92.913196)
(xy 144.159206 92.913202)
(xy 144.171955 92.914049)
(xy 144.244534 92.923604)
(xy 144.269498 92.930293)
(xy 144.35021 92.963725)
(xy 144.372586 92.976643)
(xy 144.441906 93.029834)
(xy 144.460166 93.048094)
(xy 144.513357 93.117414)
(xy 144.526275 93.13979)
(xy 144.559707 93.220502)
(xy 144.566396 93.245466)
(xy 144.575999 93.318409)
(xy 144.576846 93.331503)
(xy 144.576842 93.333779)
(xy 144.574344 93.344641)
(xy 144.576804 93.355513)
(xy 144.577059 93.356638)
(xy 144.5795 93.378488)
(xy 144.5795 109.820983)
(xy 144.576982 109.843169)
(xy 144.574344 109.854641)
(xy 144.576804 109.865516)
(xy 144.576798 109.869206)
(xy 144.575951 109.881955)
(xy 144.566396 109.954534)
(xy 144.559707 109.979498)
(xy 144.526275 110.06021)
(xy 144.513357 110.082586)
(xy 144.460166 110.151906)
(xy 144.441906 110.170166)
(xy 144.372586 110.223357)
(xy 144.35021 110.236275)
(xy 144.269498 110.269707)
(xy 144.244534 110.276396)
(xy 144.171591 110.285999)
(xy 144.158497 110.286846)
(xy 144.156221 110.286842)
(xy 144.145359 110.284344)
(xy 144.134487 110.286804)
(xy 144.134302 110.286846)
(xy 144.133359 110.287059)
(xy 144.111512 110.2895)
(xy 109.889017 110.2895)
(xy 109.866831 110.286982)
(xy 109.866224 110.286842)
(xy 109.866222 110.286842)
(xy 109.855359 110.284344)
(xy 109.844484 110.286804)
(xy 109.840794 110.286798)
(xy 109.828045 110.285951)
(xy 109.755466 110.276396)
(xy 109.730502 110.269707)
(xy 109.64979 110.236275)
(xy 109.627414 110.223357)
(xy 109.558094 110.170166)
(xy 109.539834 110.151906)
(xy 109.486643 110.082586)
(xy 109.473725 110.06021)
(xy 109.440293 109.979499)
(xy 109.433604 109.954534)
(xy 109.424549 109.885751)
(xy 109.424351 109.861514)
(xy 109.42439 109.861178)
(xy 109.425655 109.855718)
(xy 109.425656 109.855)
(xy 109.423085 109.843728)
(xy 109.42298 109.843266)
(xy 109.4205 109.821248)
(xy 109.4205 109.737554)
(xy 109.6895 109.737554)
(xy 109.695645 109.784231)
(xy 109.698848 109.791099)
(xy 109.698848 109.7911)
(xy 109.73527 109.869206)
(xy 109.743412 109.886667)
(xy 109.823333 109.966588)
(xy 109.831181 109.970248)
(xy 109.831183 109.970249)
(xy 109.894354 109.999706)
(xy 109.925769 110.014355)
(xy 109.972446 110.0205)
(xy 111.007554 110.0205)
(xy 111.054231 110.014355)
(xy 111.085646 109.999706)
(xy 111.148817 109.970249)
(xy 111.148819 109.970248)
(xy 111.156667 109.966588)
(xy 111.236588 109.886667)
(xy 111.244731 109.869206)
(xy 111.281152 109.7911)
(xy 111.281152 109.791099)
(xy 111.284355 109.784231)
(xy 111.2905 109.737554)
(xy 111.2905 109.208753)
(xy 112.224514 109.208753)
(xy 112.232424 109.289424)
(xy 112.241499 109.381984)
(xy 112.2415 109.381989)
(xy 112.242039 109.387486)
(xy 112.298726 109.557896)