-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSW9E-MSBv3.0.kicad_pcb
6158 lines (6096 loc) · 256 KB
/
SW9E-MSBv3.0.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.05)
(aux_axis_origin 128.9431 125.3236)
(grid_origin 76.2381 50.7746)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(D2-A)")
(net 3 "Net-(D3-A)")
(net 4 "Net-(Q1-D)")
(net 5 "Net-(Q2-D)")
(net 6 "/SERVO1_CTRL")
(net 7 "/SERVO2_CTRL")
(net 8 "/SCL")
(net 9 "/SDA")
(net 10 "/RXD")
(net 11 "/TXD")
(net 12 "/RST")
(net 13 "/TST")
(net 14 "Net-(Q1-G)")
(net 15 "Net-(Q2-G)")
(net 16 "/DROP1_CTRL")
(net 17 "/DROP2_CTRL")
(net 18 "Net-(U1-P6.2{slash}TB3.3)")
(net 19 "unconnected-(U1-P1.1{slash}UCB0CLK{slash}ACLK{slash}OA0O{slash}COMP0.1{slash}A1-Pad2)")
(net 20 "unconnected-(U1-P1.0{slash}UCB0STE{slash}SMCLK{slash}COMP0.0{slash}A0{slash}Veref+-Pad3)")
(net 21 "unconnected-(U1-P2.7{slash}TB0CLK{slash}XIN-Pad8)")
(net 22 "unconnected-(U1-P2.6{slash}MCLK{slash}XOUT-Pad9)")
(net 23 "unconnected-(U1-P2.5{slash}COMP1.0-Pad10)")
(net 24 "unconnected-(U1-P2.4{slash}COMP1.1-Pad11)")
(net 25 "unconnected-(U1-P4.7{slash}UCB1SOMI{slash}UCB1SCL-Pad12)")
(net 26 "unconnected-(U1-P4.6{slash}UCB1SIMO{slash}UCB1SDA-Pad13)")
(net 27 "unconnected-(U1-P4.5{slash}UCB1CLK-Pad14)")
(net 28 "unconnected-(U1-P4.4{slash}UCB1STE-Pad15)")
(net 29 "unconnected-(U1-P6.6{slash}TB3CLK-Pad16)")
(net 30 "unconnected-(U1-P6.5{slash}TB3.6-Pad17)")
(net 31 "unconnected-(U1-P6.4{slash}TB3.5-Pad18)")
(net 32 "unconnected-(U1-P6.3{slash}TB3.4-Pad19)")
(net 33 "unconnected-(U1-P4.1{slash}UCA1CLK-Pad25)")
(net 34 "unconnected-(U1-P4.0{slash}UCA1STE{slash}ISOTXD{slash}ISORXD-Pad26)")
(net 35 "unconnected-(U1-P2.3{slash}TB1TRG-Pad27)")
(net 36 "unconnected-(U1-P2.1{slash}TB1.2{slash}COMP1.O-Pad29)")
(net 37 "unconnected-(U1-P1.7{slash}UCA0TXD{slash}UCA0SIMO{slash}TB0.2{slash}TDO{slash}OA1+{slash}A7{slash}VREF+-Pad31)")
(net 38 "unconnected-(U1-P1.6{slash}UCA0RXD{slash}UCA0SOMI{slash}TB0.1{slash}TDI{slash}TCLK{slash}OA1-{slash}A6-Pad32)")
(net 39 "unconnected-(U1-P1.5{slash}UCA0CLK{slash}TMS{slash}OA1O{slash}A5-Pad33)")
(net 40 "unconnected-(U1-P1.4{slash}UCA0STE{slash}TCK{slash}A4-Pad34)")
(net 41 "unconnected-(U1-P3.7{slash}OA3+-Pad35)")
(net 42 "unconnected-(U1-P3.6{slash}OA3--Pad36)")
(net 43 "unconnected-(U1-P3.5{slash}OA3O-Pad37)")
(net 44 "unconnected-(U1-P3.4{slash}SMCLK-Pad38)")
(net 45 "unconnected-(U1-P5.4-Pad39)")
(net 46 "unconnected-(U1-P5.3{slash}TB2TRG{slash}A11-Pad40)")
(net 47 "unconnected-(U1-P5.2{slash}TB2CLK{slash}A10-Pad41)")
(net 48 "unconnected-(U1-P5.1{slash}TB2.2{slash}MFM.TX{slash}A9-Pad42)")
(net 49 "unconnected-(U1-P5.0{slash}TB2.1{slash}MFM.RX{slash}A8-Pad43)")
(net 50 "unconnected-(U1-P3.3{slash}OA2+-Pad44)")
(net 51 "unconnected-(U1-P3.2{slash}OA2--Pad45)")
(net 52 "unconnected-(U1-P3.1{slash}OA2O-Pad46)")
(net 53 "unconnected-(U1-P3.0{slash}MCLK-Pad47)")
(net 54 "+3.3V")
(net 55 "+5V")
(net 56 "+12V")
(net 57 "unconnected-(J7-Pad3)")
(net 58 "unconnected-(J7-Pad4)")
(footprint "AltiumImport:FP-22-05-3021-MFG" (layer "F.Cu")
(tstamp 0a0ef751-1115-4e0e-a770-aff5194b571f)
(at 175.8061 76.4286 90)
(property "Part Number" "22-05-3021")
(property "Sheetfile" "SW9E-MSBv3.0.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "CONN HEADER R/A 2POS 2.54MM")
(path "/1fe50f2f-06e8-4160-a85a-dddc1834c2dc")
(fp_text reference "J1" (at 2.8956 -1.8542 unlocked) (layer "F.SilkS")
(effects (font (size 1.016 1.016) (thickness 0.1524)) (justify left bottom))
(tstamp 9a710339-e114-46be-94df-95979246446c)
)
(fp_text value "22-05-3021" (at 1.07835 10.90942 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)) (justify left bottom))
(tstamp 4bc211fd-b1b0-4fbf-a1df-a05618d5c7fa)
)
(fp_line (start -2.54 -1.59) (end -2.54 1.84)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 153c16fe-2206-47fc-a932-bf9f714c9e52))
(fp_line (start -2.54 -1.59) (end 2.54 -1.59)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 9ddb3db9-e5ab-4502-bd6b-dd9b158cfa6f))
(fp_line (start -2.54 1.84) (end 2.54 1.84)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 6a8d3440-2988-48ce-ab9e-bb6c75131192))
(fp_line (start 2.54 -1.59) (end 2.54 1.84)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 8d946a29-f267-4f6f-b1e1-ade59baa8fbf))
(fp_circle (center -1.275 -5.85) (end -1.15 -5.85)
(stroke (width 0.25) (type solid)) (fill none) (layer "F.SilkS") (tstamp 52cc3781-f8ce-4a63-bbf6-70712957bcdd))
(fp_line (start -2.64 -5.20555) (end -2.64 8.90495)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp 2126f421-ba82-459c-8be9-a16b5d4530cc))
(fp_line (start -2.64 -5.20555) (end 2.64 -5.20555)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp ed3118c9-aad3-4219-9b91-d4f8382a7659))
(fp_line (start -2.64 8.90495) (end 2.64 8.90495)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp 18055f64-e509-4fe8-a781-2a64150e48cf))
(fp_line (start -0.5 0) (end 0.5 0)
(stroke (width 0.1) (type solid)) (layer "Eco1.User") (tstamp bdf204b7-ea81-4a92-93ba-edfc696cd468))
(fp_line (start 0 -0.5) (end 0 0.5)
(stroke (width 0.1) (type solid)) (layer "Eco1.User") (tstamp 911249ff-7f0e-4e1c-82ae-81633daadfa7))
(fp_line (start 2.64 -5.20555) (end 2.64 8.90495)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp b863e013-3018-4133-8f28-7d8a3540fb06))
(fp_line (start -2.54 -1.59) (end -2.54 1.84)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp e20ede61-3809-4998-a896-13c30f591c8b))
(fp_line (start -2.54 -1.59) (end 2.54 -1.59)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp 98f94a30-fad6-4039-a935-c16ccc94c9d3))
(fp_line (start -2.54 1.84) (end 2.54 1.84)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp def121b9-328f-45b6-b6d1-d790bb95c340))
(fp_line (start 2.54 -1.59) (end 2.54 1.84)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp 0c902b3a-f213-4477-8e3e-83158ab686f5))
(fp_line (start -2.64 -5.20555) (end -2.64 8.90495)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp 3fc61ce4-0e77-4d79-b9cf-8b408e934b5a))
(fp_line (start -2.64 -5.20555) (end 2.64 -5.20555)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp 8f8e56af-b808-4fc4-8cda-d6340fe34c2d))
(fp_line (start -2.64 8.90495) (end 2.64 8.90495)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp 26c54f25-5440-4c39-b807-bc707f300c7e))
(fp_line (start 2.64 -5.20555) (end 2.64 8.90495)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp d0ddd0ef-1c5f-4026-b51b-e576df479b03))
(pad "1" thru_hole rect (at -1.27 -4.3205 90) (size 1.57 1.57) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 55 "+5V") (pinfunction "1") (pintype "passive") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 8cbf2587-5e92-4d86-a0b0-a07202506955))
(pad "2" thru_hole circle (at 1.27 -4.3205 90) (size 1.57 1.57) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 4 "Net-(Q1-D)") (pinfunction "2") (pintype "passive") (solder_paste_margin -1000) (tstamp d9abf439-4a20-46be-ba33-c50e1024c163))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/Conn_Molex_22-05-3021_eec.STEP"
(offset (xyz -0 -0 0))
(scale (xyz 1 1 1))
(rotate (xyz -0 -0 0))
)
)
(footprint "AltiumImport:FP-PT0048A-MFG" (layer "F.Cu")
(tstamp 235ac768-453d-468d-9dd0-3a9b2d1bb4d1)
(at 131.1021 94.8436)
(property "Part Number" "MSP430FR2355TPTR")
(property "Sheetfile" "SW9E-MSBv3.0.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "IC MCU 16BIT 32KB FRAM 48LQFP")
(path "/514d11ae-1743-42dc-bd50-9d2b99ab2e35")
(fp_text reference "U1" (at 4.0132 -4.9784 unlocked) (layer "F.SilkS")
(effects (font (size 1.016 1.016) (thickness 0.1524)) (justify left bottom))
(tstamp 366d0182-2724-4332-8884-5a2026a4e5b8)
)
(fp_text value "MSP430FR2355TPTR" (at 0.44257 7.04862 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)) (justify left bottom))
(tstamp 0a6b8b19-341f-4e50-adc4-750fbbb7312f)
)
(fp_rect (start -4.925 -2.625) (end -3.575 -2.875)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 9633ddeb-5220-4d42-8bc7-d650913052da))
(fp_rect (start -4.925 -2.125) (end -3.575 -2.375)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 9b83368a-2781-4a34-942c-cea8347b68d1))
(fp_rect (start -4.925 -1.625) (end -3.575 -1.875)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp a35d146d-4931-480c-a6ca-eb0cbd7282ce))
(fp_rect (start -4.925 -1.125) (end -3.575 -1.375)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 39e2585f-ef22-4345-8951-1bf34774c312))
(fp_rect (start -4.925 -0.625) (end -3.575 -0.875)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp f3a2322a-83b4-4fe8-8e11-184382fde462))
(fp_rect (start -4.925 -0.125) (end -3.575 -0.375)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 1080b453-ee83-4cfe-a055-87e67a952f2b))
(fp_rect (start -4.925 0.375) (end -3.575 0.125)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 91b612ae-4d4e-4740-8fb2-a93eb6000c32))
(fp_rect (start -4.925 0.875) (end -3.575 0.625)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp cf3e9e0b-b42c-4d99-a104-339d3b0bab3b))
(fp_rect (start -4.925 1.375) (end -3.575 1.125)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 578c5088-86a8-47e0-b6c5-e543d516f31e))
(fp_rect (start -4.925 1.875) (end -3.575 1.625)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 55f59206-6fd1-442c-95cb-a836590f2942))
(fp_rect (start -4.925 2.375) (end -3.575 2.125)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp acfc18c8-59c4-4ba3-9bbf-12289d41b854))
(fp_rect (start -4.925 2.875) (end -3.575 2.625)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp e9ff3951-e77c-4568-9630-c591a87ee8c3))
(fp_rect (start -2.875 -3.575) (end -2.625 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 25deceee-58be-4ce5-8005-fef286fa2f82))
(fp_rect (start -2.875 4.925) (end -2.625 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 71bbca3f-02cb-49e6-825c-005629e6015b))
(fp_rect (start -2.375 -3.575) (end -2.125 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 01841325-89f9-48d1-b9a7-78ae725681a0))
(fp_rect (start -2.375 4.925) (end -2.125 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 5fbad30f-678e-43b4-b6e8-98e7e93de92d))
(fp_rect (start -1.875 -3.575) (end -1.625 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp c0ab573e-3f2d-4df8-ae6f-56b206c2a36b))
(fp_rect (start -1.875 4.925) (end -1.625 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 0047d151-3559-4bb9-b3f2-0dfe70c6f5f6))
(fp_rect (start -1.375 -3.575) (end -1.125 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 498248b2-318f-4445-a1e9-10da2ee65470))
(fp_rect (start -1.375 4.925) (end -1.125 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 3fe0386d-763c-4b32-aedd-18ec1a5468a1))
(fp_rect (start -0.875 -3.575) (end -0.625 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 36b796a5-830f-4dad-bf45-87c5a9a7edda))
(fp_rect (start -0.875 4.925) (end -0.625 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp f0363c22-4851-4e39-a5f4-77dcb3137791))
(fp_rect (start -0.375 -3.575) (end -0.125 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 2cd0797d-4ca4-4935-bc78-3dac4ac0198e))
(fp_rect (start -0.375 4.925) (end -0.125 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp f7671477-1052-4eb4-8ce6-ad6833faa30b))
(fp_rect (start 0.125 -3.575) (end 0.375 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp eb32c563-dca8-4123-ba83-4e52b5946796))
(fp_rect (start 0.125 4.925) (end 0.375 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 00f94fe4-c66a-454c-869f-08ddc2c77bda))
(fp_rect (start 0.625 -3.575) (end 0.875 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp fbfa0b9f-9f9f-425d-a886-dd04c9345454))
(fp_rect (start 0.625 4.925) (end 0.875 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp f4f3c76d-022d-4bf2-908e-4fd1364518dc))
(fp_rect (start 1.125 -3.575) (end 1.375 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 851a96e3-2677-4254-aa86-37f155c17087))
(fp_rect (start 1.125 4.925) (end 1.375 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp a0f7f4cb-6d6c-4787-9642-ca2794edf5f2))
(fp_rect (start 1.625 -3.575) (end 1.875 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp c00af452-0b7a-4871-a8a6-47b3fa153d08))
(fp_rect (start 1.625 4.925) (end 1.875 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 57e70429-c231-47f5-9bfc-3f940c99c92a))
(fp_rect (start 2.125 -3.575) (end 2.375 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 7ae3bd48-ea90-4955-b78f-8633bc1efecb))
(fp_rect (start 2.125 4.925) (end 2.375 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 0ccac83b-bd0a-4df7-bd41-eacdeffe629b))
(fp_rect (start 2.625 -3.575) (end 2.875 -4.925)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp e3cc73ea-d289-4229-96e3-da84d94ce571))
(fp_rect (start 2.625 4.925) (end 2.875 3.575)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 706448b7-0e39-4cb1-8e71-c38f143ee179))
(fp_rect (start 3.575 -2.625) (end 4.925 -2.875)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 226bb94c-e1fb-47fc-81a4-9dcaf1b146ae))
(fp_rect (start 3.575 -2.125) (end 4.925 -2.375)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 92b02d14-26d2-4bfd-8f5b-4fc9c429910d))
(fp_rect (start 3.575 -1.625) (end 4.925 -1.875)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp c5829958-97be-490e-8fad-0e0b7d2cf066))
(fp_rect (start 3.575 -1.125) (end 4.925 -1.375)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp d8b04792-3e16-42ef-bf7f-516859c19b4d))
(fp_rect (start 3.575 -0.625) (end 4.925 -0.875)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 8cfc60be-5487-48ea-8d29-577e71354b31))
(fp_rect (start 3.575 -0.125) (end 4.925 -0.375)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 9a458027-c04f-4607-9118-c0cfc690aa03))
(fp_rect (start 3.575 0.375) (end 4.925 0.125)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 4eec3954-464d-4848-ba29-9883bce6ae17))
(fp_rect (start 3.575 0.875) (end 4.925 0.625)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp ebf8c08d-fd60-4416-9b0d-46c8837df88a))
(fp_rect (start 3.575 1.375) (end 4.925 1.125)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 80dba37e-319a-4ab6-8d9a-96c21633f7a0))
(fp_rect (start 3.575 1.875) (end 4.925 1.625)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 21b2aee1-9537-4146-be6a-62bd4a34aa9e))
(fp_rect (start 3.575 2.375) (end 4.925 2.125)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp cece7b49-02d3-44b4-b478-db2ee3cd5d45))
(fp_rect (start 3.575 2.875) (end 4.925 2.625)
(stroke (width 0) (type default)) (fill solid) (layer "F.Paste") (tstamp 5cce8a00-17d7-4394-911e-14903349f082))
(fp_line (start -3.6 -3.6) (end -3.275 -3.6)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp add76c10-735e-4974-a610-afd567a87d0c))
(fp_line (start -3.6 -3.275) (end -3.6 -3.6)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 03a074ef-f808-4e6b-8ab2-e0342ed3dd2a))
(fp_line (start -3.6 3.6) (end -3.6 3.275)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 6fdeb976-43ff-419c-979f-d35f16379afd))
(fp_line (start -3.6 3.6) (end -3.275 3.6)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp db4cebc8-cf41-4a5f-a0df-99f739153a32))
(fp_line (start 3.275 -3.6) (end 3.6 -3.6)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp cd05d89e-7879-4ba1-8cf6-c5333888c1a3))
(fp_line (start 3.275 3.6) (end 3.6 3.6)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp fcf451d0-13f8-4d98-8e8d-83d6ecc9963e))
(fp_line (start 3.6 -3.275) (end 3.6 -3.6)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 28a0c37e-cb02-4931-a0f0-0bf2cefcbdbd))
(fp_line (start 3.6 3.6) (end 3.6 3.275)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 1fc335e3-6fa3-448f-9019-0fd2e6272ee5))
(fp_circle (center -5.52548 -2.76) (end -5.52548 -2.885)
(stroke (width 0.25) (type solid)) (fill none) (layer "F.SilkS") (tstamp dbe25716-aae9-4e92-a415-50168299ca50))
(fp_line (start -5.05 -5.05) (end 5.05 -5.05)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp ec74b31a-c0e4-4ed0-ad21-1ef04960ed51))
(fp_line (start -5.05 5.05) (end -5.05 -5.05)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp 2c4fcb7f-e6d7-45c3-b458-8561aa89e95d))
(fp_line (start -5.05 5.05) (end 5.05 5.05)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp 3b36443a-d57a-4243-bace-fa7af55ed984))
(fp_line (start -0.5 0) (end 0.5 0)
(stroke (width 0.1) (type solid)) (layer "Eco1.User") (tstamp 46b79b97-53a3-47ef-8c2e-535e1509b7ed))
(fp_line (start 0 0.5) (end 0 -0.5)
(stroke (width 0.1) (type solid)) (layer "Eco1.User") (tstamp 5d9b6757-707c-4066-b844-2839059afb78))
(fp_line (start 5.05 5.05) (end 5.05 -5.05)
(stroke (width 0.2) (type solid)) (layer "Eco1.User") (tstamp 511394ce-2051-417f-87ec-c44ec36f35b1))
(fp_line (start -3.6 -3.6) (end 3.6 -3.6)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp 95d96a69-39c4-406a-b727-28b12f3b0287))
(fp_line (start -3.6 3.6) (end -3.6 -3.6)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp dbeccd1e-4b2f-4465-a6b3-09c9f325ee71))
(fp_line (start -3.6 3.6) (end 3.6 3.6)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp b142339d-55bb-4747-a231-752bd0ea5dea))
(fp_line (start 3.6 3.6) (end 3.6 -3.6)
(stroke (width 0.2) (type solid)) (layer "B.Fab") (tstamp 4b2b34a4-cf22-4c67-af21-c01c7366d8f9))
(fp_line (start -5.05 -5.05) (end 5.05 -5.05)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp 3bf63d19-5d86-42ea-a78d-59f83be8ecd1))
(fp_line (start -5.05 5.05) (end -5.05 -5.05)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp 206c0004-1f8b-427c-9380-b467fefd9fb1))
(fp_line (start -5.05 5.05) (end 5.05 5.05)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp d746b23c-b121-4a5a-8591-45be61216a89))
(fp_line (start 5.05 5.05) (end 5.05 -5.05)
(stroke (width 0.2) (type solid)) (layer "User.5") (tstamp 9fcee9ca-109f-4c9c-958e-6dc26757ca48))
(pad "1" smd rect (at -4.25 -2.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/SDA") (pinfunction "P1.2/UCB0SIMO/UCB0SDA/TB0TRG/OA0-/A2/Veref-") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp e60bb00c-431f-4974-87e6-77cd05eb35f6))
(pad "2" smd rect (at -4.25 -2.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(U1-P1.1{slash}UCB0CLK{slash}ACLK{slash}OA0O{slash}COMP0.1{slash}A1-Pad2)") (pinfunction "P1.1/UCB0CLK/ACLK/OA0O/COMP0.1/A1") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp c672e634-1839-4a1e-a65d-d0f2b2cec567))
(pad "3" smd rect (at -4.25 -1.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(U1-P1.0{slash}UCB0STE{slash}SMCLK{slash}COMP0.0{slash}A0{slash}Veref+-Pad3)") (pinfunction "P1.0/UCB0STE/SMCLK/COMP0.0/A0/Veref+") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 6363b358-340e-4a2e-b8a7-802e9be2a613))
(pad "4" smd rect (at -4.25 -1.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/TST") (pinfunction "TEST/SBWTCK") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 006c0d1e-7169-4c91-8ebc-1f59104d0c24))
(pad "5" smd rect (at -4.25 -0.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/RST") (pinfunction "~{RST}/NMI/SBWTDIO") (pintype "input") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp f1929210-d9d3-43bc-8208-69015f3abfdb))
(pad "6" smd rect (at -4.25 -0.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "+3.3V") (pinfunction "DVCC") (pintype "power_in") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 7fb4ddab-6ee5-4885-9d9e-2ec163752475))
(pad "7" smd rect (at -4.25 0.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "DVSS") (pintype "power_in") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 95de5086-8dc3-49c9-a37f-dccdd09938da))
(pad "8" smd rect (at -4.25 0.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(U1-P2.7{slash}TB0CLK{slash}XIN-Pad8)") (pinfunction "P2.7/TB0CLK/XIN") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 1bd492b7-785b-4234-af04-06cce5f6c319))
(pad "9" smd rect (at -4.25 1.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U1-P2.6{slash}MCLK{slash}XOUT-Pad9)") (pinfunction "P2.6/MCLK/XOUT") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp d08b8813-e0b9-4f2b-bcef-1ceea123f3c1))
(pad "10" smd rect (at -4.25 1.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(U1-P2.5{slash}COMP1.0-Pad10)") (pinfunction "P2.5/COMP1.0") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 7b8a75d4-b28c-4ba9-891f-9d804bf765e4))
(pad "11" smd rect (at -4.25 2.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(U1-P2.4{slash}COMP1.1-Pad11)") (pinfunction "P2.4/COMP1.1") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp cc639cbf-2935-4305-aab1-49508ff50654))
(pad "12" smd rect (at -4.25 2.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(U1-P4.7{slash}UCB1SOMI{slash}UCB1SCL-Pad12)") (pinfunction "P4.7/UCB1SOMI/UCB1SCL") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp e7bb3358-da63-4ff1-8d14-c551d8ea3860))
(pad "13" smd rect (at -2.75 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U1-P4.6{slash}UCB1SIMO{slash}UCB1SDA-Pad13)") (pinfunction "P4.6/UCB1SIMO/UCB1SDA") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp eb489716-e620-4d3b-b887-90da5516d8aa))
(pad "14" smd rect (at -2.25 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U1-P4.5{slash}UCB1CLK-Pad14)") (pinfunction "P4.5/UCB1CLK") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 1fb53d46-854e-43b0-a636-69bf643ced2c))
(pad "15" smd rect (at -1.75 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U1-P4.4{slash}UCB1STE-Pad15)") (pinfunction "P4.4/UCB1STE") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 35cf3e7d-5b00-413d-b523-fd4795e81050))
(pad "16" smd rect (at -1.25 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U1-P6.6{slash}TB3CLK-Pad16)") (pinfunction "P6.6/TB3CLK") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 08a5fd6b-1977-451b-a63b-10d0c15c9574))
(pad "17" smd rect (at -0.75 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U1-P6.5{slash}TB3.6-Pad17)") (pinfunction "P6.5/TB3.6") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp c90017c0-0e44-4dc6-b65f-ea04475430e9))
(pad "18" smd rect (at -0.25 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(U1-P6.4{slash}TB3.5-Pad18)") (pinfunction "P6.4/TB3.5") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 22dc71ec-5046-4626-8a08-3ccd1f7fff30))
(pad "19" smd rect (at 0.25 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U1-P6.3{slash}TB3.4-Pad19)") (pinfunction "P6.3/TB3.4") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 85cee3f4-6d02-41a1-aa02-70da25de960b))
(pad "20" smd rect (at 0.75 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(U1-P6.2{slash}TB3.3)") (pinfunction "P6.2/TB3.3") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 66fbc962-c1f1-4bbd-8dea-14a5cd73bc49))
(pad "21" smd rect (at 1.25 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/SERVO2_CTRL") (pinfunction "P6.1/TB3.2") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp fbe6fcc8-af62-46a1-a0b3-bdecf9e77b30))
(pad "22" smd rect (at 1.75 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/SERVO1_CTRL") (pinfunction "P6.0/TB3.1") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 87a9d8f1-208d-4ef2-b538-070d064a2bf9))
(pad "23" smd rect (at 2.25 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/TXD") (pinfunction "P4.3/UCA1TXD/UCA1SIMO/~{UCA1TXD}") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 6fd670b5-c7f6-4a41-8f89-b81cd2b78a78))
(pad "24" smd rect (at 2.75 4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/RXD") (pinfunction "P4.2/UCA1RXD/UCA1SOMI/~{UCA1RXD}") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp fb5cfbff-77e0-4902-be66-eba0658e68d9))
(pad "25" smd rect (at 4.25 2.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "unconnected-(U1-P4.1{slash}UCA1CLK-Pad25)") (pinfunction "P4.1/UCA1CLK") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp b3f1be5d-de48-46b9-83d5-61fea79e9f1f))
(pad "26" smd rect (at 4.25 2.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U1-P4.0{slash}UCA1STE{slash}ISOTXD{slash}ISORXD-Pad26)") (pinfunction "P4.0/UCA1STE/ISOTXD/ISORXD") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 505b2625-a728-4896-b12b-3a8d60ad1a9a))
(pad "27" smd rect (at 4.25 1.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "unconnected-(U1-P2.3{slash}TB1TRG-Pad27)") (pinfunction "P2.3/TB1TRG") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 42376436-a588-4087-a93b-b1b474c57bb9))
(pad "28" smd rect (at 4.25 1.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/DROP2_CTRL") (pinfunction "P2.2/TB1CLK") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp df62486b-106c-4bc7-9452-c5e866e1fb63))
(pad "29" smd rect (at 4.25 0.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "unconnected-(U1-P2.1{slash}TB1.2{slash}COMP1.O-Pad29)") (pinfunction "P2.1/TB1.2/COMP1.O") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp f2aee68e-b0cc-457e-a651-f3dbb8936108))
(pad "30" smd rect (at 4.25 0.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/DROP1_CTRL") (pinfunction "P2.0/TB1.1/COMP0.O") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp d500175e-b550-415e-8718-fd6af7c507a1))
(pad "31" smd rect (at 4.25 -0.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(U1-P1.7{slash}UCA0TXD{slash}UCA0SIMO{slash}TB0.2{slash}TDO{slash}OA1+{slash}A7{slash}VREF+-Pad31)") (pinfunction "P1.7/UCA0TXD/UCA0SIMO/TB0.2/TDO/OA1+/A7/VREF+") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 0be9f842-f65e-42b0-b52d-f528f74af21b))
(pad "32" smd rect (at 4.25 -0.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U1-P1.6{slash}UCA0RXD{slash}UCA0SOMI{slash}TB0.1{slash}TDI{slash}TCLK{slash}OA1-{slash}A6-Pad32)") (pinfunction "P1.6/UCA0RXD/UCA0SOMI/TB0.1/TDI/TCLK/OA1-/A6") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 8e1e2013-d80d-474d-bb84-641af5747a26))
(pad "33" smd rect (at 4.25 -1.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "unconnected-(U1-P1.5{slash}UCA0CLK{slash}TMS{slash}OA1O{slash}A5-Pad33)") (pinfunction "P1.5/UCA0CLK/TMS/OA1O/A5") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 4383c36f-a182-4354-bb56-e50280029a4a))
(pad "34" smd rect (at 4.25 -1.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "unconnected-(U1-P1.4{slash}UCA0STE{slash}TCK{slash}A4-Pad34)") (pinfunction "P1.4/UCA0STE/TCK/A4") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 1bfc9deb-9490-41ba-9103-76f59ea0588a))
(pad "35" smd rect (at 4.25 -2.25) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U1-P3.7{slash}OA3+-Pad35)") (pinfunction "P3.7/OA3+") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp db5d308b-7c71-4ce5-a79e-0bac8008c118))
(pad "36" smd rect (at 4.25 -2.75) (size 1.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "unconnected-(U1-P3.6{slash}OA3--Pad36)") (pinfunction "P3.6/OA3-") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 5bdfc09f-a11e-4e13-a734-1c029ee0654c))
(pad "37" smd rect (at 2.75 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "unconnected-(U1-P3.5{slash}OA3O-Pad37)") (pinfunction "P3.5/OA3O") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 7aeacccf-f2fd-40c8-b8ff-16c0c696f949))
(pad "38" smd rect (at 2.25 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "unconnected-(U1-P3.4{slash}SMCLK-Pad38)") (pinfunction "P3.4/SMCLK") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 11853486-dd98-4405-b119-d79ba2b03acb))
(pad "39" smd rect (at 1.75 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "unconnected-(U1-P5.4-Pad39)") (pinfunction "P5.4") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp d5f7ca76-e6a5-41cd-977a-11d57505fca7))
(pad "40" smd rect (at 1.25 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "unconnected-(U1-P5.3{slash}TB2TRG{slash}A11-Pad40)") (pinfunction "P5.3/TB2TRG/A11") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 116c71ce-575e-4b80-994e-7fed79c84106))
(pad "41" smd rect (at 0.75 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "unconnected-(U1-P5.2{slash}TB2CLK{slash}A10-Pad41)") (pinfunction "P5.2/TB2CLK/A10") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 5a9a4402-7dbb-4302-9a60-e326cd6bbe1d))
(pad "42" smd rect (at 0.25 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "unconnected-(U1-P5.1{slash}TB2.2{slash}MFM.TX{slash}A9-Pad42)") (pinfunction "P5.1/TB2.2/MFM.TX/A9") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp dcdae82f-4322-4f2c-a7f0-d9af5cb16bce))
(pad "43" smd rect (at -0.25 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "unconnected-(U1-P5.0{slash}TB2.1{slash}MFM.RX{slash}A8-Pad43)") (pinfunction "P5.0/TB2.1/MFM.RX/A8") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 2eebda83-66a3-484e-89c1-64302977daa4))
(pad "44" smd rect (at -0.75 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "unconnected-(U1-P3.3{slash}OA2+-Pad44)") (pinfunction "P3.3/OA2+") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp dd36be6f-7a71-49d0-8fd0-2ab5a940613a))
(pad "45" smd rect (at -1.25 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "unconnected-(U1-P3.2{slash}OA2--Pad45)") (pinfunction "P3.2/OA2-") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 2a629208-4d5c-47aa-8526-603f68a32042))
(pad "46" smd rect (at -1.75 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "unconnected-(U1-P3.1{slash}OA2O-Pad46)") (pinfunction "P3.1/OA2O") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp a7cca123-671f-4775-9236-91ecd78aafb0))
(pad "47" smd rect (at -2.25 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "unconnected-(U1-P3.0{slash}MCLK-Pad47)") (pinfunction "P3.0/MCLK") (pintype "bidirectional+no_connect") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp 4e9fb9e0-ab18-469f-abd4-834003299f26))
(pad "48" smd rect (at -2.75 -4.25) (size 0.3 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/SCL") (pinfunction "P1.3/UCB0SOMI/UCB0SCL/OA0+/A3") (pintype "bidirectional") (solder_paste_margin -1000) (thermal_bridge_angle 45) (tstamp e64f5d54-7053-4f4f-8960-4c0797df35ad))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/IC_Texas_Instruments_MSP430FR2355TPTR_eec.STEP"
(offset (xyz 0 -0 0))
(scale (xyz 1 1 1))
(rotate (xyz -0 -0 0))
)
)
(footprint "AltiumImport:SMD-0805-RES" (layer "F.Cu")
(tstamp 245118aa-973e-4c02-9399-cb6794ed0445)
(at 138.7221 91.7956)
(property "ALTIUM_VALUE" "200")
(property "Part Number" "ERJ-PB6D2000V")
(property "Sheetfile" "SW9E-MSBv3.0.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RES SMD 200 OHM 0.5% 1/4W 0805")
(path "/f48cbcdc-1d13-431b-9ad4-42e0a5fc76fd")
(fp_text reference "R1" (at -1.1176 1.016 90 unlocked) (layer "F.SilkS")
(effects (font (size 1.016 1.016) (thickness 0.1524)) (justify left bottom))
(tstamp 0eb2d364-179d-48bc-81b1-6c752d2a8ecb)
)
(fp_text value "200" (at 0.26637 3.51802 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)) (justify left bottom))
(tstamp e9ec6d57-fd0d-4891-a87c-c165e6976ae0)
)
(fp_line (start -0.889 0.254) (end -0.889 -0.254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dd1526d1-2020-4b7f-87a1-dc282860f0e2))
(fp_line (start 0.889 0.254) (end 0.889 -0.254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 490b2cea-805e-48fe-ad4b-ef2a3f05fc56))
(pad "1" smd rect (at 0 -1.016 270) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/DROP1_CTRL") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp acd5ad5e-bd30-47aa-97ad-8d4f5687f4d0))
(pad "2" smd rect (at 0 1.016 270) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(Q1-G)") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp 80401058-e251-44e6-8705-0848399ef674))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/SW3dPS-0805 SMD Resistor.STEP"
(offset (xyz 0.02548 0.00008 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 -0 -90))
)
)
(footprint "LOGO" (layer "F.Cu")
(tstamp 255d92ad-2af0-44d2-b93d-f66e7ce2af69)
(at 109.2581 57.6326)
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "G***" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.016 1.016) (thickness 0.1524)))
(tstamp fa80e540-9e45-4a10-92c7-b4402bd0ce45)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.5 1.5) (thickness 0.3)))
(tstamp cd6d656a-626b-4324-af65-4de20c7bb486)
)
(fp_poly
(pts
(xy 1.648178 1.969911)
(xy 1.648178 2.551288)
(xy 1.603022 2.551288)
(xy 1.557867 2.551288)
(xy 1.557867 1.969911)
(xy 1.557867 1.388533)
(xy 1.603022 1.388533)
(xy 1.648178 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 46043094-f9a2-447c-9003-0b8af52ac1a1))
(fp_poly
(pts
(xy 4.154311 4.255911)
(xy 4.154311 4.6736)
(xy 4.120444 4.6736)
(xy 4.086578 4.6736)
(xy 4.086578 4.255911)
(xy 4.086578 3.838222)
(xy 4.120444 3.838222)
(xy 4.154311 3.838222)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp b3c8553a-01fe-4b62-a94b-2ea02f427c65))
(fp_poly
(pts
(xy 5.508978 1.969911)
(xy 5.508978 2.551288)
(xy 5.458178 2.551288)
(xy 5.407378 2.551288)
(xy 5.407378 1.969911)
(xy 5.407378 1.388533)
(xy 5.458178 1.388533)
(xy 5.508978 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp aba3adfa-51ee-4a67-990e-6f20b53a4a36))
(fp_poly
(pts
(xy 4.147296 3.550598)
(xy 4.163254 3.580579)
(xy 4.162257 3.614851)
(xy 4.14786 3.63986)
(xy 4.122162 3.65598)
(xy 4.098343 3.649972)
(xy 4.079043 3.628076)
(xy 4.066614 3.604648)
(xy 4.068108 3.585445)
(xy 4.076348 3.56889)
(xy 4.099223 3.542039)
(xy 4.124485 3.536807)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 99b66c0a-8396-4ae6-a0f3-f49244f69666))
(fp_poly
(pts
(xy -3.364089 1.484488)
(xy -3.364089 1.580444)
(xy -3.499556 1.580444)
(xy -3.635022 1.580444)
(xy -3.635022 2.065866)
(xy -3.635022 2.551288)
(xy -3.753435 2.551288)
(xy -3.871847 2.551288)
(xy -3.87479 2.068688)
(xy -3.877733 1.586088)
(xy -4.010378 1.582908)
(xy -4.143022 1.579727)
(xy -4.143022 1.48413)
(xy -4.143022 1.388533)
(xy -3.753556 1.388533)
(xy -3.364089 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 66998461-c9ee-4218-b590-d847ee24800d))
(fp_poly
(pts
(xy -1.772356 1.484488)
(xy -1.772356 1.580444)
(xy -1.907822 1.580444)
(xy -2.043289 1.580444)
(xy -2.043289 2.065866)
(xy -2.043289 2.551288)
(xy -2.161822 2.551288)
(xy -2.280356 2.551288)
(xy -2.280356 2.065866)
(xy -2.280356 1.580444)
(xy -2.415822 1.580444)
(xy -2.551289 1.580444)
(xy -2.551289 1.484488)
(xy -2.551289 1.388533)
(xy -2.161822 1.388533)
(xy -1.772356 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp cc06c0c2-2cc1-4173-af80-6fc872cc5b11))
(fp_poly
(pts
(xy 6.4008 1.428044)
(xy 6.4008 1.467555)
(xy 6.259689 1.467555)
(xy 6.118578 1.467555)
(xy 6.118578 2.009422)
(xy 6.118578 2.551288)
(xy 6.067887 2.551288)
(xy 6.017197 2.551288)
(xy 6.014265 2.012244)
(xy 6.011333 1.4732)
(xy 5.873044 1.47003)
(xy 5.734755 1.46686)
(xy 5.734755 1.427696)
(xy 5.734755 1.388533)
(xy 6.067778 1.388533)
(xy 6.4008 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 2e092fa4-5792-4aac-a696-191c7ec5897f))
(fp_poly
(pts
(xy -1.027289 1.478844)
(xy -1.027289 1.569155)
(xy -1.225182 1.569155)
(xy -1.423075 1.569155)
(xy -1.419915 1.713088)
(xy -1.416756 1.857022)
(xy -1.238956 1.860131)
(xy -1.061156 1.863239)
(xy -1.061156 1.947619)
(xy -1.061156 2.032)
(xy -1.242072 2.032)
(xy -1.422988 2.032)
(xy -1.419872 2.204155)
(xy -1.416756 2.376311)
(xy -1.216378 2.379393)
(xy -1.016 2.382476)
(xy -1.016 2.466882)
(xy -1.016 2.551288)
(xy -1.337733 2.551288)
(xy -1.659467 2.551288)
(xy -1.659467 1.969911)
(xy -1.659467 1.388533)
(xy -1.343378 1.388533)
(xy -1.027289 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp beaf9102-dd64-4ebc-9095-f98cb4538eb3))
(fp_poly
(pts
(xy 3.375378 1.428044)
(xy 3.375378 1.467555)
(xy 3.166533 1.467555)
(xy 2.957689 1.467555)
(xy 2.957689 1.693333)
(xy 2.957689 1.919111)
(xy 3.160889 1.919111)
(xy 3.364089 1.919111)
(xy 3.364089 1.958622)
(xy 3.364089 1.998133)
(xy 3.160889 1.998133)
(xy 2.957689 1.998133)
(xy 2.957689 2.2352)
(xy 2.957689 2.472266)
(xy 3.172178 2.472266)
(xy 3.386667 2.472266)
(xy 3.386667 2.511777)
(xy 3.386667 2.551288)
(xy 3.121378 2.551288)
(xy 2.856089 2.551288)
(xy 2.856089 1.969911)
(xy 2.856089 1.388533)
(xy 3.115733 1.388533)
(xy 3.375378 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 793d934b-823c-4077-bb46-228c844603a7))
(fp_poly
(pts
(xy 2.211628 -5.052443)
(xy 2.230493 -5.031817)
(xy 2.258114 -5.000133)
(xy 2.291777 -4.960646)
(xy 2.328771 -4.916611)
(xy 2.366383 -4.871285)
(xy 2.401902 -4.827923)
(xy 2.432614 -4.78978)
(xy 2.455807 -4.760112)
(xy 2.46877 -4.742176)
(xy 2.470385 -4.73928)
(xy 2.470832 -4.732775)
(xy 2.462653 -4.73219)
(xy 2.442758 -4.738457)
(xy 2.408055 -4.752507)
(xy 2.365374 -4.77093)
(xy 2.324408 -4.789105)
(xy 2.292087 -4.803956)
(xy 2.273442 -4.813149)
(xy 2.270933 -4.814727)
(xy 2.265748 -4.827381)
(xy 2.256647 -4.856209)
(xy 2.245143 -4.895677)
(xy 2.232748 -4.940251)
(xy 2.220975 -4.984399)
(xy 2.211336 -5.022586)
(xy 2.205345 -5.04928)
(xy 2.20423 -5.058755)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp a9df3ca0-c46f-47aa-b2c5-66bcd28488f5))
(fp_poly
(pts
(xy 1.230489 1.970405)
(xy 1.230489 2.552278)
(xy 1.150361 2.548961)
(xy 1.070234 2.545644)
(xy 0.837094 2.034937)
(xy 0.603955 1.52423)
(xy 0.601019 2.037759)
(xy 0.598083 2.551288)
(xy 0.547397 2.551288)
(xy 0.496711 2.551288)
(xy 0.496711 1.969911)
(xy 0.496711 1.388533)
(xy 0.572911 1.388699)
(xy 0.649111 1.388866)
(xy 0.879626 1.893877)
(xy 0.925423 1.994015)
(xy 0.968569 2.087983)
(xy 1.008126 2.173763)
(xy 1.043155 2.249336)
(xy 1.072716 2.312682)
(xy 1.09587 2.361784)
(xy 1.111678 2.394622)
(xy 1.119202 2.409178)
(xy 1.119515 2.409613)
(xy 1.121427 2.400934)
(xy 1.123209 2.371852)
(xy 1.124819 2.32454)
(xy 1.126217 2.261173)
(xy 1.127363 2.183925)
(xy 1.128217 2.09497)
(xy 1.128738 1.996482)
(xy 1.128889 1.904435)
(xy 1.128889 1.388533)
(xy 1.179689 1.388533)
(xy 1.230489 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 49dff357-0c1f-49c4-b23c-aef64ed47b17))
(fp_poly
(pts
(xy -6.911703 1.504244)
(xy -6.89539 1.546697)
(xy -6.872686 1.605968)
(xy -6.845228 1.677772)
(xy -6.814655 1.757825)
(xy -6.782603 1.84184)
(xy -6.755307 1.913466)
(xy -6.643511 2.206977)
(xy -6.640548 1.797755)
(xy -6.637585 1.388533)
(xy -6.524837 1.388533)
(xy -6.412089 1.388533)
(xy -6.412089 1.969911)
(xy -6.412089 2.551288)
(xy -6.572956 2.551167)
(xy -6.733822 2.551046)
(xy -6.874167 2.170167)
(xy -6.90736 2.080314)
(xy -6.938863 1.995474)
(xy -6.96764 1.918402)
(xy -6.992655 1.851856)
(xy -7.012873 1.798591)
(xy -7.027258 1.761362)
(xy -7.034236 1.744133)
(xy -7.039287 1.733216)
(xy -7.043399 1.727155)
(xy -7.046673 1.727837)
(xy -7.04921 1.73715)
(xy -7.051114 1.75698)
(xy -7.052484 1.789215)
(xy -7.053423 1.835742)
(xy -7.054033 1.898447)
(xy -7.054415 1.979219)
(xy -7.054671 2.079944)
(xy -7.054758 2.125133)
(xy -7.055556 2.551288)
(xy -7.168445 2.551288)
(xy -7.281333 2.551288)
(xy -7.281333 1.969911)
(xy -7.281333 1.388533)
(xy -7.118819 1.388533)
(xy -6.956304 1.388533)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp f686dad9-2826-435b-8156-64d55327aef3))
(fp_poly
(pts
(xy 3.7592 3.730977)
(xy 3.7592 3.838222)
(xy 3.826933 3.838222)
(xy 3.894667 3.838222)
(xy 3.894667 3.877733)
(xy 3.894667 3.917244)
(xy 3.826437 3.917244)
(xy 3.758208 3.917244)
(xy 3.761526 4.239989)
(xy 3.764844 4.562734)
(xy 3.792673 4.585254)
(xy 3.826729 4.60223)
(xy 3.863229 4.6037)
(xy 3.891043 4.602302)
(xy 3.903065 4.608611)
(xy 3.905905 4.627532)
(xy 3.905955 4.635405)
(xy 3.90032 4.665384)
(xy 3.888099 4.678036)
(xy 3.850575 4.684441)
(xy 3.806648 4.681395)
(xy 3.771577 4.670611)
(xy 3.745577 4.65151)
(xy 3.72094 4.625035)
(xy 3.720777 4.624816)
(xy 3.714016 4.61477)
(xy 3.708641 4.603124)
(xy 3.704463 4.587262)
(xy 3.701291 4.564568)
(xy 3.698933 4.532426)
(xy 3.697199 4.488218)
(xy 3.695898 4.42933)
(xy 3.69484 4.353144)
(xy 3.693833 4.257045)
(xy 3.693814 4.255105)
(xy 3.690517 3.917244)
(xy 3.628903 3.917244)
(xy 3.567289 3.917244)
(xy 3.567289 3.877733)
(xy 3.567289 3.838222)
(xy 3.629378 3.838222)
(xy 3.691467 3.838222)
(xy 3.691467 3.730977)
(xy 3.691467 3.623733)
(xy 3.725333 3.623733)
(xy 3.7592 3.623733)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp e26ab2fc-df32-4cb2-9ad7-afac9ad7b385))
(fp_poly
(pts
(xy 6.632222 1.388831)
(xy 6.762044 1.676256)
(xy 6.795955 1.750844)
(xy 6.827029 1.818253)
(xy 6.854025 1.875868)
(xy 6.875703 1.921072)
(xy 6.890821 1.951247)
(xy 6.898139 1.963777)
(xy 6.898461 1.963974)
(xy 6.90486 1.954286)
(xy 6.919649 1.926783)
(xy 6.941527 1.884043)
(xy 6.969197 1.828646)
(xy 7.001357 1.763169)
(xy 7.036708 1.690192)
(xy 7.041982 1.679222)
(xy 7.178909 1.394177)
(xy 7.224477 1.390706)
(xy 7.25283 1.390788)
(xy 7.268772 1.395184)
(xy 7.270044 1.397491)
(xy 7.26526 1.409754)
(xy 7.251681 1.439826)
(xy 7.23047 1.485253)
(xy 7.202789 1.543579)
(xy 7.169801 1.612351)
(xy 7.132669 1.689114)
(xy 7.106355 1.743166)
(xy 6.942667 2.078584)
(xy 6.942667 2.314936)
(xy 6.942667 2.551288)
(xy 6.897511 2.551288)
(xy 6.852355 2.551288)
(xy 6.852355 2.314837)
(xy 6.852355 2.078385)
(xy 6.688667 1.737715)
(xy 6.649726 1.656549)
(xy 6.614097 1.582052)
(xy 6.582917 1.516616)
(xy 6.55732 1.462634)
(xy 6.538442 1.422497)
(xy 6.527416 1.398596)
(xy 6.524978 1.392789)
(xy 6.535109 1.390335)
(xy 6.56088 1.388873)
(xy 6.5786 1.388682)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp c09a41b2-c8ad-4da7-9e0c-da74a5aa9080))
(fp_poly
(pts
(xy 1.924929 1.390677)
(xy 1.978838 1.394177)
(xy 2.114761 1.910644)
(xy 2.142233 2.01453)
(xy 2.168109 2.111432)
(xy 2.191805 2.199223)
(xy 2.212735 2.275778)
(xy 2.230312 2.338967)
(xy 2.243951 2.386666)
(xy 2.253065 2.416746)
(xy 2.257054 2.427081)
(xy 2.261224 2.416534)
(xy 2.270703 2.386316)
(xy 2.284883 2.338547)
(xy 2.303158 2.275344)
(xy 2.324921 2.198827)
(xy 2.349563 2.111114)
(xy 2.376479 2.014324)
(xy 2.40505 1.910615)
(xy 2.546678 1.394177)
(xy 2.595624 1.390633)
(xy 2.626738 1.390119)
(xy 2.639273 1.395204)
(xy 2.639126 1.401922)
(xy 2.635158 1.415386)
(xy 2.62579 1.448531)
(xy 2.611602 1.499268)
(xy 2.593174 1.565507)
(xy 2.571086 1.645158)
(xy 2.545918 1.736131)
(xy 2.51825 1.836336)
(xy 2.488661 1.943683)
(xy 2.477556 1.984022)
(xy 2.32143 2.551288)
(xy 2.258559 2.551239)
(xy 2.195689 2.551189)
(xy 2.038734 1.983972)
(xy 2.008439 1.874575)
(xy 1.979865 1.771561)
(xy 1.953594 1.677017)
(xy 1.930209 1.593033)
(xy 1.910293 1.521696)
(xy 1.894428 1.465095)
(xy 1.883196 1.425319)
(xy 1.877181 1.404457)
(xy 1.876399 1.401965)
(xy 1.878766 1.393061)
(xy 1.896966 1.389801)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp a33df64f-32cb-4512-bcc9-e8919686018d))
(fp_poly
(pts
(xy -0.281863 3.869266)
(xy -0.281679 3.972363)
(xy -0.281276 4.054903)
(xy -0.28056 4.118907)
(xy -0.279435 4.166395)
(xy -0.277806 4.199388)
(xy -0.275578 4.219907)
(xy -0.272655 4.229972)
(xy -0.268943 4.231605)
(xy -0.264961 4.227688)
(xy -0.253 4.212357)
(xy -0.229139 4.182558)
(xy -0.195792 4.141283)
(xy -0.155379 4.091521)
(xy -0.110315 4.03626)
(xy -0.098809 4.022184)
(xy -0.048725 3.961143)
(xy -0.010519 3.915432)
(xy 0.018133 3.882829)
(xy 0.039556 3.861113)
(xy 0.056074 3.848062)
(xy 0.070011 3.841456)
(xy 0.083692 3.839072)
(xy 0.093133 3.83874)