-
Notifications
You must be signed in to change notification settings - Fork 0
/
lcd controller.kicad_pcb
1411 lines (1392 loc) · 110 KB
/
lcd controller.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 20171130) (host pcbnew "(5.1.4-0-10_14)")
(general
(thickness 1.6)
(drawings 4)
(tracks 170)
(zones 0)
(modules 9)
(nets 26)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.3)
(trace_clearance 0.2)
(zone_clearance 0.3)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.5)
(via_drill 0.3)
(via_min_size 0.5)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.1)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/"))
)
(net 0 "")
(net 1 VCC)
(net 2 GND)
(net 3 /RESET)
(net 4 /SS)
(net 5 /SDA)
(net 6 /MOSI)
(net 7 /SCL)
(net 8 /MISO)
(net 9 /SCK)
(net 10 /RS)
(net 11 /RW)
(net 12 /E)
(net 13 /D0)
(net 14 /D1)
(net 15 /D2)
(net 16 /D3)
(net 17 /D4)
(net 18 /D5)
(net 19 /D6)
(net 20 /D7)
(net 21 /BACKLIGHT)
(net 22 /CON)
(net 23 "Net-(Q1-Pad1)")
(net 24 "Net-(R1-Pad2)")
(net 25 "Net-(J2-Pad16)")
(net_class Default "To jest domyślna klasa połączeń."
(clearance 0.2)
(trace_width 0.3)
(via_dia 0.5)
(via_drill 0.3)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.3)
(diff_pair_gap 0.25)
(add_net /BACKLIGHT)
(add_net /CON)
(add_net /D0)
(add_net /D1)
(add_net /D2)
(add_net /D3)
(add_net /D4)
(add_net /D5)
(add_net /D6)
(add_net /D7)
(add_net /E)
(add_net /MISO)
(add_net /MOSI)
(add_net /RESET)
(add_net /RS)
(add_net /RW)
(add_net /SCK)
(add_net /SCL)
(add_net /SDA)
(add_net /SS)
(add_net "Net-(J2-Pad16)")
(add_net "Net-(Q1-Pad1)")
(add_net "Net-(R1-Pad2)")
)
(net_class GND ""
(clearance 0.2)
(trace_width 0.4)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.3)
(diff_pair_gap 0.25)
(add_net GND)
)
(net_class VCC ""
(clearance 0.2)
(trace_width 0.4)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.3)
(diff_pair_gap 0.25)
(add_net VCC)
)
(module Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical (layer B.Cu) (tedit 59DE0611) (tstamp 5D9A8863)
(at 121.8 76.7 270)
(descr "Through hole straight IDC box header, 2x05, 2.54mm pitch, double rows")
(tags "Through hole IDC box header THT 2x05 2.54mm double row")
(path /5D9D2A15)
(fp_text reference J1 (at -5 -5 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value DATA (at -4.94 -2.1 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 1.27 -5.08 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 5.695 5.1) (end 5.695 -15.26) (layer B.Fab) (width 0.1))
(fp_line (start 5.145 4.56) (end 5.145 -14.7) (layer B.Fab) (width 0.1))
(fp_line (start -3.155 5.1) (end -3.155 -15.26) (layer B.Fab) (width 0.1))
(fp_line (start -2.605 4.56) (end -2.605 -2.83) (layer B.Fab) (width 0.1))
(fp_line (start -2.605 -7.33) (end -2.605 -14.7) (layer B.Fab) (width 0.1))
(fp_line (start -2.605 -2.83) (end -3.155 -2.83) (layer B.Fab) (width 0.1))
(fp_line (start -2.605 -7.33) (end -3.155 -7.33) (layer B.Fab) (width 0.1))
(fp_line (start 5.695 5.1) (end -3.155 5.1) (layer B.Fab) (width 0.1))
(fp_line (start 5.145 4.56) (end -2.605 4.56) (layer B.Fab) (width 0.1))
(fp_line (start 5.695 -15.26) (end -3.155 -15.26) (layer B.Fab) (width 0.1))
(fp_line (start 5.145 -14.7) (end -2.605 -14.7) (layer B.Fab) (width 0.1))
(fp_line (start 5.695 5.1) (end 5.145 4.56) (layer B.Fab) (width 0.1))
(fp_line (start 5.695 -15.26) (end 5.145 -14.7) (layer B.Fab) (width 0.1))
(fp_line (start -3.155 5.1) (end -2.605 4.56) (layer B.Fab) (width 0.1))
(fp_line (start -3.155 -15.26) (end -2.605 -14.7) (layer B.Fab) (width 0.1))
(fp_line (start 5.95 5.35) (end 5.95 -15.51) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.95 -15.51) (end -3.41 -15.51) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.41 -15.51) (end -3.41 5.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.41 5.35) (end 5.95 5.35) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.945 5.35) (end 5.945 -15.51) (layer B.SilkS) (width 0.12))
(fp_line (start 5.945 -15.51) (end -3.405 -15.51) (layer B.SilkS) (width 0.12))
(fp_line (start -3.405 -15.51) (end -3.405 5.35) (layer B.SilkS) (width 0.12))
(fp_line (start -3.405 5.35) (end 5.945 5.35) (layer B.SilkS) (width 0.12))
(fp_line (start -3.655 5.6) (end -3.655 3.06) (layer B.SilkS) (width 0.12))
(fp_line (start -3.655 5.6) (end -1.115 5.6) (layer B.SilkS) (width 0.12))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 6 /MOSI))
(pad 2 thru_hole oval (at 2.54 0 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 4 /SS))
(pad 3 thru_hole oval (at 0 -2.54 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 8 /MISO))
(pad 4 thru_hole oval (at 2.54 -2.54 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 9 /SCK))
(pad 5 thru_hole oval (at 0 -5.08 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 GND))
(pad 6 thru_hole oval (at 2.54 -5.08 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 VCC))
(pad 7 thru_hole oval (at 0 -7.62 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 5 /SDA))
(pad 8 thru_hole oval (at 2.54 -7.62 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 GND))
(pad 9 thru_hole oval (at 0 -10.16 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 7 /SCL))
(pad 10 thru_hole oval (at 2.54 -10.16 270) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 3 /RESET))
(model ${KISYS3DMOD}/Connector_IDC.3dshapes/IDC-Header_2x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DA2AE87)
(at 147 65.5)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /5D9AF5CE)
(attr smd)
(fp_text reference C1 (at 3.2 0) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.65) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 1 VCC))
(pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinSocket_2.54mm:PinSocket_1x16_P2.54mm_Vertical locked (layer F.Cu) (tedit 5A19A41E) (tstamp 5D9A5223)
(at 118.1 62.1 90)
(descr "Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x16 2.54mm single row")
(path /5D9A4D9A)
(fp_text reference J2 (at -2.5 -0.1) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value DISPLAY (at -2.9 -3.1 -180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -0.635) (end 1.27 39.37) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 39.37) (end -1.27 39.37) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 39.37) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 39.43) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 39.43) (end 1.33 39.43) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 39.43) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.8) (end 1.75 39.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 39.9) (end -1.8 39.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 39.9) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 19.05 -180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 VCC))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 /CON))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 /RS))
(pad 5 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 /RW))
(pad 6 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 /E))
(pad 7 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 /D0))
(pad 8 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 /D1))
(pad 9 thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 /D2))
(pad 10 thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 /D3))
(pad 11 thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 /D4))
(pad 12 thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 /D5))
(pad 13 thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 /D6))
(pad 14 thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 /D7))
(pad 15 thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 VCC))
(pad 16 thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "Net-(J2-Pad16)"))
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x16_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_QFP:TQFP-32_7x7mm_P0.8mm (layer B.Cu) (tedit 5A02F146) (tstamp 5D9A525A)
(at 146.6 72.3 270)
(descr "32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "QFP 0.8")
(path /5D99FD6D)
(attr smd)
(fp_text reference U1 (at -4.5 4.8 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value ATmega328PB-AU (at 7.5 10.4 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.5 3.5) (end 3.5 3.5) (layer B.Fab) (width 0.15))
(fp_line (start 3.5 3.5) (end 3.5 -3.5) (layer B.Fab) (width 0.15))
(fp_line (start 3.5 -3.5) (end -3.5 -3.5) (layer B.Fab) (width 0.15))
(fp_line (start -3.5 -3.5) (end -3.5 2.5) (layer B.Fab) (width 0.15))
(fp_line (start -3.5 2.5) (end -2.5 3.5) (layer B.Fab) (width 0.15))
(fp_line (start -5.3 5.3) (end -5.3 -5.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.3 5.3) (end 5.3 -5.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.3 5.3) (end 5.3 5.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.3 -5.3) (end 5.3 -5.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.625 3.625) (end -3.625 3.4) (layer B.SilkS) (width 0.15))
(fp_line (start 3.625 3.625) (end 3.625 3.3) (layer B.SilkS) (width 0.15))
(fp_line (start 3.625 -3.625) (end 3.625 -3.3) (layer B.SilkS) (width 0.15))
(fp_line (start -3.625 -3.625) (end -3.625 -3.3) (layer B.SilkS) (width 0.15))
(fp_line (start -3.625 3.625) (end -3.3 3.625) (layer B.SilkS) (width 0.15))
(fp_line (start -3.625 -3.625) (end -3.3 -3.625) (layer B.SilkS) (width 0.15))
(fp_line (start 3.625 -3.625) (end 3.3 -3.625) (layer B.SilkS) (width 0.15))
(fp_line (start 3.625 3.625) (end 3.3 3.625) (layer B.SilkS) (width 0.15))
(fp_line (start -3.625 3.4) (end -5.05 3.4) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -4.25 2.8 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 16 /D3))
(pad 2 smd rect (at -4.25 2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 17 /D4))
(pad 3 smd rect (at -4.25 1.2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 4 smd rect (at -4.25 0.4 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 1 VCC))
(pad 5 smd rect (at -4.25 -0.4 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 6 smd rect (at -4.25 -1.2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 7 smd rect (at -4.25 -2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 8 smd rect (at -4.25 -2.8 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 9 smd rect (at -2.8 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 18 /D5))
(pad 10 smd rect (at -2 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 19 /D6))
(pad 11 smd rect (at -1.2 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 20 /D7))
(pad 12 smd rect (at -0.4 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 21 /BACKLIGHT))
(pad 13 smd rect (at 0.4 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 24 "Net-(R1-Pad2)"))
(pad 14 smd rect (at 1.2 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 4 /SS))
(pad 15 smd rect (at 2 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 6 /MOSI))
(pad 16 smd rect (at 2.8 -4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 8 /MISO))
(pad 17 smd rect (at 4.25 -2.8 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 9 /SCK))
(pad 18 smd rect (at 4.25 -2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 1 VCC))
(pad 19 smd rect (at 4.25 -1.2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 20 smd rect (at 4.25 -0.4 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 21 smd rect (at 4.25 0.4 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 22 smd rect (at 4.25 1.2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 23 smd rect (at 4.25 2 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask))
(pad 24 smd rect (at 4.25 2.8 270) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 10 /RS))
(pad 25 smd rect (at 2.8 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 11 /RW))
(pad 26 smd rect (at 2 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 12 /E))
(pad 27 smd rect (at 1.2 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 5 /SDA))
(pad 28 smd rect (at 0.4 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 7 /SCL))
(pad 29 smd rect (at -0.4 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 3 /RESET))
(pad 30 smd rect (at -1.2 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 13 /D0))
(pad 31 smd rect (at -2 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 14 /D1))
(pad 32 smd rect (at -2.8 4.25 180) (size 1.6 0.55) (layers B.Cu B.Paste B.Mask)
(net 15 /D2))
(model ${KISYS3DMOD}/Package_QFP.3dshapes/TQFP-32_7x7mm_P0.8mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5D9A56C7)
(at 147.5 78.8 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /5DA01F98)
(attr smd)
(fp_text reference C3 (at 3.15 -0.0508) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.65) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 -17.6) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 1 VCC))
(pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DA12514)
(at 156.5 78.4 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /5D9C1F9E)
(attr smd)
(fp_text reference C2 (at 0 -2.4 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at -3.7 -1.1 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 2 GND))
(pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 22 /CON))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-323_SC-70 (layer B.Cu) (tedit 5A02FF57) (tstamp 5DA6267B)
(at 156.2 66.6 90)
(descr "SOT-323, SC-70")
(tags "SOT-323 SC-70")
(path /5D9BC10D)
(attr smd)
(fp_text reference Q1 (at 0 -2.3 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value BC817W (at -0.1 -3.6 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 180) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start 0.73 -0.5) (end 0.73 -1.16) (layer B.SilkS) (width 0.12))
(fp_line (start 0.73 1.16) (end 0.73 0.5) (layer B.SilkS) (width 0.12))
(fp_line (start 1.7 -1.3) (end -1.7 -1.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 1.3) (end 1.7 -1.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.7 1.3) (end 1.7 1.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.7 -1.3) (end -1.7 1.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.73 1.16) (end -1.3 1.16) (layer B.SilkS) (width 0.12))
(fp_line (start -0.68 -1.16) (end 0.73 -1.16) (layer B.SilkS) (width 0.12))
(fp_line (start 0.67 1.1) (end -0.18 1.1) (layer B.Fab) (width 0.1))
(fp_line (start -0.68 0.6) (end -0.68 -1.1) (layer B.Fab) (width 0.1))
(fp_line (start 0.67 1.1) (end 0.67 -1.1) (layer B.Fab) (width 0.1))
(fp_line (start 0.67 -1.1) (end -0.68 -1.1) (layer B.Fab) (width 0.1))
(fp_line (start -0.18 1.1) (end -0.68 0.6) (layer B.Fab) (width 0.1))
(pad 1 smd rect (at -1 0.65 180) (size 0.45 0.7) (layers B.Cu B.Paste B.Mask)
(net 23 "Net-(Q1-Pad1)"))
(pad 2 smd rect (at -1 -0.65 180) (size 0.45 0.7) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 3 smd rect (at 1 0 180) (size 0.45 0.7) (layers B.Cu B.Paste B.Mask)
(net 25 "Net-(J2-Pad16)"))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-323_SC-70.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DA1255A)
(at 156.5 74.5 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5D9C1602)
(attr smd)
(fp_text reference R1 (at -0.1 -2.4 -180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100 (at 1.5 -2.4 -180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 -90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 24 "Net-(R1-Pad2)"))
(pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 22 /CON))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DA62647)
(at 156.5 70.5 270)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5D9BB600)
(attr smd)
(fp_text reference R2 (at 0 2.3 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 2.2k (at 0 -1.65 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 23 "Net-(Q1-Pad1)"))
(pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 21 /BACKLIGHT))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 115.9 83.1) (end 115.9 60) (layer Edge.Cuts) (width 0.2) (tstamp 5D9A721E))
(gr_line (start 158.4 83.1) (end 115.9 83.1) (layer Edge.Cuts) (width 0.2))
(gr_line (start 158.4 60) (end 158.4 83.1) (layer Edge.Cuts) (width 0.2) (tstamp 5DA62635))
(gr_line (start 115.9 60) (end 158.4 60) (layer Edge.Cuts) (width 0.2))
(segment (start 146.2 65.575) (end 146.275 65.5) (width 0.4) (layer B.Cu) (net 1))
(segment (start 146.2 68.05) (end 146.2 65.575) (width 0.4) (layer B.Cu) (net 1))
(segment (start 148.6 78.725) (end 148.525 78.8) (width 0.4) (layer B.Cu) (net 1))
(segment (start 148.6 76.55) (end 148.6 78.725) (width 0.4) (layer B.Cu) (net 1))
(segment (start 153.66 62.1) (end 152.409999 60.849999) (width 0.4) (layer B.Cu) (net 1))
(segment (start 152.409999 60.849999) (end 144.750001 60.849999) (width 0.4) (layer B.Cu) (net 1))
(segment (start 144.750001 63.475001) (end 144.750001 60.849999) (width 0.4) (layer B.Cu) (net 1))
(segment (start 145.975 64.7) (end 144.750001 63.475001) (width 0.4) (layer B.Cu) (net 1))
(segment (start 145.975 65.5) (end 145.975 64.7) (width 0.4) (layer B.Cu) (net 1))
(segment (start 146.2 69.045002) (end 146.2 68.05) (width 0.4) (layer B.Cu) (net 1))
(segment (start 148.475001 73.975001) (end 146.2 71.7) (width 0.4) (layer B.Cu) (net 1))
(segment (start 148.475001 76.425001) (end 148.475001 73.975001) (width 0.4) (layer B.Cu) (net 1))
(segment (start 146.2 71.7) (end 146.2 69.045002) (width 0.4) (layer B.Cu) (net 1))
(segment (start 148.6 76.55) (end 148.475001 76.425001) (width 0.4) (layer B.Cu) (net 1))
(segment (start 125.119999 60.849999) (end 144.750001 60.849999) (width 0.4) (layer B.Cu) (net 1))
(segment (start 124.430001 61.539997) (end 125.119999 60.849999) (width 0.4) (layer B.Cu) (net 1))
(segment (start 121.890001 63.350001) (end 123.780001 63.350001) (width 0.4) (layer B.Cu) (net 1))
(segment (start 124.430001 62.700001) (end 124.430001 61.539997) (width 0.4) (layer B.Cu) (net 1))
(segment (start 123.780001 63.350001) (end 124.430001 62.700001) (width 0.4) (layer B.Cu) (net 1))
(segment (start 120.64 62.1) (end 121.890001 63.350001) (width 0.4) (layer B.Cu) (net 1))
(segment (start 120.6 62.14) (end 120.64 62.1) (width 0.4) (layer B.Cu) (net 1))
(segment (start 120.6 70.809999) (end 120.6 62.14) (width 0.4) (layer B.Cu) (net 1))
(segment (start 125.603601 75.803601) (end 120.616399 70.816399) (width 0.4) (layer B.Cu) (net 1))
(segment (start 125.6 77.635065) (end 125.603601 77.631464) (width 0.4) (layer B.Cu) (net 1))
(segment (start 120.6064 70.816399) (end 120.6 70.809999) (width 0.4) (layer B.Cu) (net 1))
(segment (start 125.6 77.96) (end 125.6 77.635065) (width 0.4) (layer B.Cu) (net 1))
(segment (start 120.616399 70.816399) (end 120.6064 70.816399) (width 0.4) (layer B.Cu) (net 1))
(segment (start 125.603601 77.631464) (end 125.603601 75.803601) (width 0.4) (layer B.Cu) (net 1))
(segment (start 126.88 79.24) (end 125.6 77.96) (width 0.4) (layer B.Cu) (net 1))
(via (at 154.2 66.5) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 149.4 65.5) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 146.2 78.525) (end 146.475 78.8) (width 0.4) (layer B.Cu) (net 2))
(segment (start 146.2 76.55) (end 146.2 78.525) (width 0.4) (layer B.Cu) (net 2))
(via (at 147.1 69.6) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 147.9 69.6) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 145.9 74.9) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 146.7 74.9) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 127.1 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 129.5 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 132.3 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 135.2 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 137.3 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 139.9 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 142.8 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 144.3 64.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 154.2 67.5) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 154.2 68.5) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 157.1 81.1) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 155.9 81.1) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 154.8 79.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 144.9 78.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 144.9 79.3) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 149.4 66.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 117.8 81.3) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 140.6 71.9) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 3))
(segment (start 140.6 71.9) (end 142.35 71.9) (width 0.3) (layer B.Cu) (net 3))
(via (at 140.6 76.400002) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 3))
(segment (start 140.6 71.9) (end 140.6 76.400002) (width 0.3) (layer F.Cu) (net 3))
(segment (start 140.246447 76.400002) (end 140.6 76.400002) (width 0.3) (layer B.Cu) (net 3))
(segment (start 131.96 79.24) (end 134.799998 76.400002) (width 0.3) (layer B.Cu) (net 3))
(segment (start 134.799998 76.400002) (end 140.246447 76.400002) (width 0.3) (layer B.Cu) (net 3))
(via (at 120.3 80.8) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 4))
(segment (start 120.3 80.74) (end 121.8 79.24) (width 0.3) (layer F.Cu) (net 4))
(segment (start 120.3 80.8) (end 120.3 80.74) (width 0.3) (layer F.Cu) (net 4))
(segment (start 152.500011 79.121351) (end 149.66773 81.953632) (width 0.3) (layer B.Cu) (net 4))
(segment (start 120.549999 81.049999) (end 120.3 80.8) (width 0.3) (layer B.Cu) (net 4))
(segment (start 149.66773 81.953632) (end 121.453631 81.953631) (width 0.3) (layer B.Cu) (net 4))
(segment (start 152.500011 74.050011) (end 152.500011 79.121351) (width 0.3) (layer B.Cu) (net 4))
(segment (start 150.85 73.5) (end 151.95 73.5) (width 0.3) (layer B.Cu) (net 4))
(segment (start 151.95 73.5) (end 152.500011 74.050011) (width 0.3) (layer B.Cu) (net 4))
(segment (start 121.453631 81.953631) (end 120.549999 81.049999) (width 0.3) (layer B.Cu) (net 4))
(via (at 137.6 73.5) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 5))
(segment (start 142.35 73.5) (end 137.6 73.5) (width 0.3) (layer B.Cu) (net 5))
(via (at 135.8 75.3) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 5))
(segment (start 137.6 73.5) (end 135.8 75.3) (width 0.3) (layer F.Cu) (net 5))
(segment (start 130.283599 77.563599) (end 129.42 76.7) (width 0.3) (layer B.Cu) (net 5))
(segment (start 130.633601 77.913601) (end 130.283599 77.563599) (width 0.3) (layer B.Cu) (net 5))
(segment (start 132.542529 77.913601) (end 130.633601 77.913601) (width 0.3) (layer B.Cu) (net 5))
(segment (start 135.15613 75.3) (end 132.542529 77.913601) (width 0.3) (layer B.Cu) (net 5))
(segment (start 135.8 75.3) (end 135.15613 75.3) (width 0.3) (layer B.Cu) (net 5))
(segment (start 152.000001 74.350001) (end 152.000001 78.914241) (width 0.3) (layer B.Cu) (net 6))
(segment (start 122.217491 81.453621) (end 120.586399 79.822529) (width 0.3) (layer B.Cu) (net 6))
(segment (start 120.586399 76.750001) (end 120.6364 76.7) (width 0.3) (layer B.Cu) (net 6))
(segment (start 151.95 74.3) (end 152.000001 74.350001) (width 0.3) (layer B.Cu) (net 6))
(segment (start 120.586399 79.822529) (end 120.586399 76.750001) (width 0.3) (layer B.Cu) (net 6))
(segment (start 120.6364 76.7) (end 121.8 76.7) (width 0.3) (layer B.Cu) (net 6))
(segment (start 150.85 74.3) (end 151.95 74.3) (width 0.3) (layer B.Cu) (net 6))
(segment (start 152.000001 78.914241) (end 149.46062 81.453622) (width 0.3) (layer B.Cu) (net 6))
(segment (start 149.46062 81.453622) (end 122.217491 81.453621) (width 0.3) (layer B.Cu) (net 6))
(via (at 136.8 72.7) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 7))
(segment (start 142.35 72.7) (end 136.8 72.7) (width 0.3) (layer B.Cu) (net 7))
(via (at 134.9 74.6) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 7))
(segment (start 136.8 72.7) (end 134.9 74.6) (width 0.3) (layer F.Cu) (net 7))
(segment (start 134.06 74.6) (end 131.96 76.7) (width 0.3) (layer B.Cu) (net 7))
(segment (start 134.9 74.6) (end 134.06 74.6) (width 0.3) (layer B.Cu) (net 7))
(segment (start 150.85 79.357122) (end 149.25351 80.953612) (width 0.3) (layer B.Cu) (net 8))
(segment (start 150.85 75.1) (end 150.85 79.357122) (width 0.3) (layer B.Cu) (net 8))
(segment (start 149.25351 80.953612) (end 124.144683 80.953611) (width 0.3) (layer B.Cu) (net 8))
(segment (start 123.126399 79.935327) (end 123.126399 77.913601) (width 0.3) (layer B.Cu) (net 8))
(segment (start 123.476401 77.563599) (end 124.34 76.7) (width 0.3) (layer B.Cu) (net 8))
(segment (start 124.144683 80.953611) (end 123.126399 79.935327) (width 0.3) (layer B.Cu) (net 8))
(segment (start 123.126399 77.913601) (end 123.476401 77.563599) (width 0.3) (layer B.Cu) (net 8))
(segment (start 125.203599 80.103599) (end 124.34 79.24) (width 0.3) (layer B.Cu) (net 9))
(segment (start 125.553601 80.453601) (end 125.203599 80.103599) (width 0.3) (layer B.Cu) (net 9))
(segment (start 150.2 77.7) (end 150.2 79.3) (width 0.3) (layer B.Cu) (net 9))
(segment (start 149.4 76.9) (end 150.2 77.7) (width 0.3) (layer B.Cu) (net 9))
(segment (start 149.4 76.55) (end 149.4 76.9) (width 0.3) (layer B.Cu) (net 9))
(segment (start 150.2 79.3) (end 149.046399 80.453601) (width 0.3) (layer B.Cu) (net 9))
(segment (start 149.046399 80.453601) (end 125.553601 80.453601) (width 0.3) (layer B.Cu) (net 9))
(segment (start 141.244998 75.7) (end 137.18576 75.7) (width 0.3) (layer B.Cu) (net 10))
(segment (start 143.8 76.55) (end 142.094998 76.55) (width 0.3) (layer B.Cu) (net 10))
(segment (start 137.18576 75.7) (end 125.72 64.23424) (width 0.3) (layer B.Cu) (net 10))
(segment (start 142.094998 76.55) (end 141.244998 75.7) (width 0.3) (layer B.Cu) (net 10))
(segment (start 125.72 63.302081) (end 125.72 62.1) (width 0.3) (layer B.Cu) (net 10))
(segment (start 125.72 64.23424) (end 125.72 63.302081) (width 0.3) (layer B.Cu) (net 10))
(segment (start 128.26 63.302081) (end 128.26 62.1) (width 0.3) (layer B.Cu) (net 11))
(segment (start 128.26 66.06712) (end 128.26 63.302081) (width 0.3) (layer B.Cu) (net 11))
(segment (start 137.29288 75.1) (end 128.26 66.06712) (width 0.3) (layer B.Cu) (net 11))
(segment (start 142.35 75.1) (end 137.29288 75.1) (width 0.3) (layer B.Cu) (net 11))
(segment (start 142.35 74.3) (end 137.2 74.3) (width 0.3) (layer B.Cu) (net 12))
(segment (start 130.8 67.9) (end 130.8 62.1) (width 0.3) (layer B.Cu) (net 12))
(segment (start 137.2 74.3) (end 130.8 67.9) (width 0.3) (layer B.Cu) (net 12))
(segment (start 133.34 63.302081) (end 133.34 62.1) (width 0.3) (layer B.Cu) (net 13))
(segment (start 141.137919 71.1) (end 133.34 63.302081) (width 0.3) (layer B.Cu) (net 13))
(segment (start 142.35 71.1) (end 141.137919 71.1) (width 0.3) (layer B.Cu) (net 13))
(segment (start 135.88 63.302081) (end 135.88 62.1) (width 0.3) (layer B.Cu) (net 14))
(segment (start 135.88 64.78) (end 135.88 63.302081) (width 0.3) (layer B.Cu) (net 14))
(segment (start 141.4 70.3) (end 135.88 64.78) (width 0.3) (layer B.Cu) (net 14))
(segment (start 142.35 70.3) (end 141.4 70.3) (width 0.3) (layer B.Cu) (net 14))
(segment (start 138.42 66.32) (end 138.42 62.1) (width 0.3) (layer B.Cu) (net 15))
(segment (start 141.6 69.5) (end 138.42 66.32) (width 0.3) (layer B.Cu) (net 15))
(segment (start 142.35 69.5) (end 141.6 69.5) (width 0.3) (layer B.Cu) (net 15))
(segment (start 140.96 63.46) (end 140.96 62.1) (width 0.3) (layer B.Cu) (net 16))
(segment (start 143.8 66.3) (end 140.96 63.46) (width 0.3) (layer B.Cu) (net 16))
(segment (start 143.8 68.05) (end 143.8 66.3) (width 0.3) (layer B.Cu) (net 16))
(segment (start 143.5 64.7) (end 143.5 62.1) (width 0.3) (layer B.Cu) (net 17))
(segment (start 144.6 65.8) (end 143.5 64.7) (width 0.3) (layer B.Cu) (net 17))
(segment (start 144.6 68.05) (end 144.6 65.8) (width 0.3) (layer B.Cu) (net 17))
(segment (start 147.240001 63.300001) (end 146.04 62.1) (width 0.3) (layer B.Cu) (net 18))
(segment (start 148.800001 63.300001) (end 147.240001 63.300001) (width 0.3) (layer B.Cu) (net 18))
(segment (start 150.85 65.35) (end 148.800001 63.300001) (width 0.3) (layer B.Cu) (net 18))
(segment (start 150.85 69.5) (end 150.85 65.35) (width 0.3) (layer B.Cu) (net 18))
(segment (start 152.000001 70.249999) (end 151.95 70.3) (width 0.3) (layer B.Cu) (net 19))
(segment (start 151.95 70.3) (end 150.85 70.3) (width 0.3) (layer B.Cu) (net 19))
(segment (start 152.000001 65.520001) (end 152.000001 70.249999) (width 0.3) (layer B.Cu) (net 19))
(segment (start 148.58 62.1) (end 152.000001 65.520001) (width 0.3) (layer B.Cu) (net 19))
(segment (start 151.969999 62.949999) (end 151.12 62.1) (width 0.3) (layer B.Cu) (net 20))
(segment (start 151.95 71.1) (end 152.500011 70.549989) (width 0.3) (layer B.Cu) (net 20))
(segment (start 152.500011 63.480011) (end 151.969999 62.949999) (width 0.3) (layer B.Cu) (net 20))
(segment (start 152.500011 70.549989) (end 152.500011 63.480011) (width 0.3) (layer B.Cu) (net 20))
(segment (start 150.85 71.1) (end 151.95 71.1) (width 0.3) (layer B.Cu) (net 20))
(segment (start 156.125 71.9) (end 156.5 71.525) (width 0.3) (layer B.Cu) (net 21))
(segment (start 150.85 71.9) (end 156.125 71.9) (width 0.3) (layer B.Cu) (net 21))
(segment (start 123.18 60.897919) (end 122.982081 60.7) (width 0.3) (layer B.Cu) (net 22))
(segment (start 123.18 62.1) (end 123.18 60.897919) (width 0.3) (layer B.Cu) (net 22))
(segment (start 117.169998 60.7) (end 116.669998 61.2) (width 0.3) (layer B.Cu) (net 22))
(segment (start 122.982081 60.7) (end 117.169998 60.7) (width 0.3) (layer B.Cu) (net 22))
(segment (start 121.065639 82.453641) (end 150.621359 82.453641) (width 0.3) (layer B.Cu) (net 22))
(segment (start 155.7 77.375) (end 156.5 77.375) (width 0.3) (layer B.Cu) (net 22))
(segment (start 150.621359 82.453641) (end 155.7 77.375) (width 0.3) (layer B.Cu) (net 22))
(segment (start 116.669998 78.058) (end 121.065639 82.453641) (width 0.3) (layer B.Cu) (net 22))
(segment (start 116.669998 61.2) (end 116.669998 78.058) (width 0.3) (layer B.Cu) (net 22))
(segment (start 156.5 75.525) (end 156.5 77.375) (width 0.3) (layer B.Cu) (net 22))
(segment (start 156.5 67.95) (end 156.85 67.6) (width 0.3) (layer B.Cu) (net 23))
(segment (start 156.5 69.475) (end 156.5 67.95) (width 0.3) (layer B.Cu) (net 23))
(segment (start 151.95 72.7) (end 150.85 72.7) (width 0.3) (layer B.Cu) (net 24))
(segment (start 154.925 72.7) (end 151.95 72.7) (width 0.3) (layer B.Cu) (net 24))
(segment (start 155.7 73.475) (end 154.925 72.7) (width 0.3) (layer B.Cu) (net 24))
(segment (start 156.5 73.475) (end 155.7 73.475) (width 0.3) (layer B.Cu) (net 24))
(segment (start 156.2 65.6) (end 156.2 62.1) (width 0.3) (layer B.Cu) (net 25))
(zone (net 2) (net_name GND) (layer F.Cu) (tstamp 5DA37942) (hatch edge 0.508)
(connect_pads (clearance 0.3))
(min_thickness 0.2)
(fill yes (arc_segments 32) (thermal_gap 0.3) (thermal_bridge_width 0.6))
(polygon
(pts
(xy 116.83001 60) (xy 158.4 60) (xy 158.4 83.1) (xy 115.9 83.1)
)
)
(filled_polygon
(pts
(xy 157.900001 82.6) (xy 116.4 82.6) (xy 116.4 80.735981) (xy 119.65 80.735981) (xy 119.65 80.864019)
(xy 119.674979 80.989598) (xy 119.723978 81.10789) (xy 119.795112 81.214351) (xy 119.885649 81.304888) (xy 119.99211 81.376022)
(xy 120.110402 81.425021) (xy 120.235981 81.45) (xy 120.364019 81.45) (xy 120.489598 81.425021) (xy 120.60789 81.376022)
(xy 120.714351 81.304888) (xy 120.804888 81.214351) (xy 120.876022 81.10789) (xy 120.925021 80.989598) (xy 120.949057 80.86876)
(xy 121.383655 80.434162) (xy 121.552291 80.485317) (xy 121.737923 80.5036) (xy 121.862077 80.5036) (xy 122.047709 80.485317)
(xy 122.285899 80.413063) (xy 122.505415 80.295729) (xy 122.697823 80.137823) (xy 122.855729 79.945415) (xy 122.973063 79.725899)
(xy 123.045317 79.487709) (xy 123.069714 79.24) (xy 123.070286 79.24) (xy 123.094683 79.487709) (xy 123.166937 79.725899)
(xy 123.284271 79.945415) (xy 123.442177 80.137823) (xy 123.634585 80.295729) (xy 123.854101 80.413063) (xy 124.092291 80.485317)
(xy 124.277923 80.5036) (xy 124.402077 80.5036) (xy 124.587709 80.485317) (xy 124.825899 80.413063) (xy 125.045415 80.295729)
(xy 125.237823 80.137823) (xy 125.395729 79.945415) (xy 125.513063 79.725899) (xy 125.585317 79.487709) (xy 125.609714 79.24)
(xy 125.610286 79.24) (xy 125.634683 79.487709) (xy 125.706937 79.725899) (xy 125.824271 79.945415) (xy 125.982177 80.137823)
(xy 126.174585 80.295729) (xy 126.394101 80.413063) (xy 126.632291 80.485317) (xy 126.817923 80.5036) (xy 126.942077 80.5036)
(xy 127.127709 80.485317) (xy 127.365899 80.413063) (xy 127.585415 80.295729) (xy 127.777823 80.137823) (xy 127.935729 79.945415)
(xy 128.053063 79.725899) (xy 128.081329 79.632718) (xy 128.218967 79.632718) (xy 128.31866 79.859482) (xy 128.460677 80.06244)
(xy 128.63956 80.233792) (xy 128.848435 80.366953) (xy 129.027283 80.441024) (xy 129.22 80.386283) (xy 129.22 79.44)
(xy 129.62 79.44) (xy 129.62 80.386283) (xy 129.812717 80.441024) (xy 129.991565 80.366953) (xy 130.20044 80.233792)
(xy 130.379323 80.06244) (xy 130.52134 79.859482) (xy 130.621033 79.632718) (xy 130.567681 79.44) (xy 129.62 79.44)
(xy 129.22 79.44) (xy 128.272319 79.44) (xy 128.218967 79.632718) (xy 128.081329 79.632718) (xy 128.125317 79.487709)
(xy 128.149714 79.24) (xy 130.690286 79.24) (xy 130.714683 79.487709) (xy 130.786937 79.725899) (xy 130.904271 79.945415)
(xy 131.062177 80.137823) (xy 131.254585 80.295729) (xy 131.474101 80.413063) (xy 131.712291 80.485317) (xy 131.897923 80.5036)
(xy 132.022077 80.5036) (xy 132.207709 80.485317) (xy 132.445899 80.413063) (xy 132.665415 80.295729) (xy 132.857823 80.137823)
(xy 133.015729 79.945415) (xy 133.133063 79.725899) (xy 133.205317 79.487709) (xy 133.229714 79.24) (xy 133.205317 78.992291)
(xy 133.133063 78.754101) (xy 133.015729 78.534585) (xy 132.857823 78.342177) (xy 132.665415 78.184271) (xy 132.445899 78.066937)
(xy 132.207709 77.994683) (xy 132.022077 77.9764) (xy 131.897923 77.9764) (xy 131.712291 77.994683) (xy 131.474101 78.066937)
(xy 131.254585 78.184271) (xy 131.062177 78.342177) (xy 130.904271 78.534585) (xy 130.786937 78.754101) (xy 130.714683 78.992291)
(xy 130.690286 79.24) (xy 128.149714 79.24) (xy 128.125317 78.992291) (xy 128.08133 78.847282) (xy 128.218967 78.847282)
(xy 128.272319 79.04) (xy 129.22 79.04) (xy 129.22 78.093717) (xy 129.62 78.093717) (xy 129.62 79.04)
(xy 130.567681 79.04) (xy 130.621033 78.847282) (xy 130.52134 78.620518) (xy 130.379323 78.41756) (xy 130.20044 78.246208)
(xy 129.991565 78.113047) (xy 129.812717 78.038976) (xy 129.62 78.093717) (xy 129.22 78.093717) (xy 129.027283 78.038976)
(xy 128.848435 78.113047) (xy 128.63956 78.246208) (xy 128.460677 78.41756) (xy 128.31866 78.620518) (xy 128.218967 78.847282)
(xy 128.08133 78.847282) (xy 128.053063 78.754101) (xy 127.935729 78.534585) (xy 127.777823 78.342177) (xy 127.585415 78.184271)
(xy 127.365899 78.066937) (xy 127.127709 77.994683) (xy 126.942077 77.9764) (xy 126.817923 77.9764) (xy 126.632291 77.994683)
(xy 126.394101 78.066937) (xy 126.174585 78.184271) (xy 125.982177 78.342177) (xy 125.824271 78.534585) (xy 125.706937 78.754101)
(xy 125.634683 78.992291) (xy 125.610286 79.24) (xy 125.609714 79.24) (xy 125.585317 78.992291) (xy 125.513063 78.754101)
(xy 125.395729 78.534585) (xy 125.237823 78.342177) (xy 125.045415 78.184271) (xy 124.825899 78.066937) (xy 124.587709 77.994683)
(xy 124.402077 77.9764) (xy 124.277923 77.9764) (xy 124.092291 77.994683) (xy 123.854101 78.066937) (xy 123.634585 78.184271)
(xy 123.442177 78.342177) (xy 123.284271 78.534585) (xy 123.166937 78.754101) (xy 123.094683 78.992291) (xy 123.070286 79.24)
(xy 123.069714 79.24) (xy 123.045317 78.992291) (xy 122.973063 78.754101) (xy 122.855729 78.534585) (xy 122.697823 78.342177)
(xy 122.505415 78.184271) (xy 122.285899 78.066937) (xy 122.047709 77.994683) (xy 121.862077 77.9764) (xy 121.737923 77.9764)
(xy 121.552291 77.994683) (xy 121.314101 78.066937) (xy 121.094585 78.184271) (xy 120.902177 78.342177) (xy 120.744271 78.534585)
(xy 120.626937 78.754101) (xy 120.554683 78.992291) (xy 120.530286 79.24) (xy 120.554683 79.487709) (xy 120.605838 79.656345)
(xy 120.0708 80.191383) (xy 119.99211 80.223978) (xy 119.885649 80.295112) (xy 119.795112 80.385649) (xy 119.723978 80.49211)
(xy 119.674979 80.610402) (xy 119.65 80.735981) (xy 116.4 80.735981) (xy 116.4 75.8364) (xy 120.534465 75.8364)
(xy 120.534465 77.5636) (xy 120.542188 77.642014) (xy 120.56506 77.717414) (xy 120.602203 77.786903) (xy 120.652189 77.847811)
(xy 120.713097 77.897797) (xy 120.782586 77.93494) (xy 120.857986 77.957812) (xy 120.9364 77.965535) (xy 122.6636 77.965535)
(xy 122.742014 77.957812) (xy 122.817414 77.93494) (xy 122.886903 77.897797) (xy 122.947811 77.847811) (xy 122.997797 77.786903)
(xy 123.03494 77.717414) (xy 123.057812 77.642014) (xy 123.065535 77.5636) (xy 123.065535 76.7) (xy 123.070286 76.7)
(xy 123.094683 76.947709) (xy 123.166937 77.185899) (xy 123.284271 77.405415) (xy 123.442177 77.597823) (xy 123.634585 77.755729)
(xy 123.854101 77.873063) (xy 124.092291 77.945317) (xy 124.277923 77.9636) (xy 124.402077 77.9636) (xy 124.587709 77.945317)
(xy 124.825899 77.873063) (xy 125.045415 77.755729) (xy 125.237823 77.597823) (xy 125.395729 77.405415) (xy 125.513063 77.185899)
(xy 125.541329 77.092718) (xy 125.678967 77.092718) (xy 125.77866 77.319482) (xy 125.920677 77.52244) (xy 126.09956 77.693792)
(xy 126.308435 77.826953) (xy 126.487283 77.901024) (xy 126.68 77.846283) (xy 126.68 76.9) (xy 127.08 76.9)
(xy 127.08 77.846283) (xy 127.272717 77.901024) (xy 127.451565 77.826953) (xy 127.66044 77.693792) (xy 127.839323 77.52244)
(xy 127.98134 77.319482) (xy 128.081033 77.092718) (xy 128.027681 76.9) (xy 127.08 76.9) (xy 126.68 76.9)
(xy 125.732319 76.9) (xy 125.678967 77.092718) (xy 125.541329 77.092718) (xy 125.585317 76.947709) (xy 125.609714 76.7)
(xy 128.150286 76.7) (xy 128.174683 76.947709) (xy 128.246937 77.185899) (xy 128.364271 77.405415) (xy 128.522177 77.597823)
(xy 128.714585 77.755729) (xy 128.934101 77.873063) (xy 129.172291 77.945317) (xy 129.357923 77.9636) (xy 129.482077 77.9636)
(xy 129.667709 77.945317) (xy 129.905899 77.873063) (xy 130.125415 77.755729) (xy 130.317823 77.597823) (xy 130.475729 77.405415)
(xy 130.593063 77.185899) (xy 130.665317 76.947709) (xy 130.689714 76.7) (xy 130.690286 76.7) (xy 130.714683 76.947709)
(xy 130.786937 77.185899) (xy 130.904271 77.405415) (xy 131.062177 77.597823) (xy 131.254585 77.755729) (xy 131.474101 77.873063)
(xy 131.712291 77.945317) (xy 131.897923 77.9636) (xy 132.022077 77.9636) (xy 132.207709 77.945317) (xy 132.445899 77.873063)
(xy 132.665415 77.755729) (xy 132.857823 77.597823) (xy 133.015729 77.405415) (xy 133.133063 77.185899) (xy 133.205317 76.947709)
(xy 133.229714 76.7) (xy 133.205317 76.452291) (xy 133.133063 76.214101) (xy 133.015729 75.994585) (xy 132.857823 75.802177)
(xy 132.665415 75.644271) (xy 132.445899 75.526937) (xy 132.207709 75.454683) (xy 132.022077 75.4364) (xy 131.897923 75.4364)
(xy 131.712291 75.454683) (xy 131.474101 75.526937) (xy 131.254585 75.644271) (xy 131.062177 75.802177) (xy 130.904271 75.994585)
(xy 130.786937 76.214101) (xy 130.714683 76.452291) (xy 130.690286 76.7) (xy 130.689714 76.7) (xy 130.665317 76.452291)
(xy 130.593063 76.214101) (xy 130.475729 75.994585) (xy 130.317823 75.802177) (xy 130.125415 75.644271) (xy 129.905899 75.526937)
(xy 129.667709 75.454683) (xy 129.482077 75.4364) (xy 129.357923 75.4364) (xy 129.172291 75.454683) (xy 128.934101 75.526937)
(xy 128.714585 75.644271) (xy 128.522177 75.802177) (xy 128.364271 75.994585) (xy 128.246937 76.214101) (xy 128.174683 76.452291)
(xy 128.150286 76.7) (xy 125.609714 76.7) (xy 125.585317 76.452291) (xy 125.54133 76.307282) (xy 125.678967 76.307282)
(xy 125.732319 76.5) (xy 126.68 76.5) (xy 126.68 75.553717) (xy 127.08 75.553717) (xy 127.08 76.5)
(xy 128.027681 76.5) (xy 128.081033 76.307282) (xy 127.98134 76.080518) (xy 127.839323 75.87756) (xy 127.66044 75.706208)
(xy 127.451565 75.573047) (xy 127.272717 75.498976) (xy 127.08 75.553717) (xy 126.68 75.553717) (xy 126.487283 75.498976)
(xy 126.308435 75.573047) (xy 126.09956 75.706208) (xy 125.920677 75.87756) (xy 125.77866 76.080518) (xy 125.678967 76.307282)
(xy 125.54133 76.307282) (xy 125.513063 76.214101) (xy 125.395729 75.994585) (xy 125.237823 75.802177) (xy 125.045415 75.644271)
(xy 124.825899 75.526937) (xy 124.587709 75.454683) (xy 124.402077 75.4364) (xy 124.277923 75.4364) (xy 124.092291 75.454683)
(xy 123.854101 75.526937) (xy 123.634585 75.644271) (xy 123.442177 75.802177) (xy 123.284271 75.994585) (xy 123.166937 76.214101)
(xy 123.094683 76.452291) (xy 123.070286 76.7) (xy 123.065535 76.7) (xy 123.065535 75.8364) (xy 123.057812 75.757986)
(xy 123.03494 75.682586) (xy 122.997797 75.613097) (xy 122.947811 75.552189) (xy 122.886903 75.502203) (xy 122.817414 75.46506)
(xy 122.742014 75.442188) (xy 122.6636 75.434465) (xy 120.9364 75.434465) (xy 120.857986 75.442188) (xy 120.782586 75.46506)
(xy 120.713097 75.502203) (xy 120.652189 75.552189) (xy 120.602203 75.613097) (xy 120.56506 75.682586) (xy 120.542188 75.757986)
(xy 120.534465 75.8364) (xy 116.4 75.8364) (xy 116.4 74.535981) (xy 134.25 74.535981) (xy 134.25 74.664019)
(xy 134.274979 74.789598) (xy 134.323978 74.90789) (xy 134.395112 75.014351) (xy 134.485649 75.104888) (xy 134.59211 75.176022)
(xy 134.710402 75.225021) (xy 134.835981 75.25) (xy 134.964019 75.25) (xy 135.089598 75.225021) (xy 135.157799 75.196771)
(xy 135.15 75.235981) (xy 135.15 75.364019) (xy 135.174979 75.489598) (xy 135.223978 75.60789) (xy 135.295112 75.714351)
(xy 135.385649 75.804888) (xy 135.49211 75.876022) (xy 135.610402 75.925021) (xy 135.735981 75.95) (xy 135.864019 75.95)
(xy 135.989598 75.925021) (xy 136.10789 75.876022) (xy 136.214351 75.804888) (xy 136.304888 75.714351) (xy 136.376022 75.60789)
(xy 136.425021 75.489598) (xy 136.434159 75.443658) (xy 137.743659 74.134159) (xy 137.789598 74.125021) (xy 137.90789 74.076022)
(xy 138.014351 74.004888) (xy 138.104888 73.914351) (xy 138.176022 73.80789) (xy 138.225021 73.689598) (xy 138.25 73.564019)
(xy 138.25 73.435981) (xy 138.225021 73.310402) (xy 138.176022 73.19211) (xy 138.104888 73.085649) (xy 138.014351 72.995112)
(xy 137.90789 72.923978) (xy 137.789598 72.874979) (xy 137.664019 72.85) (xy 137.535981 72.85) (xy 137.428651 72.871349)
(xy 137.45 72.764019) (xy 137.45 72.635981) (xy 137.425021 72.510402) (xy 137.376022 72.39211) (xy 137.304888 72.285649)
(xy 137.214351 72.195112) (xy 137.10789 72.123978) (xy 136.989598 72.074979) (xy 136.864019 72.05) (xy 136.735981 72.05)
(xy 136.610402 72.074979) (xy 136.49211 72.123978) (xy 136.385649 72.195112) (xy 136.295112 72.285649) (xy 136.223978 72.39211)
(xy 136.174979 72.510402) (xy 136.165841 72.556342) (xy 134.756342 73.965841) (xy 134.710402 73.974979) (xy 134.59211 74.023978)
(xy 134.485649 74.095112) (xy 134.395112 74.185649) (xy 134.323978 74.29211) (xy 134.274979 74.410402) (xy 134.25 74.535981)
(xy 116.4 74.535981) (xy 116.4 73.166635) (xy 116.453572 71.835981) (xy 139.95 71.835981) (xy 139.95 71.964019)
(xy 139.974979 72.089598) (xy 140.023978 72.20789) (xy 140.05 72.246835) (xy 140.050001 76.053165) (xy 140.023978 76.092112)
(xy 139.974979 76.210404) (xy 139.95 76.335983) (xy 139.95 76.464021) (xy 139.974979 76.5896) (xy 140.023978 76.707892)
(xy 140.095112 76.814353) (xy 140.185649 76.90489) (xy 140.29211 76.976024) (xy 140.410402 77.025023) (xy 140.535981 77.050002)
(xy 140.664019 77.050002) (xy 140.789598 77.025023) (xy 140.90789 76.976024) (xy 141.014351 76.90489) (xy 141.104888 76.814353)
(xy 141.176022 76.707892) (xy 141.225021 76.5896) (xy 141.25 76.464021) (xy 141.25 76.335983) (xy 141.225021 76.210404)
(xy 141.176022 76.092112) (xy 141.15 76.053167) (xy 141.15 72.246835) (xy 141.176022 72.20789) (xy 141.225021 72.089598)
(xy 141.25 71.964019) (xy 141.25 71.835981) (xy 141.225021 71.710402) (xy 141.176022 71.59211) (xy 141.104888 71.485649)
(xy 141.014351 71.395112) (xy 140.90789 71.323978) (xy 140.789598 71.274979) (xy 140.664019 71.25) (xy 140.535981 71.25)
(xy 140.410402 71.274979) (xy 140.29211 71.323978) (xy 140.185649 71.395112) (xy 140.095112 71.485649) (xy 140.023978 71.59211)
(xy 139.974979 71.710402) (xy 139.95 71.835981) (xy 116.453572 71.835981) (xy 116.811323 62.95) (xy 116.848065 62.95)
(xy 116.855788 63.028414) (xy 116.87866 63.103814) (xy 116.915803 63.173303) (xy 116.965789 63.234211) (xy 117.026697 63.284197)
(xy 117.096186 63.32134) (xy 117.171586 63.344212) (xy 117.25 63.351935) (xy 117.8 63.35) (xy 117.9 63.25)
(xy 117.9 62.3) (xy 118.3 62.3) (xy 118.3 63.25) (xy 118.4 63.35) (xy 118.95 63.351935)
(xy 119.028414 63.344212) (xy 119.103814 63.32134) (xy 119.173303 63.284197) (xy 119.234211 63.234211) (xy 119.284197 63.173303)
(xy 119.32134 63.103814) (xy 119.344212 63.028414) (xy 119.351935 62.95) (xy 119.35 62.4) (xy 119.25 62.3)
(xy 118.3 62.3) (xy 117.9 62.3) (xy 116.95 62.3) (xy 116.85 62.4) (xy 116.848065 62.95)
(xy 116.811323 62.95) (xy 116.845544 62.1) (xy 119.383952 62.1) (xy 119.408087 62.345043) (xy 119.479563 62.580669)
(xy 119.595634 62.797823) (xy 119.75184 62.98816) (xy 119.942177 63.144366) (xy 120.159331 63.260437) (xy 120.394957 63.331913)
(xy 120.578595 63.35) (xy 120.701405 63.35) (xy 120.885043 63.331913) (xy 121.120669 63.260437) (xy 121.337823 63.144366)
(xy 121.52816 62.98816) (xy 121.684366 62.797823) (xy 121.800437 62.580669) (xy 121.871913 62.345043) (xy 121.896048 62.1)
(xy 121.923952 62.1) (xy 121.948087 62.345043) (xy 122.019563 62.580669) (xy 122.135634 62.797823) (xy 122.29184 62.98816)
(xy 122.482177 63.144366) (xy 122.699331 63.260437) (xy 122.934957 63.331913) (xy 123.118595 63.35) (xy 123.241405 63.35)
(xy 123.425043 63.331913) (xy 123.660669 63.260437) (xy 123.877823 63.144366) (xy 124.06816 62.98816) (xy 124.224366 62.797823)
(xy 124.340437 62.580669) (xy 124.411913 62.345043) (xy 124.436048 62.1) (xy 124.463952 62.1) (xy 124.488087 62.345043)
(xy 124.559563 62.580669) (xy 124.675634 62.797823) (xy 124.83184 62.98816) (xy 125.022177 63.144366) (xy 125.239331 63.260437)
(xy 125.474957 63.331913) (xy 125.658595 63.35) (xy 125.781405 63.35) (xy 125.965043 63.331913) (xy 126.200669 63.260437)
(xy 126.417823 63.144366) (xy 126.60816 62.98816) (xy 126.764366 62.797823) (xy 126.880437 62.580669) (xy 126.951913 62.345043)
(xy 126.976048 62.1) (xy 127.003952 62.1) (xy 127.028087 62.345043) (xy 127.099563 62.580669) (xy 127.215634 62.797823)
(xy 127.37184 62.98816) (xy 127.562177 63.144366) (xy 127.779331 63.260437) (xy 128.014957 63.331913) (xy 128.198595 63.35)
(xy 128.321405 63.35) (xy 128.505043 63.331913) (xy 128.740669 63.260437) (xy 128.957823 63.144366) (xy 129.14816 62.98816)
(xy 129.304366 62.797823) (xy 129.420437 62.580669) (xy 129.491913 62.345043) (xy 129.516048 62.1) (xy 129.543952 62.1)
(xy 129.568087 62.345043) (xy 129.639563 62.580669) (xy 129.755634 62.797823) (xy 129.91184 62.98816) (xy 130.102177 63.144366)
(xy 130.319331 63.260437) (xy 130.554957 63.331913) (xy 130.738595 63.35) (xy 130.861405 63.35) (xy 131.045043 63.331913)
(xy 131.280669 63.260437) (xy 131.497823 63.144366) (xy 131.68816 62.98816) (xy 131.844366 62.797823) (xy 131.960437 62.580669)
(xy 132.031913 62.345043) (xy 132.056048 62.1) (xy 132.083952 62.1) (xy 132.108087 62.345043) (xy 132.179563 62.580669)
(xy 132.295634 62.797823) (xy 132.45184 62.98816) (xy 132.642177 63.144366) (xy 132.859331 63.260437) (xy 133.094957 63.331913)
(xy 133.278595 63.35) (xy 133.401405 63.35) (xy 133.585043 63.331913) (xy 133.820669 63.260437) (xy 134.037823 63.144366)
(xy 134.22816 62.98816) (xy 134.384366 62.797823) (xy 134.500437 62.580669) (xy 134.571913 62.345043) (xy 134.596048 62.1)
(xy 134.623952 62.1) (xy 134.648087 62.345043) (xy 134.719563 62.580669) (xy 134.835634 62.797823) (xy 134.99184 62.98816)
(xy 135.182177 63.144366) (xy 135.399331 63.260437) (xy 135.634957 63.331913) (xy 135.818595 63.35) (xy 135.941405 63.35)
(xy 136.125043 63.331913) (xy 136.360669 63.260437) (xy 136.577823 63.144366) (xy 136.76816 62.98816) (xy 136.924366 62.797823)
(xy 137.040437 62.580669) (xy 137.111913 62.345043) (xy 137.136048 62.1) (xy 137.163952 62.1) (xy 137.188087 62.345043)
(xy 137.259563 62.580669) (xy 137.375634 62.797823) (xy 137.53184 62.98816) (xy 137.722177 63.144366) (xy 137.939331 63.260437)
(xy 138.174957 63.331913) (xy 138.358595 63.35) (xy 138.481405 63.35) (xy 138.665043 63.331913) (xy 138.900669 63.260437)
(xy 139.117823 63.144366) (xy 139.30816 62.98816) (xy 139.464366 62.797823) (xy 139.580437 62.580669) (xy 139.651913 62.345043)
(xy 139.676048 62.1) (xy 139.703952 62.1) (xy 139.728087 62.345043) (xy 139.799563 62.580669) (xy 139.915634 62.797823)
(xy 140.07184 62.98816) (xy 140.262177 63.144366) (xy 140.479331 63.260437) (xy 140.714957 63.331913) (xy 140.898595 63.35)
(xy 141.021405 63.35) (xy 141.205043 63.331913) (xy 141.440669 63.260437) (xy 141.657823 63.144366) (xy 141.84816 62.98816)
(xy 142.004366 62.797823) (xy 142.120437 62.580669) (xy 142.191913 62.345043) (xy 142.216048 62.1) (xy 142.243952 62.1)
(xy 142.268087 62.345043) (xy 142.339563 62.580669) (xy 142.455634 62.797823) (xy 142.61184 62.98816) (xy 142.802177 63.144366)
(xy 143.019331 63.260437) (xy 143.254957 63.331913) (xy 143.438595 63.35) (xy 143.561405 63.35) (xy 143.745043 63.331913)
(xy 143.980669 63.260437) (xy 144.197823 63.144366) (xy 144.38816 62.98816) (xy 144.544366 62.797823) (xy 144.660437 62.580669)
(xy 144.731913 62.345043) (xy 144.756048 62.1) (xy 144.783952 62.1) (xy 144.808087 62.345043) (xy 144.879563 62.580669)
(xy 144.995634 62.797823) (xy 145.15184 62.98816) (xy 145.342177 63.144366) (xy 145.559331 63.260437) (xy 145.794957 63.331913)
(xy 145.978595 63.35) (xy 146.101405 63.35) (xy 146.285043 63.331913) (xy 146.520669 63.260437) (xy 146.737823 63.144366)
(xy 146.92816 62.98816) (xy 147.084366 62.797823) (xy 147.200437 62.580669) (xy 147.271913 62.345043) (xy 147.296048 62.1)
(xy 147.323952 62.1) (xy 147.348087 62.345043) (xy 147.419563 62.580669) (xy 147.535634 62.797823) (xy 147.69184 62.98816)
(xy 147.882177 63.144366) (xy 148.099331 63.260437) (xy 148.334957 63.331913) (xy 148.518595 63.35) (xy 148.641405 63.35)
(xy 148.825043 63.331913) (xy 149.060669 63.260437) (xy 149.277823 63.144366) (xy 149.46816 62.98816) (xy 149.624366 62.797823)
(xy 149.740437 62.580669) (xy 149.811913 62.345043) (xy 149.836048 62.1) (xy 149.863952 62.1) (xy 149.888087 62.345043)
(xy 149.959563 62.580669) (xy 150.075634 62.797823) (xy 150.23184 62.98816) (xy 150.422177 63.144366) (xy 150.639331 63.260437)
(xy 150.874957 63.331913) (xy 151.058595 63.35) (xy 151.181405 63.35) (xy 151.365043 63.331913) (xy 151.600669 63.260437)
(xy 151.817823 63.144366) (xy 152.00816 62.98816) (xy 152.164366 62.797823) (xy 152.280437 62.580669) (xy 152.351913 62.345043)
(xy 152.376048 62.1) (xy 152.403952 62.1) (xy 152.428087 62.345043) (xy 152.499563 62.580669) (xy 152.615634 62.797823)
(xy 152.77184 62.98816) (xy 152.962177 63.144366) (xy 153.179331 63.260437) (xy 153.414957 63.331913) (xy 153.598595 63.35)
(xy 153.721405 63.35) (xy 153.905043 63.331913) (xy 154.140669 63.260437) (xy 154.357823 63.144366) (xy 154.54816 62.98816)
(xy 154.704366 62.797823) (xy 154.820437 62.580669) (xy 154.891913 62.345043) (xy 154.916048 62.1) (xy 154.943952 62.1)
(xy 154.968087 62.345043) (xy 155.039563 62.580669) (xy 155.155634 62.797823) (xy 155.31184 62.98816) (xy 155.502177 63.144366)
(xy 155.719331 63.260437) (xy 155.954957 63.331913) (xy 156.138595 63.35) (xy 156.261405 63.35) (xy 156.445043 63.331913)
(xy 156.680669 63.260437) (xy 156.897823 63.144366) (xy 157.08816 62.98816) (xy 157.244366 62.797823) (xy 157.360437 62.580669)
(xy 157.431913 62.345043) (xy 157.456048 62.1) (xy 157.431913 61.854957) (xy 157.360437 61.619331) (xy 157.244366 61.402177)
(xy 157.08816 61.21184) (xy 156.897823 61.055634) (xy 156.680669 60.939563) (xy 156.445043 60.868087) (xy 156.261405 60.85)
(xy 156.138595 60.85) (xy 155.954957 60.868087) (xy 155.719331 60.939563) (xy 155.502177 61.055634) (xy 155.31184 61.21184)
(xy 155.155634 61.402177) (xy 155.039563 61.619331) (xy 154.968087 61.854957) (xy 154.943952 62.1) (xy 154.916048 62.1)
(xy 154.891913 61.854957) (xy 154.820437 61.619331) (xy 154.704366 61.402177) (xy 154.54816 61.21184) (xy 154.357823 61.055634)
(xy 154.140669 60.939563) (xy 153.905043 60.868087) (xy 153.721405 60.85) (xy 153.598595 60.85) (xy 153.414957 60.868087)
(xy 153.179331 60.939563) (xy 152.962177 61.055634) (xy 152.77184 61.21184) (xy 152.615634 61.402177) (xy 152.499563 61.619331)
(xy 152.428087 61.854957) (xy 152.403952 62.1) (xy 152.376048 62.1) (xy 152.351913 61.854957) (xy 152.280437 61.619331)
(xy 152.164366 61.402177) (xy 152.00816 61.21184) (xy 151.817823 61.055634) (xy 151.600669 60.939563) (xy 151.365043 60.868087)
(xy 151.181405 60.85) (xy 151.058595 60.85) (xy 150.874957 60.868087) (xy 150.639331 60.939563) (xy 150.422177 61.055634)
(xy 150.23184 61.21184) (xy 150.075634 61.402177) (xy 149.959563 61.619331) (xy 149.888087 61.854957) (xy 149.863952 62.1)
(xy 149.836048 62.1) (xy 149.811913 61.854957) (xy 149.740437 61.619331) (xy 149.624366 61.402177) (xy 149.46816 61.21184)
(xy 149.277823 61.055634) (xy 149.060669 60.939563) (xy 148.825043 60.868087) (xy 148.641405 60.85) (xy 148.518595 60.85)
(xy 148.334957 60.868087) (xy 148.099331 60.939563) (xy 147.882177 61.055634) (xy 147.69184 61.21184) (xy 147.535634 61.402177)
(xy 147.419563 61.619331) (xy 147.348087 61.854957) (xy 147.323952 62.1) (xy 147.296048 62.1) (xy 147.271913 61.854957)
(xy 147.200437 61.619331) (xy 147.084366 61.402177) (xy 146.92816 61.21184) (xy 146.737823 61.055634) (xy 146.520669 60.939563)
(xy 146.285043 60.868087) (xy 146.101405 60.85) (xy 145.978595 60.85) (xy 145.794957 60.868087) (xy 145.559331 60.939563)
(xy 145.342177 61.055634) (xy 145.15184 61.21184) (xy 144.995634 61.402177) (xy 144.879563 61.619331) (xy 144.808087 61.854957)