-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlow_power_gsm-gprs.kicad_pcb
20412 lines (20367 loc) · 801 KB
/
low_power_gsm-gprs.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 20210424) (generator pcbnew)
(general
(thickness 4.445)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.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.44) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 2" (type "prepreg") (thickness 1.44) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 3" (type "core") (thickness 1.44) (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)
(aux_axis_origin 81 95)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(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 false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "Net-(C2-Pad1)")
(net 4 "V_INT")
(net 5 "+5V")
(net 6 "SIM_IO")
(net 7 "SIM_CLK")
(net 8 "SIM_RST")
(net 9 "VSIM")
(net 10 "Net-(D1-Pad1)")
(net 11 "Net-(D1-Pad2)")
(net 12 "Net-(J1-Pad1)")
(net 13 "unconnected-(J2-Pad6)")
(net 14 "+3V3")
(net 15 "unconnected-(J3-Pad3)")
(net 16 "unconnected-(J3-Pad5)")
(net 17 "Net-(J3-Pad8)")
(net 18 "unconnected-(J3-Pad7)")
(net 19 "Net-(J3-Pad10)")
(net 20 "unconnected-(J3-Pad11)")
(net 21 "unconnected-(J3-Pad12)")
(net 22 "unconnected-(J3-Pad13)")
(net 23 "unconnected-(J3-Pad15)")
(net 24 "unconnected-(J3-Pad16)")
(net 25 "unconnected-(J3-Pad17)")
(net 26 "unconnected-(J3-Pad18)")
(net 27 "unconnected-(J3-Pad19)")
(net 28 "unconnected-(J3-Pad21)")
(net 29 "unconnected-(J3-Pad22)")
(net 30 "unconnected-(J3-Pad23)")
(net 31 "unconnected-(J3-Pad24)")
(net 32 "unconnected-(J3-Pad26)")
(net 33 "unconnected-(J3-Pad27)")
(net 34 "unconnected-(J3-Pad28)")
(net 35 "unconnected-(J3-Pad29)")
(net 36 "unconnected-(J3-Pad31)")
(net 37 "unconnected-(J3-Pad32)")
(net 38 "unconnected-(J3-Pad33)")
(net 39 "unconnected-(J3-Pad35)")
(net 40 "unconnected-(J3-Pad36)")
(net 41 "Net-(J3-Pad38)")
(net 42 "unconnected-(J3-Pad37)")
(net 43 "Net-(J3-Pad40)")
(net 44 "unconnected-(J4-Pad4)")
(net 45 "USBD+")
(net 46 "USBD-")
(net 47 "RX")
(net 48 "TX")
(net 49 "VCC")
(net 50 "PWR_ON")
(net 51 "PWR_OFF")
(net 52 "Net-(R1-Pad2)")
(net 53 "Net-(R2-Pad2)")
(net 54 "Net-(R4-Pad2)")
(net 55 "unconnected-(U1-Pad2)")
(net 56 "unconnected-(U1-Pad6)")
(net 57 "unconnected-(U1-Pad7)")
(net 58 "unconnected-(U1-Pad8)")
(net 59 "unconnected-(U1-Pad9)")
(net 60 "unconnected-(U1-Pad10)")
(net 61 "unconnected-(U1-Pad11)")
(net 62 "unconnected-(U1-Pad17)")
(net 63 "unconnected-(U1-Pad19)")
(net 64 "unconnected-(U1-Pad21)")
(net 65 "unconnected-(U1-Pad23)")
(net 66 "unconnected-(U1-Pad24)")
(net 67 "unconnected-(U1-Pad25)")
(net 68 "unconnected-(U1-Pad26)")
(net 69 "unconnected-(U1-Pad27)")
(net 70 "unconnected-(U1-Pad28)")
(net 71 "unconnected-(U1-Pad29)")
(net 72 "unconnected-(U1-Pad31)")
(net 73 "unconnected-(U1-Pad33)")
(net 74 "unconnected-(U1-Pad34)")
(net 75 "unconnected-(U1-Pad35)")
(net 76 "unconnected-(U1-Pad36)")
(net 77 "unconnected-(U1-Pad37)")
(net 78 "unconnected-(U1-Pad42)")
(net 79 "unconnected-(U1-Pad44)")
(net 80 "unconnected-(U1-Pad45)")
(net 81 "unconnected-(U1-Pad46)")
(net 82 "unconnected-(U1-Pad47)")
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b40ec6)
(at 135.128 89.662 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060be0ab9")
(attr smd)
(fp_text reference "C4" (at -1.016 1.778 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ddde56d2-6e9d-4072-89f2-96516abe4f44)
)
(fp_text value "100n" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dba4527a-b56a-45e2-8a16-44dc57c3df41)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9f328a0f-2704-45dc-a67f-61be0fc6ba2a)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 337a4fea-9ba8-4169-8a28-97759f4ed722))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp d1805ceb-b5de-4ba0-a662-92146583e1ef))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1afd4578-7351-45f1-872d-b1dc72f2d553))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1e749598-bcf5-492c-a55a-bf812660c65c))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 34f723db-aafe-430f-b8c1-b5a8d940dc75))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 661e9062-7211-4432-9981-efe3924c770f))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 120c7648-a36f-4313-8829-1ad405e9ec6b))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 4b8839b7-a40a-4045-afe4-a6954a7a752e))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f179201d-f970-4661-9a3b-fbfff2d792af))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp f5bc7967-f492-4152-a6bf-8013e3647ab1))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pintype "passive") (tstamp bf4bb35d-0ecc-4276-93ee-d0d3ccef124e))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d78c210e-1dcb-4d3a-9f01-c158e268f20b))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b40f0a)
(at 95.504 74.041 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b544e8")
(attr smd)
(fp_text reference "C8" (at -2.413 -0.1016 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4cf56fe-afcc-41e2-bf9d-5cfec28731b1)
)
(fp_text value "100n" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f2c58fb-8578-415c-b764-ec0f73cc2b09)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1afc9d62-a272-4f5d-a05e-a7a81cf84f3d)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp b60569f6-b662-4a5c-99b3-c9efd92e8067))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp eea90f51-67f2-4370-8019-bffe6fb6f762))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1fd34f52-2d12-4bb1-84bc-aa241b74e626))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp b45f1f20-9e35-43ab-a70c-1d4806d8e80d))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp cfa31b88-a06e-42f2-9585-0279b1324516))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp fbc910b8-89aa-40fa-a746-0409695ff41e))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0a3a25c1-9e99-4524-81ab-6e5afe056f2c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 19a2fd81-6c47-4446-b5ac-29ddc1afcc71))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 65b63826-7f12-4219-92ec-520f8fa2098f))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ced3b0db-6439-4f46-8e2b-f83509f04ea4))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "VCC") (pintype "passive") (tstamp 32724378-6604-4e97-a65a-f731abdc26e5))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cdcdacf4-b003-445b-8db6-942dfc6c096d))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b40f2c)
(at 91.44 74.041 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b568e9")
(attr smd)
(fp_text reference "C10" (at 0.6096 -1.7018 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0970b89f-643a-4edb-8425-32c052c7f4bc)
)
(fp_text value "15p" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8a7db62-67d3-457f-984e-4f173eafd272)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f0c455c4-64df-4d88-84c1-bee864e78b16)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp b6bb037d-c921-43ca-a0bd-e25a9144b555))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp f8adebdd-a3ca-4835-aaf6-6ed84ba289a7))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 2afcb51c-c260-45b5-934c-ee3d2f2aa2fa))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 761edacb-4e0a-4368-8de0-0f9ad66c687b))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp becb6ea3-7d6a-4786-9276-228d239a37c7))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp dc74c75e-36fd-4c82-bc1c-54a39bfd9920))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 4affbfae-d085-42f6-8f7b-c35ddf6143a0))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 98c9bffd-32e2-4b19-8ec9-c1a182d86f11))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9bd82424-60c9-4877-b28b-a8ec8cecb480))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c6530b3f-2663-47e8-a54d-cc9f0f11026d))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "VCC") (pintype "passive") (tstamp c8410600-608c-490b-b574-3651687a52f9))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 8c30f099-6a6b-48a1-982a-e8a93388bc16))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-000060b40fa5)
(at 88.265 74.803 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b98451")
(attr smd)
(fp_text reference "D1" (at -2.413 -0.0508 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9b63f43-8daf-462f-85be-5655f2cd7090)
)
(fp_text value "LED" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a64a7fb9-7f4c-4ed5-af44-d88598dd00a3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c03ebc7d-0418-4c47-8ad3-4ebd0cbf7eed)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 066a633f-a496-4ecb-b463-c41842d2248a))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp a42cc1a2-f35b-4d7a-8927-3a41a1d85d21))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e3a21d0c-c814-4479-a4b1-68e36eb90c1f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2f7d26b9-140a-4df3-b596-61fc4d5e78e7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 545a93ec-1fda-45d8-a5de-ed34da27742f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8a3d0735-96a0-4d11-a2e7-ec2d38e4e3f2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cc91846f-78cf-4c06-89ba-4d7e72a5426a))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 611865b4-22d7-44e1-90eb-4ab01bcbd56d))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 7aa1f445-b9ba-465a-b74f-05374ae9de66))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7e7a27b7-25fa-4627-9044-e7ba90075808))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c756d346-7f70-4bc1-ba45-ea6293983e6a))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp c98e4dc1-8a6b-4748-a489-5775599d0c03))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 27c93282-2658-4185-8398-86879e333e21))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 09c1f844-f10b-47e0-990c-87ad7b3b9232))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "muonpi-kicad-library:SMA_Samtec_SMA-J-P-X-ST-EM1_EdgeMount" (layer "F.Cu")
(tedit 5DAA3454) (tstamp 00000000-0000-0000-0000-000060b40fc8)
(at 83.312 82.677 -90)
(descr "Connector SMA, 0Hz to 20GHz, 50Ohm, Edge Mount (http://suddendocs.samtec.com/prints/sma-j-p-x-st-em1-mkt.pdf)")
(tags "SMA Straight Samtec Edge Mount")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060bc3720")
(attr smd)
(fp_text reference "J1" (at 1.016 -3.048) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a62c5c9f-d634-4ee2-8710-fbdd6b0cacf5)
)
(fp_text value "Conn_Coaxial" (at 5 6 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 667e9165-5a36-4e8a-a57e-8adafd5e8273)
)
(fp_text user "PCB Edge" (at 0 2.6 90) (layer "Dwgs.User") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp ddec17a2-6a3b-4206-8026-cdf5a3f23229)
)
(fp_text user "Board Thickness: 1.57mm" (at 0 -5.45 90) (layer "Cmts.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a27ee1a-56a4-45f8-9c5f-160798bce232)
)
(fp_text user "${REFERENCE}" (at 4.79 0 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 987a6546-6094-437f-8c2e-0e8f8544b002)
)
(fp_line (start 0.84 2) (end 1.95 2) (layer "F.SilkS") (width 0.12) (tstamp 0e82ebf3-e267-4162-a2cc-64563ae2e930))
(fp_line (start 0.84 -1.71) (end 1.95 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 0ebb8e40-10ca-4833-bd22-ce33d3e28e97))
(fp_line (start 0 -2.26) (end 0.25 -2.76) (layer "F.SilkS") (width 0.12) (tstamp 1f7aef86-589e-4e5e-b7c0-d26eb7eb8b77))
(fp_line (start 0.25 -2.76) (end -0.25 -2.76) (layer "F.SilkS") (width 0.12) (tstamp c15d0a4f-a22d-4477-b268-f569585406f5))
(fp_line (start -1.95 2) (end -0.84 2) (layer "F.SilkS") (width 0.12) (tstamp c1db7f55-c699-44fb-b91e-3fe036880f7e))
(fp_line (start -0.25 -2.76) (end 0 -2.26) (layer "F.SilkS") (width 0.12) (tstamp edd94196-ce68-4051-b045-c99b811fd653))
(fp_line (start -1.95 -1.71) (end -0.84 -1.71) (layer "F.SilkS") (width 0.12) (tstamp fa0c1a61-7715-41c4-ba99-598b777f619c))
(fp_line (start 4.1 2.1) (end -4.1 2.1) (layer "Dwgs.User") (width 0.1) (tstamp 433f30c0-b6c9-4e98-ac0b-ff47059eb5ce))
(fp_line (start -4 2.6) (end -4 -2.6) (layer "B.CrtYd") (width 0.05) (tstamp 2dfd428c-1a78-4899-8746-329b006d2818))
(fp_line (start -3.68 2.6) (end -4 2.6) (layer "B.CrtYd") (width 0.05) (tstamp 3722a656-5c15-4da3-9ffa-0e146b04a1b4))
(fp_line (start -3.68 12.12) (end -3.68 2.6) (layer "B.CrtYd") (width 0.05) (tstamp 3ca010a2-6591-496a-b8ab-422e972dd40d))
(fp_line (start 3.68 12.12) (end -3.68 12.12) (layer "B.CrtYd") (width 0.05) (tstamp 5bdf358e-d140-46a2-90ef-94cb5bd707c4))
(fp_line (start 3.68 2.6) (end 3.68 12.12) (layer "B.CrtYd") (width 0.05) (tstamp 965fbc9d-e5c5-48ce-afa6-4b9be3b3a64c))
(fp_line (start 4 2.6) (end 4 -2.6) (layer "B.CrtYd") (width 0.05) (tstamp a4be4f7a-cc9a-4a4e-a9b0-2d78fda9c49a))
(fp_line (start -4 -2.6) (end 4 -2.6) (layer "B.CrtYd") (width 0.05) (tstamp cc80550f-beb6-4607-9b40-95c29e626d71))
(fp_line (start 4 2.6) (end 3.68 2.6) (layer "B.CrtYd") (width 0.05) (tstamp d3e7b535-510a-402f-ae0e-bcbe71d6d4b0))
(fp_line (start 3.68 2.6) (end 4 2.6) (layer "F.CrtYd") (width 0.05) (tstamp 29fa7d8e-f2d7-4d27-89d2-c875d64a47f0))
(fp_line (start -3.68 2.6) (end -4 2.6) (layer "F.CrtYd") (width 0.05) (tstamp 2a9fdcad-2f3f-4b8c-bf9e-e5be32d6761c))
(fp_line (start 4 2.6) (end 4 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp 2bd58895-f010-49bb-9715-ab57c4d0f25c))
(fp_line (start -4 -2.6) (end 4 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp 778c4224-997a-41c7-9c08-a1573133a7c3))
(fp_line (start 3.68 12.12) (end -3.68 12.12) (layer "F.CrtYd") (width 0.05) (tstamp a0225959-1e72-4724-9da0-a0af39408b77))
(fp_line (start 3.68 2.6) (end 3.68 12.12) (layer "F.CrtYd") (width 0.05) (tstamp d24261de-a880-4374-b71b-34582bce87dc))
(fp_line (start -3.68 12.12) (end -3.68 2.6) (layer "F.CrtYd") (width 0.05) (tstamp dddbdd15-67cc-4c41-8533-e98ad9f58fe0))
(fp_line (start -4 2.6) (end -4 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp f803867b-cba5-4882-b309-d29b1d132362))
(fp_line (start -2.365 -1.71) (end -3.175 -1.71) (layer "F.Fab") (width 0.1) (tstamp 0d02c092-a0f9-4b62-a03e-54ee6e3dcd68))
(fp_line (start -3.175 -1.71) (end -3.175 11.62) (layer "F.Fab") (width 0.1) (tstamp 7466c617-d460-4f8a-b987-c18f8e2c2385))
(fp_line (start 0 3.1) (end -0.64 2.1) (layer "F.Fab") (width 0.1) (tstamp 7bdb2bb3-14f9-46d5-adc0-6f03deba8093))
(fp_line (start 2.365 -1.71) (end 2.365 2.1) (layer "F.Fab") (width 0.1) (tstamp 7f51ae4b-7694-42ae-abfc-e1eff00313ab))
(fp_line (start 0.64 2.1) (end 0 3.1) (layer "F.Fab") (width 0.1) (tstamp abe693b0-9555-4d88-b7ed-55dce7d15ab1))
(fp_line (start 3.175 -1.71) (end 3.175 11.62) (layer "F.Fab") (width 0.1) (tstamp cfa4527e-feca-45ac-9dd3-4439c63552b2))
(fp_line (start 3.175 -1.71) (end 2.365 -1.71) (layer "F.Fab") (width 0.1) (tstamp def289bd-7baf-4cb0-a4ee-681860d387b7))
(fp_line (start 2.365 2.1) (end -2.365 2.1) (layer "F.Fab") (width 0.1) (tstamp e7e8d3ea-98e3-4974-b2ef-2792fe7548f4))
(fp_line (start -2.365 2.1) (end -2.365 -1.71) (layer "F.Fab") (width 0.1) (tstamp f09874c9-c684-47ce-a180-7e0611699a47))
(fp_line (start 3.165 11.62) (end -3.165 11.62) (layer "F.Fab") (width 0.1) (tstamp f44e10a7-90a4-459b-9e5d-73b4c73ff426))
(pad "1" smd rect locked (at 0 0.2 270) (size 1.27 3.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(J1-Pad1)") (pinfunction "In") (pintype "passive") (tstamp 9cc87e6a-d193-4dee-862d-cba65b5f51d0))
(pad "2" smd rect locked (at 2.825 0 270) (size 1.35 4.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 4b5721b7-098c-45ab-a65c-22d8df3a880c))
(pad "2" smd rect locked (at 2.825 0 270) (size 1.35 4.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 712235da-8ed0-43b3-b776-7020f9b0e8af))
(pad "2" smd rect locked (at -2.825 0 270) (size 1.35 4.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp b94ce63a-79c6-499e-a7ee-c3d5c9312ae5))
(pad "2" smd rect locked (at -2.825 0 270) (size 1.35 4.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp d1203055-48ca-40a9-a674-90ca0180a15e))
(model "${KISYS3DMOD}/Connector_Coaxial.3dshapes/SMA_Samtec_SMA-J-P-X-ST-EM1_EdgeMount.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "muonpi-kicad-library:SIM-SMD_SMO-1512" (layer "F.Cu")
(tedit 60B6A7D5) (tstamp 00000000-0000-0000-0000-000060b40fd4)
(at 124.968 78.486 180)
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b43d6f")
(attr through_hole)
(fp_text reference "J2" (at -3.683 1.524) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ded620c-565a-4a8c-8c44-d5e04da0d580)
)
(fp_text value "SIM_Card" (at 3.149 -1.85) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74387e6f-5189-45c4-9798-796e8b55c04f)
)
(fp_line (start -4.6 -15.45) (end 4.6 -15.45) (layer "F.CrtYd") (width 0.12) (tstamp 1b317e86-5952-40bf-96ee-db591b010ab3))
(fp_line (start 7.33 0) (end 7.33 -16.3) (layer "F.CrtYd") (width 0.12) (tstamp 585943cd-6388-4b22-9013-735a1659267a))
(fp_line (start 4.6 -15.45) (end 4.6 -16.3) (layer "F.CrtYd") (width 0.12) (tstamp 8376fc1c-7ab7-4e58-9e9e-e341391bbae4))
(fp_line (start -7.33 -16.3) (end -4.6 -16.3) (layer "F.CrtYd") (width 0.12) (tstamp 8d999f83-1013-46ca-8925-78738bf0f496))
(fp_line (start -7.33 0) (end -7.33 -16.3) (layer "F.CrtYd") (width 0.12) (tstamp 907ab1d5-c297-4463-b244-daef65a10a48))
(fp_line (start -4.6 -15.45) (end -4.6 -16.3) (layer "F.CrtYd") (width 0.12) (tstamp 9ff58c42-7a61-4ca3-8a71-c85404122f46))
(fp_line (start 4.6 -16.3) (end 7.33 -16.3) (layer "F.CrtYd") (width 0.12) (tstamp c2001937-73e7-45b8-8a8f-3cbab9dddda7))
(fp_line (start -7.33 0) (end 7.33 0) (layer "F.CrtYd") (width 0.12) (tstamp c549a361-4d35-44d5-a9b1-47f05256d8a5))
(pad "1" smd rect locked (at -1.905 0 180) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "VSIM") (pinfunction "VCC") (tstamp bedfb487-3037-4c96-977a-115fb36de69c))
(pad "2" smd rect locked (at 0.635 0 180) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "SIM_RST") (pinfunction "RST") (tstamp 2199a4a3-280c-475e-b9ce-37ea8bca7670))
(pad "3" smd rect locked (at 3.175 0 180) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "SIM_CLK") (pinfunction "CLK") (tstamp c7cdfeba-821a-45c9-a0d8-d0ecb78cfecb))
(pad "5" smd rect locked (at -3.175 0 180) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (tstamp 26dd840f-11e4-47ca-969c-103796f2b548))
(pad "6" smd rect locked (at -0.635 0 180) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "unconnected-(J2-Pad6)") (pinfunction "VPP") (tstamp 97d9baee-c9e9-41fd-9d12-849edc2eaef4))
(pad "7" smd rect locked (at 1.905 0 180) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "SIM_IO") (pinfunction "I/O") (tstamp 7ca673df-32b3-49c1-bd33-5284902d554e))
(pad "8" smd rect locked (at -6.926 -10.85 180) (size 1.5 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (tstamp cb6ee8b7-27d0-46d6-b56c-53eacf41e347))
(pad "9" smd rect locked (at 7.474 -10.85 180) (size 1.5 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (tstamp aeafdc31-7118-4d5a-84a4-173db27cf55b))
)
(footprint "muonpi-kicad-library:PinSocket_2x20_P2.54mm_Vertical" (layer "F.Cu")
(tedit 60B62F8B) (tstamp 00000000-0000-0000-0000-000060b4100d)
(at 113.6396 68.7705 90)
(descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x20 2.54mm double row")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060c7ca54")
(attr through_hole)
(fp_text reference "J3" (at -3.3655 -9.3726 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8c67dd7-4b17-4993-b1c0-44d741bf3df0)
)
(fp_text value "Conn_02x20_Odd_Even" (at -1.27 51.03 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 753e030d-bcdf-4889-a5a7-24c15848d60c)
)
(fp_text user "${REFERENCE}" (at -1.27 24.13) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1023dd6-2b8d-41d6-8c98-631930a53fae)
)
(fp_line (start 2.54 -25.4) (end 2.6 25.46) (layer "F.SilkS") (width 0.12) (tstamp 797e01d4-0312-4093-93d3-4e4f459b512a))
(fp_line (start -2.6 25.46) (end 2.6 25.46) (layer "F.SilkS") (width 0.12) (tstamp b75641bd-7658-4e9d-bab5-38b33e08a13b))
(fp_line (start -2.6 -25.46) (end -2.6 25.46) (layer "F.SilkS") (width 0.12) (tstamp c1f8ba50-e286-4f73-8d53-20f85680a992))
(fp_line (start -2.6 -25.46) (end 2.54 -25.46) (layer "F.SilkS") (width 0.12) (tstamp c54c0705-037d-49bf-b379-0bfe742cfba3))
(fp_line (start -2.794 25.654) (end -2.772 -25.654) (layer "F.CrtYd") (width 0.05) (tstamp 3a9e9588-b849-4f83-94f0-10c5d62bb594))
(fp_line (start 2.794 25.654) (end -2.794 25.654) (layer "F.CrtYd") (width 0.05) (tstamp 55a449e4-aac1-4c8c-b0bf-e48891117859))
(fp_line (start 2.794 -25.654) (end 2.794 25.654) (layer "F.CrtYd") (width 0.05) (tstamp 5e53fb31-05e7-4936-9e50-0f1d20449ffa))
(fp_line (start -2.772 -25.654) (end 2.794 -25.654) (layer "F.CrtYd") (width 0.05) (tstamp caa540c4-82f9-481e-91a6-eb0b320dfc04))
(fp_line (start 2.54 -25.4) (end 2.54 25.4) (layer "F.Fab") (width 0.1) (tstamp 35800669-ba05-4ef2-a604-d66af806ca74))
(fp_line (start -2.54 25.4) (end -2.54 -25.4) (layer "F.Fab") (width 0.1) (tstamp 35b218b1-a161-4cee-98d8-34c4216f6bdf))
(fp_line (start -2.54 -25.4) (end 2.54 -25.4) (layer "F.Fab") (width 0.1) (tstamp 3cb4d307-fb4d-4793-aaeb-a6287f435882))
(fp_line (start 2.54 25.4) (end -2.54 25.4) (layer "F.Fab") (width 0.1) (tstamp 6c4511bb-447b-41fe-81cf-be56b2ed4324))
(pad "1" thru_hole rect locked (at -1.27 -24.13 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp b48fd548-e108-4afe-a3c3-ef17ef98862f))
(pad "2" thru_hole circle locked (at 1.27 -24.13 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp 880f046a-01df-4125-b60d-55dc3889a697))
(pad "3" thru_hole oval locked (at -1.27 -21.59 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "unconnected-(J3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 620d412c-008b-41fa-a007-85edc2cd6b7b))
(pad "4" thru_hole oval locked (at 1.27 -21.59 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp e1df85a6-0330-4c27-a33f-5b9b71d284dd))
(pad "5" thru_hole oval locked (at -1.27 -19.05 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "unconnected-(J3-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 18c9d853-1453-4bb5-972d-dcf1bdf11b03))
(pad "6" thru_hole oval locked (at 1.27 -19.05 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 8d657887-de29-43c2-b0b4-975f1ee6d370))
(pad "7" thru_hole oval locked (at -1.27 -16.51 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "unconnected-(J3-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 2dea77e1-d6ec-4d53-8ce5-a3437587c58a))
(pad "8" thru_hole oval locked (at 1.27 -16.51 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(J3-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 23698283-c743-4b84-88c5-fd6d6f745e25))
(pad "9" thru_hole oval locked (at -1.27 -13.97 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 7984d107-a1e5-4822-b36a-4543f8bb8f99))
(pad "10" thru_hole oval locked (at 1.27 -13.97 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "Net-(J3-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 79f13c19-3e7c-4f26-a741-d5dc12d92d74))
(pad "11" thru_hole oval locked (at -1.27 -11.43 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "unconnected-(J3-Pad11)") (pinfunction "Pin_11") (pintype "passive+no_connect") (tstamp 2cbe5036-93cb-4ccd-a2cf-d66123f20880))
(pad "12" thru_hole oval locked (at 1.27 -11.43 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "unconnected-(J3-Pad12)") (pinfunction "Pin_12") (pintype "passive+no_connect") (tstamp 4dd41e9d-7f99-43f6-a8ad-aee323e75c76))
(pad "13" thru_hole oval locked (at -1.27 -8.89 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "unconnected-(J3-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp a53c4efe-c98a-4851-a2a7-dbbd17252558))
(pad "14" thru_hole oval locked (at 1.27 -8.89 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp bdcae868-3df8-48e7-884c-46a435c07467))
(pad "15" thru_hole oval locked (at -1.27 -6.35 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "unconnected-(J3-Pad15)") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp 5e6ba7b6-082a-4ddd-84ba-c35ac2639215))
(pad "16" thru_hole oval locked (at 1.27 -6.35 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "unconnected-(J3-Pad16)") (pinfunction "Pin_16") (pintype "passive+no_connect") (tstamp f08fa7f4-635c-4cc9-8c6d-36555b80334b))
(pad "17" thru_hole oval locked (at -1.27 -3.81 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "unconnected-(J3-Pad17)") (pinfunction "Pin_17") (pintype "passive+no_connect") (tstamp e773ec12-2dbc-4cf1-8508-1fee4633a511))
(pad "18" thru_hole oval locked (at 1.27 -3.81 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "unconnected-(J3-Pad18)") (pinfunction "Pin_18") (pintype "passive+no_connect") (tstamp b427c042-e1e2-4b51-9052-d8143dd3041f))
(pad "19" thru_hole oval locked (at -1.27 -1.27 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "unconnected-(J3-Pad19)") (pinfunction "Pin_19") (pintype "passive+no_connect") (tstamp f44e94fe-de34-4f6c-af40-503787265b60))
(pad "20" thru_hole oval locked (at 1.27 -1.27 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_20") (pintype "passive") (tstamp e016a7bf-b6d9-4b5d-ae9f-3e8334e77559))
(pad "21" thru_hole oval locked (at -1.27 1.27 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "unconnected-(J3-Pad21)") (pinfunction "Pin_21") (pintype "passive+no_connect") (tstamp 6c25ded1-93d2-4759-b432-f016dcbe6216))
(pad "22" thru_hole oval locked (at 1.27 1.27 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "unconnected-(J3-Pad22)") (pinfunction "Pin_22") (pintype "passive+no_connect") (tstamp 0c0ea62c-8cfc-4120-928c-53f86cd22ce9))
(pad "23" thru_hole oval locked (at -1.27 3.81 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "unconnected-(J3-Pad23)") (pinfunction "Pin_23") (pintype "passive+no_connect") (tstamp d5eb2fac-f99a-4312-a1a0-431a654c5c82))
(pad "24" thru_hole oval locked (at 1.27 3.81 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "unconnected-(J3-Pad24)") (pinfunction "Pin_24") (pintype "passive+no_connect") (tstamp 19a87ee1-e186-4343-99c9-379adcb92c7d))
(pad "25" thru_hole oval locked (at -1.27 6.35 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_25") (pintype "passive") (tstamp 700fd21d-5565-4dc5-a1cd-0db4e16fc9a1))
(pad "26" thru_hole oval locked (at 1.27 6.35 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "unconnected-(J3-Pad26)") (pinfunction "Pin_26") (pintype "passive+no_connect") (tstamp dec0a048-bbb8-4ee4-872e-059df5349aab))
(pad "27" thru_hole oval locked (at -1.27 8.89 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "unconnected-(J3-Pad27)") (pinfunction "Pin_27") (pintype "passive+no_connect") (tstamp 5cad548a-004b-48ff-a4f0-f1f052e4c6a6))
(pad "28" thru_hole oval locked (at 1.27 8.89 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "unconnected-(J3-Pad28)") (pinfunction "Pin_28") (pintype "passive+no_connect") (tstamp e353245f-eabe-45a3-998a-191b2de3166e))
(pad "29" thru_hole oval locked (at -1.27 11.43 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "unconnected-(J3-Pad29)") (pinfunction "Pin_29") (pintype "passive+no_connect") (tstamp 6da49814-a36f-4299-ba0a-56a584e56b2e))
(pad "30" thru_hole oval locked (at 1.27 11.43 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_30") (pintype "passive") (tstamp 5a381d26-b142-4c66-820f-3d72c3f54628))
(pad "31" thru_hole oval locked (at -1.27 13.97 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "unconnected-(J3-Pad31)") (pinfunction "Pin_31") (pintype "passive+no_connect") (tstamp 254e7528-b950-4fa7-be3d-899cadf7aebf))
(pad "32" thru_hole oval locked (at 1.27 13.97 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "unconnected-(J3-Pad32)") (pinfunction "Pin_32") (pintype "passive+no_connect") (tstamp d4a4343f-9af8-4772-8c99-fc2e4df7a43b))
(pad "33" thru_hole oval locked (at -1.27 16.51 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "unconnected-(J3-Pad33)") (pinfunction "Pin_33") (pintype "passive+no_connect") (tstamp 5973ac59-f5a9-4167-84e4-67687cdfe5f3))
(pad "34" thru_hole oval locked (at 1.27 16.51 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_34") (pintype "passive") (tstamp d74d4a95-5863-4322-be89-b9fb41e74e47))
(pad "35" thru_hole oval locked (at -1.27 19.05 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "unconnected-(J3-Pad35)") (pinfunction "Pin_35") (pintype "passive+no_connect") (tstamp d18172f0-2800-4b7e-ad45-854bf03afb75))
(pad "36" thru_hole oval locked (at 1.27 19.05 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 "unconnected-(J3-Pad36)") (pinfunction "Pin_36") (pintype "passive+no_connect") (tstamp bc95fd79-5af5-45a0-9439-6ec0d450d389))
(pad "37" thru_hole oval locked (at -1.27 21.59 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 "unconnected-(J3-Pad37)") (pinfunction "Pin_37") (pintype "passive+no_connect") (tstamp 67fc9168-3bdb-49df-89bd-1603cda5dcc8))
(pad "38" thru_hole oval locked (at 1.27 21.59 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 41 "Net-(J3-Pad38)") (pinfunction "Pin_38") (pintype "passive") (tstamp c3de19c2-0bf0-46a2-b021-9bb479bb8ecc))
(pad "39" thru_hole oval locked (at -1.27 24.13 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_39") (pintype "passive") (tstamp f93c8441-96b9-43e1-b75d-a5493f46fd02))
(pad "40" thru_hole oval locked (at 1.27 24.13 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 "Net-(J3-Pad40)") (pinfunction "Pin_40") (pintype "passive") (tstamp dfb3560d-00f8-4218-b921-cc171cfd1127))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x20_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060b41078)
(at 121.412 73.279 -90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060dc4ce1")
(attr smd)
(fp_text reference "Q1" (at 1.651 -2.794 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd724896-f09e-4cfa-856c-ce1b59cb293a)
)
(fp_text value "2N7002" (at 0 2.5 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ee63a29-04eb-4f0b-83f0-3325ebf5be18)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 97435fba-9309-4a05-be3d-28c06e205d65)
)
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 6f46f241-4e75-456f-939b-c4df2b90ff67))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 72764a60-c18e-4b07-a1ce-dd8c4c775c4f))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp ced143bc-451e-464a-b071-37f1283db72e))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp dfe583af-3ef5-4de7-bea4-2b2ac3916bc2))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp a03d80b5-48db-428f-8790-f3e3cc29419c))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp e4d8e5fc-6996-4724-af05-6a71ccaabf18))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp e836e48d-46bd-4e4f-bbc8-c7c3e9473b44))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp f38f6448-13af-4595-9964-dba624a5ce8e))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 24d86fab-53cc-4385-974b-f4b83169a316))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 357db38f-60d8-40e4-8164-0912e642bc8d))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 59dbcc0f-a29d-4184-a4a2-91eaf2774b86))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp b93a8479-4de7-4ff8-8fd2-3abbfe95c46f))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp f70e2ce2-7dee-43ca-a4be-7b47323fa5ba))
(pad "1" smd rect locked (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "Net-(J3-Pad38)") (pinfunction "G") (pintype "input") (tstamp 4d0e66aa-83a6-47af-bcea-2a24423ceed5))
(pad "2" smd rect locked (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 4ca0d775-ca68-4a1b-af2b-15d48f4f5bae))
(pad "3" smd rect locked (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "PWR_ON") (pinfunction "D") (pintype "passive") (tstamp 9c16432e-1706-440e-9494-a4865b767e84))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060b4108d)
(at 117.729 73.279 -90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060dcce38")
(attr smd)
(fp_text reference "Q2" (at 2.413 0.635 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d2bd5d0-6da4-4ad0-971d-54613c0a92cd)
)
(fp_text value "2N7002" (at 0 2.5 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c488e51-1f76-42da-9a23-b92ab82d651f)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 0f2cf8b9-1eb1-4feb-843a-75a72ef455bd)
)
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 102ba09e-01a3-456e-bdbb-ddfc5c4429ec))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 65307edc-d32a-4b55-a347-b8cc05326079))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 6f3eebfb-15ac-489f-9c8a-2f204b270c55))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp fa849789-de7f-443e-93d7-188988655d47))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 31b2e664-ad68-4830-9e1b-4a3cadef58ea))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3d050e05-f184-48ea-8f9f-98f46ff2c6ca))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 949a8182-7871-4e9b-b350-654ffdca572d))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp bf4b24bd-d6c2-4fc8-9c1e-ef327c6ba85f))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 74f39f24-22a7-48e0-9e8f-4ca186aa9ddf))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 8f830a7a-3f97-41dc-89ef-d4b01088881c))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp ac5df56c-e3fb-4910-b147-c0467b4c2122))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp b21ed68c-610c-4677-8480-1dbc3c1d15bf))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp cc4b66c6-3cc8-4cf7-b190-d60165ca29f0))
(pad "1" smd rect locked (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(J3-Pad40)") (pinfunction "G") (pintype "input") (tstamp 8441d1dc-546a-461c-a788-8f0d68db41e6))
(pad "2" smd rect locked (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 2079467d-5cfd-490f-96a1-7b2a163c03b8))
(pad "3" smd rect locked (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "PWR_OFF") (pinfunction "D") (pintype "passive") (tstamp 9205ef48-b531-4530-8f48-2010b0624b03))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b410d1)
(at 133.35 73.3552 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b40a1e")
(attr smd)
(fp_text reference "R4" (at 2.4384 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c46755b-2cbb-441e-a5d8-a0115c9b045e)
)
(fp_text value "27k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9f6ce1f-d5e8-4c35-a695-1911d8b880fb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 06eeea92-28c9-41c6-bd62-2b47500ac90b)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 95deb071-efbb-4653-ac65-e687643768d0))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp c8da9c71-c0b7-46a9-8bd5-c62dec3fb805))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 79c6d465-2878-460a-a3e9-7b69fa7a329b))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 927d010a-12ed-4a2d-8d78-83f7f76040d6))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 95f7ed80-faa6-408a-b2cf-152dcdb1328b))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp bb6a3003-5335-45f9-bb23-3d1096129911))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 182cda8a-2f39-4680-b7f2-0a8e2930d19e))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5204180c-fc5f-48e5-9a26-1f0617a664ae))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5b77dd7c-1468-4213-bd94-2a40fb081a98))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 7d605cf0-44d3-4544-91eb-0529fc145786))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 49 "VCC") (tstamp 2febf78e-fab4-42b3-87d4-287234a3e9f2))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 54 "Net-(R4-Pad2)") (tstamp b8b9ca52-8321-4e90-b906-c74a7508fd7c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b410e2)
(at 131.3942 75.184 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b411c5")
(attr smd)
(fp_text reference "R5" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba662e8c-be91-43dd-864b-8725ec117d13)
)
(fp_text value "4.7k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9503fa32-3838-41c5-93df-86f691b7f88c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 118f6503-a721-4cc1-8f0e-83993bdef14c)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 026117ca-2e03-4c8c-ac2d-c7d9f754156f))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 036ef952-77fd-4d4a-8613-0770d59225b7))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0edcd9f4-b486-4d69-8c9a-27ac616763de))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 229c7a65-7554-4d0f-b2e5-5e239c935277))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 45fbb386-0471-4b65-83af-31cad5f8b777))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4e02e214-8417-44c8-9b42-a05e1e42570e))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 117a3735-e151-4529-b073-655ac9b90e01))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 129460b8-c9ea-43d1-aa07-48130903328a))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 62fd229d-65b0-4c8f-ba12-f2588e5bce01))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d9aa4bad-f302-48ae-821c-dd262e1f7e12))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 54 "Net-(R4-Pad2)") (tstamp 5af3ba6d-ad8c-4e69-bac7-dc78a8a2cd1b))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 2 "GND") (tstamp 2aaea8a3-b5d9-46a0-a9d4-ff0bfa0352e8))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b41104)
(at 86.36 74.93 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b996b1")
(attr smd)
(fp_text reference "R7" (at 0 1.524 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f61e7f2e-63f4-4efd-a3d0-4cedab73dd2f)
)
(fp_text value "680" (at 0 1.65 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5c24457-0afd-47ab-be0a-ff0d28431d20)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 71aa8a58-4fb1-480c-a6c0-b9de33d0c8fd)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 69124422-a983-426b-a83b-ccc7a6a2c618))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp f6e43549-5273-4351-aeee-df2732b99872))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 05170385-5a09-49f0-8ccc-36227491d872))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 50954f64-9756-45b8-85c9-1f2bba6f9662))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7569af5c-8e17-4108-b538-acbc3d3c963d))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d065f9e2-a1ca-4886-acc0-a5580899f715))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a0e113eb-a53c-4766-8cf2-e5111ed0c595))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp a4789691-39b1-4030-b14f-eed19e93a7e4))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bfa6a13a-4eea-439a-baad-971f5dc3a967))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp d709b9b1-5319-45fa-a93d-0bb5864df1ed))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 10 "Net-(D1-Pad1)") (pintype "passive") (tstamp 5ce824aa-b598-488d-914e-ad1352f68c85))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 2 "GND") (pintype "passive") (tstamp 7bd6de64-3dd7-413c-b9d3-15a04931d059))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b41115)
(at 113.919 74.5236)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060da06ac")
(attr smd)
(fp_text reference "R12" (at -3.175 -0.1016) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd196e5f-e098-4f60-bb20-0a2450afb6c4)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d22a616-75c6-454c-be6d-ea16b9d2f89c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 27dfb080-b8c7-4492-8f9a-59f790439622)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6ff06098-b353-41cc-b8e0-b564fe6f10a8))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp df30fbbf-20cd-45dd-8a5e-ddeeb9556581))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1611e5a2-0418-4b69-bdf2-63b7195e5051))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5fc84c82-48b2-426d-8335-a0869b3c8285))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 983dd8b8-f7f0-4dad-8bcb-fa00bf808146))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp eace9dd3-1cf3-44d6-b04d-7dcbb9e25276))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 0a0c0fdc-c9ad-455a-ab5a-2ff7f327f829))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 48f98085-b1e3-4905-a469-8af532a9f8fb))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7381670f-83b3-4105-b67c-18515adf9f57))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9bcc7257-3c79-4b98-ba13-f2fbd55bd972))
(pad "1" smd roundrect locked (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 14 "+3V3") (pintype "passive") (tstamp 595c6139-3259-4412-b2cb-dda6584e4e44))
(pad "2" smd roundrect locked (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 41 "Net-(J3-Pad38)") (pintype "passive") (tstamp bf3672fc-74ac-4447-b3b2-10e559487d12))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b41126)
(at 113.919 72.5678)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060da23e1")
(attr smd)
(fp_text reference "R13" (at -3.175 -0.0508) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57e03eed-15ab-4ace-bc93-c17caeb308a2)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b30e325e-98be-430f-9e7e-6008ed345a55)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f45568cc-1dac-4ee1-9a94-1ee141fa5dc2)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 489cc242-e6b9-4b2e-ab02-39c8f24856ab))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp dbea3b0c-1447-46ac-83ab-32d556349ff5))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6671fabc-e33e-4ec1-9be6-e5e0b7e2add4))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 78ea7d27-13f8-4d89-95cc-7358de08f6d2))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e6c10504-3c87-43ee-a3bc-50e6ed30fdf1))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ef2f61f1-10f8-48ff-97f6-24a7a53f7727))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b36b7d54-da05-47cd-a7ec-70e9a26a5515))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp b9293383-5aff-44a0-8ea8-3db63827af16))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d344c50d-8455-42b0-8b27-3fbe06599bb5))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp edac4e32-2e8e-4a40-b726-84bbd3635cb2))
(pad "1" smd roundrect locked (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 14 "+3V3") (pintype "passive") (tstamp 770cea82-ac4a-47b4-a463-e4d6d116f8a3))
(pad "2" smd roundrect locked (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 43 "Net-(J3-Pad40)") (pintype "passive") (tstamp dd92b924-c46b-4250-9ce5-be1c3bde14c1))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "muonpi-kicad-library:ublox_SARA-G3_LGA-96" (layer "F.Cu")
(tedit 5C33506F) (tstamp 00000000-0000-0000-0000-000060b411f9)
(at 102 86 90)
(descr "ublox Sara GSM/HSPA modem, https://www.u-blox.com/sites/default/files/SARA-G3-U2_SysIntegrManual_%28UBX-13000995%29.pdf, pag.162")
(tags "ublox SARA-G3 SARA-U2 GSM HSPA")
(property "Sheetfile" "low_power_gsm-gprs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b38c8c")
(attr smd)
(fp_text reference "U1" (at 1.799 13.951 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0110acb8-a684-4c3e-a34a-59e07eb9dc2b)
)
(fp_text value "SARA-G450" (at 0 14.2 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd029494-1c6a-484d-8323-5c5f1c9ff34f)
)
(fp_text user "${REFERENCE}" (at 0.8 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0abe30f-5c29-4ac2-b97b-28c727180463)
)
(fp_line (start 8.11 -13.11) (end 8.11 13.11) (layer "F.SilkS") (width 0.12) (tstamp 27c26f03-2249-4d5c-87bb-30f17165b9c7))
(fp_line (start 8.11 -13.11) (end -6.2 -13.11) (layer "F.SilkS") (width 0.12) (tstamp 935f8093-e771-453f-b56a-83449332b29f))
(fp_line (start 8.11 13.11) (end -8.11 13.11) (layer "F.SilkS") (width 0.12) (tstamp f790fc01-f440-4d2f-84dc-8b50a4e7168e))
(fp_line (start -6.2 -13.11) (end -8.11 -11.2) (layer "F.SilkS") (width 0.12) (tstamp fc463f9c-cddc-4f40-b769-267127daaf07))
(fp_line (start -8.11 -11.2) (end -8.11 13.11) (layer "F.SilkS") (width 0.12) (tstamp ff0acea9-155b-46e0-baf3-bf319814e518))
(fp_line (start 8.25 13.25) (end -8.25 13.25) (layer "F.CrtYd") (width 0.05) (tstamp 29c11453-fa36-4879-b7ed-683e4f7431a2))
(fp_line (start 8.25 -13.25) (end -8.25 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp a54928d7-2be3-42fa-ba68-1059c4780cb2))
(fp_line (start 8.25 -13.25) (end 8.25 13.25) (layer "F.CrtYd") (width 0.05) (tstamp b52fc52d-fefd-4cc3-90df-d82c96cc6d47))
(fp_line (start -8.25 -13.25) (end -8.25 13.25) (layer "F.CrtYd") (width 0.05) (tstamp b89ab08e-9382-44c5-8913-65474e1a659d))
(fp_line (start -6.09 -13) (end -8 -11.09) (layer "F.Fab") (width 0.1) (tstamp 228c0932-9868-48fc-8b3d-5b041f51cc18))
(fp_line (start 8 13) (end -8 13) (layer "F.Fab") (width 0.1) (tstamp 23df7784-6d33-4608-a49a-23003ae28772))
(fp_line (start 8 -13) (end -6.09 -13) (layer "F.Fab") (width 0.1) (tstamp 3baeb89d-0bb7-4bfc-ad46-12ec01e72b25))
(fp_line (start 8 -13) (end 8 13) (layer "F.Fab") (width 0.1) (tstamp 4efffbed-2dc5-43af-9d54-ec24e8496635))
(fp_line (start -8 -11.09) (end -8 13) (layer "F.Fab") (width 0.1) (tstamp 8c8e68dd-436b-42d2-b5e6-f2f752c3a79b))
(pad "" smd rect locked (at -7 -3.3) (size 0.75 1.55) (layers "F.Paste") (tstamp 0468606b-9bc7-4849-b827-17d4c12530bf))
(pad "" smd rect locked (at -7 -7.7) (size 0.75 1.55) (layers "F.Paste") (tstamp 04c0168e-dfa4-4794-8447-591fd17d7509))
(pad "" smd rect locked (at 7 -3.3) (size 0.75 1.55) (layers "F.Paste") (tstamp 0c9171eb-49cd-4e63-b469-8af1eec02f97))
(pad "" smd rect locked (at -7 3.3) (size 0.75 1.55) (layers "F.Paste") (tstamp 0d74aa9c-3df3-4b4e-8af3-b34774787955))
(pad "" smd rect locked (at 7 4.4) (size 0.75 1.55) (layers "F.Paste") (tstamp 11d6cc8d-4ed2-4cab-8b5f-b92d9e94ee37))
(pad "" smd rect locked (at 5.25 -10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 14d7ca42-2453-4d1f-920c-85e9e87d09ab))
(pad "" smd rect locked (at 5.25 10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 14f080a2-78ef-4d86-8cd1-5569260ea930))
(pad "" smd rect locked (at -3.3 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 16294a0e-0ec7-4a51-bcaf-906713d25783))
(pad "" smd rect locked (at -2.2 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 19cfb559-6fbb-4e9b-a544-e460a7fd262b))
(pad "" smd rect locked (at -7 0) (size 0.75 1.55) (layers "F.Paste") (tstamp 1e4ac72f-eeda-46ce-a060-be72a800b876))
(pad "" smd rect locked (at -7 2.2) (size 0.75 1.55) (layers "F.Paste") (tstamp 20f5a7e1-4962-4bb7-a00c-23d81365bb2c))
(pad "" smd rect locked (at -3.15 -10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 2171f811-707c-4df9-b10c-2b154d615881))
(pad "" smd rect locked (at -5.25 10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 24f17511-316f-44fb-802b-ba89f568ab94))
(pad "" smd rect locked (at -7 7.7) (size 0.75 1.55) (layers "F.Paste") (tstamp 25299b71-f0b3-4326-89e5-2c06340e9cd2))
(pad "" smd rect locked (at -7 4.4) (size 0.75 1.55) (layers "F.Paste") (tstamp 2bbd6e86-c085-4697-a681-ef20c725f68c))
(pad "" smd rect locked (at 7 8.8) (size 0.75 1.55) (layers "F.Paste") (tstamp 2bdf0ba1-d84c-4333-9cbd-7ea0468d0194))
(pad "" smd rect locked (at 7 -9.9) (size 0.75 1.55) (layers "F.Paste") (tstamp 2cda4a70-92ec-4612-a09c-6111f5da4d4c))
(pad "" smd rect locked (at 1.05 10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 2e1a11da-e8ad-49da-8aea-745e535760a1))
(pad "" smd rect locked (at -7 -11) (size 0.75 1.55) (layers "F.Paste") (tstamp 2e993db4-2f5f-4574-8c55-ed84db51944b))
(pad "" smd rect locked (at 7 2.2) (size 0.75 1.55) (layers "F.Paste") (tstamp 2edaaf18-5ff6-4f35-8576-3e76daf1b851))
(pad "" smd rect locked (at -5.25 6.65 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 2f6fdfb1-e9de-464a-af3e-86d19c679846))
(pad "" smd rect locked (at -5.5 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 2fe1e53e-fae9-497a-9659-99eb244b3d2d))
(pad "" smd rect locked (at 3.15 10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 31e6535a-a1cb-43cc-a1ec-bb1b8e4a0d6b))
(pad "" smd rect locked (at 7 7.7) (size 0.75 1.55) (layers "F.Paste") (tstamp 36f3e707-ffe0-47d1-93f3-454cc70ec44c))
(pad "" smd rect locked (at -3.15 10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 39bef7bc-cfbb-4813-b17e-5ea2b0e35eda))
(pad "" smd rect locked (at 3.15 -10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 3be10059-986b-488c-930f-4cae56a58031))
(pad "" smd rect locked (at 7 0) (size 0.75 1.55) (layers "F.Paste") (tstamp 3f3b524f-c21b-4cc6-aaf8-0820c453f819))
(pad "" smd rect locked (at -4.4 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 405784f3-62c3-41aa-b0ad-eec2f9a36faf))
(pad "" smd rect locked (at 5.5 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 417dfc60-e47c-4edc-91ed-2d2a40cfad6c))
(pad "" smd rect locked (at 7 -2.2) (size 0.75 1.55) (layers "F.Paste") (tstamp 455a4529-cf20-4b62-941b-de47b7b9178f))
(pad "" smd rect locked (at 5.25 8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 47c3fe60-7225-42a5-b953-905ed3c32630))
(pad "" smd rect locked (at -7 11) (size 0.75 1.55) (layers "F.Paste") (tstamp 47dd1cab-1d7f-45fe-955d-a209897b95cf))
(pad "" smd rect locked (at -3.15 -8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 47fc95a4-39a0-4cbe-96df-4ce422fd14d5))
(pad "" smd rect locked (at 1.05 8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 4a6b5a88-8a2d-49b2-9ad9-7a23bb62198c))
(pad "" smd rect locked (at 4.4 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 4b9d487a-52e8-498d-81e1-669463a3879e))
(pad "" smd rect locked (at 7 9.9) (size 0.75 1.55) (layers "F.Paste") (tstamp 520505d5-085a-44cc-8bb7-4371409803ff))
(pad "" smd rect locked (at -5.25 -6.65 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 556a839d-64e6-4d0f-90e4-edb77d3a6b42))
(pad "" smd rect locked (at -7 5.5) (size 0.75 1.55) (layers "F.Paste") (tstamp 5d6f7e8d-8322-46f5-954e-c1a7b5d07e70))
(pad "" smd rect locked (at -5.25 -3.05 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 5e489812-de89-4fdf-a939-3de27be1f770))
(pad "" smd rect locked (at 7 1.1) (size 0.75 1.55) (layers "F.Paste") (tstamp 60feabe0-a392-4ebb-ade3-9bb74be49b1b))
(pad "" smd rect locked (at -2.2 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 621cf4be-67d7-44eb-8a8c-cc6e0d669d99))
(pad "" smd rect locked (at 7 -4.4) (size 0.75 1.55) (layers "F.Paste") (tstamp 647ae44a-fd89-49d6-a2f2-5c6f7676c2ce))
(pad "" smd rect locked (at 5.25 -8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 681c436b-42c5-4f43-b187-d5a117be458e))
(pad "" smd rect locked (at 0 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 6828a672-79b4-4ec4-ab06-ba639291d0ff))
(pad "" smd rect locked (at -1.05 8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 6c958fc8-68ab-4a77-88b4-76112bc8b108))
(pad "" smd rect locked (at 7 5.5) (size 0.75 1.55) (layers "F.Paste") (tstamp 6ecd544e-ebf1-46c2-988a-fcc078e6cab9))
(pad "" smd rect locked (at 7 11) (size 0.75 1.55) (layers "F.Paste") (tstamp 75aa19b3-15c1-4087-8ecf-c2a24db0da0b))
(pad "" smd rect locked (at 7 -5.5) (size 0.75 1.55) (layers "F.Paste") (tstamp 775bc114-17ce-4f3d-aa43-a2d3febb68ee))
(pad "" smd rect locked (at 5.5 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 7efe6bfc-a923-4cfe-8858-c0ccee5bc3a4))
(pad "" smd rect locked (at -7 -1.1) (size 0.75 1.55) (layers "F.Paste") (tstamp 8179ab7f-15cf-45df-bc3d-946b9ec410d1))
(pad "" smd rect locked (at 5.25 3.05 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 85223b97-7721-4fa0-b1ef-2ce8cf6beff1))
(pad "" smd rect locked (at 3.15 -8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 85ab32ce-17df-440b-9a2b-a0ab3d8f32f8))
(pad "" smd rect locked (at -3.3 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 8755fe4d-31b7-475a-a9c9-926107128e87))
(pad "" smd rect locked (at 5.25 6.65 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 89a10583-65a9-46c0-b20c-a97f32939ce8))
(pad "" smd rect locked (at 0 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 8ca6e618-9050-42d9-a698-a33d64694d23))
(pad "" smd rect locked (at 7 -6.6) (size 0.75 1.55) (layers "F.Paste") (tstamp 98239307-fa9d-4204-b51b-4d0e28668ec0))
(pad "" smd rect locked (at 1.05 -8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 99e834b3-f22f-4572-bf72-936d2c0f88d4))
(pad "" smd rect locked (at -3.15 8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp 9afe7290-d637-4bf2-be3a-cad1ffdaa495))
(pad "" smd rect locked (at 7 -8.8) (size 0.75 1.55) (layers "F.Paste") (tstamp 9b58c541-cbf7-42c5-9429-d305eb34de81))
(pad "" smd rect locked (at -5.5 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 9c8665b2-96ed-4e94-8d2b-065e7d15d1ac))
(pad "" smd rect locked (at 1.1 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp 9ca0f805-888a-464c-9024-46b8357f8f3b))
(pad "" smd rect locked (at 7 -7.7) (size 0.75 1.55) (layers "F.Paste") (tstamp a065a7b6-764c-485f-8ae9-7022ac8abc00))
(pad "" smd rect locked (at -1.1 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp a0f7833c-cd73-4c17-b069-a1984cb201e6))
(pad "" smd rect locked (at -7 9.9) (size 0.75 1.55) (layers "F.Paste") (tstamp a2f41cd9-93c8-4042-8ebb-bcf09268d91b))
(pad "" smd rect locked (at -5.25 -8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp a4653896-8c82-4553-8fe1-554c346d9ec8))
(pad "" smd rect locked (at 7 6.6) (size 0.75 1.55) (layers "F.Paste") (tstamp a8e89e63-f731-49f6-9f5f-5fcceca0193d))
(pad "" smd rect locked (at -7 1.1) (size 0.75 1.55) (layers "F.Paste") (tstamp acd407fb-9f6e-41a1-a992-81dde25b7f15))
(pad "" smd rect locked (at -5.25 8.45 270) (size 1.05 1.05) (layers "F.Paste") (tstamp b5df5688-8672-42c5-be03-c72d0eede52e))
(pad "" smd rect locked (at 7 -1.1) (size 0.75 1.55) (layers "F.Paste") (tstamp b770cd68-8dbc-4ccc-9616-76508c3e4513))
(pad "" smd rect locked (at -7 -5.5) (size 0.75 1.55) (layers "F.Paste") (tstamp b9c632a1-da35-4caf-b100-e84d501f5cb5))
(pad "" smd rect locked (at -1.05 10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp ba4a6164-de26-4387-8248-dc180263d189))
(pad "" smd rect locked (at 3.3 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp c0dfa47a-3115-4015-bbfe-0189486f79b8))
(pad "" smd rect locked (at 1.1 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp c2ad51d9-427f-4166-8b89-3138d59b757f))
(pad "" smd rect locked (at 5.25 -6.65 270) (size 1.05 1.05) (layers "F.Paste") (tstamp c4b8f84c-d92d-45d7-80db-2f5321bc19a8))
(pad "" smd rect locked (at -7 -2.2) (size 0.75 1.55) (layers "F.Paste") (tstamp c534cfde-ba9e-4113-af1d-dccb28d2e584))
(pad "" smd rect locked (at -1.1 12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp ca7a2cf2-df8a-4a5b-8080-9dce16da4588))
(pad "" smd rect locked (at 3.3 -12 90) (size 0.75 1.55) (layers "F.Paste") (tstamp cc50fe9d-cee0-43a7-b256-63f217d8e7c8))
(pad "" smd rect locked (at -1.05 -10.25 270) (size 1.05 1.05) (layers "F.Paste") (tstamp d1472d19-7e39-4d6f-b087-c7e45904e304))
(pad "" smd rect locked (at 7 3.3) (size 0.75 1.55) (layers "F.Paste") (tstamp d81c093a-49da-4d8f-9214-3edc87c220db))