-
Notifications
You must be signed in to change notification settings - Fork 2
/
FlexROM_100.kicad_pcb
7934 lines (7920 loc) · 298 KB
/
FlexROM_100.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_100")
(date "2023-02-23")
(rev "007")
(company "Brian K. White - [email protected]")
(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
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.22)
(grid_origin 150 100)
(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 "/A10")
(net 3 "/D4")
(net 4 "/A7")
(net 5 "/D5")
(net 6 "/A6")
(net 7 "/D6")
(net 8 "/A5")
(net 9 "/D7")
(net 10 "/A4")
(net 11 "/A11")
(net 12 "/A3")
(net 13 "/~{OE}")
(net 14 "/A2")
(net 15 "/A13")
(net 16 "/A1")
(net 17 "/A0")
(net 18 "/A12")
(net 19 "/D0")
(net 20 "/A9")
(net 21 "/D1")
(net 22 "/A8")
(net 23 "/D2")
(net 24 "/~{CS_BUS}")
(net 25 "/A14")
(net 26 "/~{CS_IC}")
(net 27 "/~{WE}")
(net 28 "/ALE")
(net 29 "VCC")
(net 30 "GND")
(footprint "000_LOCAL:SOIC28W" (layer "F.Cu")
(tedit 5E621A1B) (tstamp 00000000-0000-0000-0000-00005e238cdf)
(at 150 100 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_100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5b130a")
(attr smd)
(fp_text reference "U1" (at 0 -10.05 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4828aab6-2b7c-4b90-8cb8-1af100c676a1)
)
(fp_text value "28C256" (at -0.0003 -0.0002) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3744d563-ddb7-4f6e-ac9d-4278d88aeab4)
)
(fp_text user "${REFERENCE}" (at -0.01 1.61 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5c691bf-133b-4c40-a533-0d3e238c16a4)
)
(fp_line (start -3.875 -9.125) (end 3.875 -9.125) (layer "F.SilkS") (width 0.15) (tstamp 54699e1e-c944-42cc-92ae-58d9b807857d))
(fp_line (start 3.875 -9.125) (end 3.875 -8.78) (layer "F.SilkS") (width 0.15) (tstamp 90b37585-e8c4-43b8-9d69-ad927cbfb519))
(fp_line (start 3.875 9.125) (end 3.875 8.78) (layer "F.SilkS") (width 0.15) (tstamp c3a7ea63-bc35-46fd-99bc-0c21021b6633))
(fp_line (start -3.875 9.125) (end -3.875 8.78) (layer "F.SilkS") (width 0.15) (tstamp c4d9d2f6-10c7-45eb-aeca-bc819bed4145))
(fp_line (start -3.875 -9.125) (end -3.875 -8.78) (layer "F.SilkS") (width 0.15) (tstamp e1f74e81-3fc9-445e-bab4-6f6f7497fddf))
(fp_line (start -3.875 9.125) (end 3.875 9.125) (layer "F.SilkS") (width 0.15) (tstamp ea8d2157-6326-4dd1-9dd3-f2675ee7e39a))
(fp_circle (center -2.54 -7.747) (end -2.3368 -7.747) (layer "F.SilkS") (width 0.4064) (fill none) (tstamp 69767eb0-e356-4b07-abee-1952d9c20b6c))
(fp_line (start -5.95 9.3) (end 5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp 1ea2dde5-21b3-48b5-8052-981c825abde1))
(fp_line (start -5.95 -9.3) (end -5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp 307b9235-9935-48ca-808f-5870e7fc1ec6))
(fp_line (start 5.95 -9.3) (end 5.95 9.3) (layer "F.CrtYd") (width 0.05) (tstamp 400f456a-0bb1-46d8-8fdd-636264c6f9d2))
(fp_line (start -5.95 -9.3) (end 5.95 -9.3) (layer "F.CrtYd") (width 0.05) (tstamp eed76a4e-0191-4aa8-8bf2-342ae7a7edf0))
(fp_line (start 3.75 -8.95) (end 3.75 8.95) (layer "F.Fab") (width 0.15) (tstamp 36e82697-f41d-4e47-932d-49d7baf682d9))
(fp_line (start -2.75 -8.95) (end 3.75 -8.95) (layer "F.Fab") (width 0.15) (tstamp 83cd3573-b9b4-408b-8af9-19ac62e858ab))
(fp_line (start 3.75 8.95) (end -3.75 8.95) (layer "F.Fab") (width 0.15) (tstamp ac8972a4-06ef-4e2a-8222-1ceff4101c96))
(fp_line (start -3.75 -7.95) (end -2.75 -8.95) (layer "F.Fab") (width 0.15) (tstamp acfa1009-0a35-4308-abb7-cabf5d202963))
(fp_line (start -3.75 8.95) (end -3.75 -7.95) (layer "F.Fab") (width 0.15) (tstamp f9d3af7b-f91a-4b11-b835-eef4eecbff91))
(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 c3aecca7-54c1-4d53-9b29-44216f93a806))
(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 18 "/A12") (pinfunction "A12") (pintype "input") (tstamp a53f2d73-b69a-4a4f-952f-273be771b9f5))
(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 0cdc3195-ef77-4b80-9516-a5f13dd9ddd4))
(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 ec3a6719-93ac-4182-b8e9-bf8ee59ce30c))
(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 b1da29ce-2a86-47b0-9f61-e9acf1261ccd))
(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 33bf7b75-e985-477b-86ec-2c49c1828c42))
(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 c4b72e1d-f94f-4879-835a-ea12c83bfc82))
(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 1dd090f5-d201-4d74-beaf-885220f2be96))
(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 05006dfc-7ea0-42d0-8804-e1c02a68bdf2))
(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 40d009b3-d17d-4c9a-af3d-f44a8ff6ea73))
(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 7dbcf623-0240-40f0-afb1-bff999c0dbd3))
(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 b5908ae3-7f98-447f-a009-6c4fe3441e0f))
(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 23 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp 7391ea8e-0660-4fe6-a24f-a969aa90e745))
(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 30 "GND") (pinfunction "GND") (pintype "power_in") (tstamp eee85d68-a6ab-4413-9c1a-9bdc858726f6))
(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 4beb7f82-5671-48de-a019-1ed566f79ac6))
(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 7e2e652f-39fe-4600-9196-ffaee544b46b))
(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 5b7474c3-70e7-4a36-a005-69a0eef9e597))
(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 7fc6b76a-99a0-4b61-8455-2d586361a360))
(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 97ce96cc-94b5-4377-84f4-6a0cc53c82a0))
(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 26 "/~{CS_IC}") (pinfunction "~{CS}") (pintype "input") (tstamp a3adc7d8-d1d8-4d11-ac13-84a83acebe59))
(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 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp ddaee2af-b6c3-4b6a-8e1f-511d84a7fb73))
(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 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 9a441cd9-8e49-4fa1-ba01-1afdb934c30b))
(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 11 "/A11") (pinfunction "A11") (pintype "input") (tstamp b6da61a3-c131-49e7-8842-c8563c40ad55))
(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 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp c9a0b861-aca9-436d-8d9f-67a4e98a4bab))
(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 22 "/A8") (pinfunction "A8") (pintype "input") (tstamp 916028d2-a4d5-4edb-a578-276847297e5b))
(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 15 "/A13") (pinfunction "A13") (pintype "input") (tstamp 2dfb9e26-6a7d-4b6f-99dd-380c4db4197a))
(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 27 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp d7824b03-9c92-40a3-8c9f-8aabaf220367))
(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 29 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp fb2f2c2b-6d7f-44e3-be08-914ef0ed7202))
(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 00000000-0000-0000-0000-00005e34a4c4)
(at 139.73 102.5 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlexROM_100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e68c7f8")
(attr smd)
(fp_text reference "R2" (at -0.04 -0.02 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 35c0a3ee-6eb5-4700-8148-8af4522aad75)
)
(fp_text value "100K" (at 0 1.75 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14c044ad-de69-4b20-bfca-377c38258241)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 6da59cd2-0b5f-4890-b2e1-6a73b1fcc64a)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 7eb896ea-b8de-49e6-8dc3-a7b9a751b358))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp ad69061f-ab2f-4f7d-9df4-466b4ed9db6c))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 09832d55-8ac6-41b9-8347-b2c8a50e6dcd))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 12778557-462f-4a60-864e-1e09e9303c92))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 24cd73d8-26a8-4244-addb-7670ecd5edb1))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 54293b16-7949-4088-8d7b-46f4355f89da))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 097438b8-43fd-4266-86da-11fd6d570246))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 79a3c2c5-8d87-409d-b617-3a530fadd78c))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a577df5a-c6d9-4f67-b764-ccb163a1c0b9))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp baa92280-3f1f-4bb0-aaf5-9d42aa54ff9f))
(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 "/~{CS_IC}") (pintype "passive") (tstamp 254c4e6d-512b-4572-8382-6d80d03c910e))
(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 29 "VCC") (pintype "passive") (tstamp 5d79cd6e-75d2-434d-a70c-db9dd42df4db))
(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:DIP28_0.6_pcb" (layer "F.Cu")
(tedit 616C066F) (tstamp 00000000-0000-0000-0000-00005e369e74)
(at 150 100 90)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
(property "Sheetfile" "FlexROM_100.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 497a2cf5-b104-45a1-a3c6-120de38752d3)
)
(fp_text value "LH535618 DIP LEGS" (at -1.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c10cecdf-975a-48af-9d29-408e726caeca)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5d7914d-fd09-4094-bdd6-7c2398b2975e)
)
(fp_line (start -8.255 -17.78) (end -1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 104b7d28-ee80-4275-95f6-de185aabad08))
(fp_line (start 8.89 17.145) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 2baa46d3-30e5-47d5-85d7-e6bc221d8f28))
(fp_line (start 1.524 -17.78) (end 8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 6b2e6de9-a24f-4882-b0ae-c452d1a6b792))
(fp_line (start -8.255 17.78) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 75aeb309-0f17-4720-a85e-e19e79a42500))
(fp_line (start -8.89 -17.145) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp e39fca77-cd57-4966-a8af-2bf83f8596d0))
(fp_arc (start 1.27 -17.526) (mid 0 -16.256) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp 0d31404b-963b-4a84-85b0-c7f3680c7c2e))
(fp_arc (start 1.27 -17.526) (mid 1.344395 -17.705605) (end 1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 4ef6441e-dcc4-440c-8f20-897166152ad4))
(fp_arc (start 8.89 17.145) (mid 8.704013 17.594013) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 69517bd1-2090-483b-997a-ce57fc3a2489))
(fp_arc (start 8.255 -17.78) (mid 8.704013 -17.594013) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp b6ad3f51-a26c-43bb-b013-bd87cc01ab2e))
(fp_arc (start -1.524 -17.78) (mid -1.344395 -17.705605) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp c9ce4c5d-d254-468c-bba0-07bba0fe6118))
(fp_arc (start -8.89 -17.145) (mid -8.704013 -17.594013) (end -8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp d5cad768-6629-4a6a-89bd-e5222ebc4ce5))
(fp_arc (start -8.255 17.78) (mid -8.704013 17.594013) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp d88035f2-d22f-4fa4-ba3b-cadc1ed0bcae))
(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 29 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp c735b6b6-63bb-459e-be90-55b3b02c36ac))
(pad "2" thru_hole circle (at -7.62 -13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp f77b586a-69c7-4676-991a-52394f8656fc))
(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 "AD7") (pintype "input") (tstamp 680424d8-d8a5-46d6-acd5-5ca99638008b))
(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 "AD6") (pintype "input") (tstamp b6dfeaba-f868-4295-91ea-58e791eea71b))
(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 "AD5") (pintype "input") (tstamp 5ee9a69e-141f-4d60-b1cf-f88c4e7a7fdd))
(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 "AD4") (pintype "input") (tstamp 3f334916-5554-4e64-8e91-126d811ad466))
(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 "AD3") (pintype "input") (tstamp 65a5140f-e10c-4ddb-a662-54aa0dea2999))
(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 "AD2") (pintype "input") (tstamp e13c938a-600d-476f-8e73-6e4b8e69f4fb))
(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 "AD1") (pintype "input") (tstamp a8d2dc77-f567-479d-b29e-c5c05c207e74))
(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 "AD0") (pintype "input") (tstamp c54703fb-c7cc-406c-81e5-eaf1dc3e4b25))
(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 97f4ac36-6809-4eba-9f61-cef1eccc050f))
(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 e55e8b44-d750-4753-a4dd-7a2562e4cb6e))
(pad "13" thru_hole circle (at -7.62 13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 23 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp 75b59778-c351-41f9-99be-35dbb8ba82c7))
(pad "14" thru_hole circle (at -7.62 16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 30 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp d57ef975-a453-4b32-9d3d-6858b56afc0d))
(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 2962e725-3c97-4222-981e-e0e39a9ea302))
(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 08d954a3-74a9-4af6-91cc-7f84e7883a94))
(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 5001b58c-9892-4733-8264-ebcb827fb064))
(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 d8786a12-4528-4d62-a788-3f9cb99de541))
(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 c549244f-19b5-4146-bb7d-10044a456e9d))
(pad "20" thru_hole circle (at 7.62 3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 11 "/A11") (pinfunction "A11") (pintype "input") (tstamp 4062f9a7-b517-4ccc-bbdb-2cefa0b5a647))
(pad "21" thru_hole circle (at 7.62 1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 6e605bf7-69cf-4848-94bb-f1147ae5f168))
(pad "22" thru_hole circle (at 7.62 -1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 15 "/A13") (pinfunction "A13") (pintype "input") (tstamp 3375935a-c65b-4376-b3b7-f60ac0c434cf))
(pad "23" thru_hole circle (at 7.62 -3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 28 "/ALE") (pinfunction "ALE") (pintype "input") (tstamp b280bfaf-2797-4999-a2cf-5e6c65640e22))
(pad "24" thru_hole circle (at 7.62 -6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 18 "/A12") (pinfunction "A12") (pintype "input") (tstamp 8c4124a5-aad3-4abb-9f98-23f1a94dc607))
(pad "25" thru_hole circle (at 7.62 -8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp fd34b946-1502-422e-aeca-33423dfea99c))
(pad "26" thru_hole circle (at 7.62 -11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 22 "/A8") (pinfunction "A8") (pintype "input") (tstamp 25d040bb-9ec4-4e5c-a078-0cc5f8cd90f8))
(pad "27" thru_hole circle (at 7.62 -13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 24 "/~{CS_BUS}") (pinfunction "~{CS}") (pintype "input") (tstamp ade9c35d-9ad8-4c71-8f45-4dd3d131b896))
(pad "28" thru_hole circle (at 7.62 -16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 25 "/A14") (pinfunction "A14") (pintype "input") (tstamp 71959ef2-fc00-477e-8359-2e2a874854af))
(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 5F9E6982) (tstamp 00000000-0000-0000-0000-00005e4387a7)
(at 137.3 94.285 -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_100.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 c92b94fc-04ae-4570-858e-7f368e5714bb)
)
(fp_text value "~{CS} breakout" (at 4.385 4.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aad30675-b46c-4024-a67e-50bdaa9fd4be)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e535eb64-cdfd-47b1-8654-9c89ca0bd3e6)
)
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 063bc5b4-0e5c-44e7-ad70-0a1eda6ac81c))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 19827dab-3809-47d6-b468-a72f974aaac2))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 246978c7-f72c-44de-805b-491fef627616))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 48a04504-3548-4399-a734-45f025e2cca6))
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp 546fc753-c1f9-450f-a0cd-538a9fc380a3))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp 66ebec8b-cabc-4aaa-8046-9aaa629e8ec4))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 8bd78a32-6c93-4ba9-8aaf-53e5ac2cd43a))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 913f93eb-8e22-47ec-9ad9-13fefab22e9a))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 9296998e-58b5-4c6e-ad39-ccb7cb26b5b1))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp be7a47d2-6305-4e4e-8056-a879190b7efb))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d217de65-9dd2-4841-bd2d-ce2d70cdeb88))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp d461d89d-b0f3-4536-aa27-c6e41868de49))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp d7399d81-227f-405a-ab6e-8c435880b353))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp f6c53109-5ed3-4d90-ac2c-7adb6d947093))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp fc8c0889-5428-4129-9448-225548798a3b))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 280009e7-75bb-474a-b210-01270bfd24fb))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 83a03591-d6c2-4dde-879e-06079d76b5bc))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 96f79e9e-e217-4ae3-a345-5ca4f4f73ab0))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp c2affbcb-fbbf-44a3-b9c2-218e2ece6409))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 0458d0ca-967c-46e5-b5e7-c04b73ef4531))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp 0e45f7d7-c69d-4848-a817-636646338768))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 198ac029-293e-457e-a406-fa07b3bd72a5))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3f2d4449-7a3e-44ea-8219-19d890944c7b))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 66f2f7c7-717f-414d-83ec-b12a7f2144f2))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 76f03ace-c2a8-4d9d-993b-33282ddb7300))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 920ff030-d854-4f54-b2f6-50c8305ab50a))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp a770336a-ecfc-45d7-82b4-105468c24d15))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp d51f5cd6-be10-4d6c-8de9-bd2ec4fb2d35))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp d6bbaf65-0d5b-4693-97b3-44d4a93e13b9))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp e1f7022a-0940-4ba3-aabe-16ec9d994fc1))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp e2780662-47c9-40bd-8a8c-bd981272f182))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp e411fbd9-4afc-44e3-905e-b1017fd7f727))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp e4442ee6-8bb5-4710-9e71-107420d3f1c1))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp e6fa7fb7-bed8-473f-8373-5f86f2a4b107))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp ee01bf34-908a-4610-9230-3484b72870d8))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp f136affc-ef92-42bb-b397-93bfd1c75cda))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 26 "/~{CS_IC}") (pinfunction "A") (pintype "passive") (tstamp 06a1d216-a186-4399-b017-cfbe71a5968e))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 24 "/~{CS_BUS}") (pinfunction "B") (pintype "passive") (tstamp 9ceb6ab6-f6e5-49f0-b3f6-7b0aa2475703))
(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:Pin_Header_Angled_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5F9E6982) (tstamp 00000000-0000-0000-0000-00005fbb7637)
(at 165.25 94.285 -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_100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fbfb30e")
(attr through_hole)
(fp_text reference "JP2" (at 4.385 -2.27 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d664bf4-ac6a-4652-9635-be4a890f9a9b)
)
(fp_text value "PROGRAM/RUN" (at 4.385 4.81 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d661ddc3-8a24-44bc-8e49-b63408383502)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e410a8c-362e-4ecc-9443-4950c8960c0e)
)
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp 144bf7c7-aa2c-4d24-9359-6aa6abb8e036))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 188edbeb-f26e-443c-a941-4a42ee08d14f))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 287519dd-b169-4e2a-b202-8e61c524acb2))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 2c2df741-41b6-4cc9-835d-ce9612f5c856))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 35679eda-63fc-4b54-b8a3-8cae47e216ec))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 3cbf18bc-23d0-4753-adf0-b0d5bebec72b))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5af10122-c718-4419-92eb-d26ab7a7c1d7))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 6ba698ed-6ee5-4748-ae69-6c60c07b6c6e))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 788b4738-8d65-49df-ac7f-33025976df20))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 8a4ee0ce-eec0-4fdf-9a86-c3970bb76caa))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 8f07fc02-b30a-4a2d-89cf-73f3b241ef31))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp a3248652-40ae-42b5-ac1a-a08aab97c922))
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp ca6a2ad9-0581-4015-9093-bb453278f1a1))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp dca7bf57-d587-4737-a494-e2e5bfea08cf))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp e8d12db1-9eea-49fc-be59-e930c619b2a7))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6a8fff97-555a-4b2c-888e-8a702e6a1c78))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 92a25ae2-0955-400f-bd28-9268ebe1e2b5))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp cad20e8f-f8c4-4cf9-a27c-c4fed87e1361))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp d6c52591-6583-4371-a601-590ef66249d4))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 070f033f-bfee-4dbf-94e7-c4211132e7f7))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 20b2ffc1-7ea5-4421-87d4-f148c7d4d7f4))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 253d426d-2947-4a12-9ef2-82c2451c3ff6))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 29e0690c-0f16-4b66-bb51-d74e5942a89f))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp 31e67d45-5638-4f58-8b81-935717b94d82))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp 46616b23-5868-4411-a1d4-07dc2ca0e326))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp 4c566be0-a386-4419-9861-de012a3d0b6e))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 5d8f7cf4-e37d-47d0-9974-484010ae4a44))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 637e7fde-1f94-464f-8bb9-a3862d24d148))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 6523ca4d-a3d1-44d9-8c11-de6957e23bbb))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 7657089b-0198-4f51-81c8-c4eeda7080c4))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp 81470ddc-a19b-4fa5-b89e-8edd9aec033b))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp af5cf97d-540d-419d-8ff0-c5d28de72708))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp d05f07bd-bce5-4ca9-ba01-4dbc80cd4434))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp dc191fb8-1392-4391-95c7-9ba7f80c2708))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp e49e6adb-bb23-4043-87b4-dcf6bb8d917b))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp ed60820b-2f5b-41aa-94d7-7f7b4feeadda))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 27 "/~{WE}") (pinfunction "A") (pintype "passive") (tstamp fa7bf8f5-d9f9-48d1-ae72-e9468b0ac06f))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 28 "/ALE") (pinfunction "B") (pintype "passive") (tstamp 222e49b9-d58e-4e10-8f34-6e027db770a6))
(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-00005fbb7cd5)
(at 139.75 97.5 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlexROM_100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fbfb319")
(attr smd)
(fp_text reference "R1" (at 0.05 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 89b3ca72-b076-4594-8a9c-891c8673b7b5)
)
(fp_text value "100K" (at 0 1.75 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f4e23d7-a89f-4bfd-bec5-fd907c23e4bd)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp afde9e8a-7ffa-4d24-bd37-a24f781ea055)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 1697dcdb-4b3d-45fb-9967-e0e739989195))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 808b8eb8-5049-4467-9c7a-5115f2b64ae5))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 6aa783b5-0f3b-46ff-9dce-970e9cc61872))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 814f41eb-d848-4847-a2c8-6b044938a5b9))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp a2a4a951-0d89-4285-b8c6-06f6b9af0c7c))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp af360ae5-00b5-4bd0-994d-efb8609eae18))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 1f13243a-9ce3-4102-ab46-5df1f3903816))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 4b6ffc94-a45e-469b-8372-321aa5c21c43))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 884e1fa0-589d-42d7-9eba-67fc754a868e))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 8fcec1d9-c2df-48b5-bb27-b09010dda4b2))
(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 29 "VCC") (pintype "passive") (tstamp 8cc8a697-7af3-40e7-a68b-7f17cdbb6c82))
(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 27 "/~{WE}") (pintype "passive") (tstamp 22160c93-df34-4140-bafc-c1d437d39ae1))
(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))
)
)
(gr_circle (center 133.4 106) (end 133.4 105.8) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 178fb66b-bb39-484f-b4ee-7b0f1f40c8a2))
(gr_text "R1: ${00000000-0000-0000-0000-00005fbb7cd5:VALUE}\nLegs: TE 1544210" (at 166.51 105.08) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e253af7)
(effects (font (size 0.6 0.6) (thickness 0.08)) (justify left mirror))
)
(gr_text "REX_Classic main ROM support:\n~{CS}_BUS to REX TP1 to boot REX main rom\n~{CS}_BUS to ~{CS}_IC to boot internal main rom\n" (at 165.24 100) (layer "B.SilkS") (tstamp 4eb9ab13-4668-4dad-bdc2-7c3f213d31ba)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left mirror))
)
(gr_text "tandy.wiki/FlexROM_100" (at 150.635 95.555) (layer "B.SilkS") (tstamp af85dfc5-7996-4b13-9a0c-b2bb29040d6d)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "${TITLE} ${REVISION}\n${COMMENT2}" (at 142.38 104.445) (layer "B.SilkS") (tstamp ed0645da-511c-442c-9e10-24d9dc0a69a4)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "IC" (at 137.2998 104.9914 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e2556cf)
(effects (font (size 0.6 0.6) (thickness 0.08)))
)
(gr_text "BUS" (at 134.7598 105.4486 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e25583b)
(effects (font (size 0.6 0.6) (thickness 0.08)))
)
(gr_text "~{CS}" (at 136.1822 103.5436 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e34c224)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "TRS-80 MODEL 100 MAIN ROM" (at 150 106.2865) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e350d14)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "tandy.wiki/FlexROM_100" (at 150 93.777) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e438e65)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "PROGRAM" (at 164 101.55 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005fbb8e9c)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(segment (start 163.97 94.7295) (end 163.1995 95.5) (width 0.2) (layer "F.Cu") (net 1) (tstamp 0155b645-d980-449c-bcd5-33d02b06688e))
(segment (start 163.97 93.8405) (end 163.97 94.7295) (width 0.2) (layer "F.Cu") (net 1) (tstamp 44f25e5e-8208-4283-8db7-34cc4bf6be1b))
(segment (start 158.455 95.5) (end 158.255 95.3) (width 0.2) (layer "F.Cu") (net 1) (tstamp 8ddf58a5-6997-4e86-897d-13cd529371e0))
(segment (start 165.4305 92.38) (end 163.97 93.8405) (width 0.2) (layer "F.Cu") (net 1) (tstamp a3f8f6a2-ce56-46d1-a33f-39eab90d73e2))
(segment (start 163.1995 95.5) (end 158.455 95.5) (width 0.2) (layer "F.Cu") (net 1) (tstamp d9c65973-1182-48eb-9844-fdcf3c9c4aa4))
(segment (start 166.51 92.38) (end 165.4305 92.38) (width 0.2) (layer "F.Cu") (net 1) (tstamp e5fd771b-a81f-41ef-acd3-a681fda1536f))
(segment (start 150.635 94.8565) (end 150.635 95.3) (width 0.2) (layer "F.Cu") (net 2) (tstamp 073b0a8f-0577-4a43-bef4-877c91cb2b81))
(segment (start 143.396 105.7785) (end 143.65 105.5245) (width 0.2) (layer "F.Cu") (net 2) (tstamp 08898881-a664-461c-9546-3353fc2738c5))
(segment (start 143.65 103.81) (end 147.46 100) (width 0.2) (layer "F.Cu") (net 2) (tstamp 0c7eab0b-f7ff-4251-9760-7a675c9dd3db))
(segment (start 152.159 94.0945) (end 151.397 94.0945) (width 0.2) (layer "F.Cu") (net 2) (tstamp 1bf229fc-305b-4a86-98cc-c5e67d620f5a))
(segment (start 137.8715 105.7785) (end 143.396 105.7785) (width 0.2) (layer "F.Cu") (net 2) (tstamp 3b62f32f-71ba-4b41-9612-3724b8689cf9))
(segment (start 152.54 94.4755) (end 152.159 94.0945) (width 0.2) (layer "F.Cu") (net 2) (tstamp 3bf0008a-b2f9-4317-b433-b1ac467f6d20))
(segment (start 149.365 100) (end 152.54 96.825) (width 0.2) (layer "F.Cu") (net 2) (tstamp 406e1711-8293-4646-a2e1-6102d3e8b1f1))
(segment (start 136.03 107.62) (end 137.8715 105.7785) (width 0.2) (layer "F.Cu") (net 2) (tstamp 707a0197-e15f-484b-a8bc-2fd6681bb80d))
(segment (start 151.397 94.0945) (end 150.635 94.8565) (width 0.2) (layer "F.Cu") (net 2) (tstamp 72409ced-ff2a-4d1d-b742-60b0a7f1f21f))
(segment (start 143.65 105.5245) (end 143.65 103.81) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7a06ad43-1250-4fa1-9dee-c50c4dbc3c4f))
(segment (start 152.54 96.825) (end 152.54 94.4755) (width 0.2) (layer "F.Cu") (net 2) (tstamp e77e2261-736b-46ad-8f94-bdaa97cbc8ee))
(segment (start 147.46 100) (end 149.365 100) (width 0.2) (layer "F.Cu") (net 2) (tstamp f54b8fc9-bb81-4493-bce7-db7d96339cc1))
(segment (start 161.0617 94.2215) (end 162.9032 92.38) (width 0.2) (layer "F.Cu") (net 3) (tstamp 0ddf019c-c328-499e-accc-922317385efd))
(segment (start 157.62 94.2215) (end 161.0617 94.2215) (width 0.2) (layer "F.Cu") (net 3) (tstamp 31dd57c5-4374-4c67-998c-8d8d2135b9cf))
(segment (start 156.985 95.3) (end 156.985 94.8565) (width 0.2) (layer "F.Cu") (net 3) (tstamp 43c427f6-b5c2-4ddb-a766-94a990b5f592))
(segment (start 156.985 94.8565) (end 157.62 94.2215) (width 0.2) (layer "F.Cu") (net 3) (tstamp 4a8372d3-aa5a-4a00-a1ec-decaa074cf11))
(segment (start 162.9032 92.38) (end 163.97 92.38) (width 0.2) (layer "F.Cu") (net 3) (tstamp 7cfa0753-6375-4e07-b286-4195e3b616e4))
(segment (start 139.967 106.223) (end 138.57 107.62) (width 0.2) (layer "F.Cu") (net 4) (tstamp 0ce6fb27-f43d-4b2e-b645-7fc5ac66b75a))
(segment (start 144.285 104.7) (end 144.0945 104.8905) (width 0.2) (layer "F.Cu") (net 4) (tstamp 1d34ad7d-243b-4b32-83a4-cdc827d2a26f))
(segment (start 144.0945 105.7785) (end 143.65 106.223) (width 0.2) (layer "F.Cu") (net 4) (tstamp c98b30c2-0ba8-4417-9ee8-c2b3e90d9ce5))
(segment (start 144.0945 104.8905) (end 144.0945 105.7785) (width 0.2) (layer "F.Cu") (net 4) (tstamp e346be79-db32-4df9-b2fa-59e73e10c2bf))
(segment (start 143.65 106.223) (end 139.967 106.223) (width 0.2) (layer "F.Cu") (net 4) (tstamp ff95f686-68dd-42e3-af19-b17b56b6b62c))
(segment (start 155.715 94.8565) (end 155.715 95.3) (width 0.2) (layer "F.Cu") (net 5) (tstamp 28c3afcc-a8d0-44bd-9e3e-f9a5cb82b878))
(segment (start 156.7945 93.777) (end 155.715 94.8565) (width 0.2) (layer "F.Cu") (net 5) (tstamp 93023d80-400c-4c5b-b071-cc1f55167091))
(segment (start 160.033 93.777) (end 156.7945 93.777) (width 0.2) (layer "F.Cu") (net 5) (tstamp b6cf3cdb-06b2-432c-b49a-a9df890f5236))
(segment (start 161.43 92.38) (end 160.033 93.777) (width 0.2) (layer "F.Cu") (net 5) (tstamp d439a74a-9ae7-47be-89ff-8039bc96ef3b))
(segment (start 144.031 106.6675) (end 142.0625 106.6675) (width 0.2) (layer "F.Cu") (net 6) (tstamp 0abdeff5-5cef-4da9-9827-a8de3959df06))
(segment (start 145.555 104.7) (end 145.555 105.1435) (width 0.2) (layer "F.Cu") (net 6) (tstamp 15c231a7-c8f3-449a-954d-b5d174826d28))
(segment (start 142.0625 106.6675) (end 141.11 107.62) (width 0.2) (layer "F.Cu") (net 6) (tstamp 564105e4-7467-4392-8142-585b56d7a924))
(segment (start 145.555 105.1435) (end 144.031 106.6675) (width 0.2) (layer "F.Cu") (net 6) (tstamp f7cef660-5350-4079-a2a0-bfa75ad37573))
(segment (start 157.9375 93.3325) (end 155.969 93.3325) (width 0.2) (layer "F.Cu") (net 7) (tstamp 62ced8eb-be6c-4adb-8da1-ce3ea7c73b53))
(segment (start 154.445 94.8565) (end 154.445 95.3) (width 0.2) (layer "F.Cu") (net 7) (tstamp 807a075a-d40d-44c5-aee5-5f7262ec5da6))
(segment (start 158.89 92.38) (end 157.9375 93.3325) (width 0.2) (layer "F.Cu") (net 7) (tstamp 8d657d87-c040-4e24-82fb-b2d8712e67e6))
(segment (start 155.969 93.3325) (end 154.445 94.8565) (width 0.2) (layer "F.Cu") (net 7) (tstamp af6425fb-5772-44aa-bf01-c52760856751))
(segment (start 143.65 107.62) (end 144.3485 107.62) (width 0.2) (layer "F.Cu") (net 8) (tstamp 36fcb19d-90ed-4df2-a868-9c67017023b3))
(segment (start 146.825 105.1435) (end 146.825 104.7) (width 0.2) (layer "F.Cu") (net 8) (tstamp 8562a587-de61-4c11-996c-919584ebe74e))
(segment (start 144.3485 107.62) (end 146.825 105.1435) (width 0.2) (layer "F.Cu") (net 8) (tstamp f3ba06ff-0854-49b9-9f69-9d8e357fcb75))
(segment (start 155.6515 92.38) (end 156.35 92.38) (width 0.2) (layer "F.Cu") (net 9) (tstamp 3eec4eab-2481-49d3-b68a-fe60cd8414ff))
(segment (start 153.175 94.8565) (end 155.6515 92.38) (width 0.2) (layer "F.Cu") (net 9) (tstamp 81849237-757c-4436-9468-ba90350e2992))
(segment (start 153.175 95.3) (end 153.175 94.8565) (width 0.2) (layer "F.Cu") (net 9) (tstamp 875e6e56-4960-4f35-85fa-4048c782103b))
(segment (start 148.095 105.715) (end 148.095 104.7) (width 0.2) (layer "F.Cu") (net 10) (tstamp 6ce50ddc-1b9f-4195-9d69-c1ecd2a0d597))
(segment (start 146.19 107.62) (end 148.095 105.715) (width 0.2) (layer "F.Cu") (net 10) (tstamp e87deda2-8fdb-4954-97a5-a8dd72b05369))
(segment (start 150 96.1265) (end 149.6825 96.444) (width 0.2) (layer "F.Cu") (net 11) (tstamp 057d3712-bb8a-490a-8b20-ef0916c6d5b6))
(segment (start 150 94.3485) (end 150 96.1265) (width 0.2) (layer "F.Cu") (net 11) (tstamp 11e2a194-c2e8-47a9-9274-635c7d06b22c))
(segment (start 153.81 92.38) (end 152.667 93.523) (width 0.2) (layer "F.Cu") (net 11) (tstamp 2ea0a330-4722-4ebb-9d89-8da31ad7a7e1))
(segment (start 148.095 95.7328) (end 148.095 95.3) (width 0.2) (layer "F.Cu") (net 11) (tstamp 4f506b71-5731-483b-9be3-f0ea0d8a0219))
(segment (start 148.8062 96.444) (end 148.095 95.7328) (width 0.2) (layer "F.Cu") (net 11) (tstamp 6c260775-d3ff-47b6-baea-fa39699faa1e))
(segment (start 150.8255 93.523) (end 150 94.3485) (width 0.2) (layer "F.Cu") (net 11) (tstamp 7373ba69-e0a2-4c35-a4e6-db48520f1e86))
(segment (start 149.6825 96.444) (end 148.8062 96.444) (width 0.2) (layer "F.Cu") (net 11) (tstamp 86dc6b61-7047-424d-9429-ee530ce363bd))
(segment (start 152.667 93.523) (end 150.8255 93.523) (width 0.2) (layer "F.Cu") (net 11) (tstamp c30f5d8a-df0f-4b45-9ea6-f931f2dc1502))
(segment (start 148.73 107.62) (end 149.365 106.985) (width 0.2) (layer "F.Cu") (net 12) (tstamp 39347b75-eca0-426a-90b8-60a781e3a49b))
(segment (start 149.365 106.985) (end 149.365 104.7) (width 0.2) (layer "F.Cu") (net 12) (tstamp 4c05506b-c250-4be4-8295-e5e158001830))
(segment (start 149.365 95.3) (end 149.365 94.285) (width 0.2) (layer "F.Cu") (net 13) (tstamp 588d3fe1-3cc3-4f6b-8548-c518304b6c07))
(segment (start 149.365 94.285) (end 151.27 92.38) (width 0.2) (layer "F.Cu") (net 13) (tstamp 68bcc529-0c27-4cb0-ba49-eeafd33464aa))
(segment (start 150.635 106.985) (end 151.27 107.62) (width 0.2) (layer "F.Cu") (net 14) (tstamp 35ba0d58-7325-4e59-8c6a-3d36088260ca))
(segment (start 150.635 104.7) (end 150.635 106.985) (width 0.2) (layer "F.Cu") (net 14) (tstamp 9323f664-5fe9-42d8-a795-fe11841feadf))
(segment (start 147.46 96.19) (end 147.46 93.65) (width 0.2) (layer "F.Cu") (net 15) (tstamp 4f7fe0a4-7f27-43c9-b633-c42330984f35))
(segment (start 145.047 96.5075) (end 147.1425 96.5075) (width 0.2) (layer "F.Cu") (net 15) (tstamp 54774917-6aec-40fd-965c-0d7eed05a162))
(segment (start 144.285 95.7455) (end 145.047 96.5075) (width 0.2) (layer "F.Cu") (net 15) (tstamp 6bd5cb22-04da-4cfe-8146-d885a11f0d89))
(segment (start 147.46 93.65) (end 148.73 92.38) (width 0.2) (layer "F.Cu") (net 15) (tstamp 78634848-032e-4807-a6bf-67e7e458e3cd))
(segment (start 147.1425 96.5075) (end 147.46 96.19) (width 0.2) (layer "F.Cu") (net 15) (tstamp b200d53b-16e4-461a-a776-600614348fbb))
(segment (start 144.285 95.3) (end 144.285 95.7455) (width 0.2) (layer "F.Cu") (net 15) (tstamp ce78fc3e-4a67-478a-8f4a-f015b163f7c5))
(segment (start 151.905 104.7) (end 151.905 105.715) (width 0.2) (layer "F.Cu") (net 16) (tstamp 2748eb98-d09d-4082-9148-3aec5cff26ed))
(segment (start 151.905 105.715) (end 153.81 107.62) (width 0.2) (layer "F.Cu") (net 16) (tstamp c8e5e300-37c2-44f0-9d1a-c56f24cd1885))
(segment (start 153.175 104.7) (end 153.175 105.1435) (width 0.2) (layer "F.Cu") (net 17) (tstamp 35b50bd5-3d4d-463d-9bab-542d1c01d324))
(segment (start 153.175 105.1435) (end 155.6515 107.62) (width 0.2) (layer "F.Cu") (net 17) (tstamp 47c651dd-2830-4122-ba25-11da946a2de1))
(segment (start 155.6515 107.62) (end 156.35 107.62) (width 0.2) (layer "F.Cu") (net 17) (tstamp 9e2300b4-2b90-4038-8239-dbfb0b92e3f0))
(segment (start 143.015 104.7) (end 143.015 100.635) (width 0.2) (layer "F.Cu") (net 18) (tstamp 24dc5f09-ba33-4dd2-9a4f-c2128b9617c3))
(segment (start 143.015 100.635) (end 143.65 100) (width 0.2) (layer "F.Cu") (net 18) (tstamp 8f9609dd-f141-4197-8efb-ac49083e71b2))
(via (at 143.65 100) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 18) (tstamp 762a4f82-8947-4a04-bdc0-77a62065c910))
(segment (start 143.65 100) (end 143.65 92.38) (width 0.2) (layer "B.Cu") (net 18) (tstamp 1755dff2-67ed-4303-b73f-d6eb2e654b99))
(segment (start 158.89 107.62) (end 157.9375 106.6675) (width 0.2) (layer "F.Cu") (net 19) (tstamp 355e639d-4cf8-4693-96cc-8e674850ee8f))
(segment (start 154.445 105.112) (end 154.445 104.7) (width 0.2) (layer "F.Cu") (net 19) (tstamp 6863fff1-b3c2-4299-b388-4b2d1b3a7110))
(segment (start 156.0005 106.6675) (end 154.445 105.112) (width 0.2) (layer "F.Cu") (net 19) (tstamp 8f8bc107-874d-4771-9d22-c2fdcd04cdb6))
(segment (start 157.9375 106.6675) (end 156.0005 106.6675) (width 0.2) (layer "F.Cu") (net 19) (tstamp e90e7698-f5be-4f98-a84c-e97e2f3d8aaf))
(segment (start 145.4915 93.523) (end 142.253 93.523) (width 0.2) (layer "F.Cu") (net 20) (tstamp 33928065-a1b1-4651-a8b3-bc971314866a))
(segment (start 146.825 94.8565) (end 145.4915 93.523) (width 0.2) (layer "F.Cu") (net 20) (tstamp 443a5844-20b6-415f-ad99-010334ec7cfa))
(segment (start 146.825 95.3) (end 146.825 94.8565) (width 0.2) (layer "F.Cu") (net 20) (tstamp 7322ddfb-6006-4fcd-b09d-417b5c498578))
(segment (start 142.253 93.523) (end 141.11 92.38) (width 0.2) (layer "F.Cu") (net 20) (tstamp 97cb5f41-42b2-44bd-ae2d-f36143ddf962))
(segment (start 155.715 105.1435) (end 156.7945 106.223) (width 0.2) (layer "F.Cu") (net 21) (tstamp 3b5bab16-b0bf-4740-9cf7-49e886497a4c))
(segment (start 155.715 104.7) (end 155.715 105.1435) (width 0.2) (layer "F.Cu") (net 21) (tstamp 4efcf49f-f9bf-498e-8ac3-9f092c4088a8))
(segment (start 156.7945 106.223) (end 160.033 106.223) (width 0.2) (layer "F.Cu") (net 21) (tstamp 5a065326-2141-4549-98c0-7746decc75a5))
(segment (start 160.033 106.223) (end 161.43 107.62) (width 0.2) (layer "F.Cu") (net 21) (tstamp 62376bdf-a4e7-471c-b8b4-4c8000e025d4))
(segment (start 145.555 95.3) (end 145.555 94.8565) (width 0.2) (layer "F.Cu") (net 22) (tstamp 7f4e61b3-58b4-4d15-ad8a-93606a394f73))
(segment (start 144.7295 94.031) (end 140.221 94.031) (width 0.2) (layer "F.Cu") (net 22) (tstamp 98e81358-28f3-4bd4-9f7e-0ff571628821))
(segment (start 145.555 94.8565) (end 144.7295 94.031) (width 0.2) (layer "F.Cu") (net 22) (tstamp d876b501-ee31-41d9-a60e-405b176dba17))
(segment (start 140.221 94.031) (end 138.57 92.38) (width 0.2) (layer "F.Cu") (net 22) (tstamp f89625d2-271c-465f-ae4e-32f0ea3f2059))
(segment (start 156.985 105.1435) (end 157.62 105.7785) (width 0.2) (layer "F.Cu") (net 23) (tstamp 19dba730-5b2d-49d1-b7e3-0e716737c8d8))
(segment (start 162.1285 105.7785) (end 163.97 107.62) (width 0.2) (layer "F.Cu") (net 23) (tstamp 2b64c43a-6bd2-427a-a448-79d45d3ec61d))
(segment (start 156.985 104.7) (end 156.985 105.1435) (width 0.2) (layer "F.Cu") (net 23) (tstamp 549b9157-61f4-48cd-9ae4-444f79d4a061))
(segment (start 157.62 105.7785) (end 162.1285 105.7785) (width 0.2) (layer "F.Cu") (net 23) (tstamp c85f5b27-88d9-44df-b223-e3600160c8ef))
(segment locked (start 134.76 94.285) (end 136.03 92.38) (width 0.2) (layer "F.Cu") (net 24) (tstamp 2ce2e754-fd74-4145-a975-f6efa629128f))
(segment (start 138.824 102.667) (end 133.49 97.333) (width 0.2) (layer "F.Cu") (net 25) (tstamp 0c7fcca6-dab6-4ff8-946f-92137b168f58))
(segment (start 140.856 102.667) (end 138.824 102.667) (width 0.2) (layer "F.Cu") (net 25) (tstamp 7fe68cfa-031b-4492-aa18-fa6f3b6e1814))
(segment (start 141.745 103.556) (end 140.856 102.667) (width 0.2) (layer "F.Cu") (net 25) (tstamp a39d2bea-9a59-4a4f-bcbb-7825354d1fa3))
(segment (start 133.49 97.333) (end 133.49 92.38) (width 0.2) (layer "F.Cu") (net 25) (tstamp a3a587af-55ce-4779-b34a-dfacd2f05e0d))
(segment (start 141.745 104.7) (end 141.745 103.556) (width 0.2) (layer "F.Cu") (net 25) (tstamp fbaab5c7-de42-42de-ac16-8fd2252a9b68))
(segment (start 137.3 94.285) (end 137.3 99.4285) (width 0.2) (layer "F.Cu") (net 26) (tstamp 14c709a0-6931-46a0-bbf6-3a7be238a2af))
(segment (start 140 101.55) (end 140.068 101.55) (width 0.2) (layer "F.Cu") (net 26) (tstamp 1aeaee36-5f93-4977-84d1-c13c7eb74103))
(segment (start 142.868 98.75) (end 148.9005 98.75) (width 0.2) (layer "F.Cu") (net 26) (tstamp 2234984a-aa97-4daa-93e0-1be3182db645))
(segment (start 140.068 101.55) (end 142.868 98.75) (width 0.2) (layer "F.Cu") (net 26) (tstamp 439283f5-157a-477f-96a8-80b5c4485af8))
(segment (start 139.73 101.55) (end 140 101.55) (width 0.2) (layer "F.Cu") (net 26) (tstamp 45b252f7-bfaf-450d-9de9-9cae16f6adca))
(segment (start 139.4215 101.55) (end 139.73 101.55) (width 0.2) (layer "F.Cu") (net 26) (tstamp 58f743d7-f626-4f60-86c5-97dacdddc4d3))
(segment (start 137.3 99.4285) (end 139.4215 101.55) (width 0.2) (layer "F.Cu") (net 26) (tstamp 5e99557b-ca26-49a5-8851-b41ecc1cd8c2))
(segment (start 148.9005 98.75) (end 151.905 95.7455) (width 0.2) (layer "F.Cu") (net 26) (tstamp be1d71d9-b5a4-4831-954d-bd1f61def6e0))
(segment (start 151.905 95.7455) (end 151.905 95.3) (width 0.2) (layer "F.Cu") (net 26) (tstamp ed848da4-d8be-4364-b64e-5abf73dff1bd))
(segment (start 143.015 97.333) (end 141.898 98.45) (width 0.2) (layer "F.Cu") (net 27) (tstamp 517046e1-103f-4590-90f1-56e1edf0cf97))
(segment (start 143.015 97.0028) (end 143.015 95.3) (width 0.2) (layer "F.Cu") (net 27) (tstamp 5d016950-440f-4e41-9522-6c0dbb08c268))
(segment (start 143.015 97.333) (end 143.015 97.0028) (width 0.2) (layer "F.Cu") (net 27) (tstamp 6586636e-e94e-4746-8573-e291dded29ce))
(segment (start 147.968 97.333) (end 143.015 97.333) (width 0.2) (layer "F.Cu") (net 27) (tstamp c8f7b7f4-25c2-4648-b9c0-dd8eace68073))
(segment (start 141.898 98.45) (end 139.75 98.45) (width 0.2) (layer "F.Cu") (net 27) (tstamp e7db9642-952a-4a12-a1ea-decbdd5fa9cc))
(via (at 147.968 97.333) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 27) (tstamp eaf8c77d-bd5b-4168-b99b-9fa57c9d6969))
(segment (start 147.968 97.333) (end 162.202 97.333) (width 0.2) (layer "B.Cu") (net 27) (tstamp 4f3aa58a-6f63-4a73-bd08-08cf1465b191))
(segment (start 162.202 97.333) (end 165.25 94.285) (width 0.2) (layer "B.Cu") (net 27) (tstamp 5d59b06a-d18b-405c-a3a0-0552238fe13f))
(segment (start 148.095 94.285) (end 146.19 92.38) (width 0.2) (layer "B.Cu") (net 28) (tstamp 71e83caf-5602-4aa9-b237-45a726d6cf14))
(segment (start 162.71 94.285) (end 148.095 94.285) (width 0.2) (layer "B.Cu") (net 28) (tstamp dd87dd66-6bd2-48b7-adfb-ad6df5a93b18))
(segment (start 139.7765 95.301) (end 139.7765 96.5235) (width 0.2) (layer "F.Cu") (net 29) (tstamp 0630e77c-6731-4ec3-b70b-f5f23dea2a67))
(segment (start 137.66 103.45) (end 133.49 107.62) (width 0.2) (layer "F.Cu") (net 29) (tstamp 3cfedc06-bfbd-4a73-8687-c8fd3d94ca51))
(segment (start 141.744 95.301) (end 141.745 95.3) (width 0.2) (layer "F.Cu") (net 29) (tstamp 4489a028-adb2-4334-9c0c-96537a94a6b7))
(segment (start 139.73 103.45) (end 137.66 103.45) (width 0.2) (layer "F.Cu") (net 29) (tstamp 6a8359b3-cc36-4458-af9c-ea958fed7ff6))
(segment (start 139.7765 95.301) (end 141.744 95.301) (width 0.4) (layer "F.Cu") (net 29) (tstamp ac3eebe5-52b7-4d08-a4d9-79cbe828b9f0))
(segment (start 139.7765 96.5235) (end 139.75 96.55) (width 0.2) (layer "F.Cu") (net 29) (tstamp d620268a-8a10-4d05-a0ec-f0426dbf2947))
(via (at 139.7765 95.301) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 29) (tstamp 2b475274-297c-4f45-92f1-ee1c7c082441))
(segment (start 139.7765 95.301) (end 139.7765 101.3335) (width 0.4) (layer "B.Cu") (net 29) (tstamp 5bafe86e-9852-4c4e-9a1f-726108f66cf9))
(segment (start 139.7765 101.3335) (end 133.49 107.62) (width 0.4) (layer "B.Cu") (net 29) (tstamp 5d1fa53d-399e-410d-a8bf-81ea16909175))
(zone (net 30) (net_name "GND") (layer "F.Cu") (tstamp b0e04aa5-601c-477c-a0b1-7b9aa68810a9) (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 167.78 91.11)
(xy 167.78 108.89)
(xy 132.22 108.89)
(xy 132.22 91.11)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 167.133169 91.313018)
(xy 167.133776 91.313158)
(xy 167.133778 91.313158)
(xy 167.144641 91.315656)
(xy 167.155516 91.313196)
(xy 167.159206 91.313202)
(xy 167.171955 91.314049)
(xy 167.244534 91.323604)
(xy 167.269498 91.330293)
(xy 167.35021 91.363725)
(xy 167.372586 91.376643)
(xy 167.441906 91.429834)
(xy 167.460166 91.448094)
(xy 167.513357 91.517414)
(xy 167.526275 91.53979)
(xy 167.559707 91.620502)
(xy 167.566396 91.645466)
(xy 167.575999 91.718409)
(xy 167.576846 91.731503)
(xy 167.576842 91.733779)
(xy 167.574344 91.744641)
(xy 167.576804 91.755513)
(xy 167.577059 91.756638)
(xy 167.5795 91.778488)
(xy 167.5795 108.220983)
(xy 167.576982 108.243169)
(xy 167.574344 108.254641)
(xy 167.576804 108.265516)
(xy 167.576798 108.269206)
(xy 167.575951 108.281955)
(xy 167.566396 108.354534)
(xy 167.559707 108.379498)
(xy 167.526275 108.46021)
(xy 167.513357 108.482586)
(xy 167.460166 108.551906)
(xy 167.441906 108.570166)
(xy 167.372586 108.623357)
(xy 167.35021 108.636275)
(xy 167.269498 108.669707)
(xy 167.244534 108.676396)
(xy 167.171591 108.685999)
(xy 167.158497 108.686846)
(xy 167.156221 108.686842)
(xy 167.145359 108.684344)
(xy 167.134487 108.686804)
(xy 167.134302 108.686846)
(xy 167.133359 108.687059)
(xy 167.111512 108.6895)
(xy 132.889017 108.6895)
(xy 132.866831 108.686982)
(xy 132.866224 108.686842)
(xy 132.866222 108.686842)
(xy 132.855359 108.684344)
(xy 132.844484 108.686804)
(xy 132.840794 108.686798)
(xy 132.828045 108.685951)
(xy 132.755466 108.676396)
(xy 132.730502 108.669707)
(xy 132.64979 108.636275)
(xy 132.627414 108.623357)
(xy 132.558094 108.570166)
(xy 132.539834 108.551906)
(xy 132.486643 108.482586)
(xy 132.473725 108.46021)
(xy 132.440293 108.379499)
(xy 132.433604 108.354534)
(xy 132.424549 108.285751)
(xy 132.424351 108.261514)
(xy 132.42439 108.261178)
(xy 132.425655 108.255718)
(xy 132.425656 108.255)
(xy 132.423085 108.243728)
(xy 132.42298 108.243266)
(xy 132.4205 108.221248)
(xy 132.4205 101.570772)
(xy 132.439407 101.512581)
(xy 132.488907 101.476617)
(xy 132.511731 101.472077)
(xy 132.572946 101.46726)
(xy 132.700878 101.457192)
(xy 132.700883 101.457191)
(xy 132.704748 101.456887)
(xy 132.80646 101.432468)
(xy 132.926038 101.40376)
(xy 132.926041 101.403759)
(xy 132.929815 101.402853)
(xy 132.933401 101.401368)
(xy 132.933406 101.401366)
(xy 133.062004 101.348099)
(xy 133.143657 101.314277)
(xy 133.341011 101.193338)
(xy 133.517016 101.043016)
(xy 133.667338 100.867011)
(xy 133.788277 100.669657)
(xy 133.824669 100.581799)
(xy 133.875366 100.459406)
(xy 133.875368 100.459401)
(xy 133.876853 100.455815)
(xy 133.87902 100.446791)
(xy 133.914336 100.299687)
(xy 133.930887 100.230748)
(xy 133.931797 100.219195)
(xy 133.948742 100.003875)
(xy 133.949047 100)
(xy 133.941281 99.901319)
(xy 133.931192 99.773122)
(xy 133.931191 99.773117)
(xy 133.930887 99.769252)
(xy 133.896511 99.626067)
(xy 133.87776 99.547962)
(xy 133.877759 99.547959)
(xy 133.876853 99.544185)
(xy 133.874521 99.538553)
(xy 133.789765 99.333936)
(xy 133.788277 99.330343)
(xy 133.667338 99.132989)
(xy 133.517016 98.956984)
(xy 133.341011 98.806662)
(xy 133.143657 98.685723)
(xy 133.040903 98.643161)
(xy 132.933406 98.598634)
(xy 132.933401 98.598632)
(xy 132.929815 98.597147)
(xy 132.926041 98.596241)
(xy 132.926038 98.59624)
(xy 132.806459 98.567532)
(xy 132.704748 98.543113)
(xy 132.700883 98.542809)
(xy 132.700878 98.542808)
(xy 132.60861 98.535547)
(xy 132.511732 98.527922)
(xy 132.455205 98.504508)
(xy 132.423235 98.452339)
(xy 132.4205 98.429228)
(xy 132.4205 92.368753)
(xy 132.684514 92.368753)
(xy 132.690386 92.428643)
(xy 132.701499 92.541984)
(xy 132.7015 92.541989)
(xy 132.702039 92.547486)
(xy 132.758726 92.717896)
(xy 132.761591 92.722627)
(xy 132.761593 92.722631)
(xy 132.831151 92.837484)
(xy 132.851759 92.871512)
(xy 132.855607 92.875497)
(xy 132.855608 92.875498)
(xy 132.872697 92.893194)
(xy 132.976514 93.000699)
(xy 132.981139 93.003725)
(xy 132.981142 93.003728)
(xy 133.11045 93.088344)
(xy 133.126789 93.099036)
(xy 133.131971 93.100963)
(xy 133.135137 93.102562)
(xy 133.178552 93.145675)
(xy 133.1895 93.190928)
(xy 133.1895 97.279492)
(xy 133.189197 97.283617)
(xy 133.187575 97.288342)
(xy 133.187918 97.297476)
(xy 133.18943 97.337761)
(xy 133.1895 97.341474)
(xy 133.1895 97.360948)
(xy 133.190325 97.365378)
(xy 133.190661 97.370571)
(xy 133.191774 97.400208)
(xy 133.19538 97.408602)
(xy 133.195381 97.408605)
(xy 133.196317 97.410783)
(xy 133.202683 97.431734)
(xy 133.204791 97.443053)
(xy 133.218768 97.465728)
(xy 133.225451 97.478595)
(xy 133.235964 97.503063)
(xy 133.239978 97.507949)
(xy 133.244342 97.512313)
(xy 133.258613 97.530368)
(xy 133.263532 97.538348)
(xy 133.286769 97.556018)
(xy 133.296839 97.56481)
(xy 138.57368 102.841651)
(xy 138.57638 102.84478)
(xy 138.578575 102.849269)
(xy 138.585278 102.855487)
(xy 138.614822 102.882893)
(xy 138.617498 102.885469)
(xy 138.631277 102.899248)
(xy 138.634987 102.901793)
(xy 138.6389 102.905229)
(xy 138.660646 102.925401)
(xy 138.669134 102.928788)
(xy 138.669135 102.928788)
(xy 138.671336 102.929666)
(xy 138.690652 102.93998)
(xy 138.692607 102.941321)
(xy 138.69261 102.941322)
(xy 138.700146 102.946492)
(xy 138.726058 102.952641)
(xy 138.739884 102.957014)
(xy 138.743729 102.958548)
(xy 138.790771 102.997672)
(xy 138.805832 103.056975)
(xy 138.783159 103.113804)
(xy 138.731413 103.146454)
(xy 138.707044 103.1495)
(xy 137.713514 103.1495)
(xy 137.709385 103.149197)
(xy 137.704658 103.147574)
(xy 137.663266 103.149128)
(xy 137.655223 103.14943)
(xy 137.651509 103.1495)
(xy 137.632052 103.1495)
(xy 137.627622 103.150325)
(xy 137.622436 103.150661)
(xy 137.601925 103.151431)
(xy 137.601924 103.151431)
(xy 137.592792 103.151774)
(xy 137.584398 103.15538)
(xy 137.584395 103.155381)
(xy 137.582217 103.156317)
(xy 137.561266 103.162683)
(xy 137.549947 103.164791)
(xy 137.527269 103.17877)
(xy 137.51441 103.18545)
(xy 137.489938 103.195964)
(xy 137.485051 103.199977)
(xy 137.480685 103.204343)
(xy 137.462629 103.218615)
(xy 137.462432 103.218736)
(xy 137.462431 103.218737)
(xy 137.454652 103.223532)
(xy 137.44912 103.230807)
(xy 137.449119 103.230808)
(xy 137.436993 103.246755)
(xy 137.428193 103.256835)
(xy 133.894525 106.790504)
(xy 133.840008 106.818281)
(xy 133.824521 106.8195)
(xy 132.972446 106.8195)
(xy 132.925769 106.825645)
(xy 132.918901 106.828848)
(xy 132.9189 106.828848)
(xy 132.831183 106.869751)
(xy 132.831181 106.869752)
(xy 132.823333 106.873412)
(xy 132.743412 106.953333)
(xy 132.739752 106.961181)
(xy 132.739751 106.961183)
(xy 132.701564 107.043075)
(xy 132.695645 107.055769)
(xy 132.694656 107.063281)
(xy 132.691656 107.086069)
(xy 132.6895 107.102446)
(xy 132.6895 108.137554)
(xy 132.695645 108.184231)
(xy 132.698848 108.191099)
(xy 132.698848 108.1911)
(xy 132.73527 108.269206)
(xy 132.743412 108.286667)
(xy 132.823333 108.366588)
(xy 132.831181 108.370248)
(xy 132.831183 108.370249)
(xy 132.894354 108.399706)
(xy 132.925769 108.414355)
(xy 132.972446 108.4205)
(xy 134.007554 108.4205)
(xy 134.054231 108.414355)
(xy 134.085646 108.399706)
(xy 134.148817 108.370249)
(xy 134.148819 108.370248)
(xy 134.156667 108.366588)
(xy 134.236588 108.286667)
(xy 134.244731 108.269206)
(xy 134.281152 108.1911)
(xy 134.281152 108.191099)
(xy 134.284355 108.184231)
(xy 134.2905 108.137554)
(xy 134.2905 107.285479)
(xy 134.309407 107.227288)
(xy 134.319496 107.215475)
(xy 137.755475 103.779496)
(xy 137.809992 103.751719)
(xy 137.825479 103.7505)
(xy 138.797031 103.7505)
(xy 138.855222 103.769407)
(xy 138.891186 103.818907)
(xy 138.892587 103.824276)
(xy 138.893292 103.825979)
(xy 138.895195 103.835544)
(xy 138.954981 103.925019)