summaryrefslogtreecommitdiff
path: root/frontend.kicad_sch
blob: d85f107e8ad1a79f190591bdeb144201ddf8d1a1 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
(kicad_sch (version 20230121) (generator eeschema)

  (uuid 83c08bbc-7a97-4d31-aa5f-922b6fc99f0e)

  (paper "A4")

  (lib_symbols
    (symbol "Autotransformer:Autotransformer" (in_bom yes) (on_board yes)
      (property "Reference" "Tr" (at -3.429 0.254 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "N2 N1" (at -1.27 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 3.175 8.382 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 3.175 8.382 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Autotransformer_0_1"
        (arc (start 0 -1.905) (mid 0.6129 -1.27) (end 0 -0.635)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0.635)
            (xy 0 -0.635)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 0)
            (xy 0 0)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0 0.635) (mid 0.6238 1.27) (end 0 1.905)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0.0113 1.905) (mid 0.6351 2.54) (end 0.0113 3.175)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0.0113 3.175) (mid 0.6351 3.81) (end 0.0113 4.445)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0.0225 -4.445) (mid 0.6354 -3.81) (end 0.0225 -3.175)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0.0225 -3.175) (mid 0.6354 -2.54) (end 0.0225 -1.905)
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "Autotransformer_1_1"
        (pin passive line (at 0 6.985 270) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -6.985 90) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "BGA614H6327XTSA1:BGA614H6327XTSA1" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at 0 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "BGA614H6327XTSA1" (at 0 5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.27 1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at -1.27 1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "BGA614H6327XTSA1_1_1"
        (rectangle (start -5.08 3.81) (end 5.08 -5.08)
          (stroke (width 0) (type default))
          (fill (type background))
        )
        (pin input line (at -7.62 1.27 0) (length 2.54)
          (name "IN" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -7.62 -2.54 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 7.62 1.27 180) (length 2.54)
          (name "OUT" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 7.62 -2.54 180) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector:Conn_Coaxial" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (at 0.254 3.048 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_Coaxial" (at 2.921 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" " ~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_Coaxial_0_1"
        (arc (start -1.778 -0.508) (mid 0.2311 -1.8066) (end 1.778 0)
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 0)
            (xy -0.508 0)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -2.54)
            (xy 0 -1.778)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (circle (center 0 0) (radius 0.508)
          (stroke (width 0.2032) (type default))
          (fill (type none))
        )
        (arc (start 1.778 0) (mid 0.2099 1.8101) (end -1.778 0.508)
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
      )
      (symbol "Conn_Coaxial_1_1"
        (pin passive line (at -5.08 0 0) (length 2.54)
          (name "In" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -5.08 90) (length 2.54)
          (name "Ext" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "L" (at -1.27 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "L" (at 1.905 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Inductor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "L_0_1"
        (arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "L_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+5V" (at 0 3.556 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+5V_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "+5V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+5V" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 100.33 40.005) (diameter 0) (color 0 0 0 0)
    (uuid 6911dce0-2830-4e8e-92e0-74c088f68c68)
  )
  (junction (at 48.895 40.005) (diameter 0) (color 0 0 0 0)
    (uuid 7d90f7ea-0afb-44b7-8295-ff64cd7a799c)
  )
  (junction (at 48.895 53.975) (diameter 0) (color 0 0 0 0)
    (uuid 93657098-280c-42f7-9878-9ba754460c5e)
  )
  (junction (at 71.12 46.99) (diameter 0) (color 0 0 0 0)
    (uuid 9ccae535-41bc-4634-83e6-28e413557038)
  )
  (junction (at 100.33 60.96) (diameter 0) (color 0 0 0 0)
    (uuid bc148d7d-ee98-4a14-82b0-3af53c297a51)
  )

  (wire (pts (xy 46.355 53.975) (xy 48.895 53.975))
    (stroke (width 0) (type default))
    (uuid 064573b6-2d26-4e45-9855-8ef0b3f468ee)
  )
  (wire (pts (xy 65.405 46.99) (xy 71.12 46.99))
    (stroke (width 0) (type default))
    (uuid 1180ad97-a28b-4131-84bf-7c9985be3062)
  )
  (wire (pts (xy 48.895 50.165) (xy 48.895 53.975))
    (stroke (width 0) (type default))
    (uuid 1f8c8592-7c76-4b0a-828e-1fb930bb3d75)
  )
  (wire (pts (xy 100.33 60.96) (xy 106.68 60.96))
    (stroke (width 0) (type default))
    (uuid 23e43d55-592e-4d3f-b1b5-9c61f9fff87c)
  )
  (wire (pts (xy 48.895 40.005) (xy 48.895 42.545))
    (stroke (width 0) (type default))
    (uuid 286e51a8-7f31-4e8d-8ad9-c7e485701c94)
  )
  (wire (pts (xy 71.12 46.99) (xy 80.01 46.99))
    (stroke (width 0) (type default))
    (uuid 29865308-167f-422c-9e37-9144e151fa75)
  )
  (wire (pts (xy 187.325 40.005) (xy 185.42 40.005))
    (stroke (width 0) (type default))
    (uuid 35cef8f0-7e99-460c-9d12-9cd5ae259e5e)
  )
  (wire (pts (xy 197.485 28.575) (xy 197.485 32.385))
    (stroke (width 0) (type default))
    (uuid 3c8a8ca4-02e1-4f56-bd5b-46513050873d)
  )
  (wire (pts (xy 34.925 53.975) (xy 38.735 53.975))
    (stroke (width 0) (type default))
    (uuid 651bc001-3521-4506-bc95-b734d497a0f6)
  )
  (wire (pts (xy 34.925 40.005) (xy 38.1 40.005))
    (stroke (width 0) (type default))
    (uuid 696616e3-fa80-4967-b930-2786799dd29a)
  )
  (wire (pts (xy 48.895 40.005) (xy 61.595 40.005))
    (stroke (width 0) (type default))
    (uuid 7257f9ee-7955-4158-99c6-bd58bb638deb)
  )
  (wire (pts (xy 93.98 60.96) (xy 100.33 60.96))
    (stroke (width 0) (type default))
    (uuid 7bb55982-5c69-416c-b7dd-44e7daaaf282)
  )
  (wire (pts (xy 210.82 58.42) (xy 216.535 58.42))
    (stroke (width 0) (type default))
    (uuid 7f9fb180-e155-4a5b-a02d-3dc616775360)
  )
  (wire (pts (xy 197.485 49.53) (xy 197.485 53.34))
    (stroke (width 0) (type default))
    (uuid 8cbeaeac-b7ca-45bd-a647-884218e9bd17)
  )
  (wire (pts (xy 45.72 40.005) (xy 48.895 40.005))
    (stroke (width 0) (type default))
    (uuid a0983dee-534a-49a6-993f-015bc6e87e4e)
  )
  (wire (pts (xy 100.33 40.005) (xy 109.855 40.005))
    (stroke (width 0) (type default))
    (uuid a8372ed0-d032-4f1a-ad38-5c5f050c5fd0)
  )
  (wire (pts (xy 125.095 40.005) (xy 136.525 40.005))
    (stroke (width 0) (type default))
    (uuid ad8a0221-2e31-4668-a43b-19ae2a685dbd)
  )
  (wire (pts (xy 210.185 37.465) (xy 215.9 37.465))
    (stroke (width 0) (type default))
    (uuid b267bf37-569a-43bc-bad9-a216d4289b5d)
  )
  (wire (pts (xy 95.885 40.005) (xy 100.33 40.005))
    (stroke (width 0) (type default))
    (uuid b6a19fe2-bf78-4056-905a-90767b00c3fd)
  )
  (wire (pts (xy 185.42 60.96) (xy 187.96 60.96))
    (stroke (width 0) (type default))
    (uuid bbeb7dda-0bd3-477b-be10-e70b3d914936)
  )
  (wire (pts (xy 185.42 40.005) (xy 185.42 60.96))
    (stroke (width 0) (type default))
    (uuid cc5ae12c-eb10-4f76-bbd7-c5d86aa3630c)
  )
  (wire (pts (xy 83.82 40.005) (xy 88.265 40.005))
    (stroke (width 0) (type default))
    (uuid cfe756d1-cb49-4475-a3d9-2103c40b311e)
  )
  (wire (pts (xy 48.895 53.975) (xy 61.595 53.975))
    (stroke (width 0) (type default))
    (uuid d75dce82-537a-4e7c-b4c8-bd3db68a7bdb)
  )
  (wire (pts (xy 183.515 37.465) (xy 187.325 37.465))
    (stroke (width 0) (type default))
    (uuid eb865400-cf88-416f-8abf-570bd9dec806)
  )
  (wire (pts (xy 183.515 58.42) (xy 187.96 58.42))
    (stroke (width 0) (type default))
    (uuid f4dcb41b-e981-4660-8620-11c36b86e877)
  )
  (wire (pts (xy 100.33 55.245) (xy 100.33 60.96))
    (stroke (width 0) (type default))
    (uuid fa1a1c14-a735-4462-a06f-a05869058fc8)
  )

  (label "MIX2" (at 183.515 58.42 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 09b3d8bf-7b76-40db-aede-99a44b80ca0d)
  )
  (label "MIX1" (at 34.925 40.005 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 2cc31459-3463-4c7e-837f-3c3f8c577e86)
  )
  (label "MIX1" (at 183.515 37.465 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 9f696af5-6dbb-46bd-8adb-5a067f6589e4)
  )
  (label "MIX2" (at 34.925 53.975 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid b79cf513-d1c5-4c60-80a8-a7204eb8f8c3)
  )

  (hierarchical_label "Q" (shape output) (at 216.535 58.42 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 8350aff1-1ea1-4f41-8694-f28d1bd2547d)
  )
  (hierarchical_label "SIN" (shape input) (at 197.485 28.575 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid a106296c-c896-4e22-a762-33d68c78e028)
  )
  (hierarchical_label "MIXER_CLK" (shape input) (at 185.42 50.165 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid ab3503a0-0d30-48a6-a288-b36343155473)
  )
  (hierarchical_label "COS" (shape input) (at 197.485 49.53 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid bfd3da86-a7d9-40cc-b091-cfb36b43b08c)
  )
  (hierarchical_label "I" (shape output) (at 215.9 37.465 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid fa8cb5c6-1414-43b8-a27d-10e4bafc99c4)
  )

  (symbol (lib_id "Device:C") (at 42.545 53.975 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1b036b0f-6188-46e5-9685-93340c09c661)
    (property "Reference" "C3" (at 42.545 46.99 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "27nF" (at 42.545 49.53 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 46.355 53.0098 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 42.545 53.975 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 04e2f671-d075-4146-9ab6-778214aa24a5))
    (pin "2" (uuid b1cc5d37-0656-45af-a9c6-5db9bdf8b54a))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C3") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C42") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 83.82 53.975 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 20c0b9c9-59be-454f-b704-e5f01b0eccf0)
    (property "Reference" "#PWR011" (at 83.82 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 83.82 58.42 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 83.82 53.975 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 83.82 53.975 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid edb0ab25-60e6-4373-a163-16a0fca59efc))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR011") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR076") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 71.12 50.8 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 20d9e68f-bc48-4516-b6a9-c44c527faf3e)
    (property "Reference" "C1" (at 74.93 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "27pF" (at 74.93 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 72.0852 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2b8d372c-3170-4d10-a1ff-e58effeaa950))
    (pin "2" (uuid 3092929e-817f-482a-a315-9713ebacc95d))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C1") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C43") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "BGA614H6327XTSA1:BGA614H6327XTSA1") (at 117.475 38.735 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 2106a78c-b135-4ca2-bd69-a89f62b6d972)
    (property "Reference" "U3" (at 117.475 43.815 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "BGA614H6327XTSA1" (at 117.475 31.75 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "footprints:BGA614H6327XTSA1" (at 118.745 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 118.745 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9986ed41-16e6-4ce5-b440-f4c2204a3520))
    (pin "2" (uuid d054af6d-4c60-42d3-9123-252a1a9c5ebc))
    (pin "3" (uuid d39e040c-f7e7-460c-84cc-d61c7ddbc2b7))
    (pin "4" (uuid 533e594c-39fb-4467-8f7c-d8230d537fcb))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U3") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "U13") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 110.49 60.96 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 3c2ffd05-2dcf-4fec-976e-350fee55d639)
    (property "Reference" "C45" (at 110.49 53.34 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100pF" (at 110.49 55.88 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 114.3 59.9948 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 110.49 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 62de557e-fb49-462c-8f57-40d3b5ae7571))
    (pin "2" (uuid 6c09084a-3d54-4d21-89f0-1d9d8c2164a2))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C45") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 92.075 40.005 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 3d139af4-1f4f-46eb-9c5e-ac0cee73682b)
    (property "Reference" "C44" (at 92.075 33.02 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100pF" (at 92.075 35.56 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 95.885 39.0398 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 92.075 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f1aece9e-96f5-46f9-a368-1b88fb60e705))
    (pin "2" (uuid 6e12b924-c2fe-453c-a5a3-ed5578707c45))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C44") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 41.91 40.005 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 3de6081d-c5e1-4d56-a18f-c6bbe369d015)
    (property "Reference" "C2" (at 41.91 33.02 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "27nF" (at 41.91 35.56 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 45.72 39.0398 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 41.91 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6bfafb91-3b34-4591-9a9f-5e742ea0d1aa))
    (pin "2" (uuid 8f009aee-7d78-4b29-89e0-5584c7148a26))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C2") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C41") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 100.33 51.435 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 547e548c-2b0b-4df8-a74a-4ca38e4b7c81)
    (property "Reference" "R14" (at 102.87 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "62R" (at 102.87 52.705 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 98.552 51.435 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 100.33 51.435 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7244d3c3-b918-46e4-84be-a94809a71086))
    (pin "2" (uuid b7ec96f7-2f29-4fb8-890e-62c8cb79a2cd))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "R14") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:L") (at 100.33 43.815 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 6d273d3b-14f8-4941-9f81-92ac07b6b189)
    (property "Reference" "L3" (at 101.6 42.545 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47nH" (at 101.6 45.085 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Inductor_SMD:L_0603_1608Metric" (at 100.33 43.815 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 100.33 43.815 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b2386c6c-1636-428e-863a-25f3a63e57ef))
    (pin "2" (uuid 8d1e8e08-c172-4121-9b36-6ecb7ca660d3))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "L3") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 114.3 60.96 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 8563dce1-d0de-44d8-b17a-44b8e9ac569a)
    (property "Reference" "#PWR011" (at 114.3 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 114.3 65.405 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 114.3 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 114.3 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 26662c0e-97df-4b79-9879-dd389488ead1))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR011") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR079") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 125.095 36.195 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 90513784-7380-4b23-bf7c-2661f09b4409)
    (property "Reference" "#PWR06" (at 131.445 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 128.905 36.195 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 125.095 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 125.095 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0f45c12d-83b3-4e07-8c8d-0a54524726d8))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR06") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR080") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Autotransformer:Autotransformer") (at 83.82 46.99 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid a6d1e776-a3cf-4e51-936d-51a3760c5581)
    (property "Reference" "Tr2" (at 79.375 43.815 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "N2 N1" (at 85.725 50.165 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "footprints:Autotransformer" (at 80.645 55.372 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 80.645 55.372 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e0d8bcb8-4534-406d-8300-fc4602b4bd7f))
    (pin "2" (uuid 76acedcf-32a9-4e6d-bbec-53cc6e0e06fc))
    (pin "3" (uuid 0dc52054-1a62-46aa-99b1-099c53052eb1))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "Tr2") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "Tr2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 48.895 46.355 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid a8a4799e-b480-4e5e-8243-276c526da50e)
    (property "Reference" "R1" (at 51.435 45.085 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100R" (at 51.435 47.625 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 47.117 46.355 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 48.895 46.355 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 64c2909d-9ae5-4b00-8d05-8d34d3f1b17d))
    (pin "2" (uuid 006b7639-ce51-4ba5-96f7-63c03aa37633))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "R1") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "R13") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Autotransformer:Autotransformer") (at 61.595 46.99 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid b3d67386-aef4-49ff-a281-0a2302b563c1)
    (property "Reference" "Tr1" (at 66.675 43.815 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "N2 N1" (at 59.69 43.815 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "footprints:Autotransformer" (at 64.77 38.608 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 64.77 38.608 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 38997904-bd9b-43b3-9904-31141e464d6c))
    (pin "2" (uuid e4fcdb35-9890-43d0-908a-c6e9ee84b9dc))
    (pin "3" (uuid 1dbf4850-1edd-45ef-ada7-37c253eab74b))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "Tr1") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "Tr1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 109.855 36.195 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid bc734f43-0498-437a-b5dc-209d68207166)
    (property "Reference" "#PWR06" (at 103.505 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 106.68 36.195 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 109.855 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 109.855 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3ffe61a7-1f2e-4510-8bcf-c8f8f16e072b))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR06") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR078") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 71.12 54.61 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid c206a880-c8d5-4161-860b-a0f835baae0f)
    (property "Reference" "#PWR010" (at 71.12 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 71.12 59.69 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 71.12 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 71.12 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7c30fe66-0c88-44b5-984d-41f1ed32e31a))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR010") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR075") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 140.335 40.005 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d4bf5b3a-a808-40ff-b1d6-e3f786d5da5f)
    (property "Reference" "C46" (at 140.335 33.02 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100pF" (at 140.335 35.56 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 144.145 39.0398 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 140.335 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a0340c69-465c-4718-a448-492742f89df3))
    (pin "2" (uuid 750b5947-0c96-4791-8348-4fea2287ea1c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C46") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 93.98 60.96 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d917f8ad-4f59-4b61-ade9-484b0aa22ce1)
    (property "Reference" "#PWR028" (at 93.98 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 93.98 55.88 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 93.98 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 93.98 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8d0ae1ff-8331-4505-9856-2064dce5b0a9))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR028") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR077") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 149.225 45.085 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid e851cee6-b949-4f51-a3a6-4d904c1d88db)
    (property "Reference" "#PWR09" (at 149.225 51.435 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 149.225 49.53 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 149.225 45.085 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 149.225 45.085 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1b1e31c8-432e-42dc-b859-8d96276e847c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR09") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR081") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector:Conn_Coaxial") (at 149.225 40.005 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid f94a0202-f72c-49ce-89ff-87f21be4e47c)
    (property "Reference" "J1" (at 153.035 39.0282 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Conn_Coaxial" (at 153.035 41.5682 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "footprints:CONN_RF2-04A-T-00-50-G_ADM" (at 149.225 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" " ~" (at 149.225 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9225928f-6f55-4c59-a9f3-7a26741af480))
    (pin "2" (uuid d6f40ee8-1fe2-4cd2-b4fe-355fc3f581ad))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "J1") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "J5") (unit 1)
        )
      )
    )
  )

  (sheet (at 187.325 32.385) (size 22.86 10.16) (fields_autoplaced)
    (stroke (width 0.1524) (type solid))
    (fill (color 0 0 0 0.0000))
    (uuid 42921d2e-336f-47b8-bd50-f98c46221e56)
    (property "Sheetname" "mixer" (at 187.325 31.6734 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheetfile" "mixer.kicad_sch" (at 187.325 43.1296 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "LO" input (at 197.485 32.385 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid ebd163f5-3c0e-4b5d-a3c3-cb5c677f720e)
    )
    (pin "OUT" output (at 210.185 37.465 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 3d820388-d60f-44fc-8fc3-68bb5734fc90)
    )
    (pin "RF" input (at 187.325 37.465 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid cf191b68-fcbd-4297-b74d-80550ffdc07c)
    )
    (pin "MIXER_CLK" input (at 187.325 40.005 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 4becebc6-2a00-4c38-a379-c7c40d3b8ac7)
    )
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5" (page "3"))
      )
    )
  )

  (sheet (at 187.96 53.34) (size 22.86 10.16) (fields_autoplaced)
    (stroke (width 0.1524) (type solid))
    (fill (color 0 0 0 0.0000))
    (uuid d346a3dc-0ac1-4734-bc83-a04d7e077962)
    (property "Sheetname" "mixer1" (at 187.96 52.6284 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheetfile" "mixer.kicad_sch" (at 187.96 64.0846 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "LO" input (at 197.485 53.34 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid c9e2e6e1-7d12-4839-a089-745e23b14bc0)
    )
    (pin "OUT" output (at 210.82 58.42 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 7718d0bd-791f-4a8e-9ed3-d1615af5d511)
    )
    (pin "RF" input (at 187.96 58.42 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid f98cae01-de34-4db3-9c5d-717fe424d0b4)
    )
    (pin "MIXER_CLK" input (at 187.96 60.96 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 13fcd760-587d-4a6b-aa89-ccd39c44d9a9)
    )
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5" (page "2"))
      )
    )
  )
)