-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreface_midi_pcb.kicad_pcb
5387 lines (5370 loc) · 211 KB
/
reface_midi_pcb.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A5")
(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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x0001000_fffffffe)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask true)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 4)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(A1-Pad1)")
(net 2 "Net-(A1-Pad2)")
(net 3 "unconnected-(A1-Pad3)")
(net 4 "Net-(D1-Pad1)")
(net 5 "Net-(D1-Pad2)")
(net 6 "unconnected-(J1-Pad2)")
(net 7 "Net-(A1-Pad30)")
(net 8 "GND")
(net 9 "Net-(J3-Pad3)")
(net 10 "Net-(A1-Pad8)")
(net 11 "Net-(A1-Pad9)")
(net 12 "Net-(A1-Pad7)")
(net 13 "Net-(A1-Pad10)")
(net 14 "Net-(A1-Pad6)")
(net 15 "Net-(A1-Pad11)")
(net 16 "Net-(A1-Pad12)")
(net 17 "Net-(A1-Pad13)")
(net 18 "Net-(J5-Pad2)")
(net 19 "Net-(A1-Pad27)")
(net 20 "Net-(A1-Pad15)")
(net 21 "unconnected-(U1-Pad3)")
(net 22 "unconnected-(A1-Pad14)")
(net 23 "unconnected-(A1-Pad16)")
(net 24 "unconnected-(A1-Pad17)")
(net 25 "unconnected-(A1-Pad18)")
(net 26 "unconnected-(A1-Pad19)")
(net 27 "unconnected-(A1-Pad20)")
(net 28 "unconnected-(A1-Pad21)")
(net 29 "unconnected-(A1-Pad22)")
(net 30 "unconnected-(A1-Pad23)")
(net 31 "unconnected-(A1-Pad24)")
(net 32 "unconnected-(A1-Pad25)")
(net 33 "unconnected-(A1-Pad26)")
(net 34 "unconnected-(A1-Pad28)")
(net 35 "Net-(A1-Pad5)")
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp 2aabebab-10c6-4637-946b-cda31980f550)
(at 92.974 95.478 90)
(descr "Soldered wire connection, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/7af947fd-2ec9-49ef-affd-ea7d120ae60f")
(attr exclude_from_pos_files)
(fp_text reference "J3" (at -0.788 -2.35 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdf69da0-bf1d-48b6-92e4-7b762bd4454d)
)
(fp_text value "MIDI OUTPUT" (at 7.34 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3eee2221-7af9-4d6a-ba79-a48c3fd1ac35)
)
(fp_text user "${REFERENCE}" (at 4.8 0 90) (layer "F.Fab")
(effects (font (size 0.58 0.58) (thickness 0.09)))
(tstamp c6e8924b-3698-49bc-af6d-d7a327eada39)
)
(fp_line (start 11.5 1.65) (end 11.5 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 08fae221-7b6f-4c57-be73-6210c6206091))
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 21a4e5f9-158c-4a1e-a6d3-12c826291e62))
(fp_line (start 11.5 -1.65) (end 7.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 3b5147db-69cc-4871-96a7-79c3437a6213))
(fp_line (start 6.7 1.65) (end 6.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 646182ef-83d3-48ef-8f13-39bd3cf49786))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 689e49bf-7f41-4390-9297-8151fb94eb64))
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 6e9aab82-e6c0-4960-99af-e7c5a83d520f))
(fp_line (start 7.7 1.65) (end 11.5 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8fa4f87a-9012-4f6f-a6c0-ec1c5f716184))
(fp_line (start 2.9 -1.65) (end 2.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 9ad54c14-6dd1-4741-ab11-80a0275cae72))
(fp_line (start 2.9 1.65) (end 6.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 9e39ed40-271f-40f8-b1c9-20b888c10512))
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp b90997e2-4c7f-4479-862f-ab35dfea4f77))
(fp_line (start 7.7 -1.65) (end 7.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp dc2e4d69-ab4d-4864-999d-7aa340dd63c7))
(fp_line (start 6.7 -1.65) (end 2.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp fe0a8ab1-7b25-4d9a-9a3b-f8c5e10b289a))
(fp_circle (center 4.8 0) (end 5.95 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 8f29ec2b-5253-4ae2-bf8f-40e83998f739))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp a97391c0-c438-44dc-aec7-4249e6f62568))
(fp_circle (center 9.6 0) (end 10.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp db09a492-3111-4077-8b89-2ff4c8eebad3))
(pad "1" thru_hole roundrect (at 0 0 90) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696087)
(net 1 "Net-(A1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 18ee575f-d41e-4a26-ac0a-b229112d8877))
(pad "2" thru_hole circle (at 4.8 0 90) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 3381b763-2886-4e76-a243-cbcc2ec8a032))
(pad "3" thru_hole circle (at 9.6 0 90) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask)
(net 9 "Net-(J3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 4fe15866-5386-4410-a27b-4fc15182a4f3))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Module:Arduino_Nano" (layer "F.Cu")
(tedit 58ACAF70) (tstamp 2ca148b4-658e-4a63-ab5c-2e293c8a2284)
(at 103.642 52.578)
(descr "Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf")
(tags "Arduino Nano")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/7599133e-c681-4202-85d9-c20dac196c64")
(attr through_hole)
(fp_text reference "A1" (at 0.508 -2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dafbc4d4-726b-47c7-b074-8d381c5f7477)
)
(fp_text value "Arduino_Nano_v2.x" (at 8.89 19.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cac229b9-4e45-4ff2-99e5-58a9f42e10ad)
)
(fp_text user "${REFERENCE}" (at 6.35 19.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9040301e-2db7-4539-a395-c3c3a6578f1c)
)
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 051843b3-7cf0-48e5-a2c5-baf929a24332))
(fp_line (start -1.4 1.27) (end -1.4 39.5) (layer "F.SilkS") (width 0.12) (tstamp 1a97ead2-7589-4551-b2d9-de162cb5deac))
(fp_line (start -1.4 39.5) (end 16.64 39.5) (layer "F.SilkS") (width 0.12) (tstamp 3a71e4f8-929c-487e-bcb7-5543a8ce30cd))
(fp_line (start 13.97 36.83) (end 16.64 36.83) (layer "F.SilkS") (width 0.12) (tstamp 4225f8ec-c00a-42c9-83ec-0b1874f1690a))
(fp_line (start 16.64 -3.94) (end -1.4 -3.94) (layer "F.SilkS") (width 0.12) (tstamp 82392998-63b2-4a30-9059-0e5c8775f59f))
(fp_line (start 1.27 -1.27) (end -1.4 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 8ed86da9-91c5-4159-bec7-07dc491fa279))
(fp_line (start 1.27 1.27) (end -1.4 1.27) (layer "F.SilkS") (width 0.12) (tstamp a1e9049d-f35d-4030-bd6c-8bd4de94850c))
(fp_line (start 1.27 36.83) (end -1.4 36.83) (layer "F.SilkS") (width 0.12) (tstamp abaeb44c-1378-4ad6-8685-46142daf54a0))
(fp_line (start -1.4 -3.94) (end -1.4 -1.27) (layer "F.SilkS") (width 0.12) (tstamp b23701f9-4f77-40f0-bb0b-f58ca1629636))
(fp_line (start 1.27 1.27) (end 1.27 36.83) (layer "F.SilkS") (width 0.12) (tstamp ca450172-9f54-40e9-954d-00e6c5717c60))
(fp_line (start 13.97 -1.27) (end 13.97 36.83) (layer "F.SilkS") (width 0.12) (tstamp d2cf6259-1969-4081-84ce-29cf52509b64))
(fp_line (start 16.64 39.5) (end 16.64 -3.94) (layer "F.SilkS") (width 0.12) (tstamp d71c39ef-e72b-4588-87df-46785802e4ef))
(fp_line (start 13.97 -1.27) (end 16.64 -1.27) (layer "F.SilkS") (width 0.12) (tstamp fb029c22-7d39-4981-a13e-e10ef0fdc1f4))
(fp_line (start 16.75 42.16) (end -1.53 42.16) (layer "F.CrtYd") (width 0.05) (tstamp a139c6ee-c86f-42af-ad31-6d1daa96d895))
(fp_line (start -1.53 -4.06) (end 16.75 -4.06) (layer "F.CrtYd") (width 0.05) (tstamp d481e0bc-bdea-4b8c-be39-6da97fcff11b))
(fp_line (start 16.75 42.16) (end 16.75 -4.06) (layer "F.CrtYd") (width 0.05) (tstamp eb150cc4-5079-4cc4-9e36-71218f2123dd))
(fp_line (start -1.53 -4.06) (end -1.53 42.16) (layer "F.CrtYd") (width 0.05) (tstamp f4279b80-c93c-4ba3-990c-3eebc019d77e))
(fp_line (start -1.27 -2.54) (end 0 -3.81) (layer "F.Fab") (width 0.1) (tstamp 0e37befa-9212-4f4b-bddd-f8ab4d263749))
(fp_line (start 3.81 41.91) (end 3.81 31.75) (layer "F.Fab") (width 0.1) (tstamp 15eceb7a-2297-4016-a0a3-2c364b704091))
(fp_line (start 11.43 41.91) (end 3.81 41.91) (layer "F.Fab") (width 0.1) (tstamp 23ccef44-4fac-4320-80b8-733634334a7a))
(fp_line (start 11.43 31.75) (end 11.43 41.91) (layer "F.Fab") (width 0.1) (tstamp 2dfb2354-fae7-4b55-949f-2ba9bd820f92))
(fp_line (start -1.27 39.37) (end -1.27 -2.54) (layer "F.Fab") (width 0.1) (tstamp 43b584e0-eef6-48d3-9fa7-da0da9059edb))
(fp_line (start 16.51 39.37) (end -1.27 39.37) (layer "F.Fab") (width 0.1) (tstamp 486bca7d-02b9-4f3c-97ac-eb7c0e0096ff))
(fp_line (start 0 -3.81) (end 16.51 -3.81) (layer "F.Fab") (width 0.1) (tstamp 4bb3b12c-3303-4c65-945e-ee1232927f81))
(fp_line (start 16.51 -3.81) (end 16.51 39.37) (layer "F.Fab") (width 0.1) (tstamp bd1df194-6041-4360-9565-60e9523002f9))
(fp_line (start 3.81 31.75) (end 11.43 31.75) (layer "F.Fab") (width 0.1) (tstamp db79efc0-e826-4a1c-87e6-cbe23d1836c8))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "Net-(A1-Pad1)") (pinfunction "D1/TX") (pintype "bidirectional") (tstamp 07f87efa-1663-4b03-bcf4-c69228c7073a))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(A1-Pad2)") (pinfunction "D0/RX") (pintype "bidirectional") (tstamp 636ebc7a-e4e3-4797-86b8-6a1ead86a6d6))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 3 "unconnected-(A1-Pad3)") (pinfunction "~{RESET}") (pintype "input+no_connect") (tstamp 49a8eb8c-6101-466b-b6e2-29b32c6c5683))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 129519b5-bc1e-406a-b3ff-f03ddcb3f164))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 35 "Net-(A1-Pad5)") (pinfunction "D2") (pintype "bidirectional") (tstamp aac4c37d-21df-4cd6-b20d-a78d09f80361))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(A1-Pad6)") (pinfunction "D3") (pintype "bidirectional") (tstamp 1356d170-968b-4fc1-8f7d-15abadb14d85))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(A1-Pad7)") (pinfunction "D4") (pintype "bidirectional") (tstamp de6821ef-8258-4a6c-bf3c-f9a6698c97fe))
(pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(A1-Pad8)") (pinfunction "D5") (pintype "bidirectional") (tstamp 53d9cd2a-b4e4-4ed4-a9a9-733d34ba0663))
(pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 11 "Net-(A1-Pad9)") (pinfunction "D6") (pintype "bidirectional") (tstamp 97f0a462-5e73-4a27-807d-1752fc46dff8))
(pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(A1-Pad10)") (pinfunction "D7") (pintype "bidirectional") (tstamp b851e693-abef-4460-ba39-b9fc5999b058))
(pad "11" thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(A1-Pad11)") (pinfunction "D8") (pintype "bidirectional") (tstamp 11d3b844-a781-4d35-8eaf-fc93d9d5519b))
(pad "12" thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(A1-Pad12)") (pinfunction "D9") (pintype "bidirectional") (tstamp 7e10c94a-7591-4892-9351-18ebe562ea30))
(pad "13" thru_hole oval (at 0 30.48) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(A1-Pad13)") (pinfunction "D10") (pintype "bidirectional") (tstamp f26c481d-d67e-4482-a7d9-6f79748d485a))
(pad "14" thru_hole oval (at 0 33.02) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 22 "unconnected-(A1-Pad14)") (pinfunction "D11") (pintype "bidirectional") (tstamp 35ed94cc-787f-4c0e-b098-69d3dffa1d79))
(pad "15" thru_hole oval (at 0 35.56) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 20 "Net-(A1-Pad15)") (pinfunction "D12") (pintype "bidirectional") (tstamp 8d27b85f-540e-422a-aa65-a64a058f30d4))
(pad "16" thru_hole oval (at 15.24 35.56) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 23 "unconnected-(A1-Pad16)") (pinfunction "D13") (pintype "bidirectional+no_connect") (tstamp 2150e35f-bddb-46e5-a853-9afc71c0830d))
(pad "17" thru_hole oval (at 15.24 33.02) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 24 "unconnected-(A1-Pad17)") (pinfunction "3V3") (pintype "power_out+no_connect") (tstamp ebeeec6e-78d4-4657-a845-c0d00b5092fb))
(pad "18" thru_hole oval (at 15.24 30.48) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 25 "unconnected-(A1-Pad18)") (pinfunction "AREF") (pintype "input+no_connect") (tstamp 7c507310-d715-4f1f-9c68-816d75b246e5))
(pad "19" thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 26 "unconnected-(A1-Pad19)") (pinfunction "A0") (pintype "bidirectional+no_connect") (tstamp 4e231b05-345e-4313-8b6b-ab614f5c1a31))
(pad "20" thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 27 "unconnected-(A1-Pad20)") (pinfunction "A1") (pintype "bidirectional+no_connect") (tstamp 6b40fa69-05c7-48e1-992f-508f06531cad))
(pad "21" thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 28 "unconnected-(A1-Pad21)") (pinfunction "A2") (pintype "bidirectional+no_connect") (tstamp ed1228e2-d501-44d5-aed3-8e7ceb0701fb))
(pad "22" thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 29 "unconnected-(A1-Pad22)") (pinfunction "A3") (pintype "bidirectional+no_connect") (tstamp c17299c3-8f60-4082-9be0-bbabc66e38fd))
(pad "23" thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 30 "unconnected-(A1-Pad23)") (pinfunction "A4") (pintype "bidirectional+no_connect") (tstamp 0f0206cf-2d8e-4577-887b-0cfe0e613291))
(pad "24" thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 31 "unconnected-(A1-Pad24)") (pinfunction "A5") (pintype "bidirectional+no_connect") (tstamp 7d6361d4-f268-4b0b-97a0-143535ff88d3))
(pad "25" thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 32 "unconnected-(A1-Pad25)") (pinfunction "A6") (pintype "bidirectional+no_connect") (tstamp 9bd60de0-906c-4e70-8a76-ee21b1d30081))
(pad "26" thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 33 "unconnected-(A1-Pad26)") (pinfunction "A7") (pintype "bidirectional+no_connect") (tstamp 97f41563-b89f-4467-a029-b22244819e02))
(pad "27" thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 19 "Net-(A1-Pad27)") (pinfunction "+5V") (pintype "power_out") (tstamp a265b5f8-451c-4677-a83c-af139983df25))
(pad "28" thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 34 "unconnected-(A1-Pad28)") (pinfunction "~{RESET}") (pintype "input+no_connect") (tstamp f6bbcec5-47eb-4924-a608-c6c5ca5e14ea))
(pad "29" thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c6fca850-e8eb-4a8a-82a8-ab684c0bf1fd))
(pad "30" thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 7 "Net-(A1-Pad30)") (pinfunction "VIN") (pintype "power_in") (tstamp 05ff758d-5028-4f3e-9e58-5a6f96445ca4))
(model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/Arduino_Nano_WithMountingHoles.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm" (layer "F.Cu")
(tedit 5EB70B43) (tstamp 42795956-f125-4166-860d-4316fe3791b8)
(at 97.01 98.806)
(descr "Soldered wire connection, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/d06ebca3-2d8a-4912-8957-1b70a6ce5da4")
(attr exclude_from_pos_files)
(fp_text reference "J5" (at 2.3 -2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0af1aa5-82ff-4825-8836-86496e7db65f)
)
(fp_text value "LED" (at 2.3 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01106a52-6b7d-40fd-b165-c927be1f6a1d)
)
(fp_text user "${REFERENCE}" (at 2.3 0 90) (layer "F.Fab")
(effects (font (size 0.78 0.78) (thickness 0.12)))
(tstamp e1b0380f-01af-4f4c-986f-502b633a3c03)
)
(fp_line (start 2.8 1.55) (end 6.4 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 4e944601-14c5-4478-a9d6-8d2ad19dcc43))
(fp_line (start -1.8 -1.55) (end -1.8 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 65908b01-f0a0-46e1-84f2-bf49d46af2a7))
(fp_line (start 2.8 -1.55) (end 2.8 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 899d6960-0494-4e8f-9091-802503c02d1b))
(fp_line (start 6.4 -1.55) (end 2.8 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 94a21413-9821-4587-923e-f37548a5150a))
(fp_line (start 1.8 1.55) (end 1.8 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 9b84db75-decc-418f-80b8-9703cc547aae))
(fp_line (start -1.8 1.55) (end 1.8 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 9e2ad25e-29e1-4c10-8e33-16d30c4ff9b9))
(fp_line (start 6.4 1.55) (end 6.4 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp c5ef9b89-6cfe-4b79-a0bb-48d12c79b541))
(fp_line (start 1.8 -1.55) (end -1.8 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp e02b47af-92a8-4b6e-841f-f88d0fa73eb7))
(fp_circle (center 0 0) (end 1.05 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp d7fccf28-3bfa-4b51-bf91-5d4755a0686e))
(fp_circle (center 4.6 0) (end 5.65 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp f22aae5d-f6eb-438b-9ba4-dcb7ba01f85f))
(pad "1" thru_hole roundrect (at 0 0) (size 2.1 2.1) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.1190480952)
(net 8 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp c7699973-e377-4c8c-8edc-6474ca187ece))
(pad "2" thru_hole circle (at 4.6 0) (size 2.1 2.1) (drill 1.1) (layers *.Cu *.Mask)
(net 18 "Net-(J5-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 10df6e07-cc84-4b25-a71b-19a35b4b40da))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 83250ce3-cee5-48b2-8a3e-b1e7887d6a15)
(at 105.166 98.806)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/8378e18f-07c0-4f62-8bfb-668d554e4b58")
(attr through_hole)
(fp_text reference "R2" (at 4.572 1.016) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc007755-47dc-4b01-a9a3-8f34e8741895)
)
(fp_text value "500" (at 10.16 1.016) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 462f8e7e-09c6-4676-ba4f-fd07b2868aa8)
)
(fp_text user "${REFERENCE}" (at 4.572 1.016) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52da99c6-c348-4007-8828-51a963a2879f)
)
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp 1416f46f-efcf-4c99-81af-d39cf81f2652))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 2952439a-4d93-45a3-a998-2b2fce2c5fe9))
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 3eff8f32-349a-4846-b484-abdc036c7174))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp ad8c2a20-27d0-4e2a-aabf-44a509bf342a))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp c2a5cbbc-a316-4826-81b8-a34d52b5eb58))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp e2743b78-cc59-458c-8fb0-4238f348a49f))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 06fb8a5e-69f3-44ca-bc88-4da9a1408625))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 5f4676ff-2597-415d-a32e-98d53038f432))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 84e64de5-2809-4251-a45b-2b46d2cc79df))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 9ceeff0a-ae63-43da-8fd2-e3d57063537d))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp 471f517c-6d52-459f-9d7a-aedf176fc9e0))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp 50cd7dd2-4ee6-4ead-a8d7-6798eb55f8db))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp 5d00cbc9-46cb-472e-b705-59da8e971192))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp 5da519c8-016f-4f2c-843d-d8fc54aa43f1))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp b9272e8b-2d00-4d6b-ae8c-fd62ef331586))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp ea7f95ca-1368-4ccc-b3c5-17a85c05a2dd))
(pad "1" thru_hole circle (at 0 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 18 "Net-(J5-Pad2)") (pintype "passive") (tstamp 296b967f-b7a9-453f-856a-7b874fdca3db))
(pad "2" thru_hole oval (at 15.24 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 20 "Net-(A1-Pad15)") (pintype "passive") (tstamp 7a25e2e8-d883-44ae-8207-1f946e50b1fa))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm" (layer "F.Cu")
(tedit 5EB70B43) (tstamp 84282cc7-416d-48c2-ae9f-c0149b35065e)
(at 119.658 45.466 180)
(descr "Soldered wire connection, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/5af4a788-7a04-4426-b0db-4c4b4deeb3ce")
(attr exclude_from_pos_files)
(fp_text reference "J2" (at 4.332 3.556) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b78bfc8f-0469-4499-ad41-c131461c3c5d)
)
(fp_text value "9V IN" (at 0.268 3.556) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4221b138-87b6-4073-a6e3-acb41ba2e601)
)
(fp_text user "${REFERENCE}" (at 2.3 0 90) (layer "F.Fab")
(effects (font (size 0.78 0.78) (thickness 0.12)))
(tstamp 2be498d5-e7b2-4098-b853-d60412f65c3b)
)
(fp_line (start 2.8 -1.55) (end 2.8 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 1b8d5810-67b5-41f5-a4e9-e6c2cc9fec50))
(fp_line (start 1.8 -1.55) (end -1.8 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 24fbbd33-4896-414c-ba79-167809dd0e90))
(fp_line (start 2.8 1.55) (end 6.4 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 2aa21f9e-73e7-40d1-a630-0290bc6939b1))
(fp_line (start -1.8 1.55) (end 1.8 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 504b138d-cda6-48ea-a44b-2c0d0cf874fc))
(fp_line (start -1.8 -1.55) (end -1.8 1.55) (layer "F.CrtYd") (width 0.05) (tstamp a281de60-7af0-498c-be0b-24572e88b490))
(fp_line (start 6.4 -1.55) (end 2.8 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp c9dc1467-f8a9-424e-ab40-9eace7cb7fbb))
(fp_line (start 1.8 1.55) (end 1.8 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp d52775ee-dd56-474f-8b5c-c66029880e5c))
(fp_line (start 6.4 1.55) (end 6.4 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp d90db84e-7df3-4d1b-b263-27f7c3991121))
(fp_circle (center 4.6 0) (end 5.65 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7ca09fd4-d48a-436a-8dbe-2bf5119efecb))
(fp_circle (center 0 0) (end 1.05 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp aa565413-e7e1-4f3c-8a91-55e3e0a6e3ef))
(pad "1" thru_hole roundrect (at 0 0 180) (size 2.1 2.1) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.1190480952)
(net 7 "Net-(A1-Pad30)") (pinfunction "Pin_1") (pintype "passive") (tstamp eb79b938-dc23-4503-beb0-3634b653c9e4))
(pad "2" thru_hole circle (at 4.6 0 180) (size 2.1 2.1) (drill 1.1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp c2f8c49f-d49f-49e2-940a-a7b9765ffdf0))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-6_W7.62mm_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 8a1a639a-559c-483d-9c99-1b2fafbdacf1)
(at 103.373 41.925)
(descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/5b6f374d-8259-4c2b-b68d-008e47d1c5ca")
(attr through_hole)
(fp_text reference "U1" (at -2.779 1.001) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 469553b1-52fa-4564-9359-73b74ba8f58f)
)
(fp_text value "H11L1" (at 4.333 4.557) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b64fe3cc-3a1f-41b6-9ac9-fa971c4a06a6)
)
(fp_text user "${REFERENCE}" (at 3.81 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00185541-0a55-4e62-91d8-99e7a7720d36)
)
(fp_line (start 1.56 -1.33) (end 1.56 6.41) (layer "F.SilkS") (width 0.12) (tstamp 128a7556-cb3d-406d-b84d-6d9efc7f9ed8))
(fp_line (start 1.56 6.41) (end 6.06 6.41) (layer "F.SilkS") (width 0.12) (tstamp 84daabe5-262d-44f3-8073-3a5eff98700f))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 86c73e16-9c05-4385-b59b-206056f7ac90))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b034f82f-3ce9-4423-89ad-7ecf03d348d0))
(fp_line (start 6.06 6.41) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f4cf6dc4-65fc-4b8e-a0d8-0a9074993d40))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 22cb26b9-d501-4786-ab70-b7ac2868619c))
(fp_line (start -1.45 6.6) (end 9.1 6.6) (layer "F.CrtYd") (width 0.05) (tstamp 755d3d18-6013-47c4-9133-c783ae2db259))
(fp_line (start 9.1 -1.55) (end -1.45 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp a0affae9-b1e8-4941-9e7e-2ad29ff3f86b))
(fp_line (start -1.45 -1.55) (end -1.45 6.6) (layer "F.CrtYd") (width 0.05) (tstamp c837798c-83c8-4e02-b288-fa03714cab74))
(fp_line (start 9.1 6.6) (end 9.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp ffe6d5f3-f9a5-48a9-88db-d2d7822b944f))
(fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 33ef82c8-b659-42b6-9429-5436a00e7b54))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 77f65cef-2bce-414e-8b99-31f9cd0b59b0))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8672a05d-b750-4ddd-a92d-4c58fddcdd4e))
(fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer "F.Fab") (width 0.1) (tstamp aee35d5f-0638-4cb1-b58c-265232f425a0))
(fp_line (start 6.985 6.35) (end 0.635 6.35) (layer "F.Fab") (width 0.1) (tstamp bfff8af5-be9c-44df-80bd-23ee2cf9c437))
(pad "1" thru_hole rect (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad1)") (pintype "passive") (tstamp 1db46316-f403-492b-8814-154fc43d62a8))
(pad "2" thru_hole oval (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(D1-Pad2)") (pintype "passive") (tstamp c2d81a3b-9b02-4ddc-9c7b-c0e881678970))
(pad "3" thru_hole oval (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "unconnected-(U1-Pad3)") (pintype "no_connect") (tstamp 10a7d7ef-d6be-484c-be36-2908e6c77393))
(pad "4" thru_hole oval (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(A1-Pad2)") (pintype "output") (tstamp b540f997-cabb-4061-85a0-370b4e9dd03a))
(pad "5" thru_hole oval (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "power_in") (tstamp d76ec66c-d0c1-4040-8259-8685c076073a))
(pad "6" thru_hole oval (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(A1-Pad27)") (pintype "power_in") (tstamp fb7b20d7-70ea-48e6-baf1-01a0d3c92377))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-6_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp cfdb8465-34cf-4ca2-b40f-dcb9094a6c75)
(at 98.054 45.466 -90)
(descr "Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/9a1463c2-4102-4772-bb55-d7035fec3297")
(attr through_hole)
(fp_text reference "D1" (at 3.81 -2.12 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c35566e-2559-4f17-8234-9650b4a10d88)
)
(fp_text value "1N4148" (at -2.54 1.016 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0489dffc-494f-44a7-bef4-1d6f41b97b42)
)
(fp_text user "K" (at 0 -1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5410483-b232-4090-99ff-809aab4a63bc)
)
(fp_text user "${REFERENCE}" (at 4.11 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp bc60d2d6-e199-4ca5-8bb0-d6641fcb087d)
)
(fp_text user "K" (at 0 -1.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d980360c-b360-421a-a044-a46b1936fa56)
)
(fp_line (start 2.53 -1.12) (end 2.53 1.12) (layer "F.SilkS") (width 0.12) (tstamp 4728b3c5-9840-4ae0-83dd-d8f25e1a2501))
(fp_line (start 5.93 -1.12) (end 1.69 -1.12) (layer "F.SilkS") (width 0.12) (tstamp 8bef3269-07f2-4003-98a5-e0476df200f9))
(fp_line (start 2.29 -1.12) (end 2.29 1.12) (layer "F.SilkS") (width 0.12) (tstamp 90872d08-1d12-472c-928b-b8ba166eab5b))
(fp_line (start 5.93 1.12) (end 5.93 -1.12) (layer "F.SilkS") (width 0.12) (tstamp 9602dd49-46a5-4816-996a-189b43457fe7))
(fp_line (start 1.04 0) (end 1.69 0) (layer "F.SilkS") (width 0.12) (tstamp bb5a5641-1fe5-4c37-9754-346a94c7e3f0))
(fp_line (start 1.69 -1.12) (end 1.69 1.12) (layer "F.SilkS") (width 0.12) (tstamp c5876706-c689-4c6f-ac7c-1478ecaa5e58))
(fp_line (start 2.41 -1.12) (end 2.41 1.12) (layer "F.SilkS") (width 0.12) (tstamp e3fbf23c-e20e-4416-bbc6-27e25a75d7b9))
(fp_line (start 6.58 0) (end 5.93 0) (layer "F.SilkS") (width 0.12) (tstamp e813cf80-47bd-4d3e-b1be-856704f5f3d9))
(fp_line (start 1.69 1.12) (end 5.93 1.12) (layer "F.SilkS") (width 0.12) (tstamp ff944fa1-7b77-41c2-8dee-6fa441187350))
(fp_line (start 8.67 -1.25) (end -1.05 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1b9cef90-4d8f-4c7b-9f25-8e93e2c82926))
(fp_line (start -1.05 -1.25) (end -1.05 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 22dc3848-ca6e-4994-bfa5-d5c3608fbcf7))
(fp_line (start -1.05 1.25) (end 8.67 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 9e6d28c1-0957-4626-a6ca-021f6f3aa544))
(fp_line (start 8.67 1.25) (end 8.67 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp f1e04cac-c87f-4a0f-9be3-06d942906de7))
(fp_line (start 5.81 1) (end 5.81 -1) (layer "F.Fab") (width 0.1) (tstamp 0017297a-7de7-4b26-ac36-da2a8ebddace))
(fp_line (start 1.81 1) (end 5.81 1) (layer "F.Fab") (width 0.1) (tstamp 1f5a60c4-0b65-42e8-a7bb-f4f53a05b55c))
(fp_line (start 7.62 0) (end 5.81 0) (layer "F.Fab") (width 0.1) (tstamp 7252cf63-d7d1-4028-b449-5792fc6d1955))
(fp_line (start 2.51 -1) (end 2.51 1) (layer "F.Fab") (width 0.1) (tstamp 9cb50ff2-32ae-4f47-8b1e-b2e61cbc6c6a))
(fp_line (start 2.31 -1) (end 2.31 1) (layer "F.Fab") (width 0.1) (tstamp b2973652-5fdc-4c00-a836-7919e93cad4f))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer "F.Fab") (width 0.1) (tstamp b6cb281c-0c44-4868-a193-52cdbcb16da2))
(fp_line (start 1.81 -1) (end 1.81 1) (layer "F.Fab") (width 0.1) (tstamp d7678225-9962-4b6c-8ac6-79810f77c6a5))
(fp_line (start 0 0) (end 1.81 0) (layer "F.Fab") (width 0.1) (tstamp e165e83c-6f01-4850-ac2e-250d8cb59303))
(fp_line (start 2.41 -1) (end 2.41 1) (layer "F.Fab") (width 0.1) (tstamp e6b2cc6a-89a9-4005-82f7-65741cef7903))
(pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 3858be5f-9f33-48a6-b939-08493f4167fd))
(pad "2" thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp a1a80f1b-ac68-42ad-a04d-f6cb80589583))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp e9581bdc-0c32-481f-b3ec-f590264a37c8)
(at 93.482 55.346 90)
(descr "Soldered wire connection, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/7f9a7c8e-bdf0-4c17-8ea6-6ede878cbc3d")
(attr exclude_from_pos_files)
(fp_text reference "J1" (at -0.28 -3.048 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b86cb50-e2ef-475e-93e3-77fea6b5a690)
)
(fp_text value "MIDI INPUT" (at 6.832 -3.048 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7167e0fb-15b0-446d-969c-ecf63e50097d)
)
(fp_text user "${REFERENCE}" (at 4.8 0 90) (layer "F.Fab")
(effects (font (size 0.58 0.58) (thickness 0.09)))
(tstamp 7a4a5c0e-c639-4f33-aa7f-cf5502abd572)
)
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 077985bd-c8a6-43b8-af30-1141a8334306))
(fp_line (start 6.7 1.65) (end 6.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 3c3e78d8-62d7-4020-ae7c-c489234b27d5))
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 75f982a1-6ab8-4209-a4a8-58e41c3ce9c1))
(fp_line (start 7.7 -1.65) (end 7.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 7badec54-dd0c-405a-acf1-25eff9460213))
(fp_line (start 2.9 -1.65) (end 2.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 946b1da9-be3d-46a5-8490-1a85862f3b88))
(fp_line (start 6.7 -1.65) (end 2.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 977371ef-232c-40b3-8805-7fed7909b206))
(fp_line (start 2.9 1.65) (end 6.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 9caefee8-6dcd-4815-b6e5-c75999fb9c90))
(fp_line (start 11.5 1.65) (end 11.5 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp ad541cb2-f097-4769-b1c0-c1cca23ca9bd))
(fp_line (start 7.7 1.65) (end 11.5 1.65) (layer "F.CrtYd") (width 0.05) (tstamp b5b863ac-a506-4b3e-baa9-6daff41ac83f))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp e3877396-3ff6-4b1d-9715-0d1a70961579))
(fp_line (start 11.5 -1.65) (end 7.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp ec1c193f-86ec-48fc-a26b-de8201d681ac))
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp f094eb5d-05c7-4c16-84d0-9d4665317bfb))
(fp_circle (center 4.8 0) (end 5.95 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 138f5600-7fba-4219-9f21-9ce4066a1d82))
(fp_circle (center 9.6 0) (end 10.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 4ff71e44-dddb-450e-9f6f-fe3947968fd4))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp b5691874-e380-4013-b466-13948504ae2f))
(pad "1" thru_hole roundrect (at 0 0 90) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696087)
(net 5 "Net-(D1-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp 55870dc1-a751-4fb1-a7eb-fe844b64659b))
(pad "2" thru_hole circle (at 4.8 0 90) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask)
(net 6 "unconnected-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp eed5fd95-a7ce-441e-bbe1-d330431c5e6d))
(pad "3" thru_hole circle (at 9.6 0 90) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad1)") (pinfunction "Pin_3") (pintype "passive") (tstamp 3d8ae180-8beb-4868-96bd-080dbdab2951))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp e96432f3-c6ee-4cdc-892b-eb9f8e5ebd05)
(at 105.166 94.234)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/969039f3-b917-4772-a4c3-c593cb31029a")
(attr through_hole)
(fp_text reference "R1" (at 5.08 -1.016) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba660766-df56-40bf-b584-d5d4ed6cb6fc)
)
(fp_text value "220" (at 10.668 -1.016) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c3d5c2f-c119-4276-9b7e-33808f1d9396)
)
(fp_text user "${REFERENCE}" (at 5.08 -1.016) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8e23712-f080-4685-ae22-9028780f7b13)
)
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 082621c8-b51d-48fd-937c-afceb255b94e))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp 430cb5a0-6865-46d0-be60-5d722d3e8d80))
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 728dda43-38f9-4d13-b2a9-59e599c86d99))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp a1441258-3477-4706-8540-9e88ae0dac49))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp a65cad0c-0ef1-4ea5-a965-4eae7ac1f6af))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp eef9a49b-90d1-4463-b2c5-af035d3ae9d7))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 8d9ea4cf-1047-42af-bf72-13258f22d6ad))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp b2de1057-44b4-4b1a-b3d7-c19d3cd25553))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp c3f6c24d-368b-47d2-9a0a-d716bb140344))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp e16a8ef9-72be-44ea-a34c-71d53d6ff2bf))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp 04b78285-4974-4fa0-8f4e-46d399f5727c))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp 43758126-6174-43ff-b8a7-6d55ec68152a))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp 5fe5bd8d-5a86-4565-bd10-e08c6de9aa03))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp 885a1129-9446-432d-8d93-f91d54873594))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp af5a6355-b37d-4130-98e5-c563dae6ea34))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp ecb190c3-7d33-4f9e-917d-98f2e006b7de))
(pad "1" thru_hole circle (at 0 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 9 "Net-(J3-Pad3)") (pintype "passive") (tstamp 478afa34-e0e2-4584-885c-121c8a802996))
(pad "2" thru_hole oval (at 15.24 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 19 "Net-(A1-Pad27)") (pintype "passive") (tstamp 3785db90-bbe9-4018-bab6-3a4673f84f27))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp eec607c7-6f4a-49f4-b728-3da8374be4ce)
(at 97.287 72.903)
(descr "Through hole straight pin header, 2x05, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x05 2.54mm double row")
(property "Sheetfile" "reface_midi_pcb.kicad_sch")
(property "Sheetname" "")
(path "/5c3798c5-cced-42ea-81e7-3abad43f43c8")
(attr through_hole)
(fp_text reference "J4" (at 1.27 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c55c653-303a-4aa1-b520-46d1ee447caa)
)
(fp_text value "Conn_02x05_Odd_Even" (at -3.297 2.027 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d4c722c-847e-4f75-bf0d-16ad704831ef)
)
(fp_text user "${REFERENCE}" (at 1.27 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3642676-ce32-431a-adfa-a8e750bc449d)
)
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 0e11718f-21aa-474d-9bf4-88d875870740))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1ed7574f-dfd9-48ef-889b-e65459b62f49))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 27b32d30-a0e6-48e4-8f63-c61987047d29))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3afae848-3ba1-40f3-a73d-cfa98c2ff8b2))
(fp_line (start -1.33 11.49) (end 3.87 11.49) (layer "F.SilkS") (width 0.12) (tstamp 40415c49-a61c-4fd6-a3e4-d55a8f8b8c4e))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 97972d9a-c8ac-431f-b1f4-0da8477b5639))
(fp_line (start 3.87 -1.33) (end 3.87 11.49) (layer "F.SilkS") (width 0.12) (tstamp bead2789-cf29-4cdd-ad3a-a7fd6922e223))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ca7eee62-ed2f-41f0-ba4a-5f9abd56ee97))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 79e1811e-908a-4ac6-a9ea-8cf4bbc9a51d))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp cb5eb8e7-f7ba-4f62-8bfe-a6dd2b84605e))
(fp_line (start -1.8 11.95) (end 4.35 11.95) (layer "F.CrtYd") (width 0.05) (tstamp d1dfde70-d9fc-446f-93d2-31e0ac9baaa9))
(fp_line (start 4.35 11.95) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d5ad3607-7629-4f44-bfe3-a3b510cd5b14))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 50d092a1-cb48-4b36-9419-53ddb3f8fa14))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5a5b7060-983c-4989-878e-3126720e998d))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 92786ddd-53cc-4458-af25-eb5a2b46154e))
(fp_line (start -1.27 11.43) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp ceb65f05-08ce-47e9-8a7e-aa1335099416))
(fp_line (start 3.81 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp ed92ba08-98ec-48df-9584-41c899a43f78))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(A1-Pad8)") (pinfunction "Pin_1") (pintype "passive") (tstamp aaa13f87-8acd-40d7-bdde-65d39b0b7892))
(pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "Net-(A1-Pad9)") (pinfunction "Pin_2") (pintype "passive") (tstamp 260f62f6-a6cf-45e0-9208-51504e701f69))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(A1-Pad7)") (pinfunction "Pin_3") (pintype "passive") (tstamp 38c40dcc-c1da-4f6f-a147-01497313c7b0))
(pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(A1-Pad10)") (pinfunction "Pin_4") (pintype "passive") (tstamp 9b26d003-7efb-405a-8332-1a189f9d4920))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(A1-Pad6)") (pinfunction "Pin_5") (pintype "passive") (tstamp 22312754-c8c2-4400-b598-394e06b2be81))
(pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(A1-Pad11)") (pinfunction "Pin_6") (pintype "passive") (tstamp 3b199d04-ad2b-4bc0-b66c-8629e7796fdd))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "Net-(A1-Pad5)") (pinfunction "Pin_7") (pintype "passive") (tstamp 2d4ba971-ddd9-4f08-ae0a-4bc49faa5143))
(pad "8" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(A1-Pad12)") (pinfunction "Pin_8") (pintype "passive") (tstamp f9c966ae-23e4-43cd-95e1-ebb675260935))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 1533b475-c834-40d3-ae2c-55eb46ae810f))
(pad "10" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(A1-Pad13)") (pinfunction "Pin_10") (pintype "passive") (tstamp 5c652bfd-7025-48e8-86f2-beee7cb38bd7))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 123.454 101.854) (end 87.894 101.854) (layer "Edge.Cuts") (width 0.1) (tstamp 28ec3da3-139b-4c0d-933d-79eae0ede3d2))
(gr_line (start 123.454 40.386) (end 123.454 101.854) (layer "Edge.Cuts") (width 0.1) (tstamp 74c4607b-34d1-4976-b05b-03faa6f2f9b6))
(gr_line (start 87.894 40.386) (end 123.454 40.386) (layer "Edge.Cuts") (width 0.1) (tstamp a48f48fc-81dc-4051-a096-88641ad8095c))
(gr_line (start 87.894 101.854) (end 87.894 40.386) (layer "Edge.Cuts") (width 0.1) (tstamp a6dd690e-460b-4cb4-ba03-22e8692a067d))
(segment (start 88.91 65.786) (end 88.91 91.414) (width 0.508) (layer "B.Cu") (net 1) (tstamp 67aa1ed6-f573-483d-b69d-5da58561a380))
(segment (start 103.642 52.578) (end 102.118 52.578) (width 0.508) (layer "B.Cu") (net 1) (tstamp 696e6fa0-feb4-42f2-ba44-4ec0ee226a63))
(segment (start 88.91 91.414) (end 92.974 95.478) (width 0.508) (layer "B.Cu") (net 1) (tstamp ac53c391-9a4c-47a1-9605-9d12ad8456e7))
(segment (start 102.118 52.578) (end 88.91 65.786) (width 0.508) (layer "B.Cu") (net 1) (tstamp cad9768d-03b5-46e3-a95a-745539c4d0f1))
(segment (start 107.706 55.118) (end 110.993 51.831) (width 0.508) (layer "B.Cu") (net 2) (tstamp 2214016a-3bf4-461f-9ae9-3de393a1fec4))
(segment (start 110.993 51.831) (end 110.993 47.005) (width 0.508) (layer "B.Cu") (net 2) (tstamp 32f83a71-201b-4c12-9aea-6cdcef8f8c38))
(segment (start 103.642 55.118) (end 107.706 55.118) (width 0.508) (layer "B.Cu") (net 2) (tstamp be1e95c1-efaa-4fff-bf5c-f964a2ad9b9b))
(segment (start 98.054 45.466) (end 98.054 43.942) (width 0.508) (layer "B.Cu") (net 4) (tstamp 5855ce1e-1798-41dd-95db-76c0042643df))
(segment (start 93.482 45.746) (end 97.774 45.746) (width 0.508) (layer "B.Cu") (net 4) (tstamp b4b1bdcf-6d99-4ac3-908f-8c920b370b1a))
(segment (start 98.054 43.942) (end 100.071 41.925) (width 0.508) (layer "B.Cu") (net 4) (tstamp c1a226e1-ff92-49c1-b4ba-72c79c5ac6cc))
(segment (start 97.774 45.746) (end 98.054 45.466) (width 0.508) (layer "B.Cu") (net 4) (tstamp c2462f14-0cc8-4e48-8f22-cadbf01dd0d5))
(segment (start 100.071 41.925) (end 103.373 41.925) (width 0.508) (layer "B.Cu") (net 4) (tstamp cf724d69-9b48-43ff-b1d6-d4e675768102))
(segment (start 95.742 53.086) (end 93.482 55.346) (width 0.508) (layer "B.Cu") (net 5) (tstamp 11e224c4-36cb-469c-abda-769dc742cda7))
(segment (start 100.721 47.117) (end 98.054 49.784) (width 0.508) (layer "B.Cu") (net 5) (tstamp 42a8c036-cdf1-46cf-8447-32667a61acd4))
(segment (start 98.054 49.784) (end 98.054 53.086) (width 0.508) (layer "B.Cu") (net 5) (tstamp 70a14cdb-7256-414d-be1f-5da4cc615444))
(segment (start 100.721 47.117) (end 100.721 45.593) (width 0.508) (layer "B.Cu") (net 5) (tstamp 7abeda66-e6d6-4348-ba52-df338421ac39))
(segment (start 98.054 53.086) (end 95.742 53.086) (width 0.508) (layer "B.Cu") (net 5) (tstamp 9ad05632-88c3-47f6-86df-e2d850a4096b))
(segment (start 101.849 44.465) (end 103.373 44.465) (width 0.508) (layer "B.Cu") (net 5) (tstamp ba32341a-402a-4d82-8e34-6dce6ba3545e))
(segment (start 100.721 45.593) (end 101.849 44.465) (width 0.508) (layer "B.Cu") (net 5) (tstamp ce5f7d6b-8975-489e-b019-eea6573e96ef))
(segment (start 118.882 46.242) (end 118.882 52.578) (width 0.508) (layer "B.Cu") (net 7) (tstamp b5240536-95bb-45bc-9c7b-7ceccdc6eb13))
(segment (start 119.658 45.466) (end 118.882 46.242) (width 0.508) (layer "B.Cu") (net 7) (tstamp ba7d1194-9212-4b23-b06b-1edf0332ad80))
(segment (start 114.818 45.466) (end 113.817 44.465) (width 0.508) (layer "B.Cu") (net 8) (tstamp 0b4ec601-bf4a-41dd-8ed9-5e6996513463))
(segment (start 95.011 83.063) (end 97.287 83.063) (width 0.508) (layer "B.Cu") (net 8) (tstamp 0e3f1a94-f661-4ec3-8bb2-eeeb36af0119))
(segment (start 97.278 98.298) (end 97.278 94.982) (width 0.508) (layer "B.Cu") (net 8) (tstamp 0fd107f1-2761-41b3-b6a0-783317259ed2))
(segment (start 92.974 90.678) (end 95.994 93.698) (width 0.508) (layer "B.Cu") (net 8) (tstamp 25caf2e3-3edb-44b1-99d8-1525280ca3f5))
(segment (start 115.058 53.834) (end 115.058 45.466) (width 0.508) (layer "B.Cu") (net 8) (tstamp 283dffc9-e9bf-4d56-bb40-b0b03863d89c))
(segment (start 92.974 90.678) (end 90.434 88.138) (width 0.508) (layer "B.Cu") (net 8) (tstamp 2bb4aa26-303e-4df5-b132-1e724428505a))
(segment (start 97.278 94.982) (end 92.974 90.678) (width 0.508) (layer "B.Cu") (net 8) (tstamp 47c8808e-ae09-4d07-bc40-d680374597a0))
(segment (start 111.262 60.198) (end 103.642 60.198) (width 0.508) (layer "B.Cu") (net 8) (tstamp 51b545c8-4369-4f81-9890-5e2bc907609e))
(segment (start 116.342 55.118) (end 115.058 53.834) (width 0.508) (layer "B.Cu") (net 8) (tstamp 5b97c4a3-2699-4692-9c33-0c40a5a9838a))
(segment (start 98.054 60.198) (end 90.434 67.818) (width 0.508) (layer "B.Cu") (net 8) (tstamp 8462c63a-b75a-4320-ac23-895e304b9488))
(segment (start 118.882 55.118) (end 116.342 55.118) (width 0.508) (layer "B.Cu") (net 8) (tstamp 8fc0e284-4d10-4886-b04e-1d1c98e00f16))
(segment (start 116.342 55.118) (end 111.262 60.198) (width 0.508) (layer "B.Cu") (net 8) (tstamp 917f6753-32ba-4cac-834c-d4480da8561d))
(segment (start 90.434 67.818) (end 90.434 78.486) (width 0.508) (layer "B.Cu") (net 8) (tstamp 9be3bdb5-ec21-47f3-bb0c-4f615e790339))
(segment (start 103.642 60.198) (end 98.054 60.198) (width 0.508) (layer "B.Cu") (net 8) (tstamp abf708e6-b733-496f-ada4-786f9e609fa1))
(segment (start 90.434 78.486) (end 95.011 83.063) (width 0.508) (layer "B.Cu") (net 8) (tstamp cb9b9d01-e790-4af7-ad3a-33a87f884476))
(segment (start 113.817 44.465) (end 110.993 44.465) (width 0.508) (layer "B.Cu") (net 8) (tstamp de9ba629-2f1f-4fb5-806d-f0931acfd185))
(segment (start 90.434 88.138) (end 90.434 78.486) (width 0.508) (layer "B.Cu") (net 8) (tstamp f7642832-7d92-42b7-b665-fde878e29f48))
(segment (start 115.058 45.466) (end 114.818 45.466) (width 0.508) (layer "B.Cu") (net 8) (tstamp fe7865e7-1271-4c83-bf81-6a289fcf0bec))
(segment (start 101.838 94.742) (end 92.974 85.878) (width 0.508) (layer "B.Cu") (net 9) (tstamp 0ced0960-aa38-44c9-bb56-eec9f9317a09))
(segment (start 105.166 94.742) (end 101.838 94.742) (width 0.508) (layer "B.Cu") (net 9) (tstamp dd7941fa-db97-42a0-9459-182705552ae6))
(segment (start 97.287 71.125) (end 98.054 70.358) (width 0.508) (layer "B.Cu") (net 10) (tstamp 488c4a7c-baa5-4820-8b9d-ae1f55555f8c))
(segment (start 98.054 70.358) (end 103.642 70.358) (width 0.508) (layer "B.Cu") (net 10) (tstamp 974616dc-2dff-466d-b07a-092123e024c2))
(segment (start 97.287 72.903) (end 97.287 71.125) (width 0.508) (layer "B.Cu") (net 10) (tstamp daa06673-a784-4497-95c1-c1a7697a910e))
(segment (start 99.827 72.903) (end 103.637 72.903) (width 0.508) (layer "B.Cu") (net 11) (tstamp 780e1c58-2da4-48df-a100-24db36c19f3c))
(segment (start 103.637 72.903) (end 103.642 72.898) (width 0.508) (layer "B.Cu") (net 11) (tstamp ca3f6c53-e2b5-4153-b164-3fcbb876eac6))
(segment (start 97.038 67.818) (end 95.514 69.342) (width 0.508) (layer "B.Cu") (net 12) (tstamp 177a7f9c-23b3-4fae-9f75-085b02ab2a0a))
(segment (start 103.642 67.818) (end 97.038 67.818) (width 0.508) (layer "B.Cu") (net 12) (tstamp 794c0d35-ded3-41bf-82ec-e233ce3f44a1))
(segment (start 95.514 73.67) (end 97.287 75.443) (width 0.508) (layer "B.Cu") (net 12) (tstamp e1d6b709-e71f-44ad-8ac1-bdca6ed0a90a))
(segment (start 95.514 69.342) (end 95.514 73.67) (width 0.508) (layer "B.Cu") (net 12) (tstamp ea5de9ed-43ef-48f2-8422-92618995e84b))
(segment (start 99.832 75.438) (end 99.827 75.443) (width 0.508) (layer "B.Cu") (net 13) (tstamp 9950b7a2-ecbd-4572-b5f2-f48ab15dc337))
(segment (start 103.642 75.438) (end 99.832 75.438) (width 0.508) (layer "B.Cu") (net 13) (tstamp cf2c0cbe-939b-43de-9998-0251a6f567d1))
(segment (start 93.99 74.686) (end 93.99 68.834) (width 0.508) (layer "B.Cu") (net 14) (tstamp 526b28f8-f49d-4ba6-9df9-6715a9981bbd))
(segment (start 97.287 77.983) (end 93.99 74.686) (width 0.508) (layer "B.Cu") (net 14) (tstamp a7e71d1c-9f43-461a-86ee-ec3ed940c8f4))
(segment (start 93.99 68.834) (end 97.546 65.278) (width 0.508) (layer "B.Cu") (net 14) (tstamp cca3edaf-b624-477b-bcfa-0eb8e160ccea))
(segment (start 97.546 65.278) (end 103.642 65.278) (width 0.508) (layer "B.Cu") (net 14) (tstamp fe53127f-0893-4609-89ef-250bd1bc9d18))
(segment (start 103.637 77.983) (end 103.642 77.978) (width 0.508) (layer "B.Cu") (net 15) (tstamp 6e4ddf32-5414-4069-b191-411b4f9a4e00))
(segment (start 99.827 77.983) (end 103.637 77.983) (width 0.508) (layer "B.Cu") (net 15) (tstamp d8c0e789-67a5-4efb-8d5d-4cc7fee8d39a))
(segment (start 99.832 80.518) (end 99.827 80.523) (width 0.508) (layer "B.Cu") (net 16) (tstamp 267a54fd-cf00-4f9f-9a8f-45ae97c944f3))
(segment (start 103.642 80.518) (end 99.832 80.518) (width 0.508) (layer "B.Cu") (net 16) (tstamp 8a96750c-b29a-4aa5-8ff3-afea3afb7e92))
(segment (start 103.637 83.063) (end 103.642 83.058) (width 0.508) (layer "B.Cu") (net 17) (tstamp 98f253d8-0dda-43a9-bfb3-a1a6b1435866))
(segment (start 99.827 83.063) (end 103.637 83.063) (width 0.508) (layer "B.Cu") (net 17) (tstamp ac45d81b-a1fa-4c13-9b9d-c29f59138bb0))
(segment (start 102.118 98.806) (end 101.61 98.298) (width 0.508) (layer "B.Cu") (net 18) (tstamp 1c65fac1-0de4-4ec2-a4d5-19413a039906))
(segment (start 105.166 98.298) (end 101.878 98.298) (width 0.508) (layer "B.Cu") (net 18) (tstamp 446c3aa9-8d44-410b-a9fc-a3105354f539))
(segment (start 105.166 98.806) (end 102.118 98.806) (width 0.508) (layer "B.Cu") (net 18) (tstamp f5b36efc-1845-4dd4-bbb4-9579234a7525))
(segment (start 110.993 41.925) (end 120.421 41.925) (width 0.508) (layer "B.Cu") (net 19) (tstamp 105a0e05-745c-4733-b1bc-295b63ce3470))
(segment (start 121.93 59.69) (end 121.676 59.944) (width 0.508) (layer "B.Cu") (net 19) (tstamp 2ac044c7-10d3-4b8e-a00a-d7607edbb689))
(segment (start 121.93 43.434) (end 121.93 58.674) (width 0.508) (layer "B.Cu") (net 19) (tstamp 2b95b9da-7bf4-4197-b5fa-7f843bc54d90))
(segment (start 118.882 60.198) (end 121.422 60.198) (width 0.508) (layer "B.Cu") (net 19) (tstamp 50d814dd-ca5c-4dc9-bed1-68de34f7ff38))
(segment (start 121.422 60.198) (end 121.676 59.944) (width 0.508) (layer "B.Cu") (net 19) (tstamp 777c162d-bbf4-4aa5-8ea9-dee914fa9f91))
(segment (start 121.93 93.218) (end 120.406 94.742) (width 0.508) (layer "B.Cu") (net 19) (tstamp a6a0d2ef-e12a-465e-8552-ba161fc31538))
(segment (start 120.421 41.925) (end 121.93 43.434) (width 0.508) (layer "B.Cu") (net 19) (tstamp e913d7eb-fd02-4dc4-b297-c22db33dd833))
(segment (start 121.93 58.674) (end 121.93 93.218) (width 0.508) (layer "B.Cu") (net 19) (tstamp f0a4db92-16ff-497d-8e2a-ec532345f69a))
(segment (start 121.93 58.674) (end 121.93 59.69) (width 0.508) (layer "B.Cu") (net 19) (tstamp f6310aa0-783a-4192-83dd-8eb6edf31fcb))
(segment (start 106.69 88.138) (end 103.642 88.138) (width 0.508) (layer "B.Cu") (net 20) (tstamp 889b53ff-3702-4e56-a2fd-e7da0e2810c3))
(segment (start 120.406 98.806) (end 117.358 98.806) (width 0.508) (layer "B.Cu") (net 20) (tstamp 9bf40fa5-ff14-4839-8d52-37ec4102c10e))
(segment (start 117.358 98.806) (end 106.69 88.138) (width 0.508) (layer "B.Cu") (net 20) (tstamp d4b38d26-e771-4971-804d-0513c10e5a97))
(segment (start 97.287 80.523) (end 96.027 80.523) (width 0.508) (layer "B.Cu") (net 35) (tstamp 0be72d31-d2ba-4baa-af24-275d0ce73fdc))
(segment (start 92.466 67.818) (end 97.546 62.738) (width 0.508) (layer "B.Cu") (net 35) (tstamp 4c58c0c7-058c-4ff5-9145-fe6f5241950b))
(segment (start 92.466 76.962) (end 92.466 67.818) (width 0.508) (layer "B.Cu") (net 35) (tstamp 507004fd-8d2a-4a4a-8abb-1a9a8b48184b))
(segment (start 96.027 80.523) (end 92.466 76.962) (width 0.508) (layer "B.Cu") (net 35) (tstamp ccfffbef-f1d7-4fd6-8d48-50c812775370))
(segment (start 97.546 62.738) (end 103.642 62.738) (width 0.508) (layer "B.Cu") (net 35) (tstamp dd647938-8fa6-4168-86ce-b04e48d45046))
(zone (net 8) (net_name "GND") (layer "B.Cu") (tstamp 05169713-5602-43e5-9dc7-55352ed980b3) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 121.93 100.838)
(xy 88.91 100.838)
(xy 88.91 41.91)
(xy 121.93 41.91)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 98.771593 41.930002)
(xy 98.818086 41.983658)
(xy 98.82819 42.053932)
(xy 98.798696 42.118512)
(xy 98.792567 42.125095)
(xy 97.562472 43.35519)
(xy 97.548059 43.367577)
(xy 97.530436 43.380546)
(xy 97.525692 43.386129)
(xy 97.525693 43.386129)
(xy 97.496021 43.421055)
(xy 97.489091 43.428571)
(xy 97.483347 43.434315)
(xy 97.481073 43.437189)
(xy 97.481067 43.437196)
(xy 97.465628 43.456711)
(xy 97.462837 43.460115)
(xy 97.420055 43.510472)
(xy 97.420052 43.510476)
(xy 97.415316 43.516051)
(xy 97.411988 43.522568)
(xy 97.408611 43.527632)
(xy 97.405384 43.532856)
(xy 97.40084 43.5386)
(xy 97.397741 43.545231)
(xy 97.369768 43.605082)
(xy 97.367837 43.609033)
(xy 97.363705 43.617125)
(xy 97.334457 43.674404)
(xy 97.332716 43.681519)
(xy 97.330579 43.687265)
(xy 97.328655 43.693048)
(xy 97.325556 43.699679)
(xy 97.31626 43.744375)
(xy 97.310608 43.771547)
(xy 97.309639 43.775829)
(xy 97.292196 43.847112)
(xy 97.2915 43.85833)
(xy 97.291461 43.858328)
(xy 97.291228 43.862229)
(xy 97.290839 43.866588)
(xy 97.289348 43.873756)
(xy 97.289546 43.881073)
(xy 97.291454 43.951577)
(xy 97.2915 43.954986)
(xy 97.2915 44.035144)
(xy 97.271498 44.103265)
(xy 97.217842 44.149758)
(xy 97.179108 44.160407)
(xy 97.175166 44.160835)
(xy 97.15154 44.163401)
(xy 97.151536 44.163402)
(xy 97.143684 44.164255)
(xy 97.007295 44.215385)
(xy 96.890739 44.302739)
(xy 96.803385 44.419295)
(xy 96.752255 44.555684)
(xy 96.7455 44.617866)
(xy 96.7455 44.8575)
(xy 96.725498 44.925621)
(xy 96.671842 44.972114)
(xy 96.6195 44.9835)
(xy 95.030437 44.9835)
(xy 94.962316 44.963498)
(xy 94.923004 44.923335)
(xy 94.830487 44.772361)
(xy 94.827903 44.768144)
(xy 94.658363 44.569637)
(xy 94.459856 44.400097)
(xy 94.237271 44.263697)
(xy 94.232701 44.261804)
(xy 94.232697 44.261802)
(xy 94.000662 44.16569)
(xy 94.00066 44.165689)
(xy 93.996089 44.163796)
(xy 93.907069 44.142424)
(xy 93.747062 44.104009)
(xy 93.747056 44.104008)
(xy 93.742249 44.102854)
(xy 93.482 44.082372)
(xy 93.221751 44.102854)
(xy 93.216944 44.104008)
(xy 93.216938 44.104009)
(xy 93.056931 44.142424)
(xy 92.967911 44.163796)
(xy 92.96334 44.165689)
(xy 92.963338 44.16569)
(xy 92.731303 44.261802)
(xy 92.731299 44.261804)
(xy 92.726729 44.263697)
(xy 92.504144 44.400097)
(xy 92.305637 44.569637)
(xy 92.136097 44.768144)
(xy 91.999697 44.990729)
(xy 91.997804 44.995299)
(xy 91.997802 44.995303)
(xy 91.943663 45.126007)
(xy 91.899796 45.231911)
(xy 91.882377 45.304467)
(xy 91.840009 45.480938)
(xy 91.840008 45.480944)
(xy 91.838854 45.485751)
(xy 91.818372 45.746)
(xy 91.838854 46.006249)
(xy 91.840008 46.011056)
(xy 91.840009 46.011062)
(xy 91.874999 46.156803)
(xy 91.899796 46.260089)
(xy 91.901689 46.26466)
(xy 91.90169 46.264662)
(xy 91.972445 46.435478)
(xy 91.999697 46.501271)
(xy 92.136097 46.723856)
(xy 92.305637 46.922363)
(xy 92.504144 47.091903)
(xy 92.726729 47.228303)
(xy 92.731299 47.230196)
(xy 92.731303 47.230198)
(xy 92.957269 47.323796)
(xy 92.967911 47.328204)
(xy 93.056931 47.349576)
(xy 93.216938 47.387991)
(xy 93.216944 47.387992)
(xy 93.221751 47.389146)
(xy 93.482 47.409628)
(xy 93.742249 47.389146)
(xy 93.747056 47.387992)
(xy 93.747062 47.387991)
(xy 93.907069 47.349576)
(xy 93.996089 47.328204)
(xy 94.006731 47.323796)
(xy 94.232697 47.230198)
(xy 94.232701 47.230196)
(xy 94.237271 47.228303)
(xy 94.459856 47.091903)
(xy 94.658363 46.922363)
(xy 94.827903 46.723856)
(xy 94.923004 46.568665)
(xy 94.975652 46.521034)
(xy 95.030437 46.5085)
(xy 96.737207 46.5085)
(xy 96.805328 46.528502)
(xy 96.838031 46.558933)
(xy 96.890739 46.629261)
(xy 97.007295 46.716615)
(xy 97.143684 46.767745)
(xy 97.205866 46.7745)
(xy 98.902134 46.7745)
(xy 98.964316 46.767745)
(xy 99.100705 46.716615)
(xy 99.217261 46.629261)
(xy 99.304615 46.512705)
(xy 99.355745 46.376316)
(xy 99.3625 46.314134)
(xy 99.3625 44.617866)
(xy 99.355745 44.555684)
(xy 99.304615 44.419295)
(xy 99.217261 44.302739)
(xy 99.100705 44.215385)
(xy 99.092302 44.212235)
(xy 99.091009 44.211527)
(xy 99.040864 44.161268)
(xy 99.025851 44.091877)
(xy 99.050738 44.025385)
(xy 99.062425 44.011913)
(xy 100.349933 42.724405)
(xy 100.412245 42.690379)
(xy 100.439028 42.6875)
(xy 101.542144 42.6875)
(xy 101.610265 42.707502)
(xy 101.656758 42.761158)
(xy 101.667407 42.799893)
(xy 101.670401 42.82746)
(xy 101.670402 42.827464)
(xy 101.671255 42.835316)
(xy 101.722385 42.971705)
(xy 101.809739 43.088261)
(xy 101.926295 43.175615)
(xy 102.062684 43.226745)
(xy 102.073474 43.227917)
(xy 102.075606 43.228803)
(xy 102.078222 43.229425)
(xy 102.078121 43.229848)
(xy 102.139035 43.255155)
(xy 102.179463 43.313517)
(xy 102.181922 43.384471)
(xy 102.145629 43.44549)
(xy 102.136969 43.452489)
(xy 102.133207 43.455646)
(xy 102.1287 43.458802)
(xy 101.966802 43.6207)
(xy 101.963642 43.625213)
(xy 101.94904 43.646067)
(xy 101.893584 43.690396)
(xy 101.856041 43.699383)
(xy 101.834968 43.701097)
(xy 101.822815 43.702085)