-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstomp-breakout.kicad_pcb
3259 lines (3239 loc) · 139 KB
/
stomp-breakout.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 "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (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") (color "Green") (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.05)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/")
)
)
(property "PROJECT_DATE" "2020-05-20")
(property "REVISION" "v0.4")
(property "TITLE" "Stomp Breakout")
(property "URL" "github.com/rockola/stomp-breakout")
(net 0 "")
(net 1 "JACK_OUT")
(net 2 "OUT")
(net 3 "LED-")
(net 4 "GND")
(net 5 "JACK_IN")
(net 6 "IN")
(net 7 "+9V")
(net 8 "LED2-")
(net 9 "Net-(C1-Pad1)")
(net 10 "Net-(D2-Pad2)")
(footprint "rockola_kicad_footprints:3PDT_Stomp" (layer "F.Cu")
(tedit 5E6CD34C) (tstamp 04465a8a-1675-474f-861f-32faa36d48ca)
(at 147.7264 94.6404)
(descr "<b> Latching Footswitch, Solder Lugs</b>\n<br><a href=\"http://smallbear-electronics.mybigcommerce.com/cic-blue-3pdt/\">http://smallbear-electronics.mybigcommerce.com/cic-blue-3pdt/</a>\n<p>\n<b>Momentary Footswitch, Solder Lugs</b>\n<br><a href=\"http://smallbear-electronics.mybigcommerce.com/cic-blue-3pdt-momentary/\">http://smallbear-electronics.mybigcommerce.com/cic-blue-3pdt-momentary/</a>")
(path "/00000000-0000-0000-0000-00005e73d92c")
(attr through_hole)
(fp_text reference "S1" (at 0.1016 -2.286) (layer "B.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
(tstamp 420b1d11-9e30-4ae1-acfb-fa89a4b9c393)
)
(fp_text value "Stomp Breakout" (at -0.127 -7.239) (layer "F.SilkS")
(effects (font (size 0.95 1.4) (thickness 0.15)))
(tstamp 51c712eb-6513-4a0f-8db4-ad2acb415d80)
)
(fp_text user "SWITCH GOES HERE" (at 0 7.8486) (layer "B.SilkS")
(effects (font (size 0.7 0.8) (thickness 0.1)) (justify mirror))
(tstamp 55b7b837-6ec7-48fe-8372-494d9537ee18)
)
(fp_text user "SOLDER THIS SIDE" (at 0.1016 7.8486 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.1)))
(tstamp 5dfebc01-82bd-47aa-889f-df4a888075f2)
)
(fp_line (start 9.2 -8.8) (end -9.2 -8.8) (layer "B.SilkS") (width 0.1524) (tstamp 111be01c-3f3d-4a63-a730-20593490b837))
(fp_line (start 0 -0.635) (end 0 0.635) (layer "B.SilkS") (width 0.127) (tstamp 5ce2b821-ee51-47bf-a99a-99a689e122d8))
(fp_line (start -0.635 0) (end 0.635 0) (layer "B.SilkS") (width 0.127) (tstamp 663fe1d8-89ab-4700-8122-8d58553b6ff7))
(fp_line (start -9.2 -8.8) (end -9.2 8.8) (layer "B.SilkS") (width 0.1524) (tstamp 7faad178-1f35-477d-8c35-5c147faab156))
(fp_line (start -9.2 8.8) (end 9.2 8.8) (layer "B.SilkS") (width 0.1524) (tstamp e47999ae-4ad0-4f52-b93a-798690a80d13))
(fp_line (start 9.2 8.8) (end 9.2 -8.8) (layer "B.SilkS") (width 0.1524) (tstamp f1d40f84-afbd-415f-9d66-bdf030c4ecbb))
(fp_circle (center 0 0) (end 0.635 0) (layer "B.SilkS") (width 0.127) (fill none) (tstamp 232b7211-753c-4422-8761-f002a6366e2c))
(fp_line (start 9.2 8.8) (end -9.2 8.8) (layer "F.SilkS") (width 0.1524) (tstamp 0987bcda-4395-4567-9f2f-fd3f36ad50ca))
(fp_line (start 9.2 -8.8) (end 9.2 8.8) (layer "F.SilkS") (width 0.1524) (tstamp 246a44c3-90fb-41e6-886b-06b92f51e86e))
(fp_line (start -9.2 -8.8) (end 9.2 -8.8) (layer "F.SilkS") (width 0.1524) (tstamp 4e6be61f-eaa0-45db-867d-8103ce1c52cc))
(fp_line (start -9.2 8.8) (end -9.2 -8.8) (layer "F.SilkS") (width 0.1524) (tstamp e01a6a9d-ae69-48fb-b6ca-710c1a58f75a))
(pad "1" thru_hole rect locked (at -5.3 -4.7 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 5 "JACK_IN") (pinfunction "O") (tstamp 82b4a068-ad95-49fe-80f3-5d37d1620ee3))
(pad "2" thru_hole oval locked (at -5.3 0 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 6 "IN") (pinfunction "P") (tstamp cf68607c-f448-4cd1-a3e2-13463156fc91))
(pad "3" thru_hole oval locked (at -5.3 4.7 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 8 "LED2-") (pinfunction "S") (tstamp 593fb565-a514-4ae1-8da3-74fabd6aeb89))
(pad "4" thru_hole oval locked (at 0 -4.7 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 3 "LED-") (pinfunction "O") (tstamp 7fdd9341-7fb4-4335-8109-1d1528b04192))
(pad "5" thru_hole oval locked (at 0 0 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "P") (tstamp b19a9a68-1789-42a1-a954-2cc49f7f26e3))
(pad "6" thru_hole oval locked (at 0 4.7 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 8 "LED2-") (pinfunction "S") (tstamp 31fe5bf6-69ae-42e3-955d-6d6d9ef727f0))
(pad "7" thru_hole oval locked (at 5.3 -4.7 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 2 "OUT") (pinfunction "O") (tstamp 19523976-a2f6-4d3e-af75-b5bb0510cffd))
(pad "8" thru_hole oval locked (at 5.3 0 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 1 "JACK_OUT") (pinfunction "P") (tstamp bc5ba2c9-4b70-424e-b43e-06441c17a779))
(pad "9" thru_hole oval locked (at 5.3 4.7 180) (size 3.816 3.816) (drill 2.8) (layers *.Cu *.Mask)
(net 5 "JACK_IN") (pinfunction "S") (tstamp e2bcb262-6e2c-4fb0-bef8-c6de8e7036e9))
)
(footprint "rockola_kicad_footprints:2PADS_TS_Vertical_NOBORDER" (layer "F.Cu")
(tedit 5EC1419E) (tstamp 44f4034f-2bbc-4a4e-a0da-cce17a547ea0)
(at 137.16 85.725)
(path "/00000000-0000-0000-0000-00005e750c7e")
(attr through_hole)
(fp_text reference "J3" (at -2.667 0) (layer "F.SilkS") hide
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 8ef0504e-10cf-411e-b449-949a0f5c8d74)
)
(fp_text value "IN" (at 0 2.8575) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 09373d7d-0888-443f-8d1d-933eca6bfb41)
)
(fp_text user "T" (at -1.143 -1.9685) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 154356df-d96a-4426-aa08-058870f95ab8)
)
(fp_text user "S" (at -1.0795 0.3175) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 73894dbb-be06-4c9d-b554-a3676ed6b03f)
)
(fp_text user "${VALUE}" (at 1.6256 -2.032 unlocked) (layer "B.SilkS")
(effects (font (size 0.6 1) (thickness 0.1)) (justify mirror))
(tstamp b06ad5b8-3b55-4295-ac00-2db4462d06a0)
)
(fp_text user "${VALUE}" (at 1.6256 -2.032 unlocked) (layer "F.SilkS")
(effects (font (size 0.6 1) (thickness 0.1)))
(tstamp 0142204c-ea7a-450e-87e1-a014ac16ed83)
)
(fp_text user "T" (at -1.143 -1.9685) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 194eedf3-dd78-465e-9c06-d2551098021a)
)
(fp_text user "S" (at -1.0795 0.3175) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9ece809e-238e-4eae-a7ef-e6776d72e441)
)
(pad "S" thru_hole oval locked (at 0 1.2065) (size 1.9304 1.9304) (drill 1.2) (layers *.Cu *.Mask)
(net 4 "GND") (tstamp ea452b47-2f32-4dcb-9278-cfa8a910bc64))
(pad "T" thru_hole rect locked (at 0 -1.143) (size 1.9304 1.9304) (drill 1.2) (layers *.Cu *.Mask)
(net 5 "JACK_IN") (tstamp bfdaded1-27d3-490b-b379-f218e146bd55))
)
(footprint "rockola_kicad_footprints:Stomp_4pin_ALT" (layer "F.Cu")
(tedit 5E6CBDD9) (tstamp 4f4b6448-51ee-457f-94dd-3204c6b936ae)
(at 147.7264 84.709)
(path "/00000000-0000-0000-0000-00005e74b9b6")
(attr through_hole)
(fp_text reference "J1" (at 0 -3.302) (layer "B.SilkS") hide
(effects (font (size 0.9652 0.9652) (thickness 0.08128)) (justify mirror))
(tstamp 58a19930-7e6b-47cd-84cb-b0b147cfc2d9)
)
(fp_text value "Stomp_Connector" (at 0 4.318) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.15)))
(tstamp 652b30fa-1bd3-4fc0-9348-449333ab0130)
)
(fp_text user "OUT" (at 3.8735 1.651 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp 187ef78f-31ae-4766-b71e-18f19d93ab5e)
)
(fp_text user "IN" (at -3.81 1.651 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp 750cb84e-d795-4364-9358-ec0975478b7f)
)
(fp_text user "GND" (at -1.2065 1.651 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp aff00d57-63ea-46b6-99f8-32eff51e9707)
)
(fp_text user "SW" (at 1.3335 1.651 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp e9ffb4af-af8a-465a-aabc-c654e7bccf5d)
)
(fp_text user "GND" (at -1.2065 1.651 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 04b4594e-0a49-4715-a6a1-54c2247add38)
)
(fp_text user "IN" (at -3.81 1.651 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 5d0e0548-1055-49dd-838a-e3e6d8ce65fc)
)
(fp_text user "SW" (at 1.3335 1.651 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 84de1abd-37fc-4251-b1df-d4f45bbe0070)
)
(fp_text user "OUT" (at 3.81 1.651 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp f5085a91-2c3d-4f5c-900f-9ea6af63a392)
)
(fp_line (start -5.08 1.9685) (end 5.08 1.9685) (layer "B.SilkS") (width 0.08) (tstamp 080075e5-bebb-4551-8646-138341beed87))
(fp_line (start -5.08 1.27) (end 5.08 1.27) (layer "B.SilkS") (width 0.08) (tstamp 3a9f292f-d950-4971-a152-b9709c501468))
(fp_line (start 5.08 -1.27) (end -5.08 -1.27) (layer "B.SilkS") (width 0.08) (tstamp c0f5505d-de33-45db-ba63-a83687750c00))
(fp_line (start 5.08 1.905) (end 5.08 -1.27) (layer "B.SilkS") (width 0.08) (tstamp c4e7cf52-843c-437e-965a-7eb7fc0f3b87))
(fp_line (start -5.08 1.9685) (end -5.08 -1.27) (layer "B.SilkS") (width 0.08) (tstamp dca9abab-49c2-4d6d-88f5-a24a9063e847))
(fp_line (start -5.08 -1.27) (end 5.08 -1.27) (layer "F.SilkS") (width 0.08) (tstamp 00329900-4ca5-49ff-8a25-859da940a56a))
(fp_line (start -5.08 1.9685) (end 5.08 1.9685) (layer "F.SilkS") (width 0.08) (tstamp 065f10d3-1257-4cb1-9736-006a21042fdd))
(fp_line (start 5.08 1.27) (end -5.08 1.27) (layer "F.SilkS") (width 0.08) (tstamp 69a96e32-957f-40bb-9a63-5fff93857e5c))
(fp_line (start -5.08 1.9685) (end -5.08 -1.27) (layer "F.SilkS") (width 0.08) (tstamp 7b170979-1103-46dd-8022-e2a129c4bf7d))
(fp_line (start 5.08 1.9685) (end 5.08 -1.27) (layer "F.SilkS") (width 0.08) (tstamp 88829688-4ef3-4bd2-aabd-0fd5cefeaa65))
(pad "1" thru_hole rect locked (at -3.81 0) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 6 "IN") (pinfunction "IN") (tstamp b90e4684-6756-424a-903a-c992b24838a3))
(pad "2" thru_hole oval locked (at -1.27 0) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (tstamp 11f0ec59-9c7c-430d-a055-955c22886a53))
(pad "3" thru_hole oval locked (at 1.27 0) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 3 "LED-") (pinfunction "SW") (tstamp b604736c-e8ce-44bc-8715-cb9ee7d6c60c))
(pad "4" thru_hole oval locked (at 3.81 0) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 2 "OUT") (pinfunction "OUT") (tstamp 5a3025ba-4d2e-4521-b07f-375d238b0703))
)
(footprint "rockola_kicad_footprints:Power_Header_2pin_TOP_ALT_NOBORDER" (layer "F.Cu")
(tedit 5EB94C8F) (tstamp 71c3c478-e73c-47a1-8646-f62b6b36bb93)
(at 157.9245 84.5185)
(path "/00000000-0000-0000-0000-00005e771978")
(attr through_hole)
(fp_text reference "J5" (at -2.54 3.302) (layer "B.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
(tstamp f28e73ed-6678-4287-afb3-a74990f3cdec)
)
(fp_text value "Power_TOP" (at -2.54 3.302) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6b57d1f0-e39c-4e10-877e-87d046ef1ca7)
)
(fp_text user "V+" (at -2.4765 -0.9271 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp 09e255b2-6ceb-48d3-ab16-dfdfbff7cc7e)
)
(fp_text user "GND" (at -0.1397 -0.9017 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp ab8c7386-0042-433f-b83d-d0d190b2c608)
)
(fp_text user "GND" (at -0.0889 -0.9017 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 156f5591-d451-4a24-a44e-adad07c7198c)
)
(fp_text user "V+" (at -2.4257 -0.9525 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 97846007-050c-419e-9b8a-69c25944b547)
)
(pad "1" thru_hole rect locked (at -3.81 0) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 7 "+9V") (pinfunction "PWR") (tstamp a9a60308-69be-40bb-829f-51607366c997))
(pad "2" thru_hole oval locked (at -1.27 0) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (tstamp 5da101c5-e719-429c-9ae5-1b0f6ee99f2b))
)
(footprint "rockola_kicad_footprints:1PAD" (layer "F.Cu")
(tedit 5EC39824) (tstamp b3c47d27-dcc5-47f7-b5a2-5685f64e0523)
(at 139.7635 84.709)
(path "/fdec382b-b968-4c27-9632-574059dcf290")
(attr through_hole)
(fp_text reference "J6" (at 1.2827 -1.7272) (layer "F.SilkS") hide
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 06555ac3-0ee6-4a86-ad0c-e09cac2dcd90)
)
(fp_text value "GND" (at 1.0795 -3.4798) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.15)))
(tstamp 0e70e462-56bb-4e9b-b060-51e913ae478e)
)
(fp_text user "${VALUE}" (at 2.0193 -1.1938 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 1d852d89-1cdb-456f-bd75-e5bf330ec7fa)
)
(pad "1" thru_hole oval locked (at 1.27 0) (size 1.9304 1.9304) (drill 1.2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "Pin_1") (tstamp 63d618ab-b14e-4d8b-b4b9-93250a810480))
)
(footprint "rockola_kicad_footprints:2PADS_TS_Vertical_NOBORDER" (layer "F.Cu")
(tedit 5EC1419E) (tstamp bddb7977-4f47-4e5a-9776-3fbee8345e9b)
(at 160.02 86.106)
(path "/00000000-0000-0000-0000-00005e74eecc")
(attr through_hole)
(fp_text reference "J2" (at -2.667 0) (layer "F.SilkS") hide
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 9f3d3c80-f673-4138-8cfd-081612cb606b)
)
(fp_text value "OUT" (at 0 2.8575) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 80aa8240-b182-45b1-bd96-4b2cb6340d6c)
)
(fp_text user "S" (at 1.143 0.5969) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 6aa9c80e-1912-43b9-a8eb-b3770c197706)
)
(fp_text user "${VALUE}" (at 0.0635 -2.4765 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 1) (thickness 0.1)) (justify mirror))
(tstamp d62c7b9b-2733-4c7c-acaf-935bbb5b42fb)
)
(fp_text user "T" (at 1.2446 -1.7272) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp e6e65e08-50ae-42e3-98ba-61e01e0d282e)
)
(fp_text user "T" (at 1.2446 -1.7272) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 93d2313f-0919-4c6f-b07d-ab630442d056)
)
(fp_text user "${VALUE}" (at -0.0635 -2.4765 unlocked) (layer "F.SilkS")
(effects (font (size 0.5 1) (thickness 0.1)))
(tstamp cc823f72-f0e4-4202-8e7e-d5cbcbc3c9fe)
)
(fp_text user "S" (at 1.143 0.5842) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp e7e652d0-8288-428b-b475-904d727ce73f)
)
(pad "S" thru_hole oval locked (at 0 1.2065) (size 1.9304 1.9304) (drill 1.2) (layers *.Cu *.Mask)
(net 4 "GND") (tstamp 61f4e7f9-83ae-434a-8197-1793ca31e5d3))
(pad "T" thru_hole rect locked (at 0 -1.143) (size 1.9304 1.9304) (drill 1.2) (layers *.Cu *.Mask)
(net 1 "JACK_OUT") (tstamp c861cf8a-31e4-47f9-9d70-ba48e4f39ce1))
)
(footprint "rockola_kicad_footprints:1PAD" (layer "F.Cu")
(tedit 5EC39824) (tstamp f5b18ddf-a563-4e97-9b70-87ee6c550120)
(at 156.6672 102.1588)
(path "/9170bb29-2892-408e-8604-c2a099c599b2")
(attr through_hole)
(fp_text reference "J7" (at 3.302 0 270) (layer "F.SilkS") hide
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 2c1b1998-f439-4485-b7ce-0b13438f40bf)
)
(fp_text value "GND" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.15)))
(tstamp 2e00a52e-9c16-45d3-84a5-a06979b617b4)
)
(fp_text user "${VALUE}" (at 2.9972 0.7874 unlocked) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 063ef32a-e380-47c9-bffe-e4e1261667e5)
)
(pad "1" thru_hole oval locked (at 1.27 0) (size 1.9304 1.9304) (drill 1.2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "Pin_1") (tstamp ef6d3484-fd4b-4fd9-8e77-49d40990cbb4))
)
(footprint "rockola_kicad_footprints:Power_Header_2pin_VERTICAL_ALT_NOBORDER" (layer "F.Cu")
(tedit 5EB94CC5) (tstamp f84e0c11-f883-4a7b-bf63-7594c23ca0cf)
(at 135.8265 100.838 180)
(path "/00000000-0000-0000-0000-00005e769ff8")
(attr through_hole)
(fp_text reference "J4" (at 2.032 0 90) (layer "B.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
(tstamp 7713a595-9783-456a-b872-e287f366565c)
)
(fp_text value "Power_SIDE" (at 2.032 0 90) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 097e0edc-0bee-47b5-b180-d68199aa4ff8)
)
(fp_text user "GND" (at -0.5207 -0.1778 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp 43f72311-9d74-4379-aff9-849c5d7414c8)
)
(fp_text user "V+" (at -0.2921 2.4638 unlocked) (layer "B.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
(tstamp 9bcbe648-8b58-4679-b991-5ade9ccff5d7)
)
(fp_text user "GND" (at -0.5207 -0.1778 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 8a6a411d-204d-43ed-94fb-e96e770c773b)
)
(fp_text user "V+" (at -0.3683 2.4638 unlocked) (layer "F.SilkS")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp ff377cbc-6042-46e6-9644-84dbcdaf714a)
)
(pad "1" thru_hole rect locked (at -1.27 1.27 270) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 7 "+9V") (pinfunction "PWR") (tstamp 1080dcf2-97ac-4a2c-8416-f8125f1cfe6a))
(pad "2" thru_hole oval locked (at -1.27 -1.27 270) (size 1.9304 1.9304) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (tstamp a3f9fc8e-8500-4776-9360-519d3d033f45))
)
(footprint "rockola_kicad_footprints:Resistor_0.25W_Standing" (layer "B.Cu")
(tedit 5E6CB5B5) (tstamp 8f74d044-d083-4cc7-a642-a641f63a700f)
(at 136.906 94.742 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/00000000-0000-0000-0000-00005e759c2c")
(attr through_hole)
(fp_text reference "R1" (at 1.27 2.37 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7d8f0369-0f22-4824-95fe-9de45ac90be0)
)
(fp_text value "CLR" (at 1.7145 -2.3495 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 962bbcda-aa4a-4389-8f03-f28addb0f938)
)
(fp_text user "${VALUE}" (at 1.8288 -1.0922 -90 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp b9cad7db-d7a5-48f7-95b5-88e509e4924f)
)
(fp_text user "${REFERENCE}" (at 1.27 2.37 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5b97e075-068b-41e4-8ebc-3e263fbff27a)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "B.SilkS") (width 0.12) (tstamp ce33739c-5d28-4c4f-8ccf-84b467a2a283))
(fp_circle (center 0 0) (end 1.37 0) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 7eb85542-4e0f-4e38-8271-1a829c78fba8))
(fp_line (start 3.59 1.5) (end -1.5 1.5) (layer "B.CrtYd") (width 0.05) (tstamp 25d3287d-6816-48d6-8ae5-b1912e983433))
(fp_line (start 3.59 -1.5) (end 3.59 1.5) (layer "B.CrtYd") (width 0.05) (tstamp bdeb6957-4199-4c46-befc-fc6addc59e85))
(fp_line (start -1.5 1.5) (end -1.5 -1.5) (layer "B.CrtYd") (width 0.05) (tstamp f7e200ad-0805-42f5-9f32-792f4044fcf7))
(fp_line (start -1.5 -1.5) (end 3.59 -1.5) (layer "B.CrtYd") (width 0.05) (tstamp feef402d-e20c-433f-bbed-b3d5c8efee26))
(fp_line (start 0 0) (end 2.54 0) (layer "B.Fab") (width 0.1) (tstamp f5e93f07-8ba1-4875-bdb1-578538b87209))
(fp_circle (center 0 0) (end 1.25 0) (layer "B.Fab") (width 0.1) (fill none) (tstamp eb5326f9-79d1-4584-a9a1-77d190619f83))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C1-Pad1)") (tstamp 70b1883a-d26f-427f-bdc1-542b119b6984))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "+9V") (tstamp 7ee47b16-2894-4c07-bc2f-d56f071d64dc))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rockola_kicad_footprints:Resistor_0.25W_Standing" (layer "B.Cu")
(tedit 5E6CB5B5) (tstamp 97f4ba76-a454-460b-a8a4-12876b407fa1)
(at 136.906 89.6112 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/2f5fc241-c3da-4f74-a168-d1053c912bf6")
(attr through_hole)
(fp_text reference "R2" (at 1.6764 -1.0668 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp ddf0cbdf-337f-4f75-b87c-643f7eb59917)
)
(fp_text value "390R" (at 1.7145 -2.3495 -90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 49265804-0096-4217-9537-f218fbd69c52)
)
(fp_text user "${VALUE}" (at 2.2225 1.143 -90 unlocked) (layer "B.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 6ba0f3ce-e065-4fb8-87f2-48fb68077157)
)
(fp_text user "${REFERENCE}" (at 1.27 2.37 -90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1bea6288-df93-4227-8757-c98eaa833a6f)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "B.SilkS") (width 0.12) (tstamp 71b25962-3bdb-41b6-8555-b03d1677ed65))
(fp_circle (center 0 0) (end 1.37 0) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 61a133b2-1b67-437e-91a5-ef37d7fdd63a))
(fp_line (start 3.59 -1.5) (end 3.59 1.5) (layer "B.CrtYd") (width 0.05) (tstamp 36974a30-0f6e-490b-94b6-6d027376cd96))
(fp_line (start -1.5 1.5) (end -1.5 -1.5) (layer "B.CrtYd") (width 0.05) (tstamp 3c65acc2-e8fe-49eb-a1b1-0df75c185195))
(fp_line (start -1.5 -1.5) (end 3.59 -1.5) (layer "B.CrtYd") (width 0.05) (tstamp c6014d18-e232-44ed-a070-a1c74153bc15))
(fp_line (start 3.59 1.5) (end -1.5 1.5) (layer "B.CrtYd") (width 0.05) (tstamp d4d4fa68-34f2-4653-bbf0-2d24f29cf971))
(fp_line (start 0 0) (end 2.54 0) (layer "B.Fab") (width 0.1) (tstamp ccc38513-0f34-4f05-9f98-ef75de618c91))
(fp_circle (center 0 0) (end 1.25 0) (layer "B.Fab") (width 0.1) (fill none) (tstamp f437d67e-d44f-4b38-a6c9-f36d153cdec4))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(D2-Pad2)") (tstamp 4876d4a3-ddf3-42ff-83c8-26e56f7c72dc))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C1-Pad1)") (tstamp 70312787-3984-4c3c-b2c8-639df103ed33))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D5.0mm-3" (layer "B.Cu")
(tedit 587A3A7B) (tstamp c0e4d62a-6763-414d-8cf4-c24e9efc3517)
(at 160.147 89.7255 -90)
(descr "LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf")
(tags "LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins")
(path "/79050edf-c8f1-47c8-a519-2794ecf93635")
(attr through_hole)
(fp_text reference "D1" (at 2.4003 -4.1148 -90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp fcd57f8b-d459-4ae2-86a3-533252fa35fb)
)
(fp_text value "LED_Dual_CAC" (at 2.54 -3.96 -90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a954b9c2-8815-41d9-8ee2-182c3d4b4e66)
)
(fp_line (start -0.02 1.545) (end -0.02 1.08) (layer "B.SilkS") (width 0.12) (tstamp 0e441e9b-127f-4bc3-9162-215c89745050))
(fp_line (start -0.02 -1.08) (end -0.02 -1.545) (layer "B.SilkS") (width 0.12) (tstamp 371abc5a-52a7-4b87-8ec7-281e5dbbd659))
(fp_arc (start -0.02 -1.54483) (mid 2.798456 -2.978809) (end 5.327815 -1.080827) (layer "B.SilkS") (width 0.12) (tstamp 25a58b38-e4e5-4924-abd3-89b90e72c12a))
(fp_arc (start 4.794479 1.080429) (mid 2.539762 2.5) (end 0.285316 1.08) (layer "B.SilkS") (width 0.12) (tstamp 7e9a6c0f-8a1d-43ad-a1d8-ac71f765670e))
(fp_arc (start 5.327815 1.080827) (mid 2.798456 2.978808) (end -0.02 1.54483) (layer "B.SilkS") (width 0.12) (tstamp 88592dbe-2ce3-4d58-ab18-cf429f21123f))
(fp_arc (start 0.285316 -1.08) (mid 2.539762 -2.5) (end 4.794479 -1.080429) (layer "B.SilkS") (width 0.12) (tstamp e34e1373-69b0-4599-a75a-7458f19f5398))
(fp_line (start -1.15 -3.25) (end 6.25 -3.25) (layer "B.CrtYd") (width 0.05) (tstamp 4deae685-5592-43f0-91c3-86e99199860c))
(fp_line (start -1.15 3.25) (end -1.15 -3.25) (layer "B.CrtYd") (width 0.05) (tstamp 838ee847-cd88-4ea8-b449-591cf4767883))
(fp_line (start 6.25 -3.25) (end 6.25 3.25) (layer "B.CrtYd") (width 0.05) (tstamp b8e4c1bf-3a7f-4504-a864-a1b83d43598f))
(fp_line (start 6.25 3.25) (end -1.15 3.25) (layer "B.CrtYd") (width 0.05) (tstamp b9258fdc-8fc7-4b0b-a1a5-ded4a5045e1f))
(fp_line (start 0.04 1.469694) (end 0.04 -1.469694) (layer "B.Fab") (width 0.1) (tstamp e4a73b93-c925-4263-a4d5-8e9e5fe2b9aa))
(fp_arc (start 0.039984 -1.469666) (mid 5.44 -0.000016) (end 0.04 1.469694) (layer "B.Fab") (width 0.1) (tstamp 677e0101-81f0-4545-8c72-23c9f6cef51e))
(fp_circle (center 2.54 0) (end 5.04 0) (layer "B.Fab") (width 0.1) (fill none) (tstamp 4b3e8ab8-6573-4361-8b87-a68e53872f35))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 3 "LED-") (pinfunction "K1") (tstamp 26b06faa-a856-4c91-8c51-5ec222757e77))
(pad "2" thru_hole circle locked (at 2.54 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 10 "Net-(D2-Pad2)") (pinfunction "A") (tstamp 31d3b74b-00fc-4559-b301-5e1a99434b02))
(pad "3" thru_hole circle locked (at 5.08 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 8 "LED2-") (pinfunction "K2") (tstamp 9ae76f14-e13c-4a7c-9cc5-f905b4851f1f))
(model "${KISYS3DMOD}/LED_THT.3dshapes/LED_D5.0mm-3.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rockola_kicad_footprints:CP_D5.0_P2.50" (layer "B.Cu")
(tedit 5E95C663) (tstamp e4a18678-0897-42e2-ad8f-87691fa3bd3e)
(at 159.893 97.663 -90)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(path "/8fde946a-db01-4bc2-b375-ffd9de9dc038")
(attr through_hole)
(fp_text reference "C1" (at 4.445 -0.5842 -180) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 3781d0c5-d328-422a-90a6-6ba9d7b972df)
)
(fp_text value "10u" (at 1.25 -3.75 -90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 071fe165-eed0-4ec5-8ce3-44801c72d2c9)
)
(fp_text user "${REFERENCE}" (at 1.25 0 -90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cc25d09c-35c7-41e7-be08-11221978f8bb)
)
(fp_line (start 2.011 -1.04) (end 2.011 -2.468) (layer "B.SilkS") (width 0.12) (tstamp 047cf595-1972-4c2a-a70b-65489a060f88))
(fp_line (start 2.891 2.004) (end 2.891 1.04) (layer "B.SilkS") (width 0.12) (tstamp 061b0977-703d-47fc-ba64-d6fb3f8737c3))
(fp_line (start 2.451 2.29) (end 2.451 1.04) (layer "B.SilkS") (width 0.12) (tstamp 0db9632a-21af-4acb-9c05-e041f8c89b3a))
(fp_line (start 1.49 -1.04) (end 1.49 -2.569) (layer "B.SilkS") (width 0.12) (tstamp 0e20cbc1-6cd0-4252-8a14-c1d9146f2a63))
(fp_line (start 3.051 1.864) (end 3.051 1.04) (layer "B.SilkS") (width 0.12) (tstamp 0f924b75-883b-4726-a9f0-fbdae6b526a3))
(fp_line (start 2.091 -1.04) (end 2.091 -2.442) (layer "B.SilkS") (width 0.12) (tstamp 12d6a58e-297d-4423-a9b1-8d6158bbfbac))
(fp_line (start 2.531 -1.04) (end 2.531 -2.247) (layer "B.SilkS") (width 0.12) (tstamp 14024e4b-59d0-4f66-8eba-1d0eb8f5d9a6))
(fp_line (start 3.411 1.443) (end 3.411 1.04) (layer "B.SilkS") (width 0.12) (tstamp 161f5455-8297-4c70-b65c-7a745abba5c6))
(fp_line (start 3.011 1.901) (end 3.011 1.04) (layer "B.SilkS") (width 0.12) (tstamp 16ee6ea3-f8e7-42d6-adf2-84c0e1e68606))
(fp_line (start 2.211 2.398) (end 2.211 1.04) (layer "B.SilkS") (width 0.12) (tstamp 19540a39-5ccf-4444-9213-b906fd0dd61b))
(fp_line (start 3.411 -1.04) (end 3.411 -1.443) (layer "B.SilkS") (width 0.12) (tstamp 19a78422-b95d-4f86-b628-f6242f9aacfd))
(fp_line (start 3.731 0.805) (end 3.731 -0.805) (layer "B.SilkS") (width 0.12) (tstamp 1a585210-4cd2-4cf8-9787-2016b6bc4329))
(fp_line (start 2.171 -1.04) (end 2.171 -2.414) (layer "B.SilkS") (width 0.12) (tstamp 203e5b2e-39ac-4c61-8ae1-6c3eb4a9b53a))
(fp_line (start 3.331 1.554) (end 3.331 1.04) (layer "B.SilkS") (width 0.12) (tstamp 2069990d-6014-4631-8e6f-d382b53b2ed1))
(fp_line (start 2.291 2.365) (end 2.291 1.04) (layer "B.SilkS") (width 0.12) (tstamp 21029bc5-ec40-4631-a1f1-024a4085a56f))
(fp_line (start 2.931 -1.04) (end 2.931 -1.971) (layer "B.SilkS") (width 0.12) (tstamp 230e039b-1200-49f4-9764-81cfdd0b465a))
(fp_line (start 2.011 2.468) (end 2.011 1.04) (layer "B.SilkS") (width 0.12) (tstamp 23708b85-adf5-4cbf-a4c4-69f9be2b941b))
(fp_line (start 3.331 -1.04) (end 3.331 -1.554) (layer "B.SilkS") (width 0.12) (tstamp 2859838c-f7b0-4be7-9045-7fdc963d3d85))
(fp_line (start 2.251 -1.04) (end 2.251 -2.382) (layer "B.SilkS") (width 0.12) (tstamp 29ba5cb3-8244-4e9f-a028-bde92e99adb1))
(fp_line (start 3.251 -1.04) (end 3.251 -1.653) (layer "B.SilkS") (width 0.12) (tstamp 2d9eeeec-9b58-4b2a-bc33-b5b8498b0fa3))
(fp_line (start 2.051 -1.04) (end 2.051 -2.455) (layer "B.SilkS") (width 0.12) (tstamp 2ea45036-6908-4767-a4a0-ac16e09767ee))
(fp_line (start 1.971 -1.04) (end 1.971 -2.48) (layer "B.SilkS") (width 0.12) (tstamp 2eb128af-cf78-4727-9276-c766eac2782b))
(fp_line (start 1.29 2.58) (end 1.29 -2.58) (layer "B.SilkS") (width 0.12) (tstamp 3019cd7d-d905-4256-ac07-1e58a26f3c06))
(fp_line (start 3.371 1.5) (end 3.371 1.04) (layer "B.SilkS") (width 0.12) (tstamp 30304e2e-fae0-4942-8805-94df7afa183a))
(fp_line (start 3.171 -1.04) (end 3.171 -1.743) (layer "B.SilkS") (width 0.12) (tstamp 3074fade-b34d-479b-8200-fadd967b837d))
(fp_line (start 1.65 -1.04) (end 1.65 -2.55) (layer "B.SilkS") (width 0.12) (tstamp 34407fba-357b-4052-9216-06c1e2cae3ea))
(fp_line (start 2.451 -1.04) (end 2.451 -2.29) (layer "B.SilkS") (width 0.12) (tstamp 35505c17-306b-4361-9895-a67ced902f2d))
(fp_line (start 2.611 -1.04) (end 2.611 -2.2) (layer "B.SilkS") (width 0.12) (tstamp 355984fe-c4ef-4584-9c88-7aed9a4b1db8))
(fp_line (start 3.611 1.098) (end 3.611 -1.098) (layer "B.SilkS") (width 0.12) (tstamp 36411ff6-02f2-4518-91f8-2ec78503d07a))
(fp_line (start 2.331 2.348) (end 2.331 1.04) (layer "B.SilkS") (width 0.12) (tstamp 395df0a5-800c-4cca-a0f1-3ad76d2e76ca))
(fp_line (start 3.291 1.605) (end 3.291 1.04) (layer "B.SilkS") (width 0.12) (tstamp 3af48b74-9eb6-4a31-be66-715160acfc85))
(fp_line (start 3.491 1.319) (end 3.491 1.04) (layer "B.SilkS") (width 0.12) (tstamp 3d92c55c-1734-42df-b448-2eee86d15983))
(fp_line (start 3.451 1.383) (end 3.451 1.04) (layer "B.SilkS") (width 0.12) (tstamp 40af157d-bec1-489e-8581-29ec391f5c92))
(fp_line (start 2.411 2.31) (end 2.411 1.04) (layer "B.SilkS") (width 0.12) (tstamp 412488c3-13b7-4cf8-8c58-0304d4e5151b))
(fp_line (start 2.651 2.175) (end 2.651 1.04) (layer "B.SilkS") (width 0.12) (tstamp 41d12f3f-11c6-402c-bcf2-6f6e169eb2f6))
(fp_line (start 2.491 -1.04) (end 2.491 -2.268) (layer "B.SilkS") (width 0.12) (tstamp 49c4dcb9-cb9b-421e-b7b9-e495c75a42b7))
(fp_line (start 1.93 -1.04) (end 1.93 -2.491) (layer "B.SilkS") (width 0.12) (tstamp 4a06368c-ac2a-4bd5-acce-393b80f8a278))
(fp_line (start 2.931 1.971) (end 2.931 1.04) (layer "B.SilkS") (width 0.12) (tstamp 4bb6aa50-20a8-40c0-9694-aa4503d2e061))
(fp_line (start 3.091 -1.04) (end 3.091 -1.826) (layer "B.SilkS") (width 0.12) (tstamp 4e98eeda-3e56-41f0-b5f8-40eea7e26c81))
(fp_line (start 1.57 2.561) (end 1.57 1.04) (layer "B.SilkS") (width 0.12) (tstamp 4f4ed3ff-b7e3-455c-be2d-f1d3c4be2168))
(fp_line (start 1.69 2.543) (end 1.69 1.04) (layer "B.SilkS") (width 0.12) (tstamp 5081823b-af15-4652-8f62-e115e4598367))
(fp_line (start -0.25 1.397) (end 0.25 1.397) (layer "B.SilkS") (width 0.12) (tstamp 50abaddd-47f5-4d26-a1ac-040e0a5b2a4e))
(fp_line (start 2.611 2.2) (end 2.611 1.04) (layer "B.SilkS") (width 0.12) (tstamp 537d030b-54bb-4562-9f1e-378ccefb4b2e))
(fp_line (start 3.811 0.518) (end 3.811 -0.518) (layer "B.SilkS") (width 0.12) (tstamp 54d721eb-e499-47c4-8998-1dcd3829302f))
(fp_line (start 1.65 2.55) (end 1.65 1.04) (layer "B.SilkS") (width 0.12) (tstamp 55f629e5-1c97-4453-a1ae-599ac25f2ed5))
(fp_line (start 3.131 -1.04) (end 3.131 -1.785) (layer "B.SilkS") (width 0.12) (tstamp 588bef68-8354-4667-a575-3c31f5656918))
(fp_line (start 3.011 -1.04) (end 3.011 -1.901) (layer "B.SilkS") (width 0.12) (tstamp 59d8ba21-cafb-4664-ad77-269d60e2afa7))
(fp_line (start 2.691 -1.04) (end 2.691 -2.149) (layer "B.SilkS") (width 0.12) (tstamp 5aee846a-8592-4b29-bd9b-9c316ee83d69))
(fp_line (start 2.811 -1.04) (end 2.811 -2.065) (layer "B.SilkS") (width 0.12) (tstamp 5be841dc-3b4a-40c9-969b-e11a4fb210b2))
(fp_line (start 3.531 1.251) (end 3.531 1.04) (layer "B.SilkS") (width 0.12) (tstamp 5fc03015-6f9b-4e08-9fd5-ba1cb6c63544))
(fp_line (start 1.89 2.501) (end 1.89 1.04) (layer "B.SilkS") (width 0.12) (tstamp 623a95d3-92aa-43fc-bfb7-1927169d4600))
(fp_line (start 3.211 -1.04) (end 3.211 -1.699) (layer "B.SilkS") (width 0.12) (tstamp 63c4f6ba-7934-4f34-b900-9d85f4b16ec3))
(fp_line (start 1.25 2.58) (end 1.25 -2.58) (layer "B.SilkS") (width 0.12) (tstamp 654b3b97-d6ef-4fab-aedc-733bab6d7f72))
(fp_line (start 1.41 2.576) (end 1.41 -2.576) (layer "B.SilkS") (width 0.12) (tstamp 666a127f-bbf1-44d7-9945-883a859a094b))
(fp_line (start 2.131 -1.04) (end 2.131 -2.428) (layer "B.SilkS") (width 0.12) (tstamp 675b2a1e-1d1e-4f5b-91f1-23d348015a92))
(fp_line (start 1.81 -1.04) (end 1.81 -2.52) (layer "B.SilkS") (width 0.12) (tstamp 67a11f6a-4ece-4dc6-a8e5-fd9307451010))
(fp_line (start 1.73 -1.04) (end 1.73 -2.536) (layer "B.SilkS") (width 0.12) (tstamp 6a6afd5b-5f14-4832-96b7-394ff3546428))
(fp_line (start 3.051 -1.04) (end 3.051 -1.864) (layer "B.SilkS") (width 0.12) (tstamp 6c9aaaba-b9a5-4111-8987-89315ec6be88))
(fp_line (start 3.091 1.826) (end 3.091 1.04) (layer "B.SilkS") (width 0.12) (tstamp 73c391c7-0be1-4b2b-8b04-862892b96a80))
(fp_line (start 1.61 2.556) (end 1.61 1.04) (layer "B.SilkS") (width 0.12) (tstamp 76a39676-455f-4955-a088-1c75859bcc04))
(fp_line (start 2.851 2.035) (end 2.851 1.04) (layer "B.SilkS") (width 0.12) (tstamp 7785b82d-e310-4126-be03-f0dab068352e))
(fp_line (start 1.53 2.565) (end 1.53 1.04) (layer "B.SilkS") (width 0.12) (tstamp 7b973887-a7d0-4ced-9ce0-e7012bc4f667))
(fp_line (start 2.251 2.382) (end 2.251 1.04) (layer "B.SilkS") (width 0.12) (tstamp 7bc6e4f1-1e6a-45c4-bde8-9944381fe3ce))
(fp_line (start 2.171 2.414) (end 2.171 1.04) (layer "B.SilkS") (width 0.12) (tstamp 812743ff-ca89-44bf-bfc5-a9a71a71d256))
(fp_line (start 3.851 0.284) (end 3.851 -0.284) (layer "B.SilkS") (width 0.12) (tstamp 8257417e-3db1-4b7e-a79b-84d4ba8c4011))
(fp_line (start 3.291 -1.04) (end 3.291 -1.605) (layer "B.SilkS") (width 0.12) (tstamp 82e15225-a105-45b2-84d4-4b70931897e0))
(fp_line (start 1.37 2.578) (end 1.37 -2.578) (layer "B.SilkS") (width 0.12) (tstamp 893c591c-b6ff-4f7c-af38-4373a74e1168))
(fp_line (start 3.771 0.677) (end 3.771 -0.677) (layer "B.SilkS") (width 0.12) (tstamp 896391fa-77aa-4617-be63-4c92c9128a73))
(fp_line (start 1.89 -1.04) (end 1.89 -2.501) (layer "B.SilkS") (width 0.12) (tstamp 8ef140e1-a86a-45e5-8f2c-e06066832fcb))
(fp_line (start 2.771 -1.04) (end 2.771 -2.095) (layer "B.SilkS") (width 0.12) (tstamp 91ba689b-5dd8-4302-8420-efca48ac6b5f))
(fp_line (start 3.451 -1.04) (end 3.451 -1.383) (layer "B.SilkS") (width 0.12) (tstamp 92529218-3086-4e38-a5d7-361f20edc13a))
(fp_line (start 2.771 2.095) (end 2.771 1.04) (layer "B.SilkS") (width 0.12) (tstamp 96fa3736-070f-437c-b67e-34080cd0f9e4))
(fp_line (start 2.131 2.428) (end 2.131 1.04) (layer "B.SilkS") (width 0.12) (tstamp 97823ebb-0711-4a96-9596-e1b6f4baec60))
(fp_line (start 1.61 -1.04) (end 1.61 -2.556) (layer "B.SilkS") (width 0.12) (tstamp 9bab507b-ffe8-4c5e-9c8f-1c526f0716c7))
(fp_line (start 3.211 1.699) (end 3.211 1.04) (layer "B.SilkS") (width 0.12) (tstamp a3acb1a5-1a94-45cb-a7eb-6abc9d5b9709))
(fp_line (start 3.171 1.743) (end 3.171 1.04) (layer "B.SilkS") (width 0.12) (tstamp a5da963a-270f-4c3d-a079-114d8eef79b7))
(fp_line (start 1.33 2.579) (end 1.33 -2.579) (layer "B.SilkS") (width 0.12) (tstamp ab962808-f856-4da6-875e-d33b9b900c1c))
(fp_line (start 2.371 2.329) (end 2.371 1.04) (layer "B.SilkS") (width 0.12) (tstamp aba0fc13-5864-4b93-a0d5-5b97e1e36281))
(fp_line (start 2.211 -1.04) (end 2.211 -2.398) (layer "B.SilkS") (width 0.12) (tstamp ad2c8427-faf3-46bd-a366-df5ea0d688b4))
(fp_line (start 1.93 2.491) (end 1.93 1.04) (layer "B.SilkS") (width 0.12) (tstamp ae278b01-6140-4258-b3e1-878a503a5a62))
(fp_line (start 1.77 -1.04) (end 1.77 -2.528) (layer "B.SilkS") (width 0.12) (tstamp afaec224-6eb9-4aa4-acce-937066a89442))
(fp_line (start 3.131 1.785) (end 3.131 1.04) (layer "B.SilkS") (width 0.12) (tstamp b20fce31-a979-44b0-8b02-4f26d5d97078))
(fp_line (start 1.971 2.48) (end 1.971 1.04) (layer "B.SilkS") (width 0.12) (tstamp b352d21a-9d0c-42da-bdfe-356afec9821e))
(fp_line (start 2.291 -1.04) (end 2.291 -2.365) (layer "B.SilkS") (width 0.12) (tstamp b3ee6304-4586-4924-9942-14d87bd91c7d))
(fp_line (start 2.971 1.937) (end 2.971 1.04) (layer "B.SilkS") (width 0.12) (tstamp b44b23f0-bd88-4300-979d-37f303b9f6a0))
(fp_line (start 2.651 -1.04) (end 2.651 -2.175) (layer "B.SilkS") (width 0.12) (tstamp b5e82878-b519-4073-ad55-f1d9914c05ff))
(fp_line (start 2.571 -1.04) (end 2.571 -2.224) (layer "B.SilkS") (width 0.12) (tstamp b7ea6100-ff11-4609-86f6-89b95a0d171e))
(fp_line (start 2.571 2.224) (end 2.571 1.04) (layer "B.SilkS") (width 0.12) (tstamp b8a5679e-0824-4fd4-bd37-515f1c75fd73))
(fp_line (start 2.331 -1.04) (end 2.331 -2.348) (layer "B.SilkS") (width 0.12) (tstamp b93d027f-21f6-4fc9-ad3f-317eded6973b))
(fp_line (start 2.691 2.149) (end 2.691 1.04) (layer "B.SilkS") (width 0.12) (tstamp bb5372f2-1ad0-4a4d-b4cb-b3226f0cfcbd))
(fp_line (start 2.051 2.455) (end 2.051 1.04) (layer "B.SilkS") (width 0.12) (tstamp bdda70c2-3421-4655-b5b9-d211191a6325))
(fp_line (start 2.371 -1.04) (end 2.371 -2.329) (layer "B.SilkS") (width 0.12) (tstamp bdfead1f-ec4f-41f7-bfd1-971493371164))
(fp_line (start 1.85 -1.04) (end 1.85 -2.511) (layer "B.SilkS") (width 0.12) (tstamp bf3dac99-ac50-4ac6-bfbd-9ed628e3720e))
(fp_line (start 1.45 2.573) (end 1.45 -2.573) (layer "B.SilkS") (width 0.12) (tstamp bfb630e3-509a-4343-86ca-b017c6eec725))
(fp_line (start 2.411 -1.04) (end 2.411 -2.31) (layer "B.SilkS") (width 0.12) (tstamp c14d7200-f91c-4b1f-9467-64c3336c7ef2))
(fp_line (start 3.371 -1.04) (end 3.371 -1.5) (layer "B.SilkS") (width 0.12) (tstamp c2f82502-a672-445f-b0f1-8868bd6c28f2))
(fp_line (start 1.73 2.536) (end 1.73 1.04) (layer "B.SilkS") (width 0.12) (tstamp c339890a-ec9b-43c8-bca3-90f292a91f7c))
(fp_line (start 1.49 2.569) (end 1.49 1.04) (layer "B.SilkS") (width 0.12) (tstamp ce619f39-5aaf-49e9-a33c-26732dec8e95))
(fp_line (start 2.971 -1.04) (end 2.971 -1.937) (layer "B.SilkS") (width 0.12) (tstamp cf4cb541-1fc3-4ad8-99c6-748cb872c6eb))
(fp_line (start 1.69 -1.04) (end 1.69 -2.543) (layer "B.SilkS") (width 0.12) (tstamp d00d1a13-a7a0-45e0-aac5-1ff3926884e0))
(fp_line (start 1.57 -1.04) (end 1.57 -2.561) (layer "B.SilkS") (width 0.12) (tstamp d375f196-6f2b-4a02-b59f-0abcafe1e5a7))
(fp_line (start 3.691 0.915) (end 3.691 -0.915) (layer "B.SilkS") (width 0.12) (tstamp d57c0ffa-3d5d-4de8-a2cb-de72ea1cf372))
(fp_line (start 2.731 -1.04) (end 2.731 -2.122) (layer "B.SilkS") (width 0.12) (tstamp e321aecd-3c35-4269-8106-100a64352fd1))
(fp_line (start 2.491 2.268) (end 2.491 1.04) (layer "B.SilkS") (width 0.12) (tstamp e4e8c3f3-f9c5-4fd5-9df8-595c4d009ab6))
(fp_line (start 3.251 1.653) (end 3.251 1.04) (layer "B.SilkS") (width 0.12) (tstamp e8b9f5a2-9c61-4573-a103-20f29d774825))
(fp_line (start 1.81 2.52) (end 1.81 1.04) (layer "B.SilkS") (width 0.12) (tstamp e8fbed20-1a41-45ab-b1f5-aa1a8c24ac3c))
(fp_line (start 2.891 -1.04) (end 2.891 -2.004) (layer "B.SilkS") (width 0.12) (tstamp e92cc26d-27f8-43e9-a58e-4cbff1061bf5))
(fp_line (start 3.651 1.011) (end 3.651 -1.011) (layer "B.SilkS") (width 0.12) (tstamp e954e8e4-5e66-4ebc-9dad-43e918b0d8d3))
(fp_line (start 3.491 -1.04) (end 3.491 -1.319) (layer "B.SilkS") (width 0.12) (tstamp ebe6845e-77ef-4a3b-8777-25f774d9ada6))
(fp_line (start 0 1.647) (end 0 1.147) (layer "B.SilkS") (width 0.12) (tstamp f1e08948-6b85-492c-99de-5fd6a459b81f))
(fp_line (start 2.091 2.442) (end 2.091 1.04) (layer "B.SilkS") (width 0.12) (tstamp f243ec58-1f6e-418e-a663-db153af2a742))
(fp_line (start 2.531 2.247) (end 2.531 1.04) (layer "B.SilkS") (width 0.12) (tstamp f46360b3-2778-4224-b87e-99e44d6e0b71))
(fp_line (start 1.53 -1.04) (end 1.53 -2.565) (layer "B.SilkS") (width 0.12) (tstamp f7a08f47-28a3-4664-b73f-efd412909c91))
(fp_line (start 2.731 2.122) (end 2.731 1.04) (layer "B.SilkS") (width 0.12) (tstamp f927b2bd-934b-468f-bf89-dd56567c0ccd))
(fp_line (start 2.851 -1.04) (end 2.851 -2.035) (layer "B.SilkS") (width 0.12) (tstamp f98741d9-e0ab-4e63-868b-6552fb9e4771))
(fp_line (start 1.85 2.511) (end 1.85 1.04) (layer "B.SilkS") (width 0.12) (tstamp fb078252-2c69-4f10-b8ca-ec674f33126f))
(fp_line (start 1.77 2.528) (end 1.77 1.04) (layer "B.SilkS") (width 0.12) (tstamp fbe4ca78-db1d-425c-822e-cbaf51a10d48))
(fp_line (start 2.811 2.065) (end 2.811 1.04) (layer "B.SilkS") (width 0.12) (tstamp fcd8b1c2-0644-4e8e-b5df-9c237120459f))
(fp_line (start 3.571 1.178) (end 3.571 -1.178) (layer "B.SilkS") (width 0.12) (tstamp fdbeb6f2-ee7c-43eb-840b-d8ad9458d56d))
(fp_line (start 3.531 -1.04) (end 3.531 -1.251) (layer "B.SilkS") (width 0.12) (tstamp fe29d3b6-92be-4e54-a383-392356bcc809))
(fp_circle (center 1.25 0) (end 3.87 0) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 1fc3251f-68ef-4f72-a209-18ab14ab73e6))
(fp_circle (center 1.25 0) (end 4 0) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp 685e6150-e36f-47e8-b723-9a93196f7f6d))
(fp_line (start -0.883605 1.0875) (end -0.383605 1.0875) (layer "B.Fab") (width 0.1) (tstamp 4c7091d4-515a-46e1-8ca0-f82aa5cb62fb))
(fp_line (start -0.633605 1.3375) (end -0.633605 0.8375) (layer "B.Fab") (width 0.1) (tstamp 6b56dce3-891e-4c99-a6a2-469129a36085))
(fp_circle (center 1.25 0) (end 3.75 0) (layer "B.Fab") (width 0.1) (fill none) (tstamp f5ae382e-762f-45ff-b350-8e2d7e80445d))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C1-Pad1)") (tstamp 32179512-4a1b-4c43-b39f-dd03c42d1b98))
(pad "2" thru_hole circle locked (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "GND") (tstamp 60c904fa-63a2-4382-802c-bc785faf90bd))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 157.9626 96.4184) (end 158.623 96.4184) (layer "F.SilkS") (width 0.12) (tstamp 1f8a5346-f574-4f68-a85b-c532ea680fd2))
(gr_line (start 159.0548 93.7006) (end 160.147 92.71) (layer "F.SilkS") (width 0.12) (tstamp 39f0c374-42d0-4b15-a4de-5f64cdadcac5))
(gr_line (start 158.623 96.4184) (end 160.0962 94.9452) (layer "F.SilkS") (width 0.12) (tstamp 60ffe0ac-ab44-4267-9256-3ff19171de26))
(gr_line (start 158.8008 92.6084) (end 159.4104 92.4052) (layer "F.SilkS") (width 0.12) (tstamp 63926b3e-03e6-4709-a1d1-0a7b01bec2b3))
(gr_line (start 158.7754 89.6366) (end 159.4104 89.8144) (layer "F.SilkS") (width 0.12) (tstamp 7d3fb946-2eb1-489a-b353-909c8967bafb))
(gr_line (start 157.988 88.4428) (end 158.9532 88.4936) (layer "F.SilkS") (width 0.12) (tstamp d46639fc-1df3-4033-b073-1189f807cb8a))
(gr_line (start 158.0134 93.853) (end 159.0294 93.726) (layer "F.SilkS") (width 0.12) (tstamp da59b0ea-3167-46af-9afb-0c065a4fa226))
(gr_line (start 158.9532 88.4936) (end 159.8422 89.3826) (layer "F.SilkS") (width 0.12) (tstamp e1df0fee-e209-4387-b7ea-4403e177c11d))
(gr_line (start 161.544 83.185) (end 161.544 103.505) (layer "Edge.Cuts") (width 0.05) (tstamp 27054c85-f788-48a3-a37f-7d420111217e))
(gr_line (start 161.544 103.505) (end 135.636 103.505) (layer "Edge.Cuts") (width 0.05) (tstamp be7c5a0d-bf12-4c6d-9af1-dc402811c968))
(gr_line (start 135.636 83.185) (end 161.544 83.185) (layer "Edge.Cuts") (width 0.05) (tstamp dcf49278-6b95-4346-a16c-dd159599c0f3))
(gr_line (start 135.636 103.505) (end 135.636 83.185) (layer "Edge.Cuts") (width 0.05) (tstamp f87fc8bd-9339-4549-a8a6-fb22a77f32e0))
(gr_text "JACK" (at 138.5316 85.1154 270) (layer "B.SilkS") (tstamp 1abdd07c-a3b4-463d-94e8-41ea3aba061f)
(effects (font (size 0.5 0.4) (thickness 0.1)) (justify mirror))
)
(gr_text "github.com/rockola/stomp-breakout" (at 147.8534 87.2998) (layer "B.SilkS") (tstamp 1e025a25-c79f-44e5-a485-4bc82ac61650)
(effects (font (size 0.7 0.59) (thickness 0.1)) (justify mirror))
)
(gr_text "CA" (at 158.7246 92.8624) (layer "B.SilkS") (tstamp 40ad425e-67b4-4256-83dc-4580edb86d20)
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
)
(gr_text "JACK" (at 158.6865 85.5345 90) (layer "B.SilkS") (tstamp 69ed5703-f66f-423d-a9bf-895a82cb74ee)
(effects (font (size 0.5 0.4) (thickness 0.1)) (justify mirror))
)
(gr_text "LED" (at 158.877 91.186) (layer "B.SilkS") (tstamp a58f3fc4-9915-4e2b-b3e5-9a23c9d06a65)
(effects (font (size 0.5 0.6) (thickness 0.1)) (justify mirror))
)
(gr_text "K2" (at 158.5595 95.5675) (layer "B.SilkS") (tstamp ad419be9-376d-4d2f-82c0-ff0f07356768)
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
)
(gr_text "GND" (at 159.3088 103.0478) (layer "B.SilkS") (tstamp ccb230f7-b0fb-4a38-b3a4-ab097ebe1893)
(effects (font (size 0.4 0.4) (thickness 0.08)) (justify mirror))
)
(gr_text "K1" (at 158.4325 89.2175) (layer "B.SilkS") (tstamp d7eb1216-0230-45e4-bb9b-f23f16ea06c8)
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
)
(gr_text "GND" (at 141.7828 83.5152) (layer "B.SilkS") (tstamp f8793333-2960-4b59-8bdd-21e6cc7e1ec1)
(effects (font (size 0.4 0.4) (thickness 0.1)) (justify mirror))
)
(gr_text "JACK" (at 138.5316 85.0392 270) (layer "F.SilkS") (tstamp 27862d46-cb82-49be-b393-51170908ef95)
(effects (font (size 0.5 0.4) (thickness 0.1)))
)
(gr_text "K" (at 158.9786 90.0938 90) (layer "F.SilkS") (tstamp 574d7ea9-f0f3-406b-9bc0-9485fcb74b81)
(effects (font (size 0.4 0.4) (thickness 0.08)))
)
(gr_text "K2" (at 158.2674 95.8596 90) (layer "F.SilkS") (tstamp 579729ba-6b2c-4fb1-bf6f-1ae1a84fcc04)
(effects (font (size 0.4 0.4) (thickness 0.08)))
)
(gr_text "JACK" (at 158.6865 85.5345 90) (layer "F.SilkS") (tstamp 60a4647d-7fb4-4393-9f34-fb7b742e2842)
(effects (font (size 0.5 0.4) (thickness 0.1)))
)
(gr_text "${REVISION} ${PROJECT_DATE}" (at 139.1412 93.9546 270) (layer "F.SilkS") (tstamp 6dc50e6e-4fd2-47c9-8199-bbda6099bb61)
(effects (font (size 0.6 0.6) (thickness 0.1)))
)
(gr_text "CA" (at 158.2674 94.3102 90) (layer "F.SilkS") (tstamp 7b573841-0d69-4c95-a545-76ac472425dc)
(effects (font (size 0.4 0.4) (thickness 0.08)))
)
(gr_text "A" (at 159.0294 91.948 90) (layer "F.SilkS") (tstamp 87557c4c-b76e-4d75-9850-8caa54bfc1b8)
(effects (font (size 0.4 0.4) (thickness 0.08)))
)
(gr_text "Bi-color common anode LED" (at 157.5562 92.456 90) (layer "F.SilkS") (tstamp cd0347b9-ac4f-4111-89f1-e7ac77eab75a)
(effects (font (size 0.5 0.42) (thickness 0.08)))
)
(gr_text "Standard LED" (at 158.369 91.1352 90) (layer "F.SilkS") (tstamp d60deedb-a1bb-4cf1-95c6-f778f40a2652)
(effects (font (size 0.5 0.45) (thickness 0.08)))
)
(gr_text "K1" (at 158.2928 87.9348 90) (layer "F.SilkS") (tstamp fb52113c-114b-4974-8e69-4dfd68c664f3)
(effects (font (size 0.4 0.4) (thickness 0.08)))
)
(segment (start 157.8102 87.1728) (end 160.02 84.963) (width 0.508) (layer "F.Cu") (net 1) (tstamp 11e50798-67eb-4f60-8891-d0e671a725f4))
(segment (start 157.2006 94.2086) (end 157.8102 93.599) (width 0.508) (layer "F.Cu") (net 1) (tstamp 68573c65-7dbd-4848-b439-0dbc14bf6fab))
(segment (start 157.8102 93.599) (end 157.8102 87.1728) (width 0.508) (layer "F.Cu") (net 1) (tstamp 90901616-d655-48dd-8f9e-4ed101b565bb))
(via (at 157.2006 94.2086) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 5fb80d28-a81f-4657-8dd4-8c53e243135b))
(segment (start 156.7688 94.6404) (end 157.2006 94.2086) (width 0.508) (layer "B.Cu") (net 1) (tstamp 5658ce1c-95f5-430d-83b7-27ff0104adbc))
(segment (start 153.0264 94.6404) (end 156.7688 94.6404) (width 0.508) (layer "B.Cu") (net 1) (tstamp e381dfbd-a822-4aca-a9a2-277cf016887f))
(segment (start 151.5364 88.4504) (end 153.0264 89.9404) (width 0.508) (layer "F.Cu") (net 2) (tstamp 61f6613a-a184-4d4b-a56b-5c38fb1646bf))
(segment (start 151.5364 88.4504) (end 151.5364 84.709) (width 0.508) (layer "F.Cu") (net 2) (tstamp fe4e4c1c-9106-4fec-99e4-c1110bce69a1))
(segment (start 147.7518 85.9536) (end 148.9964 84.709) (width 0.381) (layer "F.Cu") (net 3) (tstamp 704af230-adea-4b40-990e-213cfba3aa5e))
(segment (start 147.7264 89.9404) (end 147.7264 85.9536) (width 0.381) (layer "F.Cu") (net 3) (tstamp a4abf94b-b4c2-4a3b-a5fd-708aed5e5c36))
(segment (start 147.7264 85.9536) (end 147.7518 85.9536) (width 0.381) (layer "F.Cu") (net 3) (tstamp df06c398-71a7-4904-9e9f-3ace750bb92e))
(segment (start 157.530601 92.341899) (end 160.147 89.7255) (width 0.381) (layer "B.Cu") (net 3) (tstamp 16d5fa68-6300-415e-8db5-a46eaf918f9b))
(segment (start 150.127899 92.341899) (end 157.530601 92.341899) (width 0.381) (layer "B.Cu") (net 3) (tstamp 63c3b747-209a-46e9-a448-fe507c6cf749))
(segment (start 147.7264 89.9404) (end 150.127899 92.341899) (width 0.381) (layer "B.Cu") (net 3) (tstamp d7dcd791-f2cf-4b5c-85a9-2358bebf2d00))
(segment (start 160.02 87.3125) (end 159.4485 87.3125) (width 0.508) (layer "F.Cu") (net 4) (tstamp 4a7404e2-515e-4741-bee4-acafbe88263f))
(segment (start 159.4485 87.3125) (end 158.5976 88.1634) (width 0.508) (layer "F.Cu") (net 4) (tstamp a127138d-73eb-42c7-b97b-9a4f0ac2db1a))
(via (at 140.1064 92.9132) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 38dfb7a5-1e98-4f86-9d36-129749519609))
(via (at 150.3934 100.457) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp ad3e0f89-f18f-4869-bdc9-894f1b995bfd))
(segment (start 157.9372 102.1588) (end 157.4546 102.1588) (width 0.508) (layer "B.Cu") (net 4) (tstamp 5d6983b9-f3c9-43a3-a41c-ee998e51869a))
(segment (start 137.16 84.582) (end 137.16 84.674) (width 0.508) (layer "F.Cu") (net 5) (tstamp 07f6d0f4-16c5-451c-95e6-f1bc449944d9))
(segment (start 145.427899 92.941899) (end 145.427899 95.743681) (width 0.381) (layer "F.Cu") (net 5) (tstamp 25d6d3d6-0473-4121-aeae-7297e50b3ec6))
(segment (start 150.727899 97.041899) (end 153.0264 99.3404) (width 0.381) (layer "F.Cu") (net 5) (tstamp 3492f3e6-2ce8-4bf9-bbe7-834e964652a2))
(segment (start 146.726117 97.041899) (end 150.727899 97.041899) (width 0.381) (layer "F.Cu") (net 5) (tstamp 8506414a-11cb-4989-a0e0-0f76b8b2bab6))
(segment (start 142.4264 89.9404) (end 145.427899 92.941899) (width 0.381) (layer "F.Cu") (net 5) (tstamp 915ef6d6-6e5d-44a3-8d9a-adbb5fe1b909))
(segment (start 145.427899 95.743681) (end 146.726117 97.041899) (width 0.381) (layer "F.Cu") (net 5) (tstamp ca4c6de6-d048-469d-b659-bc420aea43d0))
(segment (start 137.16 84.674) (end 142.4264 89.9404) (width 0.508) (layer "B.Cu") (net 5) (tstamp 25c1786d-c238-49b8-a6d6-a0be72d38b3d))
(segment (start 144.788401 92.278399) (end 142.4264 94.6404) (width 0.508) (layer "B.Cu") (net 6) (tstamp 72414416-65b3-480f-9adc-05b556a41794))
(segment (start 143.9164 84.709) (end 144.788401 85.581001) (width 0.508) (layer "B.Cu") (net 6) (tstamp b72eeaa6-79c9-4644-b919-2623c8a79226))
(segment (start 144.788401 85.581001) (end 144.788401 92.278399) (width 0.508) (layer "B.Cu") (net 6) (tstamp ce3901b3-5a8b-4a22-9108-58363649b088))
(segment (start 153.385246 102.5525) (end 156.083 99.854746) (width 0.6096) (layer "F.Cu") (net 7) (tstamp 0497e75d-d52c-40d4-a4a1-4ba5d5ef255d))
(segment (start 140.081 102.5525) (end 143.0274 102.5525) (width 0.6096) (layer "F.Cu") (net 7) (tstamp 0e430fa7-09f9-4f4d-8b08-9cfa1a7a9b09))
(segment (start 151.765 102.5525) (end 153.385246 102.5525) (width 0.6096) (layer "F.Cu") (net 7) (tstamp 155a2e83-3758-4e09-85ab-371a187c11cf))
(segment (start 136.906 99.3775) (end 137.0965 99.568) (width 0.6096) (layer "F.Cu") (net 7) (tstamp 7d848f6e-82cc-4316-a47c-bf3f5ab93f78))
(segment (start 156.083 99.854746) (end 156.083 96.8375) (width 0.6096) (layer "F.Cu") (net 7) (tstamp 828ca045-cf69-4146-90d2-d456ea1712a5))
(segment (start 143.0274 102.5525) (end 151.765 102.5525) (width 0.6096) (layer "F.Cu") (net 7) (tstamp 8fd2ad0c-865b-4569-9b6f-a423cbbac856))
(segment (start 156.083 96.8375) (end 156.083 87.249) (width 0.6096) (layer "F.Cu") (net 7) (tstamp 944c5ea3-e729-4ca1-92a5-125f2ac813ac))
(segment (start 136.906 97.282) (end 136.906 99.3775) (width 0.6096) (layer "F.Cu") (net 7) (tstamp a5c3b3f6-7ffa-4218-a84e-077076479178))
(segment (start 156.083 87.249) (end 156.083 86.487) (width 0.6096) (layer "F.Cu") (net 7) (tstamp c3350270-9fec-4d4b-9ca0-8b68125b2958))
(segment (start 140.9065 102.5525) (end 143.0274 102.5525) (width 0.6096) (layer "F.Cu") (net 7) (tstamp c88e7999-d6dc-4dfa-974e-d195e4adbe45))
(segment (start 137.0965 99.568) (end 140.081 102.5525) (width 0.6096) (layer "F.Cu") (net 7) (tstamp db7fdb7c-cf73-4d97-8bf1-fa0c13af1dc7))
(segment (start 156.083 86.487) (end 154.1145 84.5185) (width 0.6096) (layer "F.Cu") (net 7) (tstamp dbc95627-655f-4d2f-9893-195bbbfb4323))
(segment (start 154.710599 101.702401) (end 157.8737 98.5393) (width 0.381) (layer "B.Cu") (net 8) (tstamp 93972593-0b30-4330-b6d6-ed51e59bf312))
(segment (start 147.7264 99.3404) (end 150.088401 101.702401) (width 0.381) (layer "B.Cu") (net 8) (tstamp a165f346-98ca-4bac-8a96-863cd1b4c38e))
(segment (start 157.8737 98.5393) (end 157.8737 97.0788) (width 0.381) (layer "B.Cu") (net 8) (tstamp b3bb040b-3c5d-4b39-8b9f-22c6ddd48908))
(segment (start 142.4264 99.3404) (end 147.7264 99.3404) (width 0.381) (layer "B.Cu") (net 8) (tstamp bf5bb114-4a70-45e6-852a-3d7982baa278))
(segment (start 150.088401 101.702401) (end 154.710599 101.702401) (width 0.381) (layer "B.Cu") (net 8) (tstamp c160a7a8-0e84-4d1a-89e2-6d5a4add14ce))
(segment (start 157.8737 97.0788) (end 160.147 94.8055) (width 0.381) (layer "B.Cu") (net 8) (tstamp e4541df1-5c98-4a5d-b627-7004ee1b1d9f))
(segment (start 136.906 92.202) (end 136.906 94.742) (width 0.508) (layer "F.Cu") (net 9) (tstamp a53a4c54-d6cc-461d-8149-a95be7509e31))
(segment (start 138.515701 96.351701) (end 136.906 94.742) (width 0.508) (layer "B.Cu") (net 9) (tstamp 23d90a10-9dea-453b-9052-9be4935a1b12))
(segment (start 159.893 98.027398) (end 159.893 97.663) (width 0.6096) (layer "B.Cu") (net 9) (tstamp bb99cad4-3b9f-4d27-936c-988910b2b9bd))
(segment (start 142.000649 102.410411) (end 138.515701 98.925463) (width 0.508) (layer "B.Cu") (net 9) (tstamp c5116e07-1f4c-4db2-92e5-2a240f8d4dd5))
(segment (start 147.449389 102.410411) (end 155.145589 102.410411) (width 0.508) (layer "B.Cu") (net 9) (tstamp d3968445-6d56-4cf6-a237-8553399c486f))
(segment (start 138.515701 98.925463) (end 138.515701 96.351701) (width 0.508) (layer "B.Cu") (net 9) (tstamp d9e68e51-c2b0-4f1f-9e99-a68909bdef4c))
(segment (start 155.145589 102.410411) (end 159.893 97.663) (width 0.508) (layer "B.Cu") (net 9) (tstamp dc7090df-a2bb-4462-b2f1-1676114ee67f))
(segment (start 147.449389 102.410411) (end 142.000649 102.410411) (width 0.508) (layer "B.Cu") (net 9) (tstamp eb136799-2e1d-481f-ad60-5ba4883b9963))
(segment (start 138.096501 90.852501) (end 136.906 89.662) (width 0.381) (layer "B.Cu") (net 10) (tstamp 180bbf2b-ce1b-487e-bf6d-f0893131dadd))
(segment (start 160.147 92.668974) (end 155.877073 96.938901) (width 0.381) (layer "B.Cu") (net 10) (tstamp 6757bf5b-8ea1-4120-b1c2-c2ba57223002))
(segment (start 138.096501 93.712283) (end 138.096501 90.852501) (width 0.381) (layer "B.Cu") (net 10) (tstamp 95c8d1c5-97e5-4e61-8514-e5819c1941ac))
(segment (start 155.877073 96.938901) (end 141.323119 96.938901) (width 0.381) (layer "B.Cu") (net 10) (tstamp a2881fe7-71a4-4a8e-968c-2658da4b5ee1))
(segment (start 141.323119 96.938901) (end 138.096501 93.712283) (width 0.381) (layer "B.Cu") (net 10) (tstamp f4450cb5-1b5d-411b-8464-1676b4bdfbce))
(segment (start 160.147 92.2655) (end 160.147 92.668974) (width 0.381) (layer "B.Cu") (net 10) (tstamp f783d2b0-f28b-4bc6-b01c-ed78a2729c13))
(zone (net 4) (net_name "GND") (layer "F.Cu") (tstamp 735a23da-45db-454f-9aed-97ffa3ddd027) (hatch edge 0.508)
(connect_pads (clearance 0.254))
(min_thickness 0.254)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 152.527 83.185)
(xy 161.544 83.058)
(xy 161.544 103.505)
(xy 157.6705 103.505)
(xy 138.43 103.505)
(xy 135.636 103.505)
(xy 135.636 83.185)
(xy 142.367 83.185)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 158.453864 87.660143)
(xy 158.456137 87.670232)
(xy 158.531673 87.911266)
(xy 158.535564 87.920848)
(xy 158.649452 88.146308)
(xy 158.654855 88.155126)
(xy 158.804038 88.358958)
(xy 158.810809 88.366775)
(xy 158.988755 88.541031)
(xy 158.983556 88.544505)
(xy 158.966005 88.562056)
(xy 158.896077 88.666711)
(xy 158.886579 88.689642)
(xy 158.863237 88.80699)
(xy 158.862024 88.81931)
(xy 158.862024 90.63169)
(xy 158.863237 90.64401)
(xy 158.886579 90.761358)
(xy 158.896077 90.784289)
(xy 158.966005 90.888944)
(xy 158.983556 90.906495)
(xy 159.088211 90.976423)
(xy 159.111142 90.985921)
(xy 159.22849 91.009263)
(xy 159.24081 91.010476)
(xy 159.88496 91.010476)
(xy 159.707679 91.057978)
(xy 159.69684 91.061977)
(xy 159.494982 91.158258)
(xy 159.485052 91.164166)
(xy 159.304121 91.29562)
(xy 159.295436 91.303238)
(xy 159.141489 91.465462)
(xy 159.134336 91.474536)
(xy 159.012531 91.662099)
(xy 159.007152 91.672324)
(xy 158.921567 91.878944)
(xy 158.91814 91.889978)
(xy 158.871642 92.108735)
(xy 158.870284 92.120208)
(xy 158.86443 92.343774)
(xy 158.865186 92.355303)
(xy 158.900172 92.576195)
(xy 158.903016 92.587392)
(xy 158.977669 92.798208)
(xy 158.982506 92.8087)
(xy 159.094328 93.002381)
(xy 159.100996 93.011816)
(xy 159.246242 93.181876)
(xy 159.254517 93.189938)
(xy 159.428321 93.330682)
(xy 159.437927 93.3371)
(xy 159.634469 93.443814)
(xy 159.645084 93.448375)
(xy 159.857782 93.517484)
(xy 159.869051 93.520034)
(xy 159.979827 93.534618)
(xy 159.935089 93.538139)
(xy 159.923703 93.540095)
(xy 159.707679 93.597978)
(xy 159.69684 93.601977)
(xy 159.494982 93.698258)
(xy 159.485052 93.704166)
(xy 159.304121 93.83562)
(xy 159.295436 93.843238)
(xy 159.141489 94.005462)
(xy 159.134336 94.014536)
(xy 159.012531 94.202099)
(xy 159.007152 94.212324)
(xy 158.921567 94.418944)
(xy 158.91814 94.429978)
(xy 158.871642 94.648735)
(xy 158.870284 94.660208)
(xy 158.86443 94.883774)
(xy 158.865186 94.895303)
(xy 158.900172 95.116195)
(xy 158.903016 95.127392)
(xy 158.977669 95.338208)
(xy 158.982506 95.3487)
(xy 159.094328 95.542381)
(xy 159.100996 95.551816)
(xy 159.246242 95.721876)
(xy 159.254517 95.729938)
(xy 159.428321 95.870682)
(xy 159.437927 95.8771)
(xy 159.634469 95.983814)
(xy 159.645084 95.988375)
(xy 159.857782 96.057484)
(xy 159.869051 96.060034)
(xy 160.090781 96.089225)
(xy 160.102325 96.089679)
(xy 160.325663 96.077975)
(xy 160.337097 96.076317)
(xy 160.554561 96.024108)
(xy 160.565502 96.020394)
(xy 160.76981 95.92943)
(xy 160.77989 95.923785)
(xy 160.964201 95.797112)
(xy 160.973084 95.789724)
(xy 161.131224 95.631584)
(xy 161.138612 95.622701)
(xy 161.164001 95.58576)
(xy 161.164001 99.49644)
(xy 161.060053 99.316397)
(xy 160.936844 99.300177)
(xy 160.12621 100.110809)
(xy 160.12621 100.215191)
(xy 160.936844 101.025823)
(xy 161.060053 101.009603)
(xy 161.164001 100.82956)
(xy 161.164001 103.125)
(xy 159.214961 103.125)
(xy 159.236966 103.099144)
(xy 159.243001 103.090746)
(xy 159.373095 102.874231)
(xy 159.377677 102.864961)
(xy 159.470663 102.630106)
(xy 159.47367 102.620211)
(xy 159.525485 102.380553)
(xy 159.449836 102.2868)
(xy 156.427719 102.2868)
(xy 156.352375 102.373474)
(xy 156.371064 102.506444)
(xy 156.373337 102.516532)
(xy 156.448873 102.757566)
(xy 156.452764 102.767148)
(xy 156.566652 102.992608)
(xy 156.572055 103.001426)
(xy 156.662498 103.125)
(xy 153.774459 103.125)
(xy 153.785024 103.119617)
(xy 153.801069 103.107959)
(xy 153.940876 102.968152)
(xy 153.940881 102.968145)
(xy 154.969595 101.939431)
(xy 156.350931 101.939431)
(xy 156.426518 102.0308)
(xy 157.735391 102.0308)
(xy 157.8092 101.956991)
(xy 157.8092 100.647261)
(xy 158.0652 100.647261)
(xy 158.0652 101.956991)
(xy 158.139009 102.0308)
(xy 159.446834 102.0308)
(xy 159.522319 101.941791)
(xy 159.494374 101.772996)
(xy 159.491855 101.762966)
(xy 159.410453 101.52385)
(xy 159.40633 101.514366)
(xy 159.404685 101.511299)
(xy 159.515247 101.55154)
(xy 159.525874 101.554387)
(xy 159.762103 101.596041)
(xy 159.773064 101.597)
(xy 160.012936 101.597)
(xy 160.023897 101.596041)