-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProMicro_Mill-Max_flipped.kicad_mod
2314 lines (2266 loc) · 83.7 KB
/
ProMicro_Mill-Max_flipped.kicad_mod
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
(footprint "ProMicro_Mill-Max_flipped" (version 20221018) (generator pcbnew)
(layer "F.Cu")
(descr "Solder-jumper reversible Pro Micro footprint")
(tags "promicro ProMicro reversible solder jumper")
(attr through_hole)
(fp_text reference "REF**" (at 16.51 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88712721-e1da-4efb-b3bd-a3ab295e2aa6)
)
(fp_text value "ProMicro" (at -16.51 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d38fbf6-d42d-45d5-8b81-752b96131a90)
)
(fp_line (start -13.97 -7.62) (end -13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 47c6699f-5fe9-451f-a040-3ab8946d2a68))
(fp_line (start -13.97 -3.81) (end -13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ed1d485f-3ca8-4c56-9950-33feccdcfe7d))
(fp_line (start -13.97 3.81) (end -13.97 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b8540190-faa9-4ed3-b28a-04532a418eb2))
(fp_line (start -13.97 7.62) (end -13.97 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9f566006-2694-45a0-b713-64a4453abe8d))
(fp_line (start -11.43 -7.62) (end -11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 1d80edf1-a320-483b-b8d0-802c61ba5b4d))
(fp_line (start -11.43 -3.81) (end -11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 583296b5-384f-4ddd-a557-530251143fec))
(fp_line (start -11.43 3.81) (end -11.43 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b98c42c9-db69-41ee-b7ad-d0c94b96081a))
(fp_line (start -11.43 7.62) (end -11.43 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 20f34b6c-fa89-4075-86ae-45e68d4f7ec3))
(fp_line (start -8.89 -7.62) (end -8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 90f5436a-3248-4a76-bac8-26f087b83584))
(fp_line (start -8.89 -3.81) (end -8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp bf2854ae-c8dc-4f9a-9e51-7fb6ba89b0a1))
(fp_line (start -8.89 3.81) (end -8.89 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 631d3caf-70ac-42fc-938f-11a86d79b90b))
(fp_line (start -8.89 7.62) (end -8.89 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp cdb33425-64f5-4926-856d-c9524ef34268))
(fp_line (start -6.35 -7.62) (end -6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6f8fa20b-5833-46a8-9cef-6c435f81ce8f))
(fp_line (start -6.35 -3.81) (end -6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 23d245a9-dc99-4dc2-a916-5de28dfd36f1))
(fp_line (start -6.35 3.81) (end -6.35 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f8bf621b-be58-47e2-8a87-148cdcb76d9a))
(fp_line (start -6.35 7.62) (end -6.35 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3bb37bdc-237c-4e5b-8981-e80288cf71f7))
(fp_line (start -3.81 -7.62) (end -3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 89e7f3b5-1ed7-48df-8f3b-7b6c74948610))
(fp_line (start -3.81 -3.81) (end -3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8ba3702f-2326-41e9-8754-df773b9c2a96))
(fp_line (start -3.81 3.81) (end -3.81 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7911dd05-681f-4df3-a9d2-fcc2da8c853b))
(fp_line (start -3.81 7.62) (end -3.81 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d1a1b42e-3b06-45d2-be81-37ca27027901))
(fp_line (start -1.27 -7.62) (end -1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp af21a95d-db73-4273-8851-82438f093a35))
(fp_line (start -1.27 -3.81) (end -1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7e06ce37-179c-4176-848b-d74e9aca2fd7))
(fp_line (start -1.27 3.81) (end -1.27 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 57876996-7a5b-44d3-b6fc-3efd1342bb18))
(fp_line (start -1.27 7.62) (end -1.27 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a7bfa644-3682-49e1-a8a8-b4c00cfc1a93))
(fp_line (start 1.27 -7.62) (end 1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d508c763-7076-4589-a051-9e524f7f83a6))
(fp_line (start 1.27 -3.81) (end 1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a2387089-3353-42c8-81f1-e3d587179932))
(fp_line (start 1.27 3.81) (end 1.27 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 494487bf-3dc4-4335-9c11-ebb741e7703b))
(fp_line (start 1.27 7.62) (end 1.27 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 0410a57f-1930-4f5c-810d-3196721c4930))
(fp_line (start 3.81 -7.62) (end 3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 77d86e26-de87-4d0a-abff-c2f1e574c03a))
(fp_line (start 3.81 -3.81) (end 3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 292ddfc4-eafa-4d29-88a8-fb320a376045))
(fp_line (start 3.81 3.81) (end 3.81 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ebfeaf8b-0468-40eb-a78e-b6119ab7e5db))
(fp_line (start 3.81 7.62) (end 3.81 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d371a6bf-fad6-4b96-80f6-d021e5b7baa3))
(fp_line (start 6.35 -7.62) (end 6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 1004cffb-de9a-499e-83a3-a7dccc1f7114))
(fp_line (start 6.35 -3.81) (end 6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f5b36714-bd5a-4248-af2a-8369c8a30a1b))
(fp_line (start 6.35 3.81) (end 6.35 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b51840f5-d275-42a5-ab06-8b28a5b99fce))
(fp_line (start 6.35 7.62) (end 6.35 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b1ed81e0-b139-4c0c-8193-b2d70478dcfa))
(fp_line (start 8.89 -7.62) (end 8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a39c212e-211e-4094-9b75-548b47522b90))
(fp_line (start 8.89 -3.81) (end 8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b79d47a9-4864-4e73-bebb-1518fb8f3f76))
(fp_line (start 8.89 3.81) (end 8.89 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d4a71c03-467b-456b-8306-5b8615d3820f))
(fp_line (start 8.89 7.62) (end 8.89 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7caf5df2-fc6b-4b3b-bd62-7bd1af6fc983))
(fp_line (start 11.43 -7.62) (end 11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp faf9233d-cad0-4b97-9d9b-fc4a696d47bf))
(fp_line (start 11.43 -3.81) (end 11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5b1fab55-e8c3-40d5-8522-2476f073d9c1))
(fp_line (start 11.43 3.81) (end 11.43 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 245797d2-ccbb-438b-b7db-796ad4918b3c))
(fp_line (start 11.43 7.62) (end 11.43 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 51728393-27f1-4ed8-b386-34c68f062bfa))
(fp_line (start 13.97 -7.62) (end 13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 281a04ba-c5cc-47bd-88a8-39aa0dd2239a))
(fp_line (start 13.97 -3.81) (end 13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3c5c39c3-ec47-49af-9053-d227fd5e3b03))
(fp_line (start 13.97 3.81) (end 13.97 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 92ac882a-ee30-4710-8bbe-61a88ee78a9a))
(fp_line (start 13.97 7.62) (end 13.97 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 02db19dc-8c11-4daa-a473-2dd4a35754eb))
(fp_line (start -14.859 -2.921) (end -14.859 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2f0243b9-6af4-4427-b959-d9a79d2ce418))
(fp_line (start -14.859 -2.921) (end -13.97 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9a236bbb-ca5d-4e75-a362-dce548e63b5c))
(fp_line (start -14.859 4.191) (end -13.97 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0509f64f-c96d-46c0-83ea-f514565f9d15))
(fp_line (start -13.97 -7.62) (end -13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 83f0e26f-f841-48f0-bc38-3ded7a35bdf0))
(fp_line (start -13.97 7.62) (end -13.97 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bcdbaa62-fe83-4803-a260-d55ff70f26bf))
(fp_line (start -13.081 -4.191) (end -13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0acc2580-5ee2-4065-b8d8-9e58171737ed))
(fp_line (start -13.081 2.921) (end -13.97 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3ae58419-39eb-47a9-bd18-b228c2e0ec2b))
(fp_line (start -13.081 2.921) (end -13.081 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ad953a8e-234d-4df2-89c1-63abeeb63c47))
(fp_line (start -12.319 -2.921) (end -12.319 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0581e83d-c16d-48dc-8643-84c471c01472))
(fp_line (start -12.319 -2.921) (end -11.43 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d462b927-2e2a-4a87-9790-3999bfa39fd9))
(fp_line (start -12.319 4.191) (end -11.43 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9e5c0782-838f-4c16-8679-27ff0b006f66))
(fp_line (start -11.43 -7.62) (end -11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 104b3809-0c90-444d-8e8c-970e487983ff))
(fp_line (start -11.43 7.62) (end -11.43 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 35722f81-7a96-49aa-a961-c6fe3eb0713d))
(fp_line (start -10.541 -4.191) (end -11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 212de76d-cd4d-445b-8cf7-32fea4183c0a))
(fp_line (start -10.541 2.921) (end -11.43 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 89d68b26-8e58-45da-a243-c724259caa77))
(fp_line (start -10.541 2.921) (end -10.541 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp acb18d71-7e54-466e-ae9b-e2cf3c36626a))
(fp_line (start -9.779 -2.921) (end -9.779 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b031a922-62d6-495d-92ea-ceb2e98f5b26))
(fp_line (start -9.779 -2.921) (end -8.89 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5560e133-dc9e-4b40-bdf0-4f298750776c))
(fp_line (start -9.779 4.191) (end -8.89 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 335c5dbb-75b9-4de7-a555-d41d0ba628eb))
(fp_line (start -8.89 -7.62) (end -8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0eb9267e-911a-4788-b07b-8e7c51e4f67c))
(fp_line (start -8.89 7.62) (end -8.89 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a6fc99d4-9f43-42b8-bb2c-64993b34d65c))
(fp_line (start -8.001 -4.191) (end -8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9e74a5a2-f0bb-4ec0-b16f-3868d0c5c692))
(fp_line (start -8.001 2.921) (end -8.89 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 711afce2-0f0e-4cb7-bbea-022014ea177e))
(fp_line (start -8.001 2.921) (end -8.001 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d1917385-15a1-4210-b10c-1c1049b023af))
(fp_line (start -7.239 -2.921) (end -7.239 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 19f15fa5-23e1-4264-86c7-d1114716d10f))
(fp_line (start -7.239 -2.921) (end -6.35 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9ef6e284-96da-419f-8111-ca17d0caa487))
(fp_line (start -7.239 4.191) (end -6.35 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3e9d6639-341b-4503-8857-7dfa2dde0b86))
(fp_line (start -6.35 -7.62) (end -6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 94a39947-c06a-42b7-8700-e8720c619257))
(fp_line (start -6.35 7.62) (end -6.35 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3d5c6fda-034e-4b6c-87ea-df04fd9d94f6))
(fp_line (start -5.461 -4.191) (end -6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0cc72340-57bb-4ea4-8395-caac98f0178a))
(fp_line (start -5.461 2.921) (end -6.35 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 154f3789-50ac-4214-b305-7c036c51a47d))
(fp_line (start -5.461 2.921) (end -5.461 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp db63c8af-11a7-42a0-98ad-c019507cb5c1))
(fp_line (start -4.699 -2.921) (end -4.699 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c2d63efb-31e8-4b5a-9183-821a964b9e93))
(fp_line (start -4.699 -2.921) (end -3.81 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 31a23075-1d8b-4f6d-b3ed-9438c8b89000))
(fp_line (start -4.699 4.191) (end -3.81 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5b8f8de1-82f9-4689-9f24-b1693989bbcb))
(fp_line (start -3.81 -7.62) (end -3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e130b36a-705f-4487-b5b8-4ca01cf5ae6b))
(fp_line (start -3.81 7.62) (end -3.81 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 98f56b6d-550e-43e0-88ad-87c57cdd8f62))
(fp_line (start -2.921 -4.191) (end -3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c6905cda-87bc-444d-911e-ec3031ec3117))
(fp_line (start -2.921 2.921) (end -3.81 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 758e6198-c1b7-4c48-928a-de96c34a55f1))
(fp_line (start -2.921 2.921) (end -2.921 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9848f7b4-5281-4852-a362-f33f6900acbb))
(fp_line (start -2.159 -2.921) (end -2.159 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c5b06500-c5e5-4ccb-8c2b-76bc5027aa13))
(fp_line (start -2.159 -2.921) (end -1.27 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ce49b47d-2454-4b54-8999-d78a685ac553))
(fp_line (start -2.159 4.191) (end -1.27 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp de66ab84-8d9c-4c87-a7df-7b6de8d456ea))
(fp_line (start -1.27 -7.62) (end -1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ec3f7000-13e2-46a3-b53e-063374cec4da))
(fp_line (start -1.27 7.62) (end -1.27 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 80b081cd-6aeb-4d13-bb12-ecba7c83c531))
(fp_line (start -0.381 -4.191) (end -1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 08aa25b3-f12a-41d0-86a4-fc434968921f))
(fp_line (start -0.381 2.921) (end -1.27 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 01ab77e8-642c-40b6-9cff-f6655c3696f0))
(fp_line (start -0.381 2.921) (end -0.381 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fb7d23d2-8ce4-4259-a5db-f18a5d8bc9fb))
(fp_line (start 0.381 -2.921) (end 0.381 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d2d71348-bff5-4415-a93c-85395679a9c3))
(fp_line (start 0.381 -2.921) (end 1.27 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f47cc4f4-515b-4799-a9c5-4f1b23ee4dc7))
(fp_line (start 0.381 4.191) (end 1.27 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 386ee9f6-de9d-4e9a-a0be-d164dccbbb03))
(fp_line (start 1.27 -7.62) (end 1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4bef5ba1-44bf-4016-ba2e-142b056105cb))
(fp_line (start 1.27 7.62) (end 1.27 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 72dfd6ef-7732-4657-afa9-8c653df74420))
(fp_line (start 2.159 -4.191) (end 1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d24316dc-2937-4c5b-9273-936062ea7a16))
(fp_line (start 2.159 2.921) (end 1.27 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e28a3b64-a91a-4907-9e95-6adb4c6b6a66))
(fp_line (start 2.159 2.921) (end 2.159 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 76b8bc44-e504-45e5-b116-11fc17e1e269))
(fp_line (start 2.921 -2.921) (end 2.921 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 01bf6b46-aba3-4048-a752-78b841f2e231))
(fp_line (start 2.921 -2.921) (end 3.81 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9e527ebf-8814-4855-b61c-4b8793318e9c))
(fp_line (start 2.921 4.191) (end 3.81 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 41a8f29d-5ab6-4c2d-9473-6afd45e570c8))
(fp_line (start 3.81 -7.62) (end 3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5d15584d-3c20-4df9-8a35-6aacdd3f88a1))
(fp_line (start 3.81 7.62) (end 3.81 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 52e1dd47-45ad-4600-8f04-6b02774316ec))
(fp_line (start 4.699 -4.191) (end 3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c50b636f-afc0-46dc-949f-908ad3e84a4a))
(fp_line (start 4.699 2.921) (end 3.81 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b54249db-422f-4ce9-b493-eda926e5dfc9))
(fp_line (start 4.699 2.921) (end 4.699 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b8c111e3-11df-41d6-88a5-866299b3e259))
(fp_line (start 5.461 -2.921) (end 5.461 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 05dbae60-12a6-41fd-9fc6-a41a4af1555b))
(fp_line (start 5.461 -2.921) (end 6.35 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 032f90c8-66fb-4af1-9d0c-9e88ed604f79))
(fp_line (start 5.461 4.191) (end 6.35 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7ab75490-23e5-42ae-bfcc-41f52952ee3b))
(fp_line (start 6.35 -7.62) (end 6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fd06dd1f-e28f-4cca-a311-96f85e8435b0))
(fp_line (start 6.35 7.62) (end 6.35 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8e000879-8131-4e1f-8449-799551bb2381))
(fp_line (start 7.239 -4.191) (end 6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a5fc3c08-ad89-47e3-8981-617df85f19b6))
(fp_line (start 7.239 2.921) (end 6.35 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a5cff8c0-3254-41ef-a6be-e51ffc343054))
(fp_line (start 7.239 2.921) (end 7.239 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 13057cf9-fe20-4862-9555-30839ed01b58))
(fp_line (start 8.001 -2.921) (end 8.001 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8961a4c0-a41a-4ee2-9d45-7af336d3bf48))
(fp_line (start 8.001 -2.921) (end 8.89 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp df61914d-14e1-4b3c-8cda-d09a2047835d))
(fp_line (start 8.001 4.191) (end 8.89 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 78ba1ef0-6fcc-4e0a-850a-cc3c59140875))
(fp_line (start 8.89 -7.62) (end 8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c1f41aab-cbf1-4cf5-ad2a-6c88f859612d))
(fp_line (start 8.89 7.62) (end 8.89 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 80af3c53-4cfd-4271-9a29-99cd4a71467c))
(fp_line (start 9.779 -4.191) (end 8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ba8a1310-6f5b-4236-a545-a318ed828445))
(fp_line (start 9.779 2.921) (end 8.89 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a2cd11a3-3640-4cc2-954d-9bca0ea1ee88))
(fp_line (start 9.779 2.921) (end 9.779 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f53140dc-a84b-481d-b3a6-ca0024771b03))
(fp_line (start 10.541 -2.921) (end 10.541 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b244ca0d-70ff-4c6a-8630-b10a438beb38))
(fp_line (start 10.541 -2.921) (end 11.43 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b7f50222-8750-42a6-9a19-5a60355cce6a))
(fp_line (start 10.541 4.191) (end 11.43 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 051cc7e5-96dd-442e-81d3-070baceb4527))
(fp_line (start 11.43 -7.62) (end 11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c908f53d-a75a-4958-9f0a-74f510153b8e))
(fp_line (start 11.43 7.62) (end 11.43 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e3d5aff0-7c19-40cf-a0b1-1f2efe207f85))
(fp_line (start 12.319 -4.191) (end 11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c7f13ed1-ffaa-4113-8073-d9fa487930a9))
(fp_line (start 12.319 2.921) (end 11.43 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 43236777-dfdd-468e-9a43-e039ed9ed88e))
(fp_line (start 12.319 2.921) (end 12.319 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 03acd8a9-2daa-4755-8397-e76ae60c743b))
(fp_line (start 13.081 -2.921) (end 13.081 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7874eb4d-7bbd-401d-b962-d80d3b520e99))
(fp_line (start 13.081 -2.921) (end 13.97 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 56f10dea-6084-4784-950a-d7fa4da65974))
(fp_line (start 13.081 4.191) (end 13.97 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp db86b1c2-d223-4c0c-bccc-41476e13b3e3))
(fp_line (start 13.97 -7.62) (end 13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d1863ffe-c890-458b-a2c0-31bc814e7fea))
(fp_line (start 13.97 7.62) (end 13.97 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7099c6de-9948-4211-9ab3-2f5dc4cd3252))
(fp_line (start 14.859 -4.191) (end 13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 83ff4ea5-3f77-4c90-a2d3-2886cdd00b12))
(fp_line (start 14.859 2.921) (end 13.97 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 183cbc00-bb2f-48f8-a488-558c9252c522))
(fp_line (start 14.859 2.921) (end 14.859 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e4d033e1-80ac-4aed-8563-38df1dae7e51))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp d14dee09-ff5b-40aa-a727-8eebba3612a8))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 76d7bf8d-0f59-43c1-a799-e3aea4a132ea))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp b799c6fe-2523-4ebb-b052-3266fae6920a))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 2fa51296-6edb-4aec-9cee-a6106b8cf2fb))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9249ae45-ba44-46ce-a103-e633d16deeec))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 57d40e40-8d15-46b9-897e-582be7f2742b))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2af1b298-128d-4541-b61e-8f06eaebf381))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1de61f34-b1ed-4e7f-bbc1-af72f1b8030e))
(fp_poly
(pts
(xy -14.478 -5.08)
(xy -13.462 -5.08)
(xy -13.462 -6.096)
(xy -14.478 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 5cb162ec-9848-4a91-b20f-dfbed21eaa65))
(fp_poly
(pts
(xy -13.462 5.08)
(xy -14.478 5.08)
(xy -14.478 6.096)
(xy -13.462 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 3cfd5955-e8b4-4ead-9e89-f47bae9ce28a))
(fp_poly
(pts
(xy -11.938 -5.08)
(xy -10.922 -5.08)
(xy -10.922 -6.096)
(xy -11.938 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 1716a844-6726-44a6-882c-7a6a8fa3f6cc))
(fp_poly
(pts
(xy -10.922 5.08)
(xy -11.938 5.08)
(xy -11.938 6.096)
(xy -10.922 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 4372b11f-d039-46ef-b1f5-180cabee5120))
(fp_poly
(pts
(xy -9.398 -5.08)
(xy -8.382 -5.08)
(xy -8.382 -6.096)
(xy -9.398 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 157027e7-4d38-4a54-827c-c5d1b95cedbd))
(fp_poly
(pts
(xy -8.382 5.08)
(xy -9.398 5.08)
(xy -9.398 6.096)
(xy -8.382 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 4b95e6a6-ab0c-4c0c-9880-d882dad26c1d))
(fp_poly
(pts
(xy -6.858 -5.08)
(xy -5.842 -5.08)
(xy -5.842 -6.096)
(xy -6.858 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 2bd965e5-0d1c-499b-8959-e8ca2a1ec808))
(fp_poly
(pts
(xy -5.842 5.08)
(xy -6.858 5.08)
(xy -6.858 6.096)
(xy -5.842 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 872cb38f-e891-416b-b705-017dbebd1fe0))
(fp_poly
(pts
(xy -4.318 -5.08)
(xy -3.302 -5.08)
(xy -3.302 -6.096)
(xy -4.318 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 59b94ccb-9d37-4021-b755-82c49c6d479b))
(fp_poly
(pts
(xy -3.302 5.08)
(xy -4.318 5.08)
(xy -4.318 6.096)
(xy -3.302 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 09f86233-f134-420e-81a4-70bcb5d88cc4))
(fp_poly
(pts
(xy -1.778 -5.08)
(xy -0.762 -5.08)
(xy -0.762 -6.096)
(xy -1.778 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp efe8dd62-925f-477f-b1a1-c8630963a003))
(fp_poly
(pts
(xy -0.762 5.08)
(xy -1.778 5.08)
(xy -1.778 6.096)
(xy -0.762 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 178bd42e-10a1-492e-b417-38cb1f275f97))
(fp_poly
(pts
(xy 0.762 -5.08)
(xy 1.778 -5.08)
(xy 1.778 -6.096)
(xy 0.762 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp a10ebc67-c583-4466-bc03-305df492e2a4))
(fp_poly
(pts
(xy 1.778 5.08)
(xy 0.762 5.08)
(xy 0.762 6.096)
(xy 1.778 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp a4fd64ca-8f14-4d5c-836d-8d2c95276d23))
(fp_poly
(pts
(xy 3.302 -5.08)
(xy 4.318 -5.08)
(xy 4.318 -6.096)
(xy 3.302 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp a82994c4-cd39-458f-ac2a-9e02f430c014))
(fp_poly
(pts
(xy 4.318 5.08)
(xy 3.302 5.08)
(xy 3.302 6.096)
(xy 4.318 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp e91cf7dd-c5f0-4749-be42-9aa7c72c2895))
(fp_poly
(pts
(xy 5.842 -5.08)
(xy 6.858 -5.08)
(xy 6.858 -6.096)
(xy 5.842 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 52bc2022-09f1-4e52-921d-41fac6e8f04e))
(fp_poly
(pts
(xy 6.858 5.08)
(xy 5.842 5.08)
(xy 5.842 6.096)
(xy 6.858 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 890d4ad2-c3c5-4916-a599-26de8f31a2b6))
(fp_poly
(pts
(xy 8.382 -5.08)
(xy 9.398 -5.08)
(xy 9.398 -6.096)
(xy 8.382 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 70912d39-4aab-4a2b-bf21-e801f5d11fb8))
(fp_poly
(pts
(xy 9.398 5.08)
(xy 8.382 5.08)
(xy 8.382 6.096)
(xy 9.398 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 18806a07-50c6-497e-b75a-47932d04024f))
(fp_poly
(pts
(xy 10.922 -5.08)
(xy 11.938 -5.08)
(xy 11.938 -6.096)
(xy 10.922 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 549906c0-38a7-4a99-9efc-94256469bc2c))
(fp_poly
(pts
(xy 11.938 5.08)
(xy 10.922 5.08)
(xy 10.922 6.096)
(xy 11.938 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 3730960c-920b-4634-9459-c08335b54ce1))
(fp_poly
(pts
(xy 13.462 -5.08)
(xy 14.478 -5.08)
(xy 14.478 -6.096)
(xy 13.462 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp d9403012-e234-4d82-963e-7eab403fff3c))
(fp_poly
(pts
(xy 14.478 5.08)
(xy 13.462 5.08)
(xy 13.462 6.096)
(xy 14.478 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp b3d148d8-cd60-4a9d-9a38-41f8d97273e6))
(fp_poly
(pts
(xy -14.478 -5.08)
(xy -13.462 -5.08)
(xy -13.462 -6.096)
(xy -14.478 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 1aa78f5c-8ce5-4f09-8892-d0d8fb417cf4))
(fp_poly
(pts
(xy -13.462 5.08)
(xy -14.478 5.08)
(xy -14.478 6.096)
(xy -13.462 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 6cf8bcd9-ae0d-452e-b96a-499afb2b246b))
(fp_poly
(pts
(xy -11.938 -5.08)
(xy -10.922 -5.08)
(xy -10.922 -6.096)
(xy -11.938 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 1ef818e1-3865-4d6f-8c5e-2a2a5e3d1101))
(fp_poly
(pts
(xy -10.922 5.08)
(xy -11.938 5.08)
(xy -11.938 6.096)
(xy -10.922 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp e6afe7d5-f6d2-4a82-9948-c721be57e00c))
(fp_poly
(pts
(xy -9.398 -5.08)
(xy -8.382 -5.08)
(xy -8.382 -6.096)
(xy -9.398 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp ebb00508-858a-4397-aca3-cde7218f9cb8))
(fp_poly
(pts
(xy -8.382 5.08)
(xy -9.398 5.08)
(xy -9.398 6.096)
(xy -8.382 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 3d0ce128-1dfa-49ac-b6d3-e44c4e2e13db))
(fp_poly
(pts
(xy -6.858 -5.08)
(xy -5.842 -5.08)
(xy -5.842 -6.096)
(xy -6.858 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 982a767d-2220-4bd4-8581-c222be11071e))
(fp_poly
(pts
(xy -5.842 5.08)
(xy -6.858 5.08)
(xy -6.858 6.096)
(xy -5.842 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp a695cd98-c28e-4f9c-b3a7-c09478291121))
(fp_poly
(pts
(xy -4.318 -5.08)
(xy -3.302 -5.08)
(xy -3.302 -6.096)
(xy -4.318 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 28150d64-0199-4db6-9ed2-7d4634b6f2ca))
(fp_poly
(pts
(xy -3.302 5.08)
(xy -4.318 5.08)
(xy -4.318 6.096)
(xy -3.302 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 639564e7-9500-40dc-b7eb-0efbbb880c8d))
(fp_poly
(pts
(xy -1.778 -5.08)
(xy -0.762 -5.08)
(xy -0.762 -6.096)
(xy -1.778 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 6802539d-b248-4b23-8dfd-a09887b143c8))
(fp_poly
(pts
(xy -0.762 5.08)
(xy -1.778 5.08)
(xy -1.778 6.096)
(xy -0.762 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp dad68950-904f-4642-9808-3a25b95d7a51))
(fp_poly
(pts
(xy 0.762 -5.08)
(xy 1.778 -5.08)
(xy 1.778 -6.096)
(xy 0.762 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp f67182c7-79af-4d7f-8471-691d77374f41))
(fp_poly
(pts
(xy 1.778 5.08)
(xy 0.762 5.08)
(xy 0.762 6.096)
(xy 1.778 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 90de785e-a26b-4106-a013-0a3db579f108))
(fp_poly
(pts
(xy 3.302 -5.08)
(xy 4.318 -5.08)
(xy 4.318 -6.096)
(xy 3.302 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 327392a8-b704-48f6-89f4-f5c783d0bc21))
(fp_poly
(pts
(xy 4.318 5.08)
(xy 3.302 5.08)
(xy 3.302 6.096)
(xy 4.318 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 2795cac8-1237-4940-a137-5dbc79c3080b))
(fp_poly
(pts
(xy 5.842 -5.08)
(xy 6.858 -5.08)
(xy 6.858 -6.096)
(xy 5.842 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 52ea0291-caef-42c2-bfb8-67ee42a6bb78))
(fp_poly
(pts
(xy 6.858 5.08)
(xy 5.842 5.08)
(xy 5.842 6.096)
(xy 6.858 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 15c80b80-7077-4c4e-961c-a0d90cbbcc1e))
(fp_poly
(pts
(xy 8.382 -5.08)
(xy 9.398 -5.08)
(xy 9.398 -6.096)
(xy 8.382 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 066c5fa1-7719-4e2c-b1a7-0d16d57c35a4))
(fp_poly
(pts
(xy 9.398 5.08)
(xy 8.382 5.08)
(xy 8.382 6.096)
(xy 9.398 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 0ebb35e8-6880-4fbe-9a2d-a9c187a6e47b))
(fp_poly
(pts
(xy 10.922 -5.08)
(xy 11.938 -5.08)
(xy 11.938 -6.096)
(xy 10.922 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp a8b8d1c6-b766-4b83-b02f-89b8e4302540))
(fp_poly
(pts
(xy 11.938 5.08)
(xy 10.922 5.08)
(xy 10.922 6.096)
(xy 11.938 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c7304c0d-6d8b-4235-8281-7b664acb3388))
(fp_poly
(pts
(xy 13.462 -5.08)
(xy 14.478 -5.08)
(xy 14.478 -6.096)
(xy 13.462 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp ff4d1e61-15eb-4c1d-921d-347863bc0183))
(fp_poly
(pts
(xy 14.478 5.08)
(xy 13.462 5.08)
(xy 13.462 6.096)
(xy 14.478 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp dbb06ef6-08a8-49b9-9ef7-c4424be6fdea))
(pad "" thru_hole circle (at -13.97 -7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 7d6e8a3b-2e53-4336-b550-d430a0c03e34))
(pad "" smd rect (at -13.97 -7.62 90) (size 2 2) (layers "F.Cu" "F.Paste" "F.Mask")
(zone_connect 0) (tstamp 5d141b4b-f764-4687-99fb-8ffcfaabc1ce))
(pad "" smd custom (at -13.97 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 97cfd90a-3dce-49fa-a3bf-54678f1d1c16))
(pad "" smd custom (at -13.97 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 872d2162-6470-4043-baed-1d859ae5c8a6))
(pad "" smd custom (at -13.97 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp fea3d92e-57fa-43e6-8799-c4fc86ae113a))
(pad "" smd custom (at -13.97 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 4b2b51c5-9907-4a9a-8bb7-ff9ece5b6a1d))
(pad "" thru_hole circle (at -13.97 7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 1f891bdc-655a-4e29-a5cd-0fde67bb9a1b))
(pad "" smd rect (at -13.97 7.62) (size 2 2) (layers "B.Cu" "B.Paste" "B.Mask")
(zone_connect 0) (tstamp 90a2309c-bf54-418f-bb99-675b773da320))
(pad "" thru_hole circle (at -11.43 -7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp a09c9625-384e-4fbc-9865-86ae44b4604a))
(pad "" smd custom (at -11.43 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 76bf5cb7-edd0-4f1b-944d-f67c37da542b))
(pad "" smd custom (at -11.43 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 962855d3-7c76-435b-ba4d-4708470ea597))
(pad "" smd custom (at -11.43 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp bcae5636-e92b-4ffb-b280-a484ef6306df))
(pad "" smd custom (at -11.43 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 1fd9c141-d4b8-49e2-ae18-b9b4893bebf2))
(pad "" thru_hole circle (at -11.43 7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 82b21066-1179-4c1e-8c8a-8affe27df402))
(pad "" thru_hole circle (at -8.89 -7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp cc7fc476-a537-4da7-969f-d1c0802366b4))
(pad "" smd custom (at -8.89 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 7adff9a3-1615-405c-9929-ba6bdd2a0927))
(pad "" smd custom (at -8.89 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp ba998bf6-9555-4c92-bb6c-bf0e982802c0))
(pad "" smd custom (at -8.89 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 6c2babec-8cb5-4ecd-8e09-5e0fe6e41a3e))
(pad "" smd custom (at -8.89 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 9d9e0372-7a25-45f7-9193-19519c54c8ef))
(pad "" thru_hole circle (at -8.89 7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp d5ec6098-e049-49ae-977a-14c8f5ab312a))
(pad "" thru_hole circle (at -6.35 -7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp a2f52bb2-2cd3-41e1-9ee0-ab3ce9cd2d8b))
(pad "" smd custom (at -6.35 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp d8bd74ae-ebdd-4f34-b1aa-3a8380900bbc))
(pad "" smd custom (at -6.35 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 5d7bbcf5-086a-4df1-acc6-d52f7772afcf))
(pad "" smd custom (at -6.35 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 6f31f256-9610-479d-99ca-808361e34dd4))
(pad "" smd custom (at -6.35 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp c28d984f-cd5c-446b-8e0e-c9f84a55fa02))
(pad "" thru_hole circle (at -6.35 7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 38c22e18-4878-42be-bcfe-f8cf9d0dbda6))
(pad "" thru_hole circle (at -3.81 -7.62) (size 2 2) (drill 1.55) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 73d72d3c-04b8-4f4a-bebf-7247eb9913e4))
(pad "" smd custom (at -3.81 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 074b9171-265d-4fbf-a863-dcf420436994))