-
Notifications
You must be signed in to change notification settings - Fork 14
/
bitdoglab_painel.kicad_pcb
21886 lines (21867 loc) · 935 KB
/
bitdoglab_painel.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")
(title_block
(title "BitDogLab Panel SMD version")
(date "2024-03-13")
(rev "v5.3")
(company "Universidade Estadual de Campinas (Unicamp)*/Hardware Innovation Technologies (HwIT)**")
(comment 1 "Juliano Rodrigues Fernandes de Oliveira**")
(comment 2 "Bruno Cesar de Camargo Angeli**")
(comment 3 "Pedro Ivo Aragão Guimarães*")
(comment 4 "Fabiano Fruett*")
)
(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 "F.Fab")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "B.Fab")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user "B.CrtYd")
(49 "F.Fab" user "F.CrtYd")
(50 "User.1" user "User.9")
(51 "User.2" user "User.8")
(52 "User.3" user "User.7")
(53 "User.4" user "User.6")
(54 "User.5" user)
(55 "User.6" user "User.4")
(56 "User.7" user "User.3")
(57 "User.8" user "User.2")
(58 "User.9" user "User.1")
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "Black"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "White") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.1016)
(aux_axis_origin 41.839458 172.70615)
(grid_origin 157.219458 149.73615)
(pcbplotparams
(layerselection 0x7ffffff_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 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "VSYS_EXT")
(net 2 "3.3_OUT_EXT")
(net 3 "GNDREF")
(net 4 "/GP28_EXT")
(net 5 "/AGND_EXT")
(net 6 "/GP03_EXT")
(net 7 "/GP02_EXT")
(net 8 "/GP01_EXT")
(net 9 "/GP0_EXT")
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp 34af08b1-7c14-4fe1-b45e-516d59dd815f)
(at 115.969458 42.58615 90)
(descr "Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 2sqmm")
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/61497e6c-ba14-43ce-a7f3-52bed1e602d6")
(attr exclude_from_pos_files)
(fp_text reference "J4" (at 3.9 -3.15 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13424610-5486-4aaa-9e42-42020606361a)
)
(fp_text value "ANA-IN" (at 3.9 3.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a8fc8eb-3a2e-4dec-8595-4de1eacae9d1)
)
(fp_text user "${REFERENCE}" (at 3.9 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84470470-1d3d-415c-85e2-4c42b4fc22bb)
)
(fp_line (start -2.7 -2.45) (end -2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 35c7fd12-c169-4843-b669-03283190c0e9))
(fp_line (start -2.7 2.45) (end 2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19d90380-6b51-4165-9023-fa3be83c4d46))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e87b69b4-2366-4f4b-b191-99766457ad78))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89a41600-b242-43f1-a8f9-d6e6d65d2e7b))
(fp_line (start 5.1 -2.45) (end 5.1 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5645fa73-51b2-43e2-be39-090e1313feb8))
(fp_line (start 5.1 2.45) (end 10.5 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06016279-2b93-4881-b6d5-02022d952e08))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86979e88-cdf9-4a73-976f-6f627cd553d0))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cde8fe29-fd18-4f59-98bf-db2b16adabea))
(fp_circle (center 0 0) (end 1.95 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 66a6f318-fe9a-44b5-af8f-761d94c7b45d))
(fp_circle (center 7.8 0) (end 9.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 1ac37dcb-ca9f-4313-8f47-a30582cadcc2))
(pad "1" thru_hole circle (at 0 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 4 "/GP28_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp ec0513f1-9c89-4e60-915d-5880bc941c44))
(pad "2" thru_hole circle (at 7.8 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 4 "/GP28_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp 2465e636-1d0b-4b0d-aeb3-e411a5ab3007))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp 41e2ffde-e8f4-4d19-a04f-379f6b6dfcd3)
(at 186.479458 42.56615 90)
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/1c3a1ca7-fdfa-4855-8169-9eed89fd62fe")
(fp_text reference "J10" (at 3.18 -2.72 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
(tstamp 681f7f5b-e3a2-46e6-ab5d-e820edb03c6d)
)
(fp_text value "0" (at 5.42354 1.85022 270 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp 22e0a41c-d7f2-47c6-bd3d-084c6d3d07b5)
)
(fp_text user "'.Designator'" (at 5.39022 1.36643 180 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp 0d67372f-2227-4af1-bcf4-17aa29f56f3c)
)
(fp_line (start -2.7 2.45) (end -2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp c7a267ab-ac18-46ee-bd59-88ede72954a5))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 84d97037-9535-4430-8186-2547f8160bbb))
(fp_line (start 2.7 2.45) (end -2.7 2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 45e5cfb2-2962-4ef9-b3b5-21d52c5538ba))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 5d1aab88-df43-4010-a7c7-5762a1c3af9c))
(fp_line (start 5.1 2.45) (end 5.1 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 15dbd9c7-76dd-4b51-9840-c238748406a8))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 6a935073-d092-4321-a0dc-608061c03e0a))
(fp_line (start 10.5 2.45) (end 5.1 2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp ec34f705-b2c0-407f-a600-17a5d5a540c8))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 716978fa-7344-4922-b84b-d6947668124e))
(fp_circle (center 0 0) (end -1.95 0)
(stroke (width 0.254) (type solid)) (fill none) (layer "Eco1.User") (tstamp 70ebaf16-5e32-4908-be66-9982331b3fc4))
(fp_circle (center 7.8 0) (end 5.85 0)
(stroke (width 0.254) (type solid)) (fill none) (layer "Eco1.User") (tstamp f8366577-ea37-4a2f-99fd-edd24af23770))
(pad "1" thru_hole circle (at 0 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 6 "/GP03_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp 4b4cfb00-ed44-4bd5-a1f4-d90a07bd2ae0))
(pad "2" thru_hole circle (at 7.8 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 6 "/GP03_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp b833bc3f-3798-4e14-8c79-bc646641703c))
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp 6577cf44-b86d-46a7-93f8-11236f13633b)
(at 178.589458 42.58615 90)
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/79b28b98-336d-4ee8-8827-193ca6a38bc1")
(fp_text reference "J11" (at 3.27 -2.77 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
(tstamp 235b9ea9-14b5-4b1c-a4af-67f8c53c6bdd)
)
(fp_text value "1" (at 7.33504 1.85022 270 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp cb99b8fc-b57f-4c02-a043-e1a0f4b568c0)
)
(fp_text user "'.Designator'" (at 11.568555 4.31491 180 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp 2be3256e-a8ee-4cb1-9768-efd5f6d690bc)
)
(fp_line (start -2.7 2.45) (end -2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 5d6aeccc-ac4d-4e8b-9a28-1f67838e2352))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 0a7271bd-19f5-4e51-b094-cdfa23446a66))
(fp_line (start 2.7 2.45) (end -2.7 2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp f88ff2cf-2844-42b2-b11f-393204c57ff3))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 4e743cfb-9934-447b-85a4-16972ee8eb07))
(fp_line (start 5.1 2.45) (end 5.1 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 650f45ef-5db7-47e5-8a70-f688d366c34e))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 77ac24af-992f-4505-8bc2-7e349b13efe1))
(fp_line (start 10.5 2.45) (end 5.1 2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp c41662ea-2a21-457a-9c4c-9994e03c42dc))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 4b60accf-4943-412f-a03d-9d7b0d7e3250))
(fp_circle (center 0 0) (end -1.95 0)
(stroke (width 0.254) (type solid)) (fill none) (layer "Eco1.User") (tstamp 3a1b396b-4281-4020-b604-9add88850f93))
(fp_circle (center 7.8 0) (end 5.85 0)
(stroke (width 0.254) (type solid)) (fill none) (layer "Eco1.User") (tstamp 54dd714b-765f-4288-9203-7d3d571422b9))
(pad "1" thru_hole circle (at 0 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 7 "/GP02_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp 6c3cc56a-2aa0-4a85-8f33-e04ce01b4821))
(pad "2" thru_hole circle (at 7.8 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 7 "/GP02_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp 5701f002-0245-4c8a-bb67-14637160cf24))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 6594c580-12eb-4d11-ac9c-202b38cc0ffe)
(at 109.662368 48.737595 90)
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated")
(property "ki_keywords" "connector")
(path "/82c10ec0-86ba-45d7-af6b-cefe84f34b11")
(fp_text reference "J2" (at -0.97604 -1.1302 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
(tstamp a929ba14-481e-44e1-99ee-3cbc62c49070)
)
(fp_text value "Conn_01x05_Pin" (at -5.85119 14.17065 90 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp 99a5222f-e468-4a9f-bf2e-163a0617544a)
)
(fp_text user "'.Designator'" (at -1.49022 4.10396 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp 95b901e3-a124-4572-9db4-a69055918725)
)
(fp_line (start -1.33 -1.33) (end -1.33 0)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ae0a10a8-a390-4e28-8c4b-b433c4d61c57))
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e09cd90b-204f-4628-aa9f-60116aa17219))
(fp_line (start -1.33 1.27) (end -1.33 11.49)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 48fa398f-90f1-415d-8f08-66318a4cbd46))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c44d4de1-54a7-49d7-ac43-f3fde4b16a28))
(fp_line (start -1.33 11.49) (end 1.33 11.49)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp caca0045-bd7b-49c5-9974-6ad9bf2379c9))
(fp_line (start 1.33 1.27) (end 1.33 11.49)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6c9ac64e-6014-41d2-aebf-975d6b0d80a7))
(fp_line (start -1.8 -1.8) (end -1.8 11.95)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp e7c41312-e5a3-4155-a59d-60c79b371499))
(fp_line (start -1.8 -1.8) (end 1.8 -1.8)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 6ab3067c-3e77-441d-8101-68ac9e6e5555))
(fp_line (start -1.8 11.95) (end 1.8 11.95)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 289a67b1-f66b-4845-b221-08dc8750ccb1))
(fp_line (start 1.8 -1.8) (end 1.8 11.95)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp ea49f48c-b4aa-46ec-8125-da0e091fc40a))
(fp_line (start -1.27 -0.635) (end -1.27 11.43)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp 0ebf76fe-fec6-4fa8-ae80-ef4c9589ed49))
(fp_line (start -1.27 11.43) (end 1.27 11.43)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp b17d8668-d379-48c5-8ad4-10c4834c013d))
(fp_line (start -0.635 -1.27) (end -1.27 -0.635)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp b91c72b4-888f-45f8-9136-60a999f4b0bf))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp 8d61b10c-fb41-48f3-9b55-574a80449653))
(fp_line (start 1.27 -1.27) (end 1.27 11.43)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp 6c3c76f6-407b-480b-889b-ece7a4aeebc3))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GNDREF") (pinfunction "Pin_1") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp f82bd692-e421-4543-9090-99b69be1e589))
(pad "2" thru_hole roundrect (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 4 "/GP28_EXT") (pinfunction "Pin_2") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp cc85c745-613c-4b02-b657-dee0f1c85310))
(pad "3" thru_hole roundrect (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 5 "/AGND_EXT") (pinfunction "Pin_3") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp 6aca0eeb-edfe-424d-aebf-6f56e73df24a))
(pad "4" thru_hole roundrect (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 2 "3.3_OUT_EXT") (pinfunction "Pin_4") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp a502033a-a4f1-4449-a1e1-1d66fe342f7e))
(pad "5" thru_hole roundrect (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 1 "VSYS_EXT") (pinfunction "Pin_5") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp 652a89c8-282e-45b1-a8aa-16c86917b6fe))
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp 73b8640d-37a6-4ced-b075-87ee215fb212)
(at 129.999458 34.85615 -90)
(descr "Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 2sqmm")
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/4934fa38-66af-40f3-b6cf-f7767d05939e")
(attr exclude_from_pos_files)
(fp_text reference "J6" (at 3.9 -3.15 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11208c4b-5fa9-445f-a808-1a6d5730236a)
)
(fp_text value "3V3" (at 3.9 3.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dfbd6658-81e3-4a24-9867-aa913e37cb9d)
)
(fp_text user "${REFERENCE}" (at 3.9 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d779c58-6194-4610-9f18-283e2d1e486d)
)
(fp_line (start -2.7 -2.45) (end -2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14a6800c-bcdd-4a37-9f1b-773010e26494))
(fp_line (start -2.7 2.45) (end 2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b156e5e-c387-459d-943e-7ff4d304f1d3))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24a10708-b2f6-4b5a-82d4-775b861da92e))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bac89a8c-f75e-4e1a-a854-714d4f555865))
(fp_line (start 5.1 -2.45) (end 5.1 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65ac4b72-3c4b-40d5-90ff-b558cc8ffdb4))
(fp_line (start 5.1 2.45) (end 10.5 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b57a6b6b-1153-4639-9154-4917f874bcf9))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02c772d3-f80c-4e99-ba0d-c342e723479c))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e1491b9-06ea-4a78-854f-ac7d6376f2bd))
(fp_circle (center 0 0) (end 1.95 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp c850552f-e498-452e-9349-6167f25694e1))
(fp_circle (center 7.8 0) (end 9.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 6adc1a20-e043-4686-b72c-53ddd08187c7))
(pad "1" thru_hole circle (at 0 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 2 "3.3_OUT_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp 4c7420b7-d502-4eae-bff7-3e03cb377ef5))
(pad "2" thru_hole circle (at 7.8 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 2 "3.3_OUT_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp e42858f5-6ab7-41e8-bc62-79a7c35913f0))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 76432d8f-e064-425d-bd8e-f080f9dc9cf3)
(at 190.176368 48.731245 -90)
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated")
(property "ki_keywords" "connector")
(path "/becdf531-5852-4f85-a087-c27638d9ea65")
(fp_text reference "J9" (at 1.36643 -3.5298 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
(tstamp f9e6c66e-28c6-4acc-b705-90fb159035b7)
)
(fp_text value "Conn_01x05_Pin" (at 5.85119 10.80935 90 unlocked) (layer "Eco1.User") hide
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp f4c72538-9ee2-453e-8947-6ea3a78df6a3)
)
(fp_text user "'.Designator'" (at 1.49022 6.44644 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp e6180ba3-1cfd-40b3-bbc6-1b8992dd42f3)
)
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c3262690-c68d-4bb2-8492-eb291797a089))
(fp_line (start -1.33 11.49) (end -1.33 1.27)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp bb373930-1eb9-4e19-b140-071d44782505))
(fp_line (start 0 -1.33) (end -1.33 -1.33)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4977ff9a-5560-4059-a24b-09b57e11a2f1))
(fp_line (start 1.33 1.27) (end -1.33 1.27)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 7526db64-78ac-4b34-b391-9e7e2e46d0b2))
(fp_line (start 1.33 11.49) (end -1.33 11.49)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp fea9ac02-f58b-4fb4-a0d5-1e2bb5be800d))
(fp_line (start 1.33 11.49) (end 1.33 1.27)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 14df99c0-d524-46c7-b5b6-cd0c9961fe93))
(fp_line (start -1.8 11.95) (end -1.8 -1.8)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 6a43a702-75c2-411f-916b-53488421caad))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 00c29aad-3e1e-4d6c-a30d-21baaaf79b07))
(fp_line (start 1.8 11.95) (end -1.8 11.95)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp f887ebce-924e-413c-b6a0-965d0c57d9d9))
(fp_line (start 1.8 11.95) (end 1.8 -1.8)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp edfa89e4-7145-4e55-ae51-24d25ad0f7d1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp 7bfec653-63e9-4f95-9a4b-5c585a661b01))
(fp_line (start -1.27 11.43) (end -1.27 -0.635)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp e431ea78-9f2e-4c70-aa44-211a348e0874))
(fp_line (start 1.27 -1.27) (end -0.635 -1.27)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp 3b5de014-6b51-4616-87e0-66a2215b5494))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp c9508875-25a9-4164-b030-4e9380cdadad))
(fp_line (start 1.27 11.43) (end 1.27 -1.27)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp 3a8fb89a-82b9-44d6-b783-73b2d6fc8374))
(pad "1" thru_hole roundrect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 6 "/GP03_EXT") (pinfunction "Pin_1") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp 8ac2bca4-63eb-4e4c-9e9e-a7a4dab5596f))
(pad "2" thru_hole roundrect (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 7 "/GP02_EXT") (pinfunction "Pin_2") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp 90d23e49-c8b7-4671-9cf4-a95a837aa0c8))
(pad "3" thru_hole roundrect (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 8 "/GP01_EXT") (pinfunction "Pin_3") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp 42746e32-c836-447d-8109-8f34348ce7bd))
(pad "4" thru_hole roundrect (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 9 "/GP0_EXT") (pinfunction "Pin_4") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp 496b8996-7a2b-4870-839a-ddf303da51a4))
(pad "5" thru_hole rect (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GNDREF") (pinfunction "Pin_5") (pintype "passive") (solder_mask_margin 0.1016) (solder_paste_margin -1518.485687) (thermal_bridge_angle 45) (tstamp 8058f3e0-e610-469a-84b3-5e49057123b1))
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp 7c7ebef0-cea3-4c20-ba7e-8667420e742b)
(at 108.829458 34.91615 -90)
(descr "Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 2sqmm")
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/594cdaeb-22e1-4e2d-bf13-d2c04fe75dc6")
(attr exclude_from_pos_files)
(fp_text reference "J3" (at 3.9 -3.15 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23da05ae-ba4f-434d-8b00-28e648cc004b)
)
(fp_text value "GND" (at 3.9 3.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8016855b-ffe7-4fd0-8ae3-6c8ff8503106)
)
(fp_text user "${REFERENCE}" (at 3.9 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5923ded-7649-4438-bbd0-0366cc019169)
)
(fp_line (start -2.7 -2.45) (end -2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b7d37f1-3ed6-4942-b414-186667ad0f8c))
(fp_line (start -2.7 2.45) (end 2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79f125fa-7e65-45a7-a669-79a90fb0d1fc))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05211402-288d-4589-8cf4-fd6c6a9a2353))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2e6b824-94db-4863-8153-c0ddb4959735))
(fp_line (start 5.1 -2.45) (end 5.1 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08a384cc-b00d-44f3-8e2a-25c9cb87747c))
(fp_line (start 5.1 2.45) (end 10.5 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f46c8518-aad5-4e73-bb24-e92d2858ee68))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c44014b-3637-4e83-bc37-d23008352b5e))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea953660-12a0-40a7-b2d5-0a11de23df5a))
(fp_circle (center 0 0) (end 1.95 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 7d7e1f67-b1cf-48e9-9f3b-24e76e673c94))
(fp_circle (center 7.8 0) (end 9.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e2d1ec1e-1456-44a1-9a1b-669eea033ad6))
(pad "1" thru_hole circle (at 0 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 3 "GNDREF") (pinfunction "Pin_1") (pintype "passive") (tstamp 304c1bd5-6e60-444d-a032-6f64bcafe9d7))
(pad "2" thru_hole circle (at 7.8 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 3 "GNDREF") (pinfunction "Pin_2") (pintype "passive") (tstamp 413dbda5-a1ca-4a19-bdc6-a50b88d5db03))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp b5b32fbf-305c-4c7f-ae59-30f8bd5b0bba)
(at 137.049458 34.83615 -90)
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/3bbd6a46-f911-46ea-931e-7378189c75c6")
(fp_text reference "J7" (at 4.89985 -4.3498 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
(tstamp 4e05e228-6c1d-4703-a5d5-03b58569898e)
)
(fp_text value "5V-VSYS" (at 5.47591 1.85022 90 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp 26e7ab3b-09d1-4376-ab8e-8ce18c2d6526)
)
(fp_text user "'.Designator'" (at 5.39022 0.99985 unlocked) (layer "Eco1.User")
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
(tstamp 48432dbc-d56e-4370-974d-3cc72b373fb8)
)
(fp_line (start -2.7 2.45) (end -2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 3cfea7e6-bbf5-4663-a22a-79f96ca1d5ec))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp b4a24ec1-2ad8-4b47-be66-a02f487cbb69))
(fp_line (start 2.7 2.45) (end -2.7 2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 95cb9f71-c844-4fa2-ba1b-c22f6ac12051))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 00ec1068-89fc-448d-a40b-57a977743cea))
(fp_line (start 5.1 2.45) (end 5.1 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp c92f1360-e623-40f4-9e9e-c1ab86c0ddfc))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp a4800cd4-f97a-4b8d-8b8a-da0af992b7a9))
(fp_line (start 10.5 2.45) (end 5.1 2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 78bb59bc-3e1c-4637-87e1-375063e8fe81))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.254) (type solid)) (layer "Dwgs.User") (tstamp 48d6173e-3e40-4c9b-90ff-1e2b27203fe4))
(fp_circle (center 0 0) (end -1.95 0)
(stroke (width 0.254) (type solid)) (fill none) (layer "Eco1.User") (tstamp 807a5fa1-86db-475c-a52c-6bd3b8638319))
(fp_circle (center 7.8 0) (end 5.85 0)
(stroke (width 0.254) (type solid)) (fill none) (layer "Eco1.User") (tstamp 0c8d3697-14e1-4223-925b-69dbfb3f7f43))
(pad "1" thru_hole circle (at 0 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 1 "VSYS_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp ffd9fb70-d52e-4498-bb60-e94f4201e305))
(pad "2" thru_hole circle (at 7.8 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 1 "VSYS_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp 460808cf-7a87-4174-b582-8862ae513d00))
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp c57432f4-94c7-4f26-93d1-04057dd5a600)
(at 170.899458 34.64615 -90)
(descr "Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 2sqmm")
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/0a1a7cee-bf1d-4dec-996e-c7a00e6b54ed")
(attr exclude_from_pos_files)
(fp_text reference "J12" (at 4.17 3.33 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d21204f-4a45-4fb1-84ba-9fc8a5ceb896)
)
(fp_text value "2" (at 3.9 3.15 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6595aaa0-49c6-455c-a78c-bcae0ec12f45)
)
(fp_text user "${REFERENCE}" (at 3.9 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd265075-0b78-4bbb-97f2-283c76bc2ac4)
)
(fp_line (start -2.7 -2.45) (end -2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 710c7fb6-5141-4d27-9eea-ae6713ade1c7))
(fp_line (start -2.7 2.45) (end 2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 11f96a58-e2dc-420a-ab32-19a412fd4318))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0dd97ac4-a157-4791-a539-afa544a1f988))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48899e28-f9c8-47e7-8b23-d31d7fa18f47))
(fp_line (start 5.1 -2.45) (end 5.1 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c351226-582d-4c7b-8a9b-1a5cc4f49397))
(fp_line (start 5.1 2.45) (end 10.5 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d061045e-15cc-4474-a182-674fb11964a6))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eceac7a3-9a23-4252-bc16-31d777da8a25))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75e5bfea-d069-4cb5-a166-fa751605636f))
(fp_circle (center 0 0) (end 1.95 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp f4da1c8d-dbaf-471e-8648-d9e3cf440641))
(fp_circle (center 7.8 0) (end 9.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 49537e6f-9642-4c56-9d1a-2099d5d64c6e))
(pad "1" thru_hole circle (at 0 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 8 "/GP01_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp fc2aac94-4015-4c0a-925f-2965abcb6b12))
(pad "2" thru_hole circle (at 7.8 0 270) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 8 "/GP01_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp 220ec6a2-1624-4921-a79e-89abfca6ee6e))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp e4033196-120c-4466-9f23-b2104cc635eb)
(at 162.819458 42.74615 90)
(descr "Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 2sqmm")
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/88ce599c-2579-4321-9f04-8871e5e9bd40")
(attr exclude_from_pos_files)
(fp_text reference "J13" (at 3.9 -3.15 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1ad1efb-313d-4773-a5bc-478dbb94779d)
)
(fp_text value "3" (at 3.9 3.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dab488b6-d807-4a79-b05b-60b524a9f4cc)
)
(fp_text user "${REFERENCE}" (at 3.9 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55cdad47-b0e8-4cf6-be97-46a860dc482b)
)
(fp_line (start -2.7 -2.45) (end -2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85b1237e-2922-46d6-b65d-415bf7da1217))
(fp_line (start -2.7 2.45) (end 2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 507a3a38-529b-48b6-8e00-19d997fbd122))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48e6b3e6-a15b-4580-b8a5-58b6d7d2aaa5))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f7b0bb4-fce2-48f1-915b-f98dd45fee80))
(fp_line (start 5.1 -2.45) (end 5.1 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 712bec09-8a1c-4bc8-806d-117adfa08c19))
(fp_line (start 5.1 2.45) (end 10.5 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a566cccf-dd46-4253-a167-095612b82f38))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 55617237-28ad-40b4-a2c8-4428fe075814))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 932a7351-ba4c-4da6-9a09-bbfbf9b05a7b))
(fp_circle (center 0 0) (end 1.95 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp cfa83515-ef1f-45ad-88bb-e1a4b4e39d97))
(fp_circle (center 7.8 0) (end 9.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp d7d06386-1d06-4e7e-b567-1a78ec0119cc))
(pad "1" thru_hole circle (at 0 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 9 "/GP0_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp 6e8094ae-8cae-424c-9eb6-16c445e20cd2))
(pad "2" thru_hole circle (at 7.8 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 9 "/GP0_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp 4dea2dc8-7fca-47a4-a729-4329d2708a7a))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm" (layer "F.Cu")
(tstamp f8afed67-ae42-417c-bcad-d95f01fba193)
(at 123.009458 42.63615 90)
(descr "Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 2sqmm")
(property "Sheetfile" "bitdoglab_painel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/068f6acb-1336-49ed-b89f-d7e55d2c5575")
(attr exclude_from_pos_files)
(fp_text reference "J5" (at 3.9 -3.15 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa328d59-8cf0-4179-8bb7-549ae032fc1c)
)
(fp_text value "GND" (at 3.9 3.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8dbb112f-3e83-436c-8945-afcb2ba835c9)
)
(fp_text user "${REFERENCE}" (at 3.9 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0192935d-a28e-4a5b-91d2-6f81297904d3)
)
(fp_line (start -2.7 -2.45) (end -2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bec008a7-474c-4d3f-80c0-f7d68454425f))
(fp_line (start -2.7 2.45) (end 2.7 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 383b234b-403b-45f1-a920-001aaebc0b77))
(fp_line (start 2.7 -2.45) (end -2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d92004c0-cbad-48a7-b834-f61cf38cf769))
(fp_line (start 2.7 2.45) (end 2.7 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f8eca9f-2af6-47f5-8148-5c52440d252f))
(fp_line (start 5.1 -2.45) (end 5.1 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e4f22f9-1512-4691-bb47-626c56939fc3))
(fp_line (start 5.1 2.45) (end 10.5 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dcb1b43-4f84-41ff-bd9d-d48333956f06))
(fp_line (start 10.5 -2.45) (end 5.1 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2100d6a-18b2-4b3c-8593-24559b6b99b4))
(fp_line (start 10.5 2.45) (end 10.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9a34a74-8fad-4d29-84a5-d2439792ec5c))
(fp_circle (center 0 0) (end 1.95 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp fd9029d8-edda-4d9d-9ca3-c81863ab0990))
(fp_circle (center 7.8 0) (end 9.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2458d614-2199-4b5d-b391-3e1cb1a6c5e0))
(pad "1" thru_hole circle (at 0 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 5 "/AGND_EXT") (pinfunction "Pin_1") (pintype "passive") (tstamp c8b06774-f8d3-4ab2-98de-279033ce2069))
(pad "2" thru_hole circle (at 7.8 0 90) (size 5 5) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 5 "/AGND_EXT") (pinfunction "Pin_2") (pintype "passive") (tstamp 874edadc-1488-474e-abc5-9e00200c255e))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_arc (start 105.23289 31.682242) (mid 105.976826 29.886178) (end 107.77289 29.142242)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp 1052a383-b306-41a9-9051-db756864dc8a))
(gr_line (start 107.77289 29.142242) (end 190.540788 29.142242)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp 1a63b9f2-67c2-4a64-bf29-33ccb57121f9))
(gr_line (start 157.179458 49.676501) (end 157.179458 36.866727)
(stroke (width 0.2) (type default)) (layer "Edge.Cuts") (tstamp 1f4e4b2f-ba34-4240-a55f-f514dc4378e2))
(gr_line (start 107.779913 52.28615) (end 140.639458 52.28615)
(stroke (width 0.2) (type default)) (layer "Edge.Cuts") (tstamp 1f7eca47-258b-4209-848a-c0e7ec327841))
(gr_arc (start 193.079458 49.680087) (mid 192.340614 51.470182) (end 190.553476 52.21615)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp 25c25e04-1c92-46e3-a0a4-6b2c5192a0f0))
(gr_arc (start 190.540788 29.142242) (mid 192.336356 29.886254) (end 193.079458 31.6822)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp 340017dd-a48f-4358-9aef-7373412bcbfc))
(gr_arc (start 143.227699 36.822012) (mid 143.971677 35.025965) (end 145.767753 34.282011)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp 5d468d65-f70e-4e0e-8cc4-64b2671cda7e))
(gr_line (start 193.079458 49.680087) (end 193.079458 31.6822)
(stroke (width 0.2) (type default)) (layer "Edge.Cuts") (tstamp 6abcce20-6f98-4fd1-9c0f-c1d342d4ba7e))
(gr_line (start 159.707495 52.21615) (end 190.553476 52.21615)
(stroke (width 0.2) (type default)) (layer "Edge.Cuts") (tstamp 7cd0073a-2bdb-43c8-b252-a036518bc6b0))
(gr_arc (start 107.779913 52.28615) (mid 106.132761 51.690751) (end 105.232891 50.18814)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp 7fef80e1-0971-4656-95c7-c7a253ad8ff7))
(gr_arc (start 154.577925 34.274439) (mid 156.414153 35.033212) (end 157.179458 36.866727)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp 8ac439b4-5c3c-42ab-9217-cc866dbf1379))
(gr_line (start 105.232891 50.18814) (end 105.23289 31.682242)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp a84b007f-db2b-4497-a9cf-4857c452808f))
(gr_arc (start 143.228477 49.693548) (mid 142.472557 51.523386) (end 140.645562 52.28615)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp e098ac54-b4ee-4359-91e0-a3d515e4c159))
(gr_line (start 154.577925 34.274439) (end 145.767753 34.282011)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp e34e16b0-bdf7-4932-ae15-daa98bd4fe3c))
(gr_line (start 143.227699 36.822012) (end 143.228477 49.693548)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp e9be30b7-4392-4596-ad8d-9722899ebd45))
(gr_arc (start 159.707495 52.21615) (mid 157.916265 51.471126) (end 157.179458 49.676501)
(stroke (width 0.2) (type solid)) (layer "Edge.Cuts") (tstamp f82e4302-35f0-44c8-8329-6d42e93eb912))
(gr_line (start 192.620828 30.177635) (end 192.689558 30.270045)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 00ff80cf-b266-4ad1-85df-83ecef95e1f7))
(gr_line (start 159.388058 52.159195) (end 159.885998 52.208235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0276ec26-4bd3-42e4-94c6-978b0dcf089c))
(gr_line (start 190.719318 29.123645) (end 190.969478 29.123645)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 02c6cb40-1f8b-44c1-9fd3-ccd99bb412c5))
(gr_line (start 143.393938 36.803415) (end 143.406228 36.803415)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 034918f9-dfcb-40b0-856c-4049cb43e84a))
(gr_line (start 107.656348 29.268425) (end 107.771318 29.257055)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 03da1893-9c54-43be-9fb7-0d7b1b1272ca))
(gr_line (start 190.783898 29.251195) (end 190.899008 29.257035)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 053384b4-5bd7-4da1-ab79-3f6e7f0d658d))
(gr_line (start 107.951418 29.123645) (end 190.719318 29.123645)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 05983dec-521a-4ceb-9c6a-7c6964e0a768))
(gr_line (start 140.867108 52.227235) (end 141.365018 52.178195)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 07076e99-5208-481e-a867-08186c13cbed))
(gr_line (start 157.382758 50.153885) (end 157.527988 50.632675)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 08c5a69b-718f-4feb-8a1e-ed0b24b90845))
(gr_line (start 191.907278 29.562995) (end 192.006248 29.622125)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 096d016b-aa3b-4918-8652-2b0f2adc8f88))
(gr_line (start 155.733108 34.437835) (end 156.174388 34.673705)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0b47c488-5b25-41a8-9e92-7e15818762e3))
(gr_line (start 193.259308 49.911705) (end 193.259318 49.661545)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0c1b8c42-4c1f-45bd-9197-0a84b9e57709))
(gr_line (start 106.558328 29.692985) (end 106.615588 29.654565)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0c37037d-2724-456c-bbca-06a015be62b5))
(gr_line (start 144.969518 34.445405) (end 145.448308 34.300165)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0c5fce0d-2b3e-4419-b0c6-0d697cab5028))
(gr_line (start 156.174388 34.673705) (end 156.561168 34.991125)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0d9b682e-87d3-470a-aef9-6c3cce59d252))
(gr_line (start 140.866998 52.227225) (end 140.867108 52.227235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0dcdbfd6-33b3-46b8-9014-32c7e24d4007))
(gr_line (start 192.470548 30.003175) (end 192.547768 30.088615)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0f6daf1a-6d1f-4fd5-8497-b4fe4c108283))
(gr_line (start 192.547768 30.088615) (end 192.620828 30.177635)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 0fce3a4d-ccfa-4cd8-8aee-2bec12b5e48a))
(gr_line (start 157.114458 35.819185) (end 157.259698 36.297995)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 103c810f-da17-4d50-b758-73bd6eff4d21))
(gr_line (start 105.851148 30.474905) (end 105.910888 30.375055)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 1164c290-237c-4fad-9892-03a813ea0de6))
(gr_line (start 191.862108 51.799565) (end 192.257258 51.535535)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 130472cc-2c44-4fbb-980b-54c069bc948d))
(gr_line (start 142.671778 51.479725) (end 142.989168 51.092975)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 151bb4ad-ce7f-4c05-95c8-d687af0b6e2f))
(gr_line (start 157.382758 50.153885) (end 157.527988 50.632675)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 151ffddb-ea75-4e70-a98f-a2572a9d574d))
(gr_line (start 142.285028 51.797115) (end 142.671778 51.479725)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 163490b0-0c12-4dc7-9109-ce7049fc3504))
(gr_line (start 141.365018 52.178195) (end 141.843788 52.032965)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 165573cd-d304-4bb1-b9e5-03aa1f3eafa1))
(gr_line (start 143.442978 36.305495) (end 143.588218 35.826695)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 17035b1b-f37e-4a4c-9a0b-de08006e95c8))
(gr_line (start 145.946278 34.263415) (end 145.946278 34.251125)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 17ba98e9-e332-495c-97d7-52247dd78bbc))
(gr_line (start 156.878588 35.377905) (end 157.114458 35.819185)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 1ae5f706-327f-4d4b-8e59-8a5e1f9f9728))
(gr_line (start 193.161698 30.922755) (end 193.259308 31.413475)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 1aee335d-49ac-4c3f-a38a-550b701b870b))
(gr_line (start 143.370258 50.172955) (end 143.419288 49.674945)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 1c6f9096-5c1f-44bc-9c68-332073bdc343))
(gr_line (start 158.468018 51.778095) (end 158.909268 52.013955)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 1e0c683e-3e54-476f-9b21-4f1ec5e54e2b))
(gr_line (start 191.805608 29.508655) (end 191.907278 29.562995)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 1e580ae4-afd3-4544-b96f-ee92addc5232))
(gr_line (start 106.864428 29.508965) (end 106.968678 29.459475)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2021129a-5f81-4e22-b3da-ea6297d1aa17))
(gr_line (start 157.114458 35.819185) (end 157.259698 36.297995)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 20f08059-1f80-407f-938b-e6b4ca208b94))
(gr_line (start 155.254298 34.292595) (end 155.733108 34.437835)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 235d9160-b234-43f5-998a-23e3c76e6469))
(gr_line (start 156.878588 35.377905) (end 157.114458 35.819185)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 27101376-097f-47ee-a1eb-47b6c00b366b))
(gr_line (start 193.259308 31.413475) (end 193.259318 31.663645)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 274f01c2-21cb-43b8-a7f7-68077adc5926))
(gr_line (start 142.989168 51.092975) (end 143.225018 50.651735)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2844e2be-0942-43fe-9c12-88a0605ee688))
(gr_line (start 157.114458 35.819185) (end 157.259698 36.297995)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 28b30378-9c39-47a0-b0b2-9a3e1d3f907f))
(gr_line (start 154.756448 34.255835) (end 154.756458 34.243555)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 28cb4ae2-92da-4c9f-bba7-3f8e8b4d4a50))
(gr_line (start 141.843788 52.032965) (end 142.285028 51.797115)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 29b14ff5-8f6f-409a-b471-9e768e94a04e))
(gr_line (start 157.527988 50.632675) (end 157.763848 51.073925)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 29f9f08e-ae88-42c0-a0f3-6c9a01a70b2a))
(gr_line (start 192.692248 51.280685) (end 192.970218 50.864675)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2a0b3a15-32d9-4a5d-acb8-f58b262cbe62))
(gr_line (start 158.081258 51.460695) (end 158.468018 51.778095)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2a46609d-96bb-49c3-af63-5a07c652557b))
(gr_line (start 156.561168 34.991125) (end 156.878588 35.377905)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2a90e388-8ed9-488e-84be-c46368975fda))
(gr_line (start 143.824078 35.385445) (end 144.141488 34.998675)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2ada21da-52d5-496a-a578-830f6a4775ed))
(gr_line (start 192.065148 29.661295) (end 192.112938 29.693415)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2b1c9b37-0093-4f87-87f8-7729df8210ca))
(gr_line (start 145.946278 34.263415) (end 154.756448 34.255835)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2bdf7da7-77da-4e6c-9ed7-841f0862cf9a))
(gr_line (start 107.951418 29.123645) (end 190.719318 29.123645)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2cbebc70-41f8-47d3-be13-2fd6f21c1ae4))
(gr_line (start 157.527988 50.632675) (end 157.763848 51.073925)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2d768e2f-6634-4c62-b77b-1d2597b80fbb))
(gr_line (start 143.824078 35.385445) (end 144.141488 34.998675)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2d810957-c143-4e86-8b06-3a372e21d3c8))
(gr_line (start 141.365018 52.178195) (end 141.843788 52.032965)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 2de44324-165c-41dd-9063-92d7813a1e11))
(gr_line (start 143.406228 36.803415) (end 143.442978 36.305495)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 315f78bb-fd28-43e7-b4c4-157cd7f1b76d))
(gr_line (start 159.885998 52.208235) (end 168.893368 52.268195)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 329c34a3-1607-4674-bed4-d5d37ef3d401))
(gr_line (start 193.131938 49.661545) (end 193.131938 41.279485)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 32e6d403-5625-41f0-919f-0ca3bacf8062))
(gr_line (start 191.252288 29.309925) (end 191.364248 29.338105)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 32e9a312-9aa7-429d-b35b-8df300ddb57a))
(gr_line (start 158.081258 51.460695) (end 158.468018 51.778095)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 33133a3b-e22b-4eb8-a3f4-538ca5351f20))
(gr_line (start 193.039208 50.365275) (end 193.131928 49.899165)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 334e9143-f558-428a-8864-3da4f7316461))
(gr_line (start 191.648248 29.437035) (end 191.701448 29.459235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 340f2587-5640-4b2d-a52d-49b476274abb))
(gr_line (start 157.296448 36.795775) (end 157.345998 49.655945)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 347ba82f-6785-4a11-8828-cf333a1ad78e))
(gr_line (start 105.978458 30.044475) (end 106.332248 29.690685)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3495c0a0-9993-4327-bb03-9d399e1a3e2f))
(gr_line (start 107.951418 29.123645) (end 190.719318 29.123645)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 35a331d8-f188-4969-a824-a99e605b9582))
(gr_line (start 105.700488 30.460495) (end 105.978458 30.044475)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 36fb5585-7dd0-40c2-9ac0-defee5dac208))
(gr_line (start 143.406228 36.803415) (end 143.419288 49.674945)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3758c48e-3864-471e-8397-f49497d77d9d))
(gr_line (start 143.393938 36.803415) (end 143.406228 36.803415)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 389a3bef-7ce7-484f-947e-6d419e463da4))
(gr_line (start 192.112938 29.693415) (end 192.205338 29.762135)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 395c9b5f-a44d-4661-803e-c4e97b882d10))
(gr_line (start 105.910888 30.375055) (end 105.947638 30.319885)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3a29d40a-999a-43ed-8c39-f2094f9d81e2))
(gr_line (start 144.528258 34.681265) (end 144.969518 34.445405)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3a6f0c34-87af-492c-9f33-135e0f55cac5))
(gr_line (start 141.843788 52.032965) (end 142.285028 51.797115)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3b1a68b9-2ed6-46dc-8cf7-32033a8b16a1))
(gr_line (start 141.843788 52.032965) (end 142.285028 51.797115)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3c2adf6c-0da6-4117-86ac-c081f3572816))
(gr_line (start 190.899008 29.257035) (end 191.013708 29.268355)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3cb018de-e250-4acd-8a78-549faed84e4e))
(gr_line (start 157.296448 36.795775) (end 157.345998 49.655945)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3cdcd63b-f664-4e85-bdd3-7827e34078bf))
(gr_line (start 192.205338 29.762135) (end 192.294348 29.835185)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3d527b3b-3f10-4dc1-9450-46ebaf0f46be))
(gr_line (start 157.333718 49.655945) (end 157.345998 49.655945)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3d5a7921-012e-4635-8a13-9c9c96cbc639))
(gr_line (start 157.763848 51.073925) (end 158.081258 51.460695)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3dbbd01f-65ad-4512-b0b2-9246bb57ec7b))
(gr_line (start 143.225018 50.651735) (end 143.370258 50.172955)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3e1d7d06-d526-43d4-8fd6-8a31f2410a2f))
(gr_line (start 159.388058 52.159195) (end 159.885998 52.208235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3e7f476e-f09d-47e0-9866-3ea3ba70b068))
(gr_line (start 157.333708 49.655965) (end 157.382758 50.153885)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 3fe17f46-6724-4dfd-b24e-3df3ecbcf600))
(gr_line (start 145.448308 34.300165) (end 145.946238 34.251115)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 41f4449a-9dec-475a-8bb4-6c3fd2b051de))
(gr_line (start 105.561818 31.310775) (end 105.607648 31.079295)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 42faa40f-f425-48fa-94db-950b708adc29))
(gr_line (start 141.365018 52.178195) (end 141.843788 52.032965)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4313bf3c-04b5-4df9-b795-a8d1c11ab816))
(gr_arc (start 105.411418 31.663639) (mid 106.15536 29.867577) (end 107.951421 29.123635)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4329fe3b-f113-4b87-a498-4ebcc1e0605b))
(gr_line (start 143.393938 36.803415) (end 143.442978 36.305495)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 43fb5900-a852-451b-a227-7ed44ab5a169))
(gr_line (start 105.411418 50.169545) (end 105.411418 31.663645)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4621645e-8103-439f-8f58-c452bb40d538))
(gr_line (start 106.465238 29.762205) (end 106.558328 29.692985)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 464bfc77-68b6-4126-801e-cbe00858fcf8))
(gr_line (start 158.909268 52.013955) (end 159.388058 52.159195)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 471fb967-b6d6-4cef-8c39-9b2e1df9af3b))
(gr_line (start 105.607648 31.079295) (end 105.675848 30.853405)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4793c736-ced8-4a59-9c3b-aab5b9f207ff))
(gr_line (start 144.141488 34.998675) (end 144.528258 34.681265)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 47b38998-12be-4171-9a1d-a1025ea08951))
(gr_line (start 119.473618 52.141925) (end 119.500678 52.141235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 485d5d7b-823a-45d1-b7bc-3c739648c926))
(gr_line (start 131.047368 52.268195) (end 140.867108 52.227235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 48b1f788-b20b-47cf-9f5d-742deb5dfce7))
(gr_line (start 157.114458 35.819185) (end 157.259698 36.297995)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4a5b9317-da75-4c70-bc31-5f613de96f99))
(gr_line (start 155.254298 34.292595) (end 155.733108 34.437835)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4afb92af-6f4d-4e2c-a5be-93cc6129d690))
(gr_line (start 140.867108 52.227235) (end 141.365018 52.178195)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4e5f03b5-c64e-44ee-a682-913a49f6732e))
(gr_line (start 158.909268 52.013955) (end 159.388058 52.159195)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 4ffeaa83-2067-4cc9-bc45-1f6b6e20ff8c))
(gr_line (start 192.379778 29.912405) (end 192.429948 29.962355)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 50431fff-7e8b-44fc-af4c-d4a6b0c4a543))
(gr_line (start 159.885978 52.208235) (end 159.885998 52.208235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 507381e2-ac15-429b-90b2-b7f81d480ee5))
(gr_line (start 106.289548 29.913675) (end 106.375568 29.835825)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 50e0c8a6-374c-4591-b552-073420e277f7))
(gr_line (start 157.259698 36.297995) (end 157.308728 36.795775)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 526a3136-9046-49e8-ace3-2de46ccb5894))
(gr_arc (start 190.719317 29.123635) (mid 192.515372 29.867579) (end 193.259318 31.663636)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 52c40dad-5aaa-44fa-bdf0-5ec9c0f7ad32))
(gr_line (start 105.724098 30.736365) (end 105.746458 30.682655)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 53f9140b-5b97-4c1a-b547-a1640d488adb))
(gr_line (start 143.588218 35.826695) (end 143.824078 35.385445)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 54c9299a-242a-45ca-8ddf-25c1e532c06c))
(gr_line (start 156.561168 34.991125) (end 156.878588 35.377905)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 56006c3c-810e-4d2b-99b8-d34cac1b702a))
(gr_line (start 157.763848 51.073925) (end 158.081258 51.460695)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 5679cc51-33ff-42ba-9531-56e4e1a2473c))
(gr_line (start 157.259698 36.297995) (end 157.308728 36.795775)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 5a408a2e-9c2c-4e82-8ad8-f1a96d13537a))
(gr_line (start 192.006248 29.622125) (end 192.065148 29.661295)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 5af4c995-cafd-4d51-b516-24ab7df9d597))
(gr_line (start 154.756458 34.243555) (end 155.254298 34.292595)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 5ca0eb82-b08a-42ce-9300-a141661d3de7))
(gr_line (start 180.369458 52.103215) (end 180.421398 52.077555)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 5ecf34c6-ddae-4d0d-b04d-c3c05727ec57))
(gr_line (start 157.259698 36.297995) (end 157.308728 36.795775)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 60240657-ef49-47ba-ace8-0dd44d50a628))
(gr_line (start 140.866998 52.227225) (end 140.867108 52.227235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 602cad9c-f9f9-402b-a45b-010dfd8fba4e))
(gr_line (start 143.419288 49.674945) (end 143.419368 36.803415)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 60e6821c-a0fc-4c0d-9933-a6ce81001aff))
(gr_line (start 131.047368 52.227595) (end 140.867108 52.227235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6160cd57-51f0-488c-91b1-759d11bb366f))
(gr_line (start 155.733108 34.437835) (end 156.174388 34.673705)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 630ba531-55bb-4fdd-b221-d0c3cf2ac6f5))
(gr_line (start 106.332248 29.690685) (end 106.748268 29.412715)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 63a35f69-cb47-47d6-98b2-abc9fad8408d))
(gr_line (start 157.333708 49.655965) (end 157.345998 49.655945)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 63dbdbe6-1136-46b7-abfe-da3ea2832bac))
(gr_arc (start 190.719317 29.123635) (mid 192.515372 29.867579) (end 193.259318 31.663636)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 657f713b-3c4e-4db5-8b54-c568fe4d6159))
(gr_line (start 156.174388 34.673705) (end 156.561168 34.991125)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 65ad6738-7394-40a0-b1c2-528b218b9c6d))
(gr_line (start 158.468018 51.778095) (end 158.909268 52.013955)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 65c2cb6e-dd4c-4862-a62f-822a18600813))
(gr_line (start 157.763848 51.073925) (end 158.081258 51.460695)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 667f1d32-3651-4c82-a772-762b7bb80697))
(gr_line (start 143.588218 35.826695) (end 143.824078 35.385445)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 66947d67-4a10-4853-bd3c-93f42b537a11))
(gr_line (start 159.388058 52.159195) (end 159.885998 52.208235)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 69dee4fe-455b-4aa6-97c7-8b7b89f566a4))
(gr_line (start 142.671778 51.479725) (end 142.989168 51.092975)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6a414469-2a6f-473e-bc37-27eccf07f2bc))
(gr_line (start 143.419288 49.674945) (end 143.419298 49.675055)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6c15b1ae-c367-4e88-8cee-04a0baa7cb71))
(gr_line (start 107.419398 29.309695) (end 107.485378 29.296455)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6d380d50-c3e1-4019-9ab0-7b9ecfa028d9))
(gr_line (start 192.689558 30.270045) (end 192.728958 30.328725)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6d7847ab-252a-4ae1-b2ba-23aea9105d13))
(gr_line (start 180.323068 52.206065) (end 180.334248 52.149225)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6e2f5580-3469-47a5-8bd1-17a599fcb82c))
(gr_line (start 156.878588 35.377905) (end 157.114458 35.819185)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6e4fd63d-de0d-49ed-aa04-5b3130ded518))
(gr_line (start 143.370258 50.172955) (end 143.417928 49.688685)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6e860f32-f8dc-447b-b239-eaf421635f82))
(gr_line (start 145.946278 34.263415) (end 145.946278 34.251125)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 6f28bbd9-bd9f-4ae6-bd55-df88362117a0))
(gr_line (start 145.946278 34.263415) (end 145.946278 34.251125)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 732b46bc-70f9-451b-90fe-64cb0cd8f72a))
(gr_line (start 155.733108 34.437835) (end 156.174388 34.673705)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 73509367-416e-4784-86ec-ef338ab6b6b5))
(gr_line (start 192.970218 30.460515) (end 193.161698 30.922755)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 74322cc6-8863-40f6-ac3e-69df181f6ba1))
(gr_line (start 143.370258 50.172955) (end 143.419288 49.674945)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 74d53070-3f3d-4c83-912d-be048c9d7b99))
(gr_line (start 145.448308 34.300165) (end 145.946278 34.251125)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 75b6c58d-7dc4-45cf-8202-02ebe0b9fe0e))
(gr_line (start 141.843788 52.032965) (end 142.285028 51.797115)
(stroke (width 0.254) (type solid)) (layer "User.1") (tstamp 7647f0b1-6b53-40f7-b260-d0605fb67033))