-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFlexROM_102.kicad_pcb
8821 lines (8806 loc) · 334 KB
/
FlexROM_102.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_102")
(date "2023-01-12")
(rev "008")
(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 0x00010fc_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 "/~{CS}_BUS")
(net 12 "/A3")
(net 13 "/A10")
(net 14 "/A2")
(net 15 "/~{OE}")
(net 16 "/A1")
(net 17 "/A11")
(net 18 "/A0")
(net 19 "/A9")
(net 20 "/D0")
(net 21 "/A8")
(net 22 "/D1")
(net 23 "/A13")
(net 24 "/D2")
(net 25 "/A14")
(net 26 "/~{WE}")
(net 27 "/A14_~{WE}")
(net 28 "/NC_A14")
(net 29 "GND")
(net 30 "VCC")
(net 31 "/~{CS}_IC")
(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_102.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 "27C256 DIP LEGS" (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 28 "/NC_A14") (pinfunction "VPP") (pintype "power_in") (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 12 "/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 14 "/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 16 "/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 18 "/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 20 "/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 22 "/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 24 "/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 29 "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 11 "/~{CS}_BUS") (pinfunction "~{CE}") (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 13 "/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 15 "/~{OE}") (pinfunction "~{OE}") (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 17 "/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 19 "/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 21 "/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 23 "/A13") (pinfunction "A13") (pintype "input") (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 27 "/A14_~{WE}") (pinfunction "A14") (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 30 "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:Pin_Header_Angled_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5E349946) (tstamp 00000000-0000-0000-0000-00005f9fc9ac)
(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_102.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e68b8a2")
(attr through_hole)
(fp_text reference "JP1" (at 4.385 -2.27 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6c3a1bc-8061-47a2-a1cd-5bc0cdcc2229)
)
(fp_text value "~{CS} breakout (REX TP1)" (at 4.385 4.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 306d8da3-e699-4f69-b767-df751ee4482c)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3a19300-cef9-4ddd-9f12-1f4b375bfbdb)
)
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 04979a5c-cbc8-4ef9-9296-c4e4d80a7d68))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 2aebf8f8-a8d4-4081-a9cb-e73d5b86f682))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 385b661b-c82e-4f3a-b5a8-6fee75b19e42))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 3a906ebb-f272-4f31-9262-db4f58b89582))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3ffb7751-e10c-48c5-a77f-14ad4181ebf5))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 5bde3be0-8b9d-442b-abd0-383f2f163e36))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 5c6b03fa-647d-42f4-82bb-71fbe5fe97ea))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 71326f4f-5352-401c-8b3f-4361e4e8c6c1))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 7b4210bd-05e8-4d36-bd74-98c0f1d3f04c))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 88f9c685-8af5-4480-b9fe-706ed33cb5d8))
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp b16f0f76-7252-4bd2-a09e-e2872847553e))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp b90f821b-b6cd-459a-ad32-975dbf5dd2ab))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp dbf3ad82-a137-44a5-a8f2-ce7f6d20ecff))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp dd9dc34c-ee91-405d-ae9f-bd44611dafb7))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp f8ddb09c-557b-4a11-ba0d-77e9cb1653bc))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2edf3a6e-a804-4083-9e36-6459eec0cb48))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 51a91c65-9fef-4703-ac7c-3c8786af7d49))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 52dc9d55-48e2-434d-adce-6bd07500563b))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 762bb343-95d3-4982-b5fa-2bd5862f4cc8))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 076bd5a6-27f2-417c-9487-485ddc94fd6b))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 4ee6077d-6ecc-4a6a-8146-8179e002f76d))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp 5ba22072-cc93-4863-92e5-53ffbb0893c3))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 6b306522-fb70-4dde-b9d2-155c70f126da))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 6ba1ff22-29fa-4419-b578-0291de3c1a16))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 6e34f6fb-40e7-4091-be17-3533b190cf7f))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp 7105ad0f-a589-43dc-bc98-780e50ca55d9))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 85083a3c-74dd-4bf8-af81-1cbe0d2190c5))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 90cde691-c225-4c12-8abd-95c9bf33585d))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp 935f552c-84d2-4a77-aacd-16e9796f1017))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 9be0a513-a93c-4d93-a88e-69cd6b5c53da))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp 9cc2be19-0063-4b67-afa4-015141d99428))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp ab4c1bca-5b9c-44b1-b449-53e7a9e146e3))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp aece5cbe-e6b8-4f78-aa76-d209a62f9676))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp e108267e-1408-42fc-97a2-7af769de4a3b))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp ea9d43af-75bb-4bbd-b41c-af024f8b3dca))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp eaf12fa8-891f-4a30-befa-989512861aa6))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.4 1.4) (drill 0.914) (layers *.Cu *.Mask)
(net 31 "/~{CS}_IC") (pinfunction "A") (pintype "passive") (tstamp 04fb9716-2890-48ac-a000-dca70ebfc309))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.4 1.4) (drill 0.914) (layers *.Cu *.Mask)
(net 11 "/~{CS}_BUS") (pinfunction "B") (pintype "passive") (tstamp 32debab3-5c98-4915-93af-7152c727495b))
(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:R_0805" (layer "F.Cu")
(tedit 5F9E65BE) (tstamp 00000000-0000-0000-0000-00005f9fca13)
(at 116.65 105.7 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlexROM_102.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e68c7f8")
(attr smd)
(fp_text reference "R2" (at 2.05 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 63deaba7-6188-49be-898b-021f7969ce47)
)
(fp_text value "100K" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b73d496d-411b-4da4-8318-14cd14968c8c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (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 31 "/~{CS}_IC") (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 30 "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.65 101.6 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlexROM_102.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e6b3af8")
(attr smd)
(fp_text reference "R1" (at 0 1.4 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp ff213fdf-ced9-4927-aa94-e7ca3157232a)
)
(fp_text value "100K" (at 0 1.75 90) (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 90) (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 30 "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 26 "/~{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:PinHeader_1x04_P2.00mm_Horizontal" (layer "F.Cu")
(tedit 5F9FCD4A) (tstamp 00000000-0000-0000-0000-00005fa053b9)
(at 136.8 98.6)
(descr "Through hole angled pin header, 1x04, 2.00mm pitch, 4.2mm pin length, single row")
(tags "Through hole angled pin header THT 1x04 2.00mm single row")
(property "Sheetfile" "FlexROM_102.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa17830")
(attr through_hole)
(fp_text reference "JP2" (at 3.1 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 772cd519-f54c-4fa5-8263-794d70d0eee7)
)
(fp_text value "Jumper_4_Bridged23" (at 3.1 8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18938eb3-6d72-4350-a999-6316c8d7abe9)
)
(fp_text user "${REFERENCE}" (at 2.25 3 90) (layer "F.Fab")
(effects (font (size 0.9 0.9) (thickness 0.135)))
(tstamp 98b9e79a-b4f4-4f75-9cfb-f7be3b34b1c3)
)
(fp_line (start 3.06 5.69) (end 7.26 5.69) (layer "F.SilkS") (width 0.12) (tstamp 03738e92-e19d-4783-ad78-e81ac0f6ef92))
(fp_line (start 7.26 5.69) (end 7.26 6.31) (layer "F.SilkS") (width 0.12) (tstamp 03d38f7f-945b-4b80-85be-6667fca279ed))
(fp_line (start 0.882114 2.31) (end 1.44 2.31) (layer "F.SilkS") (width 0.12) (tstamp 14c1cca5-96e6-40ab-b426-16e5e5f4279a))
(fp_line (start 1.44 5) (end 3.06 5) (layer "F.SilkS") (width 0.12) (tstamp 16c6cba4-f305-4541-9f2e-23ba9ae00e76))
(fp_line (start 0.935 -0.31) (end 1.44 -0.31) (layer "F.SilkS") (width 0.12) (tstamp 1c4ecf75-af50-42e8-88cc-03c6e2e23aa6))
(fp_line (start 7.26 3.69) (end 7.26 4.31) (layer "F.SilkS") (width 0.12) (tstamp 1d2a83ef-1beb-4e1d-bd97-7e21d5efbdc3))
(fp_line (start 0.882114 5.69) (end 1.44 5.69) (layer "F.SilkS") (width 0.12) (tstamp 29c49b09-9dce-469d-a9a5-a60559a8709c))
(fp_line (start 7.26 0.31) (end 3.06 0.31) (layer "F.SilkS") (width 0.12) (tstamp 2a54f378-49a9-4c1d-82e0-2b77316542ff))
(fp_line (start 7.26 1.69) (end 7.26 2.31) (layer "F.SilkS") (width 0.12) (tstamp 415283a2-97af-48db-9782-47b814b1305e))
(fp_line (start 3.06 1.69) (end 7.26 1.69) (layer "F.SilkS") (width 0.12) (tstamp 4442fc1e-86d7-47b8-b3fd-db1f1de013bc))
(fp_line (start 7.26 2.31) (end 3.06 2.31) (layer "F.SilkS") (width 0.12) (tstamp 7452f5b2-c2e6-467b-ad3f-7a276e05202c))
(fp_line (start 3.06 -0.31) (end 7.26 -0.31) (layer "F.SilkS") (width 0.12) (tstamp 7b154d9e-850a-4eb4-99c9-63e32cb8a098))
(fp_line (start 7.26 6.31) (end 3.06 6.31) (layer "F.SilkS") (width 0.12) (tstamp 93fd25b3-aafc-483f-921a-a5225d9d10a3))
(fp_line (start 1.44 1) (end 3.06 1) (layer "F.SilkS") (width 0.12) (tstamp 990c78fc-bef3-4d2d-93e4-c4d9bbefff2f))
(fp_line (start 3.06 -1.06) (end 1.44 -1.06) (layer "F.SilkS") (width 0.12) (tstamp 9e3f87ef-87e3-4b63-b22b-adbe19f189c1))
(fp_line (start 7.26 4.31) (end 3.06 4.31) (layer "F.SilkS") (width 0.12) (tstamp ae8d65b6-1c64-4e7c-95b6-94fc047d9add))
(fp_line (start 1.44 -1.06) (end 1.44 7.06) (layer "F.SilkS") (width 0.12) (tstamp b8846cb8-66f1-447d-a03f-6ed6b445fb8e))
(fp_line (start 1.44 7.06) (end 3.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp bc38128f-7451-4f31-8c31-2d68c3a21550))
(fp_line (start 3.06 7.06) (end 3.06 -1.06) (layer "F.SilkS") (width 0.12) (tstamp c63e4786-8d23-4ed3-98fc-c5106bf6a589))
(fp_line (start 0.882114 6.31) (end 1.44 6.31) (layer "F.SilkS") (width 0.12) (tstamp cc1e3529-3ef2-4f29-ba5a-9c71b8233950))
(fp_line (start 7.26 -0.31) (end 7.26 0.31) (layer "F.SilkS") (width 0.12) (tstamp d9d930b8-c10a-497a-8189-2aed91b667cd))
(fp_line (start 0.882114 1.69) (end 1.44 1.69) (layer "F.SilkS") (width 0.12) (tstamp dd8fbbb0-d9f9-4a34-a981-38c1ce930ad0))
(fp_line (start 0.882114 4.31) (end 1.44 4.31) (layer "F.SilkS") (width 0.12) (tstamp e0701c68-b69b-4852-8213-a9b5a4a8ce9a))
(fp_line (start 1.44 3) (end 3.06 3) (layer "F.SilkS") (width 0.12) (tstamp ea5c563c-5250-4021-bbdc-cbec7c07d342))
(fp_line (start 0.882114 3.69) (end 1.44 3.69) (layer "F.SilkS") (width 0.12) (tstamp eb7b59c9-4e0f-402f-8cc3-a862014c2ac7))
(fp_line (start 3.06 3.69) (end 7.26 3.69) (layer "F.SilkS") (width 0.12) (tstamp edbfd6e7-ea8e-46e6-a774-1ebdca3a9bab))
(fp_line (start 0.935 0.31) (end 1.44 0.31) (layer "F.SilkS") (width 0.12) (tstamp f686f1a7-46be-4159-b0a9-7d78bf9ed6f7))
(fp_line (start 7.7 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1c1aaf61-56d3-400d-81e6-53606a03e108))
(fp_line (start 7.7 7.5) (end 7.7 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 333d64ab-c676-4729-b9b2-dabd5dc011a1))
(fp_line (start -1.5 7.5) (end 7.7 7.5) (layer "F.CrtYd") (width 0.05) (tstamp 99298f44-2534-4849-8a5f-97cd06eaa1a6))
(fp_line (start -1.5 -1.5) (end -1.5 7.5) (layer "F.CrtYd") (width 0.05) (tstamp cc64a2be-db76-41fa-b002-5a16a9a13245))
(fp_line (start 3 7) (end 1.5 7) (layer "F.Fab") (width 0.1) (tstamp 0634878b-aa5e-4f49-9464-1fbc38404ad1))
(fp_line (start -0.25 -0.25) (end -0.25 0.25) (layer "F.Fab") (width 0.1) (tstamp 06d03ed6-9b08-49dd-a924-d709ea4bce8f))
(fp_line (start -0.25 3.75) (end -0.25 4.25) (layer "F.Fab") (width 0.1) (tstamp 111f2adc-2e46-4c79-b304-f7b9b4dc60a2))
(fp_line (start -0.25 6.25) (end 1.5 6.25) (layer "F.Fab") (width 0.1) (tstamp 13d36578-c730-4b55-a605-c0586556ef19))
(fp_line (start 7.2 1.75) (end 7.2 2.25) (layer "F.Fab") (width 0.1) (tstamp 17dcaee8-ae99-49bf-9792-943e0869c53b))
(fp_line (start 1.875 -1) (end 3 -1) (layer "F.Fab") (width 0.1) (tstamp 181ffe8b-b5fc-4de5-9717-af533aa45ef7))
(fp_line (start 3 0.25) (end 7.2 0.25) (layer "F.Fab") (width 0.1) (tstamp 1cc4005b-0679-420c-b072-3b8de5f31129))
(fp_line (start 7.2 5.75) (end 7.2 6.25) (layer "F.Fab") (width 0.1) (tstamp 1e9e8917-f73e-417c-89eb-d8017162e3cf))
(fp_line (start -0.25 0.25) (end 1.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 20259208-c9de-4f31-9d35-fac638277790))
(fp_line (start -0.25 1.75) (end -0.25 2.25) (layer "F.Fab") (width 0.1) (tstamp 221beab3-9cff-4032-8f64-dc7e6bf58157))
(fp_line (start -0.25 1.75) (end 1.5 1.75) (layer "F.Fab") (width 0.1) (tstamp 3ec4f716-a2c0-4b93-9dbd-504a7fda9c7b))
(fp_line (start 3 2.25) (end 7.2 2.25) (layer "F.Fab") (width 0.1) (tstamp 4a3015a1-d44a-46ea-992c-9bb319bd7223))
(fp_line (start -0.25 2.25) (end 1.5 2.25) (layer "F.Fab") (width 0.1) (tstamp 5520d6cc-2788-4328-aaa5-6d644c01e181))
(fp_line (start -0.25 5.75) (end -0.25 6.25) (layer "F.Fab") (width 0.1) (tstamp 5557a495-5ab8-4af9-b644-a9349e138ef4))
(fp_line (start -0.25 3.75) (end 1.5 3.75) (layer "F.Fab") (width 0.1) (tstamp 6acdb70d-7779-4b47-acb8-bfb65b939a0c))
(fp_line (start -0.25 4.25) (end 1.5 4.25) (layer "F.Fab") (width 0.1) (tstamp 703364f4-e591-40d7-b275-a43b29a8852c))
(fp_line (start 3 -1) (end 3 7) (layer "F.Fab") (width 0.1) (tstamp 7561c1fa-e389-43c1-ab11-acf48e79a6e8))
(fp_line (start 1.5 -0.625) (end 1.875 -1) (layer "F.Fab") (width 0.1) (tstamp 8d4ff9c0-e598-466d-84a8-c8d321db9b4b))
(fp_line (start 7.2 3.75) (end 7.2 4.25) (layer "F.Fab") (width 0.1) (tstamp 8dd91693-fffc-4a5f-a4ab-6def788f2bd4))
(fp_line (start -0.25 -0.25) (end 1.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 94e4b199-0efd-4770-87b1-c89fd5314581))
(fp_line (start 3 5.75) (end 7.2 5.75) (layer "F.Fab") (width 0.1) (tstamp 9bd37594-cdb5-4da3-9e69-b119ed274e57))
(fp_line (start 3 -0.25) (end 7.2 -0.25) (layer "F.Fab") (width 0.1) (tstamp b5c271c6-9817-4a1f-95c3-a4a6d6aeb908))
(fp_line (start 1.5 7) (end 1.5 -0.625) (layer "F.Fab") (width 0.1) (tstamp be6a14a9-6f42-439f-a6c2-fc8fc1c8b4a7))
(fp_line (start 7.2 -0.25) (end 7.2 0.25) (layer "F.Fab") (width 0.1) (tstamp d2c29bf0-87f9-4c7c-bc1b-776dbb9d1c65))
(fp_line (start -0.25 5.75) (end 1.5 5.75) (layer "F.Fab") (width 0.1) (tstamp da727822-92a6-4d34-a412-7804e0415ff4))
(fp_line (start 3 1.75) (end 7.2 1.75) (layer "F.Fab") (width 0.1) (tstamp dfc4c598-1169-4961-a24f-83e8ecc348a1))
(fp_line (start 3 6.25) (end 7.2 6.25) (layer "F.Fab") (width 0.1) (tstamp ea1bdf26-3ea8-4892-937e-8b9ba94cbca3))
(fp_line (start 3 3.75) (end 7.2 3.75) (layer "F.Fab") (width 0.1) (tstamp eadd6e11-0489-42fb-8e95-906ff8f95a62))
(fp_line (start 3 4.25) (end 7.2 4.25) (layer "F.Fab") (width 0.1) (tstamp f8500812-170b-46c0-8918-4cc489ad516d))
(pad "1" thru_hole circle locked (at 0 0) (size 1.35 1.35) (drill 0.75) (layers *.Cu *.Mask)
(net 26 "/~{WE}") (pinfunction "A") (pintype "passive") (tstamp 1114ffba-7468-4334-939a-51a895f77c50))
(pad "2" thru_hole circle locked (at 0 2) (size 1.35 1.35) (drill 0.75) (layers *.Cu *.Mask)
(net 27 "/A14_~{WE}") (pinfunction "B") (pintype "passive") (tstamp bee533cf-d588-404a-b122-565164be2bf0))
(pad "3" thru_hole circle locked (at 0 4) (size 1.35 1.35) (drill 0.75) (layers *.Cu *.Mask)
(net 25 "/A14") (pinfunction "C") (pintype "passive") (tstamp 6d56911e-36e9-4d11-b7e0-b878d9917d27))
(pad "4" thru_hole circle locked (at 0 6) (size 1.35 1.35) (drill 0.75) (layers *.Cu *.Mask)
(net 28 "/NC_A14") (pinfunction "D") (pintype "passive") (tstamp d20f76a7-d0f5-4866-bcfe-1d10e7cf3147))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x04_P2.00mm_Horizontal.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 9f4a96cc-025a-4396-8e9c-fe9f4f4cef69)
(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_102.kicad_sch")
(property "Sheetname" "")
(path "/ae14f39a-abe8-4843-8454-0883709a3f97")
(attr smd)
(fp_text reference "U1" (at 2.1 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e987f2b6-7517-4171-9741-528bb811b513)
)
(fp_text value "28C256 / FM18W08" (at 0 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f859834b-d72e-4ff8-8a69-11f5411dc982)
)
(fp_text user "${REFERENCE}" (at -0.01 1.61 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51c52aa1-cd70-41ca-a19c-a88d5eeeaf5e)
)
(fp_line (start -3.875 -9.125) (end -3.875 -8.78) (layer "F.SilkS") (width 0.15) (tstamp 0164fc1f-013b-49ee-95e4-49dab41d4938))
(fp_line (start -3.875 -9.125) (end 3.875 -9.125) (layer "F.SilkS") (width 0.15) (tstamp 24eef0b4-4cb0-4acf-a918-19601167c2c7))
(fp_line (start -3.875 9.125) (end 3.875 9.125) (layer "F.SilkS") (width 0.15) (tstamp 365b6e19-eb6b-4fcf-98c2-0f6007147593))
(fp_line (start 3.875 9.125) (end 3.875 8.78) (layer "F.SilkS") (width 0.15) (tstamp 4d1486c3-5f54-4c78-984d-c412005bc08b))
(fp_line (start -3.875 9.125) (end -3.875 8.78) (layer "F.SilkS") (width 0.15) (tstamp eba84598-f346-4cff-9fa2-642965444517))
(fp_line (start 3.875 -9.125) (end 3.875 -8.78) (layer "F.SilkS") (width 0.15) (tstamp fae8945b-1499-4a34-a0df-624b0efc9bc2))
(fp_circle (center -2.54 -7.747) (end -2.3368 -7.747) (layer "F.SilkS") (width 0.4064) (fill none) (tstamp 4007d28c-2d77-4b59-8730-8d7ce2971c31))
(fp_line (start -5.95 9.3) (end 5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp 896dc76b-23d9-4acd-84c7-00fd141b1ebd))
(fp_line (start -5.95 -9.3) (end -5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp 9b1c62d9-8c91-419e-b5d9-31c274fd5d35))
(fp_line (start -5.95 -9.3) (end 5.95 -9.3) (layer "F.CrtYd") (width 0.05) (tstamp e6ddf467-8f40-4c88-ab0e-c3e0ae81cd7b))
(fp_line (start 5.95 -9.3) (end 5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp fbda9b6f-ebbe-4e3b-a354-59e57ee9f7aa))
(fp_line (start -3.75 8.95) (end -3.75 -7.95) (layer "F.Fab") (width 0.15) (tstamp 1ac5ffa2-ab1c-4fdf-83a6-0c0c02aa2806))
(fp_line (start -3.75 -7.95) (end -2.75 -8.95) (layer "F.Fab") (width 0.15) (tstamp 216085a8-0680-47dd-8e76-ae3fbbbff70e))
(fp_line (start 3.75 8.95) (end -3.75 8.95) (layer "F.Fab") (width 0.15) (tstamp 27fdd520-6ab0-4882-bdec-75a23b0be197))
(fp_line (start 3.75 -8.95) (end 3.75 8.95) (layer "F.Fab") (width 0.15) (tstamp 4b7929f0-eb0d-49ee-97aa-ccb9cb83b80d))
(fp_line (start -2.75 -8.95) (end 3.75 -8.95) (layer "F.Fab") (width 0.15) (tstamp 866f9331-cd90-439e-b183-1ce92f58ebbe))
(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 "/A14") (pinfunction "A14") (pintype "input") (tstamp a2370e46-bf03-462b-83f6-840b189814ed))
(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 e68123d0-8f36-470b-889a-e1d74049365b))
(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 8807fe73-0bf5-4824-b123-e00edc559ae7))
(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 ffbb50d8-34c5-4384-a247-489ee7edc257))
(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 e6dbd8e1-c9f4-4966-94c7-58f55ff82988))
(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 f76fe309-f70c-4447-9f71-8c6cdc6cf899))
(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 12 "/A3") (pinfunction "A3") (pintype "input") (tstamp 435e5a48-c60d-45e6-9003-84347a59c3b2))
(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 14 "/A2") (pinfunction "A2") (pintype "input") (tstamp a3e2dda7-8191-4dbd-b76c-732c474e2a45))
(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 16 "/A1") (pinfunction "A1") (pintype "input") (tstamp eb6d610a-bbf4-4d83-bcb5-e3aed38f17ab))
(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 18 "/A0") (pinfunction "A0") (pintype "input") (tstamp 0ceca15c-53c3-4462-b437-f27079811640))
(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 20 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp df9ba96c-0609-44b3-8287-d5b04012861b))
(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 22 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp 4fadb7bc-3627-48a4-9eeb-2fa2fafbf9d8))
(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 24 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp f64151eb-e1b1-4be5-b412-a489fc76c947))
(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 29 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 762b3347-e174-414b-bcbc-f4ca1b995b15))
(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 ba834b8f-8e4d-4804-bdbb-aa9f2b92867d))
(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 9bd42a97-351f-410f-8f69-2cc62db2c6ec))
(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 a77bb5a4-c5e4-4a36-aa33-b8004904d632))
(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 870b755e-53d8-47c2-aec8-cc17e8108dcd))
(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 d2ae22bf-735c-4a71-a174-09dfebc85afa))
(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 31 "/~{CS}_IC") (pinfunction "~{CE}") (pintype "input") (tstamp 8ee2def6-a322-4bc6-b8e0-d07ec4bbb05a))
(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 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp 4b44b81d-9d41-43d7-bce5-03b4a8ea0ea0))
(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 15 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 2aeeab15-38d6-4e8a-988a-eba9c67f1155))
(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 17 "/A11") (pinfunction "A11") (pintype "input") (tstamp 37cdf747-de5d-4d5a-9d5e-8b0408ed5f4c))
(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 19 "/A9") (pinfunction "A9") (pintype "input") (tstamp 9db09da8-e7da-4a40-b3b3-5b2acd7a844f))
(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 21 "/A8") (pinfunction "A8") (pintype "input") (tstamp e624a3c5-c61b-4d98-ad8d-c42a5f5877bc))
(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 23 "/A13") (pinfunction "A13") (pintype "input") (tstamp bec1a045-36ca-4681-b159-019705cb2ff7))
(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 26 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp e95d11c5-822d-464a-9780-101173c28a05))
(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 30 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 13de2a2e-2471-4d7c-9325-8fd5c51bb5cc))
(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:C_0805" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp a3f6ca9c-7216-486f-a501-174707a1552f)
(at 116.65 97.5 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_102.kicad_sch")
(property "Sheetname" "")
(path "/158b3a4e-f997-4762-ba41-2c628a9da99b")
(attr smd)
(fp_text reference "C1" (at 2.1 -0.85 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp fb77e08b-84c1-4701-af5c-7351787a2234)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp b2a30a43-cfde-4496-a86c-9790dda3d03f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3152edbe-37d7-45e5-924e-38f80b62a135)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 646388d2-2690-4c99-a1b5-e7f7016c674b))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c98eb21f-dc65-4c4d-a0a5-265d939dd61c))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 43f62451-7fa7-4fd9-8547-f6f8f7203be7))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b57c430c-8214-4258-9926-b6efbf714a58))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp d2708ffe-e503-4442-84f9-4ba7db0f1917))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp e92228a0-6d98-4411-b04f-03eac4f68190))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5f035374-0325-4722-b47b-506342674e74))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 63c19ad1-8f72-4dbf-a0d5-5cc70c8df92b))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 74e4168b-0337-4928-a3da-b2cfd4e772a5))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp bfbc3837-5520-461f-b7cf-602a6e219ead))
(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 30 "VCC") (pintype "passive") (tstamp 4e246142-d41f-4c1b-aef6-ecfcefd5c7d8))
(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 29 "GND") (pintype "passive") (tstamp 10f8de36-d467-4054-a530-2ad61abad487))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 135.9 103.5) (end 135.9 99.7) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa060c1))
(gr_line (start 139.8 97.7) (end 139.8 101.5) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa060c3))
(gr_line (start 138 97.7) (end 139.8 97.7) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa060c4))
(gr_line (start 139.8 101.5) (end 138 101.5) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa0618a))
(gr_line (start 138 101.5) (end 138 97.7) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa0618d))
(gr_line (start 139.8 101.7) (end 138 101.7) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa06191))
(gr_line (start 139.8 101.7) (end 139.8 105.5) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa06194))
(gr_line (start 138 105.5) (end 138 101.7) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa06197))
(gr_line (start 139.8 105.5) (end 138 105.5) (layer "B.SilkS") (width 0.12) (tstamp 00000000-0000-0000-0000-00005fa0619a))
(gr_poly
(pts
(xy 139.15 100.35)
(xy 139.15 100.85)
(xy 138.65 100.85)
(xy 138.65 100.35)
) (layer "B.SilkS") (width 0.1) (fill solid) (tstamp 00000000-0000-0000-0000-00005fa061a3))
(gr_poly
(pts
(xy 139.15 102.35)
(xy 139.15 102.85)
(xy 138.65 102.85)
(xy 138.65 102.35)
) (layer "B.SilkS") (width 0.1) (fill solid) (tstamp 00000000-0000-0000-0000-00005fa061cc))
(gr_poly
(pts
(xy 139.15 104.35)
(xy 139.15 104.85)
(xy 138.65 104.85)
(xy 138.65 104.35)
) (layer "B.SilkS") (width 0.1) (fill solid) (tstamp 00000000-0000-0000-0000-00005fa061cf))
(gr_line (start 137.7 103.5) (end 135.9 103.5) (layer "B.SilkS") (width 0.12) (tstamp 060e60ce-3f11-4dae-8a36-357caefb03bc))
(gr_poly
(pts
(xy 139.15 98.35)
(xy 139.15 98.85)
(xy 138.65 98.85)
(xy 138.65 98.35)
) (layer "B.SilkS") (width 0.1) (fill solid) (tstamp 939dd684-192d-4042-ba41-da3cec590ecf))
(gr_line (start 135.9 99.7) (end 137.7 99.7) (layer "B.SilkS") (width 0.12) (tstamp f8e4d315-9412-4698-a7fc-396debd7ee8a))
(gr_line (start 137.7 99.7) (end 137.7 103.5) (layer "B.SilkS") (width 0.12) (tstamp ff02d555-19bf-4521-a697-c192f6e96a9c))
(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.1 99.65) (end 144.5 103.55) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 99216085-5388-497d-9d97-aa49df8a69a5))
(gr_text "C1: ${a3f6ca9c-7216-486f-a501-174707a1552f:VALUE} R1,R2: ${00000000-0000-0000-0000-00005f9fca43:VALUE}\nLegs: TE 1544210 or Mill-Max 3121" (at 127 107.442) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005f9fc84b)
(effects (font (size 0.6 0.6) (thickness 0.08)) (justify mirror))
)
(gr_text "PROGRAM" (at 140.8 101.6 90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005fa060b9)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "${TITLE} ${REVISION}\n${COMMENT2}" (at 127 96.012) (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 135.1 101.6 90) (layer "B.SilkS") (tstamp 8a5802ac-38ad-42c6-8836-2ea693296bec)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "To boot from EEPROM/FRAM:\nConnect ~{CS}_BUS to ~{CS}_IC\n\nTo boot from REX_Classic:\nConnect ~{CS}_BUS to REX TP1" (at 132.715 101.981) (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_102" (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 "~{CS}" (at 113.157 105.156 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f9fc851)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "Virtual 27C256 with ~{CS} breakout" (at 129.5 95.4) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f9fc85a)
(effects (font (size 1 1) (thickness 0.15)))
)
(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))
)
(segment (start 143.515 93.985) (end 141.2086 96.2914) (width 0.2) (layer "F.Cu") (net 1) (tstamp 2b0847f8-997a-4ca0-9713-c71281506a96))
(segment (start 141.2086 96.2914) (end 135.255 96.2914) (width 0.2) (layer "F.Cu") (net 1) (tstamp b9d13009-0af9-4f83-93f6-62cc542774ee))
(segment (start 135.255 96.2914) (end 135.255 96.9) (width 0.2) (layer "F.Cu") (net 1) (tstamp c10f304d-93ff-46fd-9e1b-19fa1379ff91))
(segment (start 119.38 107.3785) (end 114.8715 107.3785) (width 0.2) (layer "F.Cu") (net 2) (tstamp 48b95d36-89fd-4899-abf0-6c2ad1ad011c))
(segment (start 120.015 106.3) (end 120.015 106.7435) (width 0.2) (layer "F.Cu") (net 2) (tstamp 4df3b4fa-938f-4078-9e2c-bb407be2a135))
(segment (start 120.015 106.7435) (end 119.38 107.3785) (width 0.2) (layer "F.Cu") (net 2) (tstamp a830abdb-f72c-412c-9e05-8a1f0af4d9be))
(segment (start 114.8715 107.3785) (end 113.03 109.22) (width 0.2) (layer "F.Cu") (net 2) (tstamp b3e029c5-7359-430a-b4c5-a1cf79f33c2a))
(segment (start 133.985 96.4565) (end 134.62 95.8215) (width 0.2) (layer "F.Cu") (net 3) (tstamp 60870f87-9f36-4db0-8f86-bedc88c9d731))
(segment (start 139.1385 95.8215) (end 140.975 93.985) (width 0.2) (layer "F.Cu") (net 3) (tstamp 9df24f26-4286-42ef-babd-95a08e904ff7))
(segment (start 133.985 96.9) (end 133.985 96.4565) (width 0.2) (layer "F.Cu") (net 3) (tstamp b1354ade-4518-4f71-b783-308e41b35b92))
(segment (start 134.62 95.8215) (end 139.1385 95.8215) (width 0.2) (layer "F.Cu") (net 3) (tstamp beb88579-6c7b-4b1d-b417-ca961657cf4f))
(segment (start 116.967 107.823) (end 115.57 109.22) (width 0.2) (layer "F.Cu") (net 4) (tstamp 17101dce-ff65-4fef-acc5-73a018712452))
(segment (start 120.2055 107.823) (end 116.967 107.823) (width 0.2) (layer "F.Cu") (net 4) (tstamp 19b40e3a-9a38-45e1-8dfb-b1abc1557192))
(segment (start 121.285 106.3) (end 121.285 106.7435) (width 0.2) (layer "F.Cu") (net 4) (tstamp 2e591c3e-8822-4cf8-8c7b-0fd784904686))
(segment (start 121.285 106.7435) (end 120.2055 107.823) (width 0.2) (layer "F.Cu") (net 4) (tstamp 7f9bbffa-b1f3-4149-a75e-eb0541d7dd77))
(segment (start 137.033 95.377) (end 138.43 93.98) (width 0.2) (layer "F.Cu") (net 5) (tstamp 197f7326-4630-4727-a43a-cca1ede87b3b))
(segment (start 133.7945 95.377) (end 137.033 95.377) (width 0.2) (layer "F.Cu") (net 5) (tstamp 46647d5b-5a17-4219-857d-a013b3f2aa37))
(segment (start 132.715 96.9) (end 132.715 96.4565) (width 0.2) (layer "F.Cu") (net 5) (tstamp 6b829195-df5a-437f-8261-6f7c79a23bd6))
(segment (start 132.715 96.4565) (end 133.7945 95.377) (width 0.2) (layer "F.Cu") (net 5) (tstamp e0198305-5d20-4709-808b-41a2a7500500))
(segment (start 122.555 106.7435) (end 121.031 108.2675) (width 0.2) (layer "F.Cu") (net 6) (tstamp 082785f1-6f43-44a2-b75b-cfa343f0b7aa))
(segment (start 121.031 108.2675) (end 119.0625 108.2675) (width 0.2) (layer "F.Cu") (net 6) (tstamp 3ee54066-c277-4027-a388-674705a2e0a3))
(segment (start 122.555 106.3) (end 122.555 106.7435) (width 0.2) (layer "F.Cu") (net 6) (tstamp 93e6fd9a-af6c-4c69-a172-5273c5b5b355))
(segment (start 119.0625 108.2675) (end 118.11 109.22) (width 0.2) (layer "F.Cu") (net 6) (tstamp f798a98e-4174-4329-86b1-0f1473c85235))
(segment (start 135.89 93.98) (end 134.9375 94.9325) (width 0.2) (layer "F.Cu") (net 7) (tstamp 09d50428-fd8c-46ec-96ee-1e9712532d64))
(segment (start 131.445 96.4565) (end 131.445 96.9) (width 0.2) (layer "F.Cu") (net 7) (tstamp 28cce669-2865-47e6-9b11-f337a68d7a69))
(segment (start 132.969 94.9325) (end 131.445 96.4565) (width 0.2) (layer "F.Cu") (net 7) (tstamp ae38f3b2-8ca7-464e-a0de-4738f3117ce7))
(segment (start 134.9375 94.9325) (end 132.969 94.9325) (width 0.2) (layer "F.Cu") (net 7) (tstamp c0332565-8497-4451-a876-d0dcc6062f00))
(segment (start 122.9685 107.6) (end 123.825 106.7435) (width 0.2) (layer "F.Cu") (net 8) (tstamp 03d04919-3213-49f4-9c6b-ec5adc444896))
(segment (start 120.65 109.22) (end 120.89 109.22) (width 0.2) (layer "F.Cu") (net 8) (tstamp 1acc2292-b578-469b-86e9-877a293265df))
(segment (start 120.89 109.22) (end 122.51 107.6) (width 0.2) (layer "F.Cu") (net 8) (tstamp 41a9027e-fcb2-4431-ad89-66ebe8c0e1b8))
(segment (start 123.825 106.7435) (end 123.825 106.3) (width 0.2) (layer "F.Cu") (net 8) (tstamp 48fb80fd-2948-48d1-9310-7c7900baff12))
(segment (start 122.51 107.6) (end 122.9685 107.6) (width 0.2) (layer "F.Cu") (net 8) (tstamp d0d425de-21f0-4eda-81d3-f7e971986728))
(segment (start 131.5 95.6) (end 133.12 93.98) (width 0.2) (layer "F.Cu") (net 9) (tstamp 0061a4d2-5865-48f7-ac06-837e39a7772e))
(segment (start 133.12 93.98) (end 133.35 93.98) (width 0.2) (layer "F.Cu") (net 9) (tstamp 245da8da-4238-4e3b-bed7-c6314717e188))
(segment (start 131.0162 95.6) (end 131.5 95.6) (width 0.2) (layer "F.Cu") (net 9) (tstamp 2d185b83-780f-42e9-b316-b5e8f668b155))
(segment (start 130.175 96.4412) (end 131.0162 95.6) (width 0.2) (layer "F.Cu") (net 9) (tstamp 65b1086a-76ad-4c96-bc8a-2c6b801d12b6))
(segment (start 130.175 96.9) (end 130.175 96.4412) (width 0.2) (layer "F.Cu") (net 9) (tstamp b3e12d32-2858-4c3e-84fa-83a03b668609))
(segment (start 123.19 109.22) (end 125.095 107.315) (width 0.2) (layer "F.Cu") (net 10) (tstamp 5be8bf57-5c0a-45ab-bd99-12e913f2508b))
(segment (start 125.095 107.315) (end 125.095 106.3) (width 0.2) (layer "F.Cu") (net 10) (tstamp e767bee9-83f4-4228-b805-9606cfae0bcc))
(segment (start 111.76 95.885) (end 113.225 97.35) (width 0.2) (layer "B.Cu") (net 11) (tstamp 1b985107-cd87-4fc4-a3b1-01685d5019d1))
(segment (start 113.225 97.35) (end 127.44 97.35) (width 0.2) (layer "B.Cu") (net 11) (tstamp 6ed0a8cd-dac8-46ad-85b5-15a7946badc6))
(segment (start 127.44 97.35) (end 130.81 93.98) (width 0.2) (layer "B.Cu") (net 11) (tstamp e0174e04-3b21-4a34-8ec9-b2a76d320a06))
(segment (start 126.365 108.585) (end 125.73 109.22) (width 0.2) (layer "F.Cu") (net 12) (tstamp 09fb17ea-b17e-4abf-9b07-6269380a0b2b))
(segment (start 126.365 106.3) (end 126.365 108.585) (width 0.2) (layer "F.Cu") (net 12) (tstamp de315371-af04-4b65-9f0b-7d9a7bdc308a))
(segment (start 127.635 94.625) (end 128.275 93.985) (width 0.2) (layer "F.Cu") (net 13) (tstamp cde8455a-83e4-46c9-90da-9d10749bdb8c))
(segment (start 127.635 96.9) (end 127.635 94.625) (width 0.2) (layer "F.Cu") (net 13) (tstamp ef41a64e-6efe-45a8-952a-16949ff811e5))
(segment (start 127.635 106.3) (end 127.635 108.585) (width 0.2) (layer "F.Cu") (net 14) (tstamp e21f72ba-e28f-4764-a205-89326e1b2027))
(segment (start 127.635 108.585) (end 128.275 109.225) (width 0.2) (layer "F.Cu") (net 14) (tstamp ef5f5a0f-cdbe-4435-a53b-a79113140f7d))
(segment (start 126.365 96.9) (end 126.365 94.615) (width 0.2) (layer "F.Cu") (net 15) (tstamp 5b820b2a-f000-4469-939f-e457f40bfc3c))
(segment (start 126.365 94.615) (end 125.735 93.985) (width 0.2) (layer "F.Cu") (net 15) (tstamp bddedc66-28e4-4307-8717-10845fc60fb5))
(segment (start 128.905 107.315) (end 130.815 109.225) (width 0.2) (layer "F.Cu") (net 16) (tstamp 95ebc520-7510-43db-b548-155ae15859b3))
(segment (start 128.905 106.3) (end 128.905 107.315) (width 0.2) (layer "F.Cu") (net 16) (tstamp e03fc1e3-5a46-4dcd-b18d-fae954df0197))
(segment (start 125.095 96.9) (end 125.095 95.885) (width 0.2) (layer "F.Cu") (net 17) (tstamp 3ca78be2-0d59-466e-a20c-ff6125696777))
(segment (start 125.095 95.885) (end 123.195 93.985) (width 0.2) (layer "F.Cu") (net 17) (tstamp b2d62bd5-57d6-482d-ae5c-c22e9de6008c))
(segment (start 130.175 106.3) (end 130.175 106.7435) (width 0.2) (layer "F.Cu") (net 18) (tstamp 0a55bfe9-083a-4e72-8576-8dd746f934bf))
(segment (start 133.12 109.22) (end 133.35 109.22) (width 0.2) (layer "F.Cu") (net 18) (tstamp 50cd7ce3-ca5a-45f5-a9af-0c98180c7106))
(segment (start 131.5 107.6) (end 133.12 109.22) (width 0.2) (layer "F.Cu") (net 18) (tstamp 5b3e7e97-9aa7-4a20-a680-a5b6635d0b71))
(segment (start 130.175 106.7435) (end 131.0315 107.6) (width 0.2) (layer "F.Cu") (net 18) (tstamp 9524330d-81e9-4ed8-8493-7a341973d8d4))
(segment (start 131.0315 107.6) (end 131.5 107.6) (width 0.2) (layer "F.Cu") (net 18) (tstamp 9abfd2ce-55a4-40ab-8c24-80f816495617))
(segment (start 123.825 96.4565) (end 123.825 96.9) (width 0.2) (layer "F.Cu") (net 19) (tstamp 579cf328-41cc-4c9f-b846-ab1836c913e8))
(segment (start 122.5 95.6) (end 122.9685 95.6) (width 0.2) (layer "F.Cu") (net 19) (tstamp 73bc4e79-cdd1-4a94-9c86-99b7d1aea889))
(segment (start 120.885 93.985) (end 122.5 95.6) (width 0.2) (layer "F.Cu") (net 19) (tstamp 8a757540-66f3-4976-a72a-95af9708980b))
(segment (start 120.655 93.985) (end 120.885 93.985) (width 0.2) (layer "F.Cu") (net 19) (tstamp 92d924d8-c1a7-4dbe-9583-963a79f8d260))
(segment (start 122.9685 95.6) (end 123.825 96.4565) (width 0.2) (layer "F.Cu") (net 19) (tstamp e88c2986-8b00-4249-a44f-8fc4001b8135))
(segment (start 132.9675 108.2675) (end 134.9375 108.2675) (width 0.2) (layer "F.Cu") (net 20) (tstamp 01cea4a0-08ef-4442-bd95-27142ab0a636))
(segment (start 134.9375 108.2675) (end 135.895 109.225) (width 0.2) (layer "F.Cu") (net 20) (tstamp 789d9c29-a614-4dd0-b068-225eb1ad9e4e))
(segment (start 131.445 106.3) (end 131.445 106.745) (width 0.2) (layer "F.Cu") (net 20) (tstamp 8a93aeba-2166-4d38-b179-17c4cf8b01a1))
(segment (start 131.445 106.745) (end 132.9675 108.2675) (width 0.2) (layer "F.Cu") (net 20) (tstamp adfabd95-44fa-44cf-bf06-ddd114a9e54d))
(segment (start 119.253 95.123) (end 118.115 93.985) (width 0.2) (layer "F.Cu") (net 21) (tstamp 6b02550f-552c-4274-a974-c187c12a428a))
(segment (start 121.2215 95.123) (end 119.253 95.123) (width 0.2) (layer "F.Cu") (net 21) (tstamp 9d8dca79-dc72-41ad-afa8-446bc72c8cc5))
(segment (start 122.555 96.9) (end 122.555 96.4565) (width 0.2) (layer "F.Cu") (net 21) (tstamp be2d32d9-c83c-4f1b-8603-a305d140f3c1))
(segment (start 122.555 96.4565) (end 121.2215 95.123) (width 0.2) (layer "F.Cu") (net 21) (tstamp d8ac2422-65f5-4072-954a-9294fa2c146e))
(segment (start 133.7945 107.823) (end 137.033 107.823) (width 0.2) (layer "F.Cu") (net 22) (tstamp 2327db00-5b3d-414a-ad2b-0482034c2e66))
(segment (start 132.715 106.3) (end 132.715 106.7435) (width 0.2) (layer "F.Cu") (net 22) (tstamp 275b01ca-172c-4420-a1ad-aefd4231e762))
(segment (start 137.033 107.823) (end 138.43 109.22) (width 0.2) (layer "F.Cu") (net 22) (tstamp 86c706a2-9fe3-4898-8502-143615241843))
(segment (start 132.715 106.7435) (end 133.7945 107.823) (width 0.2) (layer "F.Cu") (net 22) (tstamp fa4b4ff9-f076-412a-bdf9-f8dcf01c1781))
(segment (start 120.523 95.6945) (end 117.2845 95.6945) (width 0.2) (layer "F.Cu") (net 23) (tstamp 103580f0-8f23-4577-b84f-a0e8648a3383))
(segment (start 117.2845 95.6945) (end 115.57 93.98) (width 0.2) (layer "F.Cu") (net 23) (tstamp 14a0f34c-4f2d-4141-960b-ff451be7375b))
(segment (start 121.285 96.4565) (end 120.523 95.6945) (width 0.2) (layer "F.Cu") (net 23) (tstamp 4373234d-ca5e-4a1b-bca7-2e8e5fb403ae))
(segment (start 121.285 96.9) (end 121.285 96.4565) (width 0.2) (layer "F.Cu") (net 23) (tstamp fa47bc28-2862-430b-9ca0-7b00cfde612f))
(segment (start 133.985 106.3) (end 133.985 106.7435) (width 0.2) (layer "F.Cu") (net 24) (tstamp 22441294-10ff-4ac8-9edd-b1c4379583fd))
(segment (start 133.985 106.7435) (end 134.62 107.3785) (width 0.2) (layer "F.Cu") (net 24) (tstamp 50cb425c-8d7c-45a1-9581-a29a5c0677ca))
(segment (start 134.62 107.3785) (end 139.1285 107.3785) (width 0.2) (layer "F.Cu") (net 24) (tstamp 9c06fc42-e671-4e95-8713-d959f6fad4b5))
(segment (start 139.1285 107.3785) (end 140.975 109.225) (width 0.2) (layer "F.Cu") (net 24) (tstamp a4d5ea21-4908-44a4-9f22-d99ff7f58926))
(segment (start 136.8 102.6) (end 122 102.6) (width 0.2) (layer "F.Cu") (net 25) (tstamp 04cc7a32-e01b-46a2-80dc-82a944641db2))
(segment (start 118.745 105.855) (end 118.745 106.3) (width 0.2) (layer "F.Cu") (net 25) (tstamp 0a02c2a5-fa0e-433a-8e24-49687837c115))
(segment (start 122 102.6) (end 118.745 105.855) (width 0.2) (layer "F.Cu") (net 25) (tstamp 2ff3a5bd-a2b0-4773-879e-a0df9e48969b))
(segment (start 117.8 102.3) (end 120.015 100.085) (width 0.2) (layer "F.Cu") (net 26) (tstamp 13e9e5bc-273b-4943-b62d-48d18f62c0d3))
(segment (start 120.015 100.085) (end 120.015 96.9) (width 0.2) (layer "F.Cu") (net 26) (tstamp 7e674fa3-e5fb-4a48-a3d9-4c826d245f92))
(segment (start 116.9 102.3) (end 117.8 102.3) (width 0.2) (layer "F.Cu") (net 26) (tstamp 9b554c99-872a-4064-994e-da2b148d9afa))
(segment (start 116.65 102.55) (end 116.9 102.3) (width 0.2) (layer "F.Cu") (net 26) (tstamp a7584431-254b-47ff-a17b-972e7de5cb52))
(via (at 116.65 102.55) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 26) (tstamp 1f09f9d8-3519-47e8-9d73-c490e4265868))
(segment (start 132.5 98.6) (end 136.8 98.6) (width 0.2) (layer "B.Cu") (net 26) (tstamp 3a61a0a4-ffc8-4d24-b3ae-a5f50fe55d8e))
(segment (start 119.145 100.055) (end 131.045 100.055) (width 0.2) (layer "B.Cu") (net 26) (tstamp 7ab79d5c-afd5-4364-8e1b-d3fc861339fe))
(segment (start 116.65 102.55) (end 119.145 100.055) (width 0.2) (layer "B.Cu") (net 26) (tstamp abe61889-a3f8-49d3-b38d-5252bb8bb1d0))
(segment (start 131.045 100.055) (end 132.5 98.6) (width 0.2) (layer "B.Cu") (net 26) (tstamp c302379a-e7ec-4f16-960f-b0794a83d8e6))
(segment (start 117.5 105.9) (end 122.8 100.6) (width 0.2) (layer "F.Cu") (net 27) (tstamp 31254f75-b58c-421e-a2f1-f26f3503adaf))
(segment (start 113.03 103.43) (end 115.5 105.9) (width 0.2) (layer "F.Cu") (net 27) (tstamp 7edd3fea-78d2-4635-a39d-b967ffb44ab0))
(segment (start 113.03 93.98) (end 113.03 103.43) (width 0.2) (layer "F.Cu") (net 27) (tstamp 8ab4187a-26cc-4a01-a9e1-795a7701a051))
(segment (start 115.5 105.9) (end 117.5 105.9) (width 0.2) (layer "F.Cu") (net 27) (tstamp 8cb9b6c8-af46-4c0f-b692-12008ad80196))
(segment (start 122.8 100.6) (end 136.8 100.6) (width 0.2) (layer "F.Cu") (net 27) (tstamp bf629221-60d4-4105-a85b-551fe10a7409))
(segment (start 115.36 104.35) (end 110.49 109.22) (width 0.2) (layer "B.Cu") (net 28) (tstamp 0d871553-a23f-4dbd-9798-868bdf1408dd))
(segment (start 136.8 104.6) (end 136.55 104.35) (width 0.2) (layer "B.Cu") (net 28) (tstamp 9c71d388-b3c1-4f63-a556-b12904ae7ec2))
(segment (start 136.55 104.35) (end 115.36 104.35) (width 0.2) (layer "B.Cu") (net 28) (tstamp deb8279c-bba9-4494-aa95-e8fda5a0e730))
(via (at 125.73 98.552) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 18439429-293c-47a4-8e54-a13747975c6a))
(via (at 130.81 105.029) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 34c45ebd-d815-4956-83c1-83ccf6bca4b7))
(via (at 133.35 99.6) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 481f212c-be77-496f-84db-47f3d5edbc15))
(via (at 115.2 99.6) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 5d616451-5628-4d00-bccc-418a39c366ef))
(via (at 134.62 99.6) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 81064e00-e428-4145-845c-013309dab591))
(via (at 119.85 101.35) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 83b9c660-499d-49e0-a3bb-bf6cf68d3d8c))
(via (at 118.55 102.6) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 98f75497-7f00-4cea-aecc-8ebffe07aa5c))
(via (at 114.3 106.5) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp 99092626-92c2-45db-ab27-54220e71bed2))
(via (at 130.81 98.933) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp a24231c0-1c01-4bb5-9ff7-87fad2644ae7))
(via (at 123.19 103.505) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp aeaa3802-965c-48e9-ad45-688e27a968f1))
(via (at 113.1 105.45) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp b58ffcf2-74a4-4c67-9e0c-0abc000e3d12))
(via (at 130.81 103.505) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp bb79a23d-955a-4843-813a-521159d36747))
(via (at 116.6 96.55) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp c5a10843-2723-478b-a7e4-79f63e330492))
(via (at 123.19 105.029) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp d45a6798-9cd6-4ce1-9020-7c8c3f75d07e))
(via (at 129.54 98.933) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp dc23538d-2bd5-4054-ac01-3004e5885a3e))
(via (at 121.92 98.552) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp f07c3117-baab-4a55-a7ac-601662d2702c))
(segment (start 115.3 106.4) (end 112.5 103.6) (width 0.2) (layer "F.Cu") (net 30) (tstamp 0a760843-5f09-4ed0-8f4e-2020637e8f26))
(segment (start 116.65 98.45) (end 117.8 98.45) (width 0.6) (layer "F.Cu") (net 30) (tstamp 655f4906-45b1-4240-8a9b-524c5769ec0e))
(segment (start 117.8 98.45) (end 118.745 97.505) (width 0.6) (layer "F.Cu") (net 30) (tstamp 70b03c1d-04c6-4cae-b128-f6989a77f0fe))
(segment (start 116.65 106.65) (end 116.4 106.4) (width 0.2) (layer "F.Cu") (net 30) (tstamp 835299e0-0df9-44fb-98af-3405335335d8))
(segment (start 118.745 97.505) (end 118.745 96.9) (width 0.6) (layer "F.Cu") (net 30) (tstamp a80d2a39-226a-4ae6-ac5f-d7a0b4656b4f))
(segment (start 116.4 106.4) (end 115.3 106.4) (width 0.2) (layer "F.Cu") (net 30) (tstamp be166f31-78bb-49e1-9b1f-c02e5c646d54))
(segment (start 110.49 96.52) (end 110.49 93.98) (width 0.2) (layer "F.Cu") (net 30) (tstamp c89fe76e-8435-482b-b977-7ca594daf7e1))
(segment (start 112.5 98.53) (end 110.49 96.52) (width 0.2) (layer "F.Cu") (net 30) (tstamp cbc45a51-3956-43dd-9762-9129f4eedeaf))
(segment (start 116.65 100.65) (end 116.65 98.45) (width 0.2) (layer "F.Cu") (net 30) (tstamp e0f5e54b-6462-4a14-afc0-20c8a3c8fb01))
(segment (start 112.5 103.6) (end 112.5 98.53) (width 0.2) (layer "F.Cu") (net 30) (tstamp ec443eac-f972-4323-8f48-7f7ff1f5b88a))
(via (at 116.65 98.45) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 30) (tstamp 586c350f-4b5b-41e5-a075-ce979d10eee5))
(segment (start 112.15 98.45) (end 110.49 96.79) (width 0.6) (layer "B.Cu") (net 30) (tstamp 54e432fd-1db9-4821-966e-4eb9d4df5cca))
(segment (start 110.49 96.79) (end 110.49 93.98) (width 0.6) (layer "B.Cu") (net 30) (tstamp 582d84cc-d50c-4784-8897-01d756a5027e))
(segment (start 116.65 98.45) (end 112.15 98.45) (width 0.6) (layer "B.Cu") (net 30) (tstamp e2af9b1f-1fc6-4b8a-84b7-13bc379a33f9))
(segment (start 115.6 104.75) (end 114.3 103.45) (width 0.2) (layer "F.Cu") (net 31) (tstamp 11a28120-34f3-46a5-85cc-0f06ce158f09))
(segment (start 117.45 104.75) (end 115.6 104.75) (width 0.2) (layer "F.Cu") (net 31) (tstamp 25e5ada4-ab6f-444c-85d3-f2cf7b3c0bf1))
(segment (start 127.653 99.55) (end 122.65 99.55) (width 0.2) (layer "F.Cu") (net 31) (tstamp 419505d3-ef0b-47f2-b57c-81f121659d3f))
(segment (start 128.905 98.298) (end 127.653 99.55) (width 0.2) (layer "F.Cu") (net 31) (tstamp 6189076b-8733-4998-81af-2e70bdca790c))
(segment (start 128.905 96.9) (end 128.905 98.298) (width 0.2) (layer "F.Cu") (net 31) (tstamp 8c3b273d-b3cd-4be9-bb99-b5c36706410b))
(segment (start 114.3 103.45) (end 114.3 95.885) (width 0.2) (layer "F.Cu") (net 31) (tstamp ede1af9b-4bde-43fd-b393-351bb73e9ea0))
(segment (start 122.65 99.55) (end 117.45 104.75) (width 0.2) (layer "F.Cu") (net 31) (tstamp f253d61b-623c-44e3-abac-57b4ce4c03be))
(zone (net 29) (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 108.702446)
(xy 111.288344 108.686069)
(xy 111.285344 108.663281)
(xy 111.284355 108.655769)
(xy 111.278436 108.643075)
(xy 111.240249 108.561183)
(xy 111.240248 108.561181)
(xy 111.236588 108.553333)
(xy 111.156667 108.473412)
(xy 111.148819 108.469752)
(xy 111.148817 108.469751)
(xy 111.0611 108.428848)
(xy 111.061099 108.428848)
(xy 111.054231 108.425645)
(xy 111.007554 108.4195)
(xy 109.972446 108.4195)
(xy 109.925769 108.425645)
(xy 109.918901 108.428848)
(xy 109.9189 108.428848)
(xy 109.831183 108.469751)
(xy 109.831181 108.469752)
(xy 109.823333 108.473412)
(xy 109.743412 108.553333)
(xy 109.739752 108.561181)
(xy 109.739751 108.561183)
(xy 109.701564 108.643075)
(xy 109.695645 108.655769)
(xy 109.694656 108.663281)
(xy 109.691656 108.686069)
(xy 109.6895 108.702446)
(xy 109.6895 109.737554)
(xy 109.4205 109.737554)
(xy 109.4205 103.170772)
(xy 109.439407 103.112581)
(xy 109.488907 103.076617)
(xy 109.511731 103.072077)
(xy 109.572946 103.06726)
(xy 109.700878 103.057192)
(xy 109.700883 103.057191)
(xy 109.704748 103.056887)
(xy 109.814916 103.030438)
(xy 109.926038 103.00376)
(xy 109.926041 103.003759)
(xy 109.929815 103.002853)
(xy 109.933401 103.001368)
(xy 109.933406 103.001366)
(xy 110.106915 102.929496)
(xy 110.143657 102.914277)
(xy 110.341011 102.793338)
(xy 110.517016 102.643016)
(xy 110.667338 102.467011)
(xy 110.788277 102.269657)
(xy 110.867373 102.078703)
(xy 110.875366 102.059406)
(xy 110.875368 102.059401)
(xy 110.876853 102.055815)