-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmfk60_top_plate.kicad_pcb
3969 lines (3884 loc) · 241 KB
/
mfk60_top_plate.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "User" 419.989 210.007)
(title_block
(title "mfk60 Top Plate")
(date "2024-01-13")
(rev "1")
(company "@niw")
)
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 0793d22c-65b7-427b-90ef-95279d961f3a)
(at 239.3125 110.725)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/b5286bfd-2547-4e77-b188-b88632113879")
(attr smd board_only)
(fp_text reference "SW60" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd38cb66-bd9f-464c-b5d6-d999a9870800)
)
(fp_text value "COL9_ROW5" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98730545-9bd1-4c88-9a43-3560bf448caa)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp adbb98fe-c877-415f-805e-636381083084)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bbadd5b7-8902-4624-84a7-de981e1e56fa)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 04d2cf9e-2370-4d74-991c-504fa3a97576))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 2d6817ca-9a4d-49fb-ae56-faad1cde177a))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 74fe5829-37a0-45bf-bb4e-3caf8e88e9e7))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2f6cd23d-e18b-45ad-ba0c-d63eb35afdc4))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ba20481b-30d5-4783-9c12-0ad66a2eb439))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b220608d-6b98-4b01-bbe8-ee5b3135204d))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 478f3afd-0c47-4937-ab94-7515c9d4ce90))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8eed6d71-645b-40b6-bc78-61b0e06482f8))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d2144a34-e1cf-4559-970a-96130d631fc8))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e62266e7-da09-4850-a29e-18e901ecccc4))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 08304b6e-7138-4b88-b3c9-46a2d6633354)
(at 196.45 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/d7e498e4-2715-4a1d-b1ff-1b75ea43bddb")
(attr smd board_only)
(fp_text reference "SW36" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e35a9fee-f07b-474a-84a7-9322a25f6e84)
)
(fp_text value "COL8_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e40dec5-817e-42fb-a9f9-ed368c2db751)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 75aab047-997d-4169-a7a6-5155d7f7ef3d)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd55611b-63f5-4ff1-a055-915b648d5bb8)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 289281af-3c7b-4c6e-b206-1a1b886cad6a))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 5cac8b8e-6dca-4ab5-bc06-06a39bebac1e))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 693a41c4-43db-4a56-9d87-8ae16b076546))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b677df67-adb0-4997-901b-a8f52ff88edb))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e6515a80-6fc9-42cb-8916-ec6bffe64fe7))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 08259ee6-8d78-4538-9d22-7dcc428db253))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f3318cf3-06ce-4b56-be2e-5a7e0542460a))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ce47ecaf-a01f-4cb8-813c-7fc28be1cd49))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4819e2fb-d398-420e-b270-4eedc1a46d2e))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 050181e0-3a80-4488-9856-34ded712a9a3))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate_Stabilizer_2U" (layer "F.Cu")
(tstamp 08ca797e-f13f-4013-a432-d3272490c68b)
(at 46.43125 91.675)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/2e680c6a-ea72-440f-a57c-5cf17fe14613")
(attr smd board_only)
(fp_text reference "SW42" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1060357-5e4e-4dc3-9b75-b17cbf49c4f5)
)
(fp_text value "COL1_ROW4" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31817905-a593-4a17-9985-9b4ff76db276)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7b5c018b-106e-4d6c-9e03-4fb4d201720b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 188defcf-0936-4894-84c6-806fed253bcd)
)
(fp_rect (start -19.05 -9.525) (end 19.05 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 26cfbed1-1e54-4356-9ad7-30565e76f2eb))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp ad758dc4-0bd9-461d-8363-44d07ba0ba36))
(fp_line (start -15.25 4.95) (end -15.25 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 36cea7aa-889e-447d-a9f7-1edcbce892b6))
(fp_line (start -14.95 -7.15) (end -13.8 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 261f5422-54c1-4189-9eb0-31760671376a))
(fp_line (start -13.5 -7.45) (end -13.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9a0e4ef3-8715-41e1-8c94-988db5735024))
(fp_line (start -13.2 -8.15) (end -10.8 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1688a133-10b3-4d51-baed-0161ad9862e7))
(fp_line (start -10.5 -7.85) (end -10.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4211c3be-e372-47f1-bf6b-577890d847ee))
(fp_line (start -10.2 -7.15) (end -9.05 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp a2131806-5197-4621-a856-6065cc390715))
(fp_line (start -9.05 5.25) (end -14.95 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 58984aed-9025-46a7-adf8-03b3f8fd691e))
(fp_line (start -8.75 -6.85) (end -8.75 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 954ff0bf-8a22-4940-bf74-749bfa815155))
(fp_line (start -8.75 0.3) (end -8.75 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9d304404-a0b6-477d-8ca1-0b525c0ba325))
(fp_line (start -8.45 -4) (end -7.3 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp eca11c7a-4a7f-40b2-bc26-16888544ca83))
(fp_line (start -8.45 0) (end -7.3 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3405b5cc-883f-425b-8fe0-c31be5316a69))
(fp_line (start -7 -4.3) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 53c0d8c3-e30d-40f4-bee8-6dd99b807db4))
(fp_line (start -7 6.7) (end -7 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 742d2fad-00ba-43e2-9cf3-eb659d2487ae))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 12cec9b4-9ab9-474f-a180-836e9fc89cf4))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 33f5689c-4786-4207-9e0e-29ae432ef805))
(fp_line (start 7 -6.7) (end 7 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 736d2787-d3d4-44af-926f-c43e90030572))
(fp_line (start 7 0.3) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5ee230a5-7b06-4664-8a7c-a857a09371ae))
(fp_line (start 7.3 -4) (end 8.45 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d51a26b9-d883-4178-81cf-2fe7571e9078))
(fp_line (start 7.3 0) (end 8.45 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6c478b68-9fee-43f9-90ac-65c0f162f687))
(fp_line (start 8.75 -4.3) (end 8.75 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 208b2c29-ee26-4d33-9b24-f185cc0bd155))
(fp_line (start 8.75 4.95) (end 8.75 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7f0d7bab-2c4e-44f1-b46a-2388c806fa4e))
(fp_line (start 9.05 -7.15) (end 10.2 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 11236fb8-9581-41d4-8052-b5f473f71eb1))
(fp_line (start 10.5 -7.45) (end 10.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b41cd629-10a7-4a00-9ec6-e433a11c6ebd))
(fp_line (start 10.8 -8.15) (end 13.2 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp daa3a57d-6563-4762-84f1-14813f235d39))
(fp_line (start 13.5 -7.85) (end 13.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 03c1641b-cd65-42ae-bd8f-48b4cec114b0))
(fp_line (start 13.8 -7.15) (end 14.95 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 49ce8680-c19c-42bb-b39c-e5a7c64b0004))
(fp_line (start 14.95 5.25) (end 9.05 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9e53480f-f6c5-4230-811e-30da63d54dd0))
(fp_line (start 15.25 -6.85) (end 15.25 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2b697489-c972-4391-ae63-b55aae37c160))
(fp_arc (start -15.25 -6.85) (mid -15.162132 -7.062132) (end -14.95 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3ab1aeb9-b935-4fd6-8395-857180c538fa))
(fp_arc (start -14.95 5.25) (mid -15.162132 5.162132) (end -15.25 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1e2f52e3-d29e-45e9-a33f-1caa1ffbc8cc))
(fp_arc (start -13.5 -7.85) (mid -13.412132 -8.062132) (end -13.2 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp a0a46fe8-7915-4d0d-aa17-1c16c6513da9))
(fp_arc (start -13.5 -7.45) (mid -13.587868 -7.237868) (end -13.8 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5ea04c79-b61a-4801-8e73-e6bb0c40e943))
(fp_arc (start -10.8 -8.15) (mid -10.587868 -8.062132) (end -10.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c4370e8a-c527-42ba-837c-7433a3f5dafa))
(fp_arc (start -10.2 -7.15) (mid -10.412132 -7.237868) (end -10.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp fa9bb3be-d789-4b21-8137-635f554e2ac5))
(fp_arc (start -9.05 -7.15) (mid -8.837868 -7.062132) (end -8.75 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 013a3e39-8be9-4d1b-a459-b1f8efa000e1))
(fp_arc (start -8.75 0.3) (mid -8.662132 0.087868) (end -8.45 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4d76f12a-43bd-4ca9-a14f-c9561de34c0d))
(fp_arc (start -8.75 4.95) (mid -8.837868 5.162132) (end -9.05 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 30813508-11b1-4a60-a4cb-c450c9b41f28))
(fp_arc (start -8.45 -4) (mid -8.662132 -4.087868) (end -8.75 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5c39cf93-c033-46c1-825b-e758f231ee38))
(fp_arc (start -7.3 0) (mid -7.087868 0.087868) (end -7 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7e36d5ca-fd26-4742-a8b1-5ae6477a1569))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 44bfce80-7eb8-442d-bd79-a4e8c4ca33ef))
(fp_arc (start -7 -4.3) (mid -7.087868 -4.087868) (end -7.3 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2a80284a-3437-470f-9c96-60d9cc9dfa3f))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c9f21f72-64f0-49a0-a959-69a611980dc7))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6f165958-fd39-4c40-ad73-4801067fafa4))
(fp_arc (start 7 0.3) (mid 7.087868 0.087868) (end 7.3 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 43387a59-a573-4f8d-a75e-cd3cfcb32360))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9187f822-bf67-44bd-b96a-fcfa4596c294))
(fp_arc (start 7.3 -4) (mid 7.087868 -4.087868) (end 7 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 80a1368d-dbad-413d-b521-9257c9e2c203))
(fp_arc (start 8.45 0) (mid 8.662132 0.087868) (end 8.75 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8f58c88e-c956-4b97-b50f-40e3a5c451a1))
(fp_arc (start 8.75 -6.85) (mid 8.837868 -7.062132) (end 9.05 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1c2232fc-88b2-4e6d-9df7-152de137da90))
(fp_arc (start 8.75 -4.3) (mid 8.662132 -4.087868) (end 8.45 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d059504b-3339-41f3-9fe1-3076d8ce48c8))
(fp_arc (start 9.05 5.25) (mid 8.837868 5.162132) (end 8.75 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 90d4a9ff-8ddf-4a4a-ad14-dc0cd9be3bb9))
(fp_arc (start 10.5 -7.85) (mid 10.587868 -8.062132) (end 10.8 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9004db41-f438-45f4-9706-2511a8495134))
(fp_arc (start 10.5 -7.45) (mid 10.412132 -7.237868) (end 10.2 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c2e06c33-cbca-48b5-99ed-f2e5a9bb3995))
(fp_arc (start 13.2 -8.15) (mid 13.412132 -8.062132) (end 13.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7ca5eada-e1ea-43da-a020-e47a6339fc67))
(fp_arc (start 13.8 -7.15) (mid 13.587868 -7.237868) (end 13.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b61705d5-2212-4148-a185-e07d8ab212e4))
(fp_arc (start 14.95 -7.15) (mid 15.162132 -7.062132) (end 15.25 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 346afeb3-0b44-42b2-b2af-0275678e3fec))
(fp_arc (start 15.25 4.95) (mid 15.162132 5.162132) (end 14.95 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 92811897-a0ba-4e4f-9c97-1d85398ea673))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 09d935ab-458a-4e15-aa94-bee099483dc0)
(at 210.7375 53.575)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/cdd929aa-756d-4b90-9869-ee642a751c56")
(attr smd board_only)
(fp_text reference "SW23" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 201e6286-382d-4ca1-a8eb-141a55931294)
)
(fp_text value "COL9_ROW2" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e441de54-801d-421f-9cd0-41d37aaa13e6)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 06c285a1-c916-4d6f-99e9-f3c693e7333b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20b4b008-cd24-4918-8e47-7d613481fe7d)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp a2ace107-c4ee-47af-92aa-a63bd5812c37))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 74940e5d-a897-402f-b972-6ee35afac405))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b21cae03-572f-49cf-bd06-170c0e7cbd85))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f7acd33b-0e0a-472e-bfb2-bcf7a3ae274e))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0a878c97-be6f-4616-89f5-bd74183b6e75))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 95b20484-e436-4719-982b-3d04b8f33553))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8f627d4a-b5c7-4e80-b3a1-e97d5ec1e5a3))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 41508b12-29d1-4159-8b36-6234e87e0c35))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1fba961b-bb80-4d8f-a681-726ba179c839))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0b70638d-76f4-4c99-aba3-6c7aebf5c393))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 0eb75901-ddc7-4442-8ced-c899499db050)
(at 34.525 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/3f893b63-ae80-43d8-a356-bfd3dc791034")
(attr smd board_only)
(fp_text reference "SW1" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 831da91a-0e8f-4ddb-b108-23c122e1895e)
)
(fp_text value "COL1_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0620b26a-d6a2-42bb-9341-3298ed257e50)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 53090672-d2ed-415c-9fb8-e49dc9d4c24b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7541d620-4cfa-432a-9e0b-8abaac917e52)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 2ed6520b-8651-4a99-b2ea-5e9aa06bbabc))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 49427a26-b360-4983-a2ea-320d721e3865))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 61b38a6b-ae23-4d38-b0b0-f5cfdf1528b6))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1488b3e9-e29f-407a-b182-d03ce53dd66e))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7a14da17-d35a-43d7-966b-fd23dff1e799))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 91f5fb1d-7f2b-4fa3-a361-6bfcec8474ab))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6f284914-9576-417f-8c22-d0b753240680))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c6b5ea7b-12e7-4e5d-81ae-7de69b1bf756))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 84eacc31-090b-411b-ab70-60cd83d160b8))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ddfd3d7d-dc49-4921-881c-e69fd03ff3a4))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 10dc46e6-5145-4462-9849-985bb4802245)
(at 182.1625 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/32063f35-f38c-4d8c-8184-0b476f0c87e3")
(attr smd board_only)
(fp_text reference "SW8" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 652aea3e-2a9d-4618-a067-c2860bd98c9b)
)
(fp_text value "COL8_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77bec983-22dc-4eaa-ab1c-b7ce25217888)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 503b0e42-5002-440e-b25d-f5e7d6a304e9)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7cd53dd-142d-466f-83b3-8d9f52101225)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 2f12ea83-2f3d-403b-8524-8d7d17408c9b))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp d1ae1f4d-d99a-443a-b4d6-9e1703a56b3a))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1a135e23-3d06-4ca0-8f6d-5d9da7f84ef0))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c6fa0d71-3e25-4744-a0a0-6aec88b9d32d))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2728f2b4-d589-4fa8-824f-bb9845b4e560))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 74fb97f0-9bf2-436a-9f3d-0a8363272f47))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1e85e83b-d2ba-436c-9f19-033dca28586f))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 94750eb8-be22-4501-a5ea-38f619d698fe))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 04ee495d-afc1-4ae2-b4ce-4e3f0e077ff5))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9fd86c18-a1eb-4f3b-bf35-e32ec614552c))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate_Stabilizer_2U" (layer "F.Cu")
(tstamp 15163d85-c6f7-4337-b511-0e091ed697f6)
(at 303.60625 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/4814b0dd-acb2-4dd5-9d96-203e5ae95374")
(attr smd board_only)
(fp_text reference "SW41" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17c1a659-cce6-419a-9597-4e301ec12042)
)
(fp_text value "COL13_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65b94036-f173-4a69-932f-7ebdf707121d)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d13e6291-cf54-4074-a4f6-6a6d20589871)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea2aeb24-50f0-403e-91d7-9a5a01f98459)
)
(fp_rect (start -19.05 -9.525) (end 19.05 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp a1e0035b-27f2-4ab9-9cf7-19b28041e4b3))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 5e17fc9c-7aa8-43d4-9088-234a4dfb31a1))
(fp_line (start -15.25 4.95) (end -15.25 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f666734d-b716-4ea9-b2ab-f7c27de6eeeb))
(fp_line (start -14.95 -7.15) (end -13.8 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 494780c1-3ef8-48be-9172-3e59d52a7e01))
(fp_line (start -13.5 -7.45) (end -13.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp cfc6f202-78ec-49cf-b356-c8349b26cf2b))
(fp_line (start -13.2 -8.15) (end -10.8 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 60ac9c48-db63-4913-92b1-507402e7768a))
(fp_line (start -10.5 -7.85) (end -10.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ccdc6398-d1f6-47a1-92a2-054f3304c862))
(fp_line (start -10.2 -7.15) (end -9.05 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5a95466b-612b-4b7c-bbe7-b56cb786ed15))
(fp_line (start -9.05 5.25) (end -14.95 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c3a428c5-97c2-4ef7-9dd5-98f999382f9c))
(fp_line (start -8.75 -6.85) (end -8.75 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 03621e78-503d-44a5-90cb-f1c9247476bc))
(fp_line (start -8.75 0.3) (end -8.75 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f4b2a98c-b888-446c-a936-ecee36398966))
(fp_line (start -8.45 -4) (end -7.3 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp abb3daa0-a5da-4945-aef1-f87bbefb2807))
(fp_line (start -8.45 0) (end -7.3 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d631cf1a-bcb0-4cf0-b3f8-c933fa7bf9a0))
(fp_line (start -7 -4.3) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b75c6eb4-56ed-42ef-8c49-22f5596d597e))
(fp_line (start -7 6.7) (end -7 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 41ec52d5-0c47-4576-b887-f92efe648d50))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 60370137-264f-461f-8ec7-0d23ef53badb))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp a8da98b5-0966-4d09-89bd-4a00f766db29))
(fp_line (start 7 -6.7) (end 7 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7a263ab1-311f-44a9-b4aa-10e230dd4794))
(fp_line (start 7 0.3) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c01f659f-c09b-407b-8b74-077c3c38cd74))
(fp_line (start 7.3 -4) (end 8.45 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6adc8360-ec5d-4afb-bd03-bb198b10408a))
(fp_line (start 7.3 0) (end 8.45 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp debb415f-510b-478f-9068-3123762c8384))
(fp_line (start 8.75 -4.3) (end 8.75 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ef3f6fb6-5206-4f26-ab16-9fe40c6eab9e))
(fp_line (start 8.75 4.95) (end 8.75 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 38d3ca2d-3930-44c3-9fcb-25437a1168e9))
(fp_line (start 9.05 -7.15) (end 10.2 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d162dcde-4427-4072-8d11-7eb5e6499277))
(fp_line (start 10.5 -7.45) (end 10.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 36aed5bd-c0b7-42ca-85fd-a49a2a2a1209))
(fp_line (start 10.8 -8.15) (end 13.2 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 46aa48f8-0e8d-4525-bd07-fee9b9ea1494))
(fp_line (start 13.5 -7.85) (end 13.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b56b21df-a2b9-4167-8c0a-de64da992582))
(fp_line (start 13.8 -7.15) (end 14.95 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp fb1da818-d997-463b-bc07-6e934d840a55))
(fp_line (start 14.95 5.25) (end 9.05 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 52ae2e72-224b-43b6-b49a-caa245cb6e61))
(fp_line (start 15.25 -6.85) (end 15.25 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp db826e00-1a99-4c91-808a-43665044da9e))
(fp_arc (start -15.25 -6.85) (mid -15.162132 -7.062132) (end -14.95 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1bb5c34d-5d94-46cb-ac12-6b456e505b5f))
(fp_arc (start -14.95 5.25) (mid -15.162132 5.162132) (end -15.25 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2bfbd099-6391-443b-a7c8-2635703ed304))
(fp_arc (start -13.5 -7.85) (mid -13.412132 -8.062132) (end -13.2 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 89d26a4d-f239-42a0-a601-f55101b002bf))
(fp_arc (start -13.5 -7.45) (mid -13.587868 -7.237868) (end -13.8 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 519ab9fd-1f64-4ee0-a54c-885d81d8aa7f))
(fp_arc (start -10.8 -8.15) (mid -10.587868 -8.062132) (end -10.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 126ca874-c8a7-45e7-b19d-200d43edafc1))
(fp_arc (start -10.2 -7.15) (mid -10.412132 -7.237868) (end -10.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 877476dc-4f9a-4692-af06-dcc8f2eec58f))
(fp_arc (start -9.05 -7.15) (mid -8.837868 -7.062132) (end -8.75 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ab5c469d-33eb-4e9b-a98a-c2c78877f7d8))
(fp_arc (start -8.75 0.3) (mid -8.662132 0.087868) (end -8.45 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4a4e0fcf-7f23-47be-97d5-d64f128c2415))
(fp_arc (start -8.75 4.95) (mid -8.837868 5.162132) (end -9.05 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 44df9bc9-64d0-4f98-9851-202d64d5c0f3))
(fp_arc (start -8.45 -4) (mid -8.662132 -4.087868) (end -8.75 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp edd22fa6-1cd4-49be-b311-e86c9c2a917f))
(fp_arc (start -7.3 0) (mid -7.087868 0.087868) (end -7 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8fca0228-22df-4c90-8fd3-7da99c9425f9))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 762a66f3-e3e0-43ab-82f9-3a02193796d5))
(fp_arc (start -7 -4.3) (mid -7.087868 -4.087868) (end -7.3 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c82da010-c7fc-4873-8313-aacff59c9853))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 73929eef-cb16-4fae-a272-d9f0048194de))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ad6e9649-293c-4481-aa8c-decaa27db2ae))
(fp_arc (start 7 0.3) (mid 7.087868 0.087868) (end 7.3 0)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 724cb703-157e-47f5-a497-0b7d07c19e66))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c588516f-d79b-4343-8859-bbe17f64e521))
(fp_arc (start 7.3 -4) (mid 7.087868 -4.087868) (end 7 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f668e6b3-2201-402d-b7b1-a6d1195783e0))
(fp_arc (start 8.45 0) (mid 8.662132 0.087868) (end 8.75 0.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3d406944-693a-4206-8773-1c6fa5743bc3))
(fp_arc (start 8.75 -6.85) (mid 8.837868 -7.062132) (end 9.05 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1d1119e2-75b9-4132-9eb3-9b5d2fe488a0))
(fp_arc (start 8.75 -4.3) (mid 8.662132 -4.087868) (end 8.45 -4)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b42d3f3c-e94e-4660-aeb7-35a4de1a567e))
(fp_arc (start 9.05 5.25) (mid 8.837868 5.162132) (end 8.75 4.95)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 15daeb89-aca7-44ab-9b0d-3f0b50bc1702))
(fp_arc (start 10.5 -7.85) (mid 10.587868 -8.062132) (end 10.8 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7ecbfa1a-4f3c-48f8-9f79-16b4cf0bba31))
(fp_arc (start 10.5 -7.45) (mid 10.412132 -7.237868) (end 10.2 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 156e1bac-399e-4e67-a698-bc9de1d24bc1))
(fp_arc (start 13.2 -8.15) (mid 13.412132 -8.062132) (end 13.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp aeea807c-024e-494d-9ca5-6efd42337fed))
(fp_arc (start 13.8 -7.15) (mid 13.587868 -7.237868) (end 13.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9ed39063-b009-4571-9e76-fe925fa3f050))
(fp_arc (start 14.95 -7.15) (mid 15.162132 -7.062132) (end 15.25 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 26b93bfa-d1ef-4c33-a564-7019b589c0a6))
(fp_arc (start 15.25 4.95) (mid 15.162132 5.162132) (end 14.95 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 18c82cc3-4b34-4125-9bea-96a63ca0377c))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 16e2a0b7-1132-4965-b567-49195400d162)
(at 186.925 91.675)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/c2c5002f-9313-47d1-9c3a-162a34cc7a1f")
(attr smd board_only)
(fp_text reference "SW48" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f339ec55-f6c3-486a-a7fc-8371bdfa03f7)
)
(fp_text value "COL7_ROW4" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36637f89-b72c-48bc-b6f9-54ce9462266e)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1a709c78-2293-41c7-84fa-37a6c3793916)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e19a3f2-54c5-4d53-a6d2-aa497696c9f3)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp e3114def-78f2-442d-aed7-8a630c68c0b0))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 5db28096-1347-4fe6-9b3d-d75b2b082cbd))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 70e77286-9684-4d14-9ddb-bd446e54e360))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 276d459a-4139-4d0f-9cd6-52787ce28ee2))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5551bd98-9d01-452d-a6b9-30c421353971))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5c410db3-d244-49c9-ac76-c3eee32daf7e))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp eb009a6d-e8d2-41c8-aff6-c48279c4aae8))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f73981aa-7571-4df6-8fdc-fc8120eb5472))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1fe4dca5-2154-40a3-adb3-b3aeab753da1))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3e30b934-6edc-4cd4-9f34-811ca0008490))
)
(footprint "kikit:Tab" (layer "F.Cu")
(tstamp 172ec51c-d4fb-4ea0-badc-8decbaf7e46b)
(at 191.6875 25 -90)
(descr "A symbol representing annotation for tab placement")
(property "Sheetfile" "mfk60_right.kicad_sch")
(property "Sheetname" "Righ")
(property "exclude_from_bom" "")
(property "ki_description" "KiKit tab annotations")
(property "ki_keywords" "KiKit")
(path "/9b5d010c-c128-4221-9df0-679e0e88f90c/6b55207e-b868-4ac8-b423-35223127e41d")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "T4" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0fcb69a-0964-436e-8e1e-7c3097a57373)
)
(fp_text value "Tab" (at -2.75 -1 90) (layer "Dwgs.User")
(effects (font (size 1.2 1.2) (thickness 0.2)))
(tstamp af49a129-d2be-48a1-b9ff-a0f40398d974)
)
(fp_text user "KIKIT: width: 6mm" (at -5.5 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c0a80da-48a6-44d5-97cc-91f10a12f10d)
)
(fp_line (start 0.25 0) (end -2.75 0)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp c871f389-6a75-41ac-90c9-45c3f309c824))
(fp_line (start 0.25 0) (end -0.75 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 1c04eb8a-e715-4b24-b9b0-00bd39a831a2))
(fp_line (start 0.25 0) (end -0.75 1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp ca5e98a8-5ea5-4812-8b61-17baa44929f1))
(fp_line (start 0.25 1) (end 0.25 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp a87ab08f-b710-4fbf-a1c9-dee353b568da))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 1bebb899-5d8a-4d3d-83cd-c7ac16f87e01)
(at 205.975 91.675)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/2df42347-a5bc-4d3c-873b-581dde4a409f")
(attr smd board_only)
(fp_text reference "SW49" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32cce972-9acb-4b66-9905-dafad1d795e3)
)
(fp_text value "COL8_ROW4" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d714b0f3-54fe-4a6b-8582-b78e6cae303f)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6a62c70e-88f6-4bd0-a1f0-efa41005ad3c)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 022a8204-2acd-4090-9133-8e545620912c)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 98de9fb2-f37d-4e00-8e02-29815a84c607))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 06e898b3-b226-4d07-8d5d-992740b95bcd))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8ee558a9-0325-4e39-9da3-bd7c9e0d3240))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c1741ea0-3697-4d6c-936a-ec8c7e63d59f))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7b88752a-0bbd-4a55-98ed-05b107ff3222))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp dc379313-bb12-4706-b3ea-08a8b46938ef))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8df6a856-8177-4068-b51f-8f7d40f1c8da))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5bde4ab5-3c10-491f-8cdb-14cdf53d127d))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9f1bdfdd-c937-4af1-99e0-8dc695b8b7b9))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp af3ac259-9813-4fe2-86a2-9e8f0ef7075c))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 27f21240-de14-4aaf-b630-cb356ae12539)
(at 72.625 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/646f186b-ac5f-4169-b683-49f77df0c29f")
(attr smd board_only)
(fp_text reference "SW3" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d40c998-cd15-4d17-acc3-bf0eb1482d6a)
)
(fp_text value "COL3_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c297512-2224-480a-9243-cb2803dfeab4)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 704c8397-e133-469b-9e68-ae6e7e7a55a7)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 321e7bd3-73e5-4b5d-9a2b-1543b464a3b2)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 3129bf2f-38e6-45f8-a8e0-abf5cb9061d5))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp bcbaec18-f1d5-4fb4-879e-9e6a0b469f75))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2c28c2b9-d30b-4bf1-836d-682a57fa5e61))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp bb2ecf0d-f864-416f-a19d-ab7dd59cafaf))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 80e316a9-5b1e-4357-a80e-943fc61eb7b9))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 774e5d1f-96a7-4683-9f7e-b7cb511fc909))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp a0502e5c-16b6-4eea-8647-4c913737953a))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 44cfef7c-5aad-42dd-a6a4-35bdc2f9d27a))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4b5045c1-034e-4a24-b1ff-579d984218a6))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f189cde5-ca68-4265-a353-2debf21d387d))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 2c535852-cf57-4ade-8e8f-194d0c6a9ead)
(at 105.9625 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/9f83f860-eb9c-4674-a4f9-d94f97986496")
(attr smd board_only)
(fp_text reference "SW32" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5451acde-f69d-45b3-907a-c6531d88e89e)
)
(fp_text value "COL4_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c47f0a97-6c2b-41c2-bd13-aff81e952d72)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3dc697ea-f10f-49ec-ba6c-c78d0705f7e6)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a6877fc-4ad7-4340-aa47-60635a59d358)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 82761554-c86d-440a-839a-92f886116c6a))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 6b94c1df-de92-42f0-a6cd-aa498ca445aa))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e52deedd-2cce-45c0-ba88-5ad61a686191))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 46ea9064-a26a-48bb-a669-9c8ce6651617))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e453239c-d9f9-4d11-9c68-873d4bfa7e4b))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e3c58082-6e53-43af-a12d-22cac00bdc5e))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c50c9824-d58a-4498-9095-6ec92660240f))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp bd0cd47d-2357-4ac3-8b01-a28ebcfb96ba))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e82724f4-04bf-412f-99ff-ed5ab30130d9))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 15ff3543-9a69-4355-9189-5bd476e6cb66))
)
(footprint "kikit:Tab" (layer "F.Cu")
(tstamp 2c747acd-c66e-4168-9590-e9d12eff2d4f)
(at 63.1 120.25 90)
(descr "A symbol representing annotation for tab placement")
(property "Sheetfile" "mfk60_left.kicad_sch")
(property "Sheetname" "Left")
(property "exclude_from_bom" "")
(property "ki_description" "KiKit tab annotations")
(property "ki_keywords" "KiKit")
(path "/ee6749c5-8347-4034-bc31-139d7c495021/57e21fd3-08b2-4b37-920f-3d292808716e")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "T2" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c0ae1bf-9d57-4cd3-8a54-80c19c0763bc)
)
(fp_text value "Tab" (at -2.75 -1 90) (layer "Dwgs.User")
(effects (font (size 1.2 1.2) (thickness 0.2)))
(tstamp 0a998778-5c0c-4667-aab7-a111773c274f)
)
(fp_text user "KIKIT: width: 6mm" (at -5.5 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 366a9d16-adc9-41cb-9bae-6a7a98657e29)
)
(fp_line (start 0.25 0) (end -2.75 0)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 03702382-7850-43f8-8cc7-66445a766a88))
(fp_line (start 0.25 0) (end -0.75 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 7df67ca9-e163-4a46-8dac-a9025b51c978))
(fp_line (start 0.25 0) (end -0.75 1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp a324d2cc-d219-4905-a815-a8329177acb6))
(fp_line (start 0.25 1) (end 0.25 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 13b4e3a4-af40-40d8-acd2-762180cb53b1))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 2c9ed644-9408-4241-bf00-14f556af11e8)
(at 215.5 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/4c628624-a134-4cb6-acfb-da8c72d2f7c8")
(attr smd board_only)
(fp_text reference "SW37" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c79fe22-07e2-42db-beed-94adb79df8a6)
)
(fp_text value "COL9_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73f07b61-a18e-4d65-896b-6a09e36ee658)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1f988485-41f1-43da-9a86-fe0f6b3f005a)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a51d1f1f-f06c-4c19-bed0-f8b14bd910b6)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 1f407d95-ea00-4bd0-9369-a5a8c984ac36))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 6fef3276-95b4-4ed6-a047-7f835db3d01a))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2978e875-aec2-4d4c-a370-6dcbb6339514))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 744b279d-e83f-4dab-9c81-5c529a4e4066))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ebefc5b7-afa4-4482-9510-e1dd856ae9dc))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 16c9d1c7-89a2-44d4-a7fb-49b95e4981d2))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e4103175-0dda-4832-8b82-96b6a7a512a5))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp fcaf9a47-8d24-4992-a84a-cdfcd21cbfa3))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6c718346-e5ff-4393-a1f0-552f5222bab5))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d1b558e1-1f79-4c21-b315-2e7220f2e193))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate" (layer "F.Cu")
(tstamp 30bd9349-7bbc-46e8-a2c6-fd70478686b4)
(at 129.775 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/d9abf34e-0850-4456-ac77-99868cfbf7f7")
(attr smd board_only)
(fp_text reference "SW6" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 086fc08e-4ea0-4b92-aa23-07883a94c4af)
)
(fp_text value "COL6_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f8ec670-9603-4455-83eb-63f797d58a2b)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5b7f78ca-1dc6-431a-a5f4-47d6f30da3a9)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03269134-4161-458f-b1ac-8097144abb2c)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp fbc619b8-07a9-48f0-bd39-68f17f59325b))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp babca525-a573-47d5-941c-6f9a5311d614))
(fp_line (start -7 6.7) (end -7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2b32e054-003f-4b1e-90c9-7345da7989ea))
(fp_line (start -6.7 -7) (end 6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ec9d0277-be6f-4288-a272-5572e0427b43))
(fp_line (start 6.7 7) (end -6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 57c10a49-99f1-4a03-9214-6b81512ba906))
(fp_line (start 7 -6.7) (end 7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 608b6c0a-9521-4c77-83a3-b8c269b1048a))
(fp_arc (start -7 -6.7) (mid -6.912132 -6.912132) (end -6.7 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 50ae8615-0082-4a3f-bcbe-1d232696147d))
(fp_arc (start -6.7 7) (mid -6.912132 6.912132) (end -7 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3e5bc0be-5bfc-4f78-b9b1-424110dd3722))
(fp_arc (start 6.7 -7) (mid 6.912132 -6.912132) (end 7 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 92e227f0-9bd0-4758-be02-d8cf056097ec))
(fp_arc (start 7 6.7) (mid 6.912132 6.912132) (end 6.7 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 63d97971-960e-4d70-8118-c97a1976eca1))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Top_Plate_Stabilizer_2U" (layer "F.Cu")
(tstamp 3173e857-0b34-4582-8e42-8f22fddae31c)
(at 122.63125 110.725)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/fa1dc2c5-7ed1-42b6-af47-dd32b39be85f")
(attr smd board_only)
(fp_text reference "SW57" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e7734c6-c9b4-49c1-b9da-181c2aa7aa00)
)
(fp_text value "COL3_ROW5" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69a44d82-0ad2-47b9-92f6-469a1e49f1ec)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ed95603b-a9bd-4e5b-a4d0-86502f68e4a5)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69f8bed0-d268-4dec-887b-05d5217d8136)
)
(fp_rect (start -19.05 -9.525) (end 19.05 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp f0b0ad6c-a581-4c77-8ddb-89f877dd677f))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 0a5c5ec4-062c-4aa9-993f-8127aae81c23))
(fp_line (start -15.25 4.95) (end -15.25 -6.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 18d11c42-ae49-472d-ade3-eb6b8dd1b2f1))
(fp_line (start -14.95 -7.15) (end -13.8 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0f240cb5-0bc3-4ba0-8190-c7089a031060))
(fp_line (start -13.5 -7.45) (end -13.5 -7.85)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp cfb1bc2e-04ba-4392-920c-887ba2249ae2))
(fp_line (start -13.2 -8.15) (end -10.8 -8.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c3789468-082a-48ff-bb3c-c99b49620a1a))
(fp_line (start -10.5 -7.85) (end -10.5 -7.45)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 72b97930-5000-40c0-9fbf-1c8a8d09e932))
(fp_line (start -10.2 -7.15) (end -9.05 -7.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7c8865c8-2bbb-4007-bdf1-9c82421f9dd0))
(fp_line (start -9.05 5.25) (end -14.95 5.25)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3086f3f4-f8a5-4066-b726-4ee9ea3f73df))
(fp_line (start -8.75 -6.85) (end -8.75 -4.3)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp db1ee1af-dc81-41f2-bb42-957b86fb8ea6))