-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathantpanel.kicad_pcb
6867 lines (6835 loc) · 292 KB
/
antpanel.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 "Antenna Entrance Panel")
(date "2023-04-23")
(rev "Alpha 1")
(company "BG6LH")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 315dda95-dc2f-4495-a42e-614986894769)
(at 196 95)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "antpanel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/76054a6e-a8a6-4d08-9e1a-2e67f23b6990")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 46.3 10.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba129ef2-aec9-47f8-9e75-0ab58b44308b)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d203de0-8599-450d-b759-7f383816be1c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ee5d2e8-3f81-46e6-a33b-6056a84ede03)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 3fd511d0-b616-4c7a-a027-9d10fbf3349b))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f280a6ba-1bd2-4ce0-a1b1-693080d4ced2))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 1f341336-b668-4b51-976b-86768311a82e))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0b44d96a-27a9-4117-adbf-7b647ddd77dc))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2843abcd-008f-499e-a73a-77dad9611b1a))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c840d50e-6d18-4ca1-8883-fc2848e8a5fb))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (thermal_bridge_width 6) (tstamp 3483c592-eb2a-4dc6-8695-23313fb0e9d6))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp ced62370-6070-40b1-93a4-2c3c25015d70))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 587bca83-a285-4a56-8d48-02fdd1087f36))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 78c85b22-8bb8-4c90-b2d8-309c8f6a6c0e))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 949f10ef-9f89-4795-8eef-cef6ea1173c6))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 3360b03a-afc8-45b4-bc45-8d613362ed0c)
(at 196 67)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "antpanel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/1efeb956-d16b-4230-b227-300570dc37e1")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5a66491-761a-41fb-a909-1655be48e12a)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fae80dc8-532c-49c2-a7e4-0c5863bb9134)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9641b0d9-0432-4e4c-beca-b40bb43df699)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 0527ad73-e313-4cd9-8dec-ca8e390be6bd))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp fa4f5b3c-3602-4be0-8b84-21d60629a251))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp dd4754e7-e370-44c2-85de-e665a501889a))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2e1d4ed6-9548-4d20-9fb9-e577671c99bd))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a6557f49-3cd2-4ac9-af7e-74bef46d7888))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 07ae2d87-3375-45fb-be09-a202a4aee232))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (thermal_bridge_width 6) (tstamp deac86d0-5876-4543-b298-454683912bff))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2c6bbb36-9fee-4624-bfe5-08c7e6f253aa))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a422ed11-b952-4d97-8c2a-126d2453a8de))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 609f4d4c-171e-43c2-bd7f-3aa6aaf8520a))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp ab0440aa-a38e-4ee7-a07f-e0481e1e59ec))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 45f79ec5-0fe5-4db7-a4e4-e1f7ad7621ce)
(at 107 95)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "antpanel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/84d45384-d13b-4273-af4e-ec21685a8c4f")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8f456b3-cfbb-4a08-9777-cdd4026bc9ec)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 644c2fa4-3485-4d0e-a2f0-df921303353e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0734ed2-c9e5-40d5-81ff-9f90550fdc22)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 073e6fa5-040c-4fb5-85dd-9ad024a44810))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp b14379dc-a9a6-4629-b745-2416063ebddc))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a27761fe-431b-42c7-9304-bfc8471f34f1))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 198d8009-4cf2-45ef-968d-f2488d7d6069))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 8947fdfe-569f-44e9-a00d-5b8e1bd00ec7))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 4500da8b-51ea-400b-8fd8-777fd82fe939))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (thermal_bridge_width 6) (tstamp 4f33fd68-25ff-4915-bc94-4e12a46d959f))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 51bb1127-e55b-4d39-9cff-6f8552e8efb0))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 4e031d85-7eaa-4c62-b34e-7d595ccb9e44))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 85211935-0a44-4b8c-93b9-cb20c54f16e6))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 3aad967f-9eb4-4de0-abac-b6f5d99ded0a))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 60eac67e-8ff1-4f5d-96ec-20ee6c9d1f45)
(at 107 67)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "antpanel.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/753400fe-85a4-4c06-805d-e42bcc9b4e2e")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f469169-798f-48a6-8273-15e0ccea562b)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4056aead-2fd3-4b70-827d-227683092b37)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dfac936f-1ac7-413a-b6be-c8067682217e)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 4a9b3283-7717-4a19-8d97-955b4db6e712))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 0403e92c-29af-421a-b80a-33cc65689e1f))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 13e8844c-9937-49f5-9fb3-96849bf5ebfd))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 4469beee-82ec-4cb0-ae6d-926334018468))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d0ef2e47-e86f-4d6a-8484-034175a8987d))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d17e33a6-d155-42e8-a61c-c0e7e4811f42))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (thermal_bridge_width 6) (tstamp 9aa291c6-ea70-4122-a0d5-4f4182ef0235))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 23ccacab-2b0a-4498-930e-cdd9c2e29b13))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp f48cb637-efe2-4ade-a233-e0036b3872b5))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a240bdfb-1bb0-4362-b1a1-7269412820ae))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp e170d75d-7284-4015-b78c-9906137537c2))
)
(gr_rect (start 110 103) (end 124 109)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 3f2dd7e6-8a78-4e46-a6c5-f6c33e073897))
(gr_rect (start 140 103) (end 160 109)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.SilkS") (tstamp 582fe013-e6eb-4eb9-bba9-8f559115025d))
(gr_rect (start 170 103) (end 190 109)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.SilkS") (tstamp 6ab046fe-9ef5-4d5d-b1c3-5bfe56421a1b))
(gr_rect (start 140 103) (end 154 109)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 773f86fb-b1e5-4b08-9dc7-778394911185))
(gr_rect (start 110 103) (end 130 109)
(stroke (width 0.15) (type solid)) (fill none) (layer "B.SilkS") (tstamp 94f1f36b-859e-494b-b703-370679ea5db2))
(gr_rect (start 170 103) (end 184 109)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.SilkS") (tstamp fd030b1f-5cc3-4a91-96fc-61bda5b506ed))
(gr_rect (start 176 103) (end 190 109)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 2f11b18a-e32e-49b6-af54-5b89e6bff6e8))
(gr_rect (start 170 103) (end 190 109)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4df7b71f-e70d-4bd4-86f4-c8b270f23fe9))
(gr_rect (start 140 103) (end 160 109)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 789fcde8-d59e-483f-aaa0-a98a2a7d9b28))
(gr_rect (start 146 103) (end 160 109)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 8babb0b9-4874-4b22-9874-1e0054a7df7c))
(gr_rect (start 110 103) (end 130 109)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp ed9bde14-75fe-46d1-800c-03a073886d01))
(gr_rect (start 116 103) (end 130 109)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp eeb3a3b7-f74b-4205-b47e-df692c37fec8))
(gr_poly
(pts
(xy 154 50)
(xy 154 55)
(xy 168 55)
(xy 168 62)
(xy 176 62)
(xy 176 55)
(xy 190 55)
(xy 190 50)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 02f9bd56-e09d-488b-803f-da09266b7311))
(gr_circle (center 196 67) (end 200 67)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 0a1ec165-7193-4d7e-8262-8829526a7f59))
(gr_poly
(pts
(xy 139 110)
(xy 137 112)
(xy 137 134)
(xy 139 136)
(xy 161 136)
(xy 163 134)
(xy 163 112)
(xy 161 110)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 2e6b0ce3-07a2-4cb3-819f-244cd56025d0))
(gr_poly
(pts
(xy 110 50.4)
(xy 110 55)
(xy 124.2 55)
(xy 124.2 62)
(xy 131.8 62)
(xy 131.8 55)
(xy 146 55)
(xy 146 50.4)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 2eb369a0-a590-4fbe-8dfa-d93b83ddec02))
(gr_circle (center 196 95) (end 200 95)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 509bb58c-d03e-4b67-a6c7-844cc69f858d))
(gr_poly
(pts
(xy 130 99)
(xy 130 63)
(xy 140 63)
(xy 140 99)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 55589aaf-11b8-40a9-99bf-5efb2f04e896))
(gr_poly
(pts
(xy 197 77)
(xy 197 85)
(xy 100 85)
(xy 100 77)
)
(stroke (width 0.15) (type solid)) (fill solid) (layer "B.Mask") (tstamp 61ad48be-8c81-4136-967f-e59116bf7b0e))
(gr_poly
(pts
(xy 130 148.4)
(xy 130 138)
(xy 140 138)
(xy 140 148.4)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7edf8ccb-8243-47b9-b0dd-14aa1e40039d))
(gr_rect (start 100 145.4) (end 200 150)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 88c324a1-92ff-4781-9b79-0e7f290ba43c))
(gr_poly
(pts
(xy 160 148.4)
(xy 160 138)
(xy 170 138)
(xy 170 148.4)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp a3bf9363-e0ab-4ac2-9478-a0943493a15f))
(gr_poly
(pts
(xy 109 110)
(xy 107 112)
(xy 107 134)
(xy 109 136)
(xy 131 136)
(xy 133 134)
(xy 133 112)
(xy 131 110)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp bc86bf16-7202-4557-9edf-72a52b418732))
(gr_rect (start 192 67) (end 200 95)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp c0bdbe15-aae9-4eed-9538-eb305aa7195b))
(gr_circle (center 107 67) (end 111 67)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp c8d872b0-a64f-4b56-b5f5-421655ce1dbd))
(gr_circle (center 107 95) (end 111 95)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp cd498915-0036-42bd-af71-c98d1d1cf49c))
(gr_rect (start 100 63) (end 107 99)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp cd8aebf2-a0f1-499c-8b78-accca5c75713))
(gr_poly
(pts
(xy 160 99)
(xy 160 63)
(xy 170 63)
(xy 170 99)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp ce550332-f7e9-48dd-bf59-4a0f069e3e51))
(gr_poly
(pts
(xy 169 110)
(xy 167 112)
(xy 167 134)
(xy 169 136)
(xy 191 136)
(xy 193 134)
(xy 193 112)
(xy 191 110)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp d005c87d-e440-44cb-a11c-990e31449c62))
(gr_poly
(pts
(xy 169 110)
(xy 167 112)
(xy 167 134)
(xy 169 136)
(xy 191 136)
(xy 193 134)
(xy 193 112)
(xy 191 110)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 0e9d5b75-269c-4e55-8a1c-a27ecddd662a))
(gr_poly
(pts
(xy 139 110)
(xy 137 112)
(xy 137 134)
(xy 139 136)
(xy 161 136)
(xy 163 134)
(xy 163 112)
(xy 161 110)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 10ef7d20-906c-4879-9bfb-2b0427c0a639))
(gr_circle (center 196 95) (end 200 95)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 13d90eb1-59bf-44bd-954d-7ed0c27a352e))
(gr_poly
(pts
(xy 154 50)
(xy 154 55)
(xy 168 55)
(xy 168 62)
(xy 176 62)
(xy 176 55)
(xy 190 55)
(xy 190 50)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 2c49ed54-cb85-44c0-996d-9cabaf8bc70b))
(gr_circle (center 107 95) (end 111 95)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 365941ff-c3f6-4d85-b9d4-924724f84713))
(gr_poly
(pts
(xy 160 99)
(xy 160 63)
(xy 170 63)
(xy 170 99)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 4e43f4dd-a722-4563-8a62-5811175a583f))
(gr_poly
(pts
(xy 197 77)
(xy 197 85)
(xy 100 85)
(xy 100 77)
)
(stroke (width 0.15) (type solid)) (fill solid) (layer "F.Mask") (tstamp 662016d8-6fa4-490c-994a-fce33a9f4b55))
(gr_rect (start 192 67) (end 200 95)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 6f78df74-e648-408f-ad4c-fe6dad575c0f))
(gr_circle (center 107 67) (end 111 67)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 7e561597-9754-485e-923b-d35f7503060f))
(gr_poly
(pts
(xy 160 148.4)
(xy 160 138)
(xy 170 138)
(xy 170 148.4)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 86c9d6c2-c39d-4a29-95fa-5bfd5a863649))
(gr_circle (center 196 67) (end 200 67)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 9e3a9e92-7f81-42bd-b303-5324e6e520ef))
(gr_poly
(pts
(xy 109 110)
(xy 107 112)
(xy 107 134)
(xy 109 136)
(xy 131 136)
(xy 133 134)
(xy 133 112)
(xy 131 110)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp a9a20649-59f0-4192-acfe-4af8d0a9a94f))
(gr_rect (start 100 63) (end 107 99)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp b825d510-c80a-4765-8248-3f634d72b414))
(gr_poly
(pts
(xy 130 148.4)
(xy 130 138)
(xy 140 138)
(xy 140 148.4)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp b979edb1-90aa-4ce7-bb25-ba94fc946013))
(gr_rect (start 100 145.4) (end 200 150)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp d9a0f133-bfb8-45a9-ac9e-c94d013a6be2))
(gr_poly
(pts
(xy 110 50.4)
(xy 110 55)
(xy 124.2 55)
(xy 124.2 62)
(xy 131.8 62)
(xy 131.8 55)
(xy 146 55)
(xy 146 50.4)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp e06501bc-f50d-47c8-b531-7acc6760bdee))
(gr_poly
(pts
(xy 130 99)
(xy 130 63)
(xy 140 63)
(xy 140 99)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp f924673a-769e-435c-beea-3e18473802d6))
(gr_line (start 140 100) (end 130 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 002f338a-0477-40c8-8f3b-51ef352bf274))
(gr_circle (center 156 99.5) (end 155.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 01f4692c-6f36-4f0a-905d-61dff819be75))
(gr_line (start 164.1 148.4) (end 135.9 148.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0227f106-cef9-4ef6-a0ba-89a3a0c87ad9))
(gr_circle (center 138.5 62.5) (end 138 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 04736f22-82c2-4198-a22c-4c50c323ff42))
(gr_line (start 164.1 70.9) (end 164.1 91.1)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 054ad066-427d-428a-9457-ee0da57912ca))
(gr_circle (center 142 99.5) (end 141.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 059a0158-0ea4-47ea-99e2-f880b579a896))
(gr_line (start 193.1 80.1) (end 165.9 80.1)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 05f85b54-6cb3-4779-85ce-64b9165f1f4e))
(gr_line (start 135.9 70.9) (end 135.9 91.1)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 08ebee21-5cd4-4e1f-88d6-336f352568a4))
(gr_line (start 110 52) (end 110 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 092583fb-c054-4a73-b0cc-44ce4ec69193))
(gr_circle (center 159.5 62.5) (end 159 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 0afc82c0-50fb-42c3-b583-876ed65fc8bc))
(gr_arc (start 103 67) (mid 104.171573 64.171573) (end 107 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0b37c006-9e86-47cc-9112-3140dc1fd3b8))
(gr_circle (center 132.5 62.5) (end 132 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 0ec3bb7d-44ae-4834-8d23-13443e172122))
(gr_line (start 154 52) (end 154 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0edff6f1-02f7-421a-939f-58543e6e0714))
(gr_circle (center 146 99.5) (end 145.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 106a76b7-22f0-4f18-9393-bf30cb043681))
(gr_circle (center 120 99.5) (end 119.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 1118bdae-1002-489b-9381-9c79dd97aedd))
(gr_line (start 182 52) (end 182 50.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1215e9bd-38ff-43f3-be52-049e04bda8d7))
(gr_line (start 170 99) (end 160 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 129fc592-a172-4683-ab92-0fcd2c44bd45))
(gr_line (start 146 63) (end 154 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 13b0ad78-f159-475c-965e-413b08a35a1d))
(gr_line (start 190 52) (end 190 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1493fe44-658e-4bbd-89cd-a2ea856b4472))
(gr_line (start 100 88) (end 103 91)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 18e4111a-41c8-4c60-898a-ae8c792b7679))
(gr_circle (center 169.5 62.5) (end 169 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 197593c3-44ad-42c2-99d6-9cb8135539f2))
(gr_circle (center 176 99.5) (end 175.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 1aad0403-9058-4515-9372-553829846e2e))
(gr_line (start 106.9 80.1) (end 106.9 81.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 218aff9d-929e-44e2-ac8f-8f5e4a1daf75))
(gr_line (start 165.9 70.9) (end 164.1 70.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 21b80088-51be-403c-8250-f157afd73b98))
(gr_line (start 134.1 91.1) (end 134.1 81.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 221a8877-8e6b-468d-92f2-718f35d2d108))
(gr_line (start 128.25 119.4) (end 128.25 126.6)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 230458e2-1c9d-4182-b549-c2900b4e34b2))
(gr_circle (center 170.9 113.9) (end 172.5 113.9)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 26ad11f7-218b-48b7-915b-8fdbf915926b))
(gr_line (start 162 50.4) (end 162 52)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 2940031c-db73-4f63-8566-bd341be98974))
(gr_circle (center 158 99.5) (end 157.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 3064c2af-c400-4198-851e-7ad23acb17c0))
(gr_arc (start 196 63) (mid 198.828427 64.171573) (end 200 67)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3109305b-738c-443e-b13e-20dfc55d66a4))
(gr_line (start 130 99) (end 140 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 317855a2-d470-4a02-aec7-52d0ac0d81bf))
(gr_circle (center 121.5 62.5) (end 121 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 347ea00f-4cb9-479e-8e3d-3c2e7c59edc3))
(gr_line (start 134.1 81.9) (end 106.9 81.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3504ef46-52c0-49ff-94a8-8f8f6d880a15))
(gr_line (start 107 63) (end 110 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3589cb27-a5db-4641-81d3-8e5cbc672ccd))
(gr_arc (start 110 62) (mid 110.5 62.5) (end 110 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 374a6162-aa56-4881-afbe-40ac466fdd83))
(gr_arc (start 190 100) (mid 189.5 99.5) (end 190 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 37a9b67e-c962-4d9c-bf34-277228026f33))
(gr_line (start 134.1 150) (end 107 150)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3aa2387e-1b2a-4d5a-a352-ea0074d37f30))
(gr_line (start 134.1 150) (end 134.1 143.3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3bdd1ba2-7e63-42ad-a02c-d2edba8b63fb))
(gr_line (start 165.9 91.1) (end 165.9 81.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3d75da5e-6aeb-46ad-a662-4d3dd7b0d3af))
(gr_arc (start 128.249999 126.6) (mid 120 132.001249) (end 111.750001 126.6)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3ff1d01f-3b9f-4f4c-93a7-ce7121d09e09))
(gr_line (start 107 99) (end 110 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 455eb144-f511-4218-ab43-57b99f0a3347))
(gr_arc (start 111.750001 119.4) (mid 120 113.998751) (end 128.249999 119.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 45cfb5a2-2995-4f4b-9982-89ea1a020720))
(gr_circle (center 176.5 62.5) (end 176 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 46e2c6e2-45f2-47ae-a3a7-af018dc31dad))
(gr_circle (center 163.5 62.5) (end 163 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 496b1a3e-876d-4ea1-8d8c-73c5a9cca9ba))
(gr_circle (center 170.9 132.1) (end 169.3 132.1)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 4996409a-915a-4d55-99de-025bc7e03725))
(gr_circle (center 140.9 113.9) (end 142.5 113.9)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 49d7f0df-dcbc-42c8-b3ed-7008447d9427))
(gr_circle (center 136.5 62.5) (end 136 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 4a1ecd90-36e0-48df-b453-32d6ca455346))
(gr_circle (center 118 99.5) (end 117.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 4a77378a-c293-40f0-9f33-8f2867284fc7))
(gr_line (start 200 95) (end 200 91)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 4d184706-46a9-47b4-9172-9ffe5a422ca1))
(gr_circle (center 165.5 62.5) (end 165 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 4f6b10bd-c879-4c7d-b6ee-3f1c5f89fc73))
(gr_circle (center 182 99.5) (end 181.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 54b24313-2a8f-4f27-94dc-b2dbe95725ca))
(gr_circle (center 178.5 62.5) (end 178 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 55b4f9c3-3bd9-4142-80ae-3659ca03b6ab))
(gr_circle (center 114 99.5) (end 114.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 5622b165-3c88-4526-96dc-420271cc422c))
(gr_circle (center 184.5 62.5) (end 184 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 5757ba07-c2d0-494b-beda-ddbd33d8631a))
(gr_circle (center 180 99.5) (end 179.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 58965d6e-5ec3-42e5-ad71-d7bb0ba49528))
(gr_line (start 197 88) (end 200 91)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 58ef5df5-1637-409c-a5cf-832c672be0a5))
(gr_arc (start 100 104) (mid 101.171573 101.171573) (end 104 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 594aa1ab-49f2-4f93-a0fa-652cb99c0d55))
(gr_line (start 127.2 62) (end 127.2 56.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5a2671eb-04b0-4396-b160-cb9b31370fc1))
(gr_arc (start 107 99) (mid 104.171573 97.828427) (end 103 95)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5be7d49e-fabc-44f7-ba3f-94a0e5716f00))
(gr_circle (center 130.5 62.5) (end 130 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 5cd815e2-0f8d-41ff-9747-b1a44f231a0f))
(gr_line (start 196 63) (end 190 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5d5f3aa8-4b70-4cf0-8794-fdebe95fd105))
(gr_circle (center 186.5 62.5) (end 186 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 5dc0f4ec-9132-4d50-88aa-bec10fc57677))
(gr_arc (start 200 95) (mid 198.828427 97.828427) (end 196 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5dfe1764-6755-4359-85f4-9f82fd54d4a0))
(gr_circle (center 110.9 113.9) (end 112.5 113.9)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 5f40e564-cd73-4a9e-b65b-8c283a764598))
(gr_line (start 154 52) (end 162 52)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 61042051-f153-49b8-b205-1d9c9da3f2a6))
(gr_arc (start 188.249999 126.6) (mid 180 132.001249) (end 171.750001 126.6)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 616a1831-52d6-4d63-9f3d-54dfb2ed99e9))
(gr_circle (center 112 99.5) (end 112.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 61aaca37-7487-4371-9778-ecacf0152a91))
(gr_line (start 107 148.4) (end 100 148.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 6428eac6-cbe6-4013-b95e-ae2f97f3fa7c))
(gr_arc (start 128.8 62) (mid 129.3 62.5) (end 128.8 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 680dc261-0a75-42b2-b234-1e24c207bffc))
(gr_circle (center 117.5 62.5) (end 117 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 695dd081-efc8-40dc-a3ff-f57bc8c04df9))
(gr_circle (center 148 99.5) (end 147.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 6a2160ea-8ec4-4704-851f-d6ba3321a060))
(gr_line (start 138 52) (end 138 50.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 704875c5-ef5b-4284-9bae-129ff4397a4c))
(gr_circle (center 188 99.5) (end 187.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 70a5af93-2f82-48c7-bb47-8105a4b9cc53))
(gr_circle (center 189.1 132.1) (end 190.7 132.1)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 71675df6-81ab-43b0-a001-9a90faab2821))
(gr_line (start 118 50.4) (end 138 50.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7181277c-f243-41d6-b9c7-56a34bdf4d47))
(gr_line (start 158.25 119.4) (end 158.25 126.6)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7289aeae-697f-471f-8f78-9fb4a136e926))
(gr_circle (center 129.1 113.9) (end 130.7 113.9)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 73684a7e-a65a-4531-b67b-b916bd27cd13))
(gr_arc (start 154 62) (mid 154.5 62.5) (end 154 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7644bf67-7289-499d-8976-00525cbde280))
(gr_line (start 127.2 63) (end 128.8 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 76468c91-8230-4b9a-be54-e21acaaca41a))
(gr_line (start 103 95) (end 103 91)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 77dd232c-e54c-44f5-864d-cfc5ba3d6ca2))
(gr_line (start 164.1 143.3) (end 165.9 143.3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 77efa79e-592c-491a-9ca7-0fcfa175cbc0))
(gr_line (start 190 100) (end 196 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7b74952b-a5d8-4078-802d-49020b110b07))
(gr_arc (start 158.249999 126.6) (mid 150 132.001249) (end 141.750001 126.6)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7cf09d18-e24a-40f0-af76-a044601ff992))
(gr_arc (start 110 99) (mid 110.5 99.5) (end 110 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7d6df3d2-3ba9-4f6d-aa29-be95561dde3f))
(gr_line (start 107 150) (end 107 148.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7ec1bcd9-5b7a-4fe0-8fa1-d74a90f6119d))
(gr_circle (center 174.5 62.5) (end 174 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7f2b26fd-90bc-4f3f-9bf3-a53111b24d18))
(gr_circle (center 124 99.5) (end 123.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7fb97c79-b4dc-4b87-8013-c836358753db))
(gr_line (start 103 71) (end 103 67)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 875de26f-10e0-45a3-b55c-ca5706d44be0))
(gr_circle (center 152 99.5) (end 151.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 88447941-85b8-4e3e-8b26-109be2ba2172))
(gr_circle (center 140.5 62.5) (end 140 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 897e9fc6-f931-412d-8f82-8bdefb833c27))
(gr_line (start 165.9 150) (end 165.9 143.3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 8a2a523c-ddd7-4453-8927-fe323c9daff9))
(gr_line (start 162 50.4) (end 182 50.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 8a945cc5-3da8-419f-bd6d-0759b65d0b78))
(gr_circle (center 159.1 132.1) (end 160.7 132.1)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 8f330ec7-7ee8-4b84-afc7-4792e99b7b5c))
(gr_arc (start 171.2 63) (mid 170.7 62.5) (end 171.2 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 8fc9df35-80c1-4d26-a2ba-8e76ed1b2373))
(gr_line (start 164.1 148.4) (end 164.1 143.3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9071a2eb-8847-4f1c-9bbc-94695ce0a836))
(gr_line (start 127.2 56.9) (end 128.8 56.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 908694a2-80ff-4fb4-aae0-cac2eba13fe5))
(gr_circle (center 172 99.5) (end 171.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 909d348d-4688-45ae-8f06-a0fb45f795b5))
(gr_circle (center 113.5 62.5) (end 113 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 9246fab9-ecdb-496c-b2a4-5d2a28812514))
(gr_line (start 171.75 126.6) (end 171.75 119.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 95755cdc-b2f8-4c1a-9471-c333dd38e639))
(gr_line (start 197 74) (end 200 71)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 98ba4573-1a8b-4605-9bf5-fc7b63af9168))
(gr_line (start 146 52) (end 138 52)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 990032c2-a81c-4ab1-a830-9dd67f81cf53))
(gr_line (start 188.25 119.4) (end 188.25 126.6)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9952ecf7-d2a9-4c1d-bfb4-f151e73813de))
(gr_circle (center 123.5 62.5) (end 123 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 9b55f4b8-6d6c-4aca-90e0-4c469fd3981a))
(gr_line (start 100 148.4) (end 100 104)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9ff230ee-44c7-4178-8ce7-80893d40d072))
(gr_circle (center 144.5 62.5) (end 144 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp a1e2e587-ff98-4db2-b0de-39053dd3d262))
(gr_circle (center 128 99.5) (end 127.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp a20bc95e-4e5f-44bf-918e-4b6a339f0f2b))
(gr_arc (start 170 99) (mid 170.5 99.5) (end 170 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a2588d10-5efc-4052-897c-b009c9bf53b5))
(gr_arc (start 190 63) (mid 189.5 62.5) (end 190 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a3990bd2-12e1-4d9c-a024-250d2a0e91f4))
(gr_line (start 190 99) (end 196 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a5052720-f1c8-4f51-8608-7d83d67a5d97))
(gr_line (start 135.9 91.1) (end 134.1 91.1)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a9005b14-e86d-4fd4-9e58-0ca3b65cdc11))
(gr_arc (start 172.8 62) (mid 173.3 62.5) (end 172.8 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a9e774b0-8e32-4e8a-97dc-01aa8b1f4ed9))
(gr_circle (center 116 99.5) (end 115.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp aa4b68c0-15a2-450b-8a2d-b8766dc6f78d))
(gr_circle (center 188.5 62.5) (end 188 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp ac929921-92cc-4475-b959-7f862edc7315))
(gr_circle (center 144 99.5) (end 143.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp aec4382d-9524-4b6e-b753-3e26e4352b9b))
(gr_circle (center 159.1 113.9) (end 160.7 113.9)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp b06a6aba-bd44-4fe3-95dd-8677b7dadeac))
(gr_line (start 128.8 62) (end 128.8 56.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b0c0dd50-9e2d-473f-ae5f-e7aa21bba560))
(gr_circle (center 126 99.5) (end 125.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp b1a53104-68c8-4c9b-a5a1-991e75082372))
(gr_arc (start 146 63) (mid 145.5 62.5) (end 146 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b1cd969e-d910-4c1c-b472-e5a39859402c))
(gr_circle (center 189.1 113.9) (end 190.7 113.9)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp b3dfe251-f9fc-4a5c-8340-ba36f59099d3))
(gr_circle (center 167.5 62.5) (end 167 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp b4824d1b-20b2-4ba3-a74c-c9db60144e97))
(gr_line (start 134.1 143.3) (end 135.9 143.3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b5e5051a-1b46-4820-8bca-606a698d6585))
(gr_line (start 134.1 80.1) (end 134.1 70.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b8342545-a1ae-4a49-bd72-a1965b01680e))
(gr_line (start 172.8 62) (end 172.8 56.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b9d81b50-1cf6-4138-ac53-1ec392f1ebad))
(gr_circle (center 142.5 62.5) (end 142 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp ba7ff38f-494c-4422-83b8-2c89705d045c))
(gr_line (start 104 100) (end 110 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp baf93ec9-79d5-45f6-aef7-d0906cb6f8fc))
(gr_line (start 171.2 62) (end 171.2 56.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bb78b5cd-0dad-4946-a5a2-5b9bb9f9227b))
(gr_line (start 146 52) (end 146 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bbfd870d-7f61-4fad-ad99-e6bd6f59c32c))
(gr_line (start 200 104) (end 200 148.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bc56fbaa-16a5-47fd-af7e-03afb551ec4f))
(gr_arc (start 140 99) (mid 140.5 99.5) (end 140 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bcf6e343-1840-45e8-9a9e-66e0a20df88d))
(gr_line (start 118 50.4) (end 118 52)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bd169876-764e-44e3-8099-3a0d4954b500))
(gr_line (start 193 150) (end 193 148.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bd45953e-16bf-4c27-a8e0-e8228d0e38f4))
(gr_circle (center 129.1 132.1) (end 130.7 132.1)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp c092de31-877f-4645-a128-da12eaedd03e))
(gr_circle (center 111.5 62.5) (end 111 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp c095978a-f2fe-4186-b45c-878dc7d5a033))
(gr_line (start 100 88) (end 100 74)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c41aaa92-2e7a-4017-b75a-93f0a45c97c8))
(gr_line (start 190 52) (end 182 52)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c47af701-74e4-4f46-9c5d-6c01eab309da))
(gr_circle (center 110.9 132.1) (end 109.3 132.1)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp c5685d6e-e4fa-4a78-89a3-40e5fcba9d13))
(gr_arc (start 196 100) (mid 198.828427 101.171573) (end 200 104)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c81da315-10c5-40eb-8b00-2091d84bc908))
(gr_line (start 164.1 91.1) (end 165.9 91.1)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c8e86245-56e2-4dda-b02f-cea14f7c1424))
(gr_line (start 200 148.4) (end 193 148.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c93eedb0-87d0-4baa-bdfb-e538dc6e3ffd))
(gr_line (start 103 71) (end 100 74)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp cba01697-5a8e-41a6-a018-b75a35b382a7))
(gr_line (start 200 71) (end 200 67)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp cc2844f2-77b2-4e72-a959-f2aa86c69689))
(gr_line (start 110 52) (end 118 52)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp cdfcb414-3f8d-4d73-9453-3ea03ac379ce))
(gr_circle (center 125.5 62.5) (end 125 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp ce3d1075-8048-4eeb-bf7f-0c24ceb85e32))
(gr_circle (center 155.5 62.5) (end 155 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp ce464fb6-8ee0-48fb-80c8-50958e93b7c9))
(gr_circle (center 150 99.5) (end 149.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp d74fcf9f-1e55-4a2d-924c-cd14b3f7eb45))
(gr_circle (center 119.5 62.5) (end 119 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp d82d5b88-c054-4ee4-bed3-997fe2b9a0b1))
(gr_line (start 134.1 70.9) (end 135.9 70.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp d838cc8b-e2ea-4a79-a319-33eb406b4a17))
(gr_circle (center 161.5 62.5) (end 161 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp d85d1f63-b846-44f0-82aa-15e606f2c1e6))
(gr_circle (center 186 99.5) (end 185.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp d8de273c-e231-490e-87dc-80084f5c9608))
(gr_circle (center 174 99.5) (end 173.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp de9ae0aa-be1b-4520-b244-34a38ea9b45b))
(gr_arc (start 127.2 63) (mid 126.7 62.5) (end 127.2 62)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dfc6630d-3349-4bbd-883f-edb1a58d3f67))
(gr_circle (center 184 99.5) (end 183.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp dfd3f4b0-25e8-4674-945c-2c8cdcb2226e))
(gr_line (start 135.9 148.4) (end 135.9 143.3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e01d9b9d-1928-40bb-bd22-e7979c44e822))
(gr_line (start 106.9 80.1) (end 134.1 80.1)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e146c03d-827f-48d0-9956-b1049a4e5026))
(gr_circle (center 182.5 62.5) (end 182 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp e1a90fb6-e1a0-420e-8eb0-8510aeaff11a))
(gr_circle (center 178 99.5) (end 177.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp e224399e-e8e2-49af-9043-636015e3d2b5))
(gr_line (start 165.9 80.1) (end 165.9 70.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e4cfb27e-69f1-4e56-8429-0957eddd06b5))
(gr_circle (center 180.5 62.5) (end 180 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp e4e882c8-b4cb-4136-b284-31be4242ee97))
(gr_circle (center 115.5 62.5) (end 115 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp e8ae9afc-2cb3-4a68-8bb4-9843fe86aea3))
(gr_line (start 165.9 150) (end 193 150)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp eadd7dec-0c74-467a-bfeb-fd7886d4ace2))
(gr_circle (center 154 99.5) (end 153.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp ed66f1cf-6c3f-4584-aad2-7828e5c1146d))
(gr_line (start 171.2 63) (end 172.8 63)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp ee0bee1e-c4b5-4822-bb71-e11d520829d8))
(gr_circle (center 140.9 132.1) (end 139.3 132.1)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp f00a0787-fd70-4764-a3dd-20946c1a49d7))
(gr_arc (start 141.750001 119.4) (mid 150 113.998751) (end 158.249999 119.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f1e874b4-2ba4-49b3-b607-07660390e023))
(gr_arc (start 171.750001 119.4) (mid 180 113.998751) (end 188.249999 119.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f219c806-5706-4627-9e8a-e04282bf072a))
(gr_arc (start 130 100) (mid 129.5 99.5) (end 130 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f3535624-7509-4fee-a574-a1b49534d7ac))
(gr_line (start 193.1 81.9) (end 193.1 80.1)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f64c81ad-10f9-47b1-974f-b0e5cd11a7c9))
(gr_circle (center 157.5 62.5) (end 157 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp f64fa52b-b75f-4739-b12c-13271a542d6c))
(gr_line (start 171.2 56.9) (end 172.8 56.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f830d336-76fc-4d50-8bed-a84a1c617ac0))
(gr_arc (start 160 100) (mid 159.5 99.5) (end 160 99)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f918f2a8-c2e5-4f82-a610-8373a6372c09))
(gr_line (start 197 88) (end 197 74)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f936f781-b48d-4541-b660-f61507e05a59))
(gr_line (start 165.9 81.9) (end 193.1 81.9)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp fa63fe8f-616e-4175-933c-79c16ebd7a36))
(gr_circle (center 134.5 62.5) (end 134 62.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp fabd5259-dad6-4b6e-981c-a152fdb9fef3))
(gr_line (start 111.75 126.6) (end 111.75 119.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp fbb3b9a2-3fb3-4371-aebb-3ff67d31124f))
(gr_circle (center 122 99.5) (end 121.5 99.5)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp fc20d1a4-ac57-49f3-9a95-4d43dc5a2958))
(gr_line (start 160 100) (end 170 100)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp fccd7875-3f22-4564-aa27-45e2d795e9ad))
(gr_line (start 141.75 126.6) (end 141.75 119.4)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp ff3e6410-2a2e-46e4-a973-da2593ceb806))
(gr_text "C" (at 187 106) (layer "B.SilkS") (tstamp 83303c79-3b7a-4b64-8cbd-af7398675983)
(effects (font (size 3 3) (thickness 0.4) bold) (justify mirror))
)
(gr_text "A" (at 127 106) (layer "B.SilkS") (tstamp 91f2e437-298a-46d8-9fea-8cdc83cd22d7)
(effects (font (size 3 3) (thickness 0.4) bold) (justify mirror))
)
(gr_text "B" (at 157 106) (layer "B.SilkS") (tstamp b7281122-6ec0-4ed4-89ef-a985f3f15ab5)
(effects (font (size 3 3) (thickness 0.4) bold) (justify mirror))
)
(gr_text "BG6LH" (at 150 143.2) (layer "F.SilkS") (tstamp 2d831651-5007-4fdd-84b4-0e5228d51b63)
(effects (font (face "DIN Engschrift Std") (size 3 3) (thickness 0.5)))
(render_cache "BG6LH" 0
(polygon
(pts
(xy 146.6386 141.444804) (xy 146.687503 141.447944) (xy 146.73442 141.453101) (xy 146.779375 141.460211)
(xy 146.822394 141.469212) (xy 146.863505 141.480041) (xy 146.902732 141.492634) (xy 146.940103 141.50693)
(xy 146.975642 141.522864) (xy 147.009376 141.540375) (xy 147.041331 141.559398) (xy 147.071533 141.579872)
(xy 147.100008 141.601733) (xy 147.126782 141.624919) (xy 147.151881 141.649365) (xy 147.175331 141.675011)
(xy 147.197159 141.701792) (xy 147.217389 141.729645) (xy 147.236049 141.758509) (xy 147.253164 141.788319)
(xy 147.26876 141.819013) (xy 147.282863 141.850528) (xy 147.2955 141.882801) (xy 147.306696 141.915769)
(xy 147.316477 141.94937) (xy 147.32487 141.983539) (xy 147.3319 142.018215) (xy 147.337593 142.053335)
(xy 147.341976 142.088835) (xy 147.345075 142.124652) (xy 147.346915 142.160724) (xy 147.347523 142.196988)
(xy 147.347523 142.305432) (xy 147.3463 142.362496) (xy 147.342651 142.415181) (xy 147.336607 142.463779)
(xy 147.328197 142.508581) (xy 147.317451 142.54988) (xy 147.3044 142.587968) (xy 147.289074 142.623136)
(xy 147.271502 142.655676) (xy 147.251715 142.685881) (xy 147.229742 142.714043) (xy 147.205614 142.740453)
(xy 147.179361 142.765403) (xy 147.151013 142.789185) (xy 147.1206 142.812091) (xy 147.088152 142.834414)
(xy 147.053698 142.856444) (xy 147.090204 142.875595) (xy 147.124176 142.896827) (xy 147.155639 142.92021)
(xy 147.184616 142.945814) (xy 147.211134 142.973711) (xy 147.235216 143.003971) (xy 147.256888 143.036666)
(xy 147.276173 143.071866) (xy 147.293097 143.109642) (xy 147.307685 143.150065) (xy 147.31996 143.193205)
(xy 147.329948 143.239134) (xy 147.337674 143.287923) (xy 147.343162 143.339641) (xy 147.346436 143.394361)
(xy 147.347523 143.452152) (xy 147.347523 143.623611) (xy 147.346795 143.672383) (xy 147.344606 143.719775)
(xy 147.340943 143.765776) (xy 147.335797 143.810374) (xy 147.329157 143.853558) (xy 147.321011 143.895317)
(xy 147.311348 143.935642) (xy 147.300158 143.974519) (xy 147.287431 144.011939) (xy 147.273154 144.04789)
(xy 147.257317 144.082362) (xy 147.23991 144.115343) (xy 147.220921 144.146823) (xy 147.20034 144.17679)
(xy 147.178156 144.205233) (xy 147.154357 144.232142) (xy 147.128933 144.257505) (xy 147.101874 144.281312)
(xy 147.073167 144.303551) (xy 147.042803 144.324211) (xy 147.010771 144.343282) (xy 146.977059 144.360752)
(xy 146.941657 144.37661) (xy 146.904554 144.390846) (xy 146.865739 144.403449) (xy 146.825201 144.414406)
(xy 146.782929 144.423708) (xy 146.738913 144.431344) (xy 146.693141 144.437302) (xy 146.645603 144.441571)
(xy 146.596288 144.444141) (xy 146.545185 144.445) (xy 145.961933 144.445) (xy 145.961933 143.041092)
(xy 146.389846 143.041092) (xy 146.389846 144.017086) (xy 146.575227 144.017086) (xy 146.606586 144.016463)
(xy 146.636126 144.01461) (xy 146.68997 144.007307) (xy 146.737189 143.995366) (xy 146.778215 143.978973)
(xy 146.81348 143.958317) (xy 146.843414 143.933585) (xy 146.868449 143.904966) (xy 146.889018 143.872647)
(xy 146.90555 143.836816) (xy 146.918478 143.797661) (xy 146.928234 143.75537) (xy 146.935248 143.71013)
(xy 146.939953 143.66213) (xy 146.942779 143.611557) (xy 146.944158 143.558598) (xy 146.944522 143.503443)
(xy 146.943837 143.44814) (xy 146.941584 143.396272) (xy 146.937465 143.347858) (xy 146.931184 143.302916)
(xy 146.922442 143.261465) (xy 146.910944 143.223522) (xy 146.89639 143.189107) (xy 146.878485 143.158237)
(xy 146.85693 143.13093) (xy 146.831428 143.107205) (xy 146.801683 143.087079) (xy 146.767396 143.070572)
(xy 146.728271 143.057702) (xy 146.68401 143.048486) (xy 146.634315 143.042943) (xy 146.57889 143.041092)
(xy 146.389846 143.041092) (xy 145.961933 143.041092) (xy 145.961933 141.847477) (xy 146.389846 141.847477)
(xy 146.389846 142.663004) (xy 146.583287 142.663004) (xy 146.634436 142.661308) (xy 146.680854 142.65624)
(xy 146.722738 142.647828) (xy 146.760286 142.636099) (xy 146.793696 142.621081) (xy 146.823164 142.602803)
(xy 146.848888 142.581291) (xy 146.871066 142.556575) (xy 146.889895 142.528681) (xy 146.905573 142.497639)
(xy 146.918297 142.463475) (xy 146.928264 142.426218) (xy 146.935673 142.385895) (xy 146.940721 142.342535)
(xy 146.943604 142.296165) (xy 146.944522 142.246814) (xy 146.943367 142.199101) (xy 146.939816 142.154341)
(xy 146.933741 142.112553) (xy 146.925013 142.073753) (xy 146.913503 142.037958) (xy 146.899081 142.005185)
(xy 146.88162 141.975452) (xy 146.860991 141.948777) (xy 146.837064 141.925175) (xy 146.809711 141.904664)
(xy 146.778804 141.887262) (xy 146.744212 141.872985) (xy 146.705808 141.861851) (xy 146.663463 141.853877)
(xy 146.617048 141.84908) (xy 146.566434 141.847477) (xy 146.389846 141.847477) (xy 145.961933 141.847477)
(xy 145.961933 141.443743) (xy 146.587683 141.443743)
)
)
(polygon
(pts
(xy 147.724145 143.755502) (xy 147.725217 143.801001) (xy 147.728386 143.845037) (xy 147.733579 143.887611)
(xy 147.740726 143.928725) (xy 147.749754 143.96838) (xy 147.760592 144.006576) (xy 147.773169 144.043316)
(xy 147.787412 144.078601) (xy 147.803249 144.112431) (xy 147.820611 144.144808) (xy 147.839424 144.175733)
(xy 147.859617 144.205207) (xy 147.881118 144.233232) (xy 147.903856 144.259808) (xy 147.92776 144.284937)
(xy 147.952756 144.30862) (xy 147.978775 144.330859) (xy 148.005744 144.351654) (xy 148.033591 144.371007)
(xy 148.062245 144.388919) (xy 148.091634 144.40539) (xy 148.121687 144.420424) (xy 148.152332 144.434019)
(xy 148.183497 144.446179) (xy 148.215111 144.456903) (xy 148.247102 144.466194) (xy 148.279398 144.474052)
(xy 148.311928 144.480478) (xy 148.34462 144.485474) (xy 148.377402 144.489042) (xy 148.410203 144.491181)
(xy 148.442952 144.491894) (xy 148.475633 144.491181) (xy 148.508372 144.489042) (xy 148.541096 144.485474)
(xy 148.573734 144.480478) (xy 148.606213 144.474052) (xy 148.638462 144.466194) (xy 148.670409 144.456903)
(xy 148.701983 144.446179) (xy 148.733111 144.434019) (xy 148.763722 144.420424) (xy 148.793744 144.40539)
(xy 148.823105 144.388919) (xy 148.851733 144.371007) (xy 148.879558 144.351654) (xy 148.906506 144.330859)
(xy 148.932506 144.30862) (xy 148.957487 144.284937) (xy 148.981376 144.259808) (xy 149.004102 144.233232)
(xy 149.025593 144.205207) (xy 149.045777 144.175733) (xy 149.064582 144.144808) (xy 149.081937 144.112431)
(xy 149.097771 144.078601) (xy 149.11201 144.043316) (xy 149.124583 144.006576) (xy 149.135419 143.96838)
(xy 149.144446 143.928725) (xy 149.151592 143.887611) (xy 149.156785 143.845037) (xy 149.159954 143.801001)
(xy 149.161026 143.755502) (xy 149.161026 142.803688) (xy 148.392393 142.803688) (xy 148.392393 143.181775)
(xy 148.732379 143.181775) (xy 148.732379 143.755502) (xy 148.730836 143.793501) (xy 148.726314 143.828924)
(xy 148.718981 143.861788) (xy 148.709001 143.89211) (xy 148.696539 143.919908) (xy 148.673555 143.956909)
(xy 148.645917 143.988326) (xy 148.614184 144.014218) (xy 148.578913 144.034643) (xy 148.540661 144.049658)
(xy 148.499987 144.059321) (xy 148.457449 144.063691) (xy 148.442952 144.063981) (xy 148.399729 144.061363)
(xy 148.358219 144.053471) (xy 148.318977 144.040246) (xy 148.282557 144.021631) (xy 148.249513 143.997568)
(xy 148.2204 143.967999) (xy 148.195771 143.932866) (xy 148.182117 143.906323) (xy 148.170867 143.877265)
(xy 148.162185 143.845674) (xy 148.156234 143.811533) (xy 148.153181 143.774824) (xy 148.152791 143.755502)
(xy 148.152791 142.172076) (xy 148.154335 142.135141) (xy 148.158858 142.100715) (xy 148.166194 142.068778)
(xy 148.176181 142.039314) (xy 148.188654 142.012306) (xy 148.211665 141.976362) (xy 148.239345 141.945846)
(xy 148.27114 141.920701) (xy 148.306496 141.900869) (xy 148.344859 141.886292) (xy 148.385674 141.876912)
(xy 148.428388 141.872671) (xy 148.442952 141.87239) (xy 148.485987 141.87493) (xy 148.527345 141.882591)
(xy 148.566466 141.895429) (xy 148.602792 141.913503) (xy 148.635767 141.93687) (xy 148.664832 141.965589)
(xy 148.689429 141.999718) (xy 148.709001 142.039314) (xy 148.718981 142.068778) (xy 148.726314 142.100715)
(xy 148.730836 142.135141) (xy 148.732379 142.172076) (xy 148.732379 142.321552) (xy 149.161026 142.321552)
(xy 149.161026 142.172076) (xy 149.159954 142.127374) (xy 149.156785 142.08408) (xy 149.151592 142.042197)
(xy 149.144446 142.001723) (xy 149.135419 141.962661) (xy 149.124583 141.92501) (xy 149.11201 141.888771)
(xy 149.097771 141.853945) (xy 149.081937 141.820533) (xy 149.064582 141.788535) (xy 149.045777 141.757952)
(xy 149.025593 141.728785) (xy 149.004102 141.701034) (xy 148.981376 141.674699) (xy 148.957487 141.649783)
(xy 148.932506 141.626284) (xy 148.906506 141.604205) (xy 148.879558 141.583545) (xy 148.851733 141.564306)