summaryrefslogtreecommitdiff
path: root/mixer.kicad_sch
blob: 195e431fbd2652685a2496a86a5060abcb95e686 (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
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
(kicad_sch (version 20230121) (generator eeschema)

  (uuid 6fcf9bc3-3a6f-4b13-819b-54ecb5e40917)

  (paper "A4")

  (lib_symbols
    (symbol "ADE-1MHW+:ADE-1MHW+" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at 0 10.16 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "ADE-1MHW+" (at 0 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.27 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at -1.27 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "ADE-1MHW+_1_1"
        (rectangle (start -5.08 6.35) (end 5.08 -6.35)
          (stroke (width 0) (type default))
          (fill (type background))
        )
        (pin power_in line (at -7.62 3.81 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at -7.62 0 0) (length 2.54)
          (name "IF" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -7.62 -3.81 0) (length 2.54)
          (name "RF" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 7.62 -3.81 180) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 7.62 0 180) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 7.62 3.81 180) (length 2.54)
          (name "LO" (effects (font (size 1.27 1.27))))
          (number "6" (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 "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 "MAX7413:MAX7413CUA+-ND" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at -7.62 11.43 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "MAX7413CUA+" (at -8.255 9.525 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 10.795 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 10.795 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "MAX7413CUA+-ND_1_1"
        (rectangle (start -7.62 8.255) (end 7.62 -8.89)
          (stroke (width 0) (type default))
          (fill (type background))
        )
        (pin passive line (at 10.16 -2.54 180) (length 2.54)
          (name "COM" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -10.16 2.54 0) (length 2.54)
          (name "IN" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -11.43 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 10.795 270) (length 2.54)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 10.16 2.54 180) (length 2.54)
          (name "OUT" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 10.16 -6.35 180) (length 2.54)
          (name "OS" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 10.16 5.715 180) (length 2.54)
          (name "SHDN" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -10.16 -2.54 0) (length 2.54)
          (name "CLK" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+3.3V" (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" "+3.3V" (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 \"+3.3V\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+3.3V_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 "+3.3V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+3.3V" (effects (font (size 1.27 1.27))))
          (number "1" (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 222.885 100.965) (diameter 0) (color 0 0 0 0)
    (uuid 340a4a8a-6d0f-4ac3-b26a-82d0ec03ef41)
  )
  (junction (at 153.035 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 5835f691-b5bc-4f8a-af3e-00e0cabd11bf)
  )
  (junction (at 179.07 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 5913fb06-e06e-4bd5-939a-e8e188349108)
  )
  (junction (at 89.535 90.17) (diameter 0) (color 0 0 0 0)
    (uuid 6393f06d-29c4-4874-a713-ef70e0a34a23)
  )
  (junction (at 179.07 92.075) (diameter 0) (color 0 0 0 0)
    (uuid b5aaced5-d5a4-49fa-b55e-18cce4806d75)
  )
  (junction (at 209.55 81.28) (diameter 0) (color 0 0 0 0)
    (uuid c8d8bb1f-1d07-4af2-9ef2-5e18bddff2bc)
  )
  (junction (at 153.035 92.075) (diameter 0) (color 0 0 0 0)
    (uuid d7a9849d-68c7-4aab-82ff-94c410b47ff0)
  )

  (wire (pts (xy 153.035 71.12) (xy 146.685 71.12))
    (stroke (width 0) (type default))
    (uuid 140b87e3-bb68-4686-ad10-7745bc21c9d1)
  )
  (wire (pts (xy 153.035 92.075) (xy 160.655 92.075))
    (stroke (width 0) (type default))
    (uuid 211c03e6-841a-4ad2-9054-93f4c81cf350)
  )
  (wire (pts (xy 104.775 95.885) (xy 106.68 95.885))
    (stroke (width 0) (type default))
    (uuid 36316b76-2d58-4c3e-a472-360d34cae1bc)
  )
  (wire (pts (xy 219.71 97.155) (xy 222.885 97.155))
    (stroke (width 0) (type default))
    (uuid 4cb59007-7707-4dd4-9815-75cabdb91b20)
  )
  (wire (pts (xy 185.42 71.12) (xy 179.07 71.12))
    (stroke (width 0) (type default))
    (uuid 5b1468d4-6303-4111-bd2f-977803e9c61a)
  )
  (wire (pts (xy 219.71 88.9) (xy 219.71 81.28))
    (stroke (width 0) (type default))
    (uuid 68f36c91-0497-4818-a8eb-e5bb033aa768)
  )
  (wire (pts (xy 153.035 76.835) (xy 153.035 71.12))
    (stroke (width 0) (type default))
    (uuid 703d356e-c2c9-41c7-8f32-f3821f3d2ac6)
  )
  (wire (pts (xy 209.55 78.74) (xy 209.55 81.28))
    (stroke (width 0) (type default))
    (uuid 79a03688-5487-4f4c-9c3d-0098f3ef35ff)
  )
  (wire (pts (xy 219.71 81.28) (xy 209.55 81.28))
    (stroke (width 0) (type default))
    (uuid 970b5d02-76d9-481f-b04d-4bac0e5333e0)
  )
  (wire (pts (xy 159.385 71.12) (xy 153.035 71.12))
    (stroke (width 0) (type default))
    (uuid 975a5de6-511b-4bf6-83b9-14a8027917ba)
  )
  (wire (pts (xy 179.07 71.12) (xy 179.07 84.455))
    (stroke (width 0) (type default))
    (uuid a0deebde-883b-410d-b368-61be4c7ff927)
  )
  (wire (pts (xy 67.31 95.885) (xy 89.535 95.885))
    (stroke (width 0) (type default))
    (uuid a6b8eec8-c97f-40f8-b936-a444e84cf244)
  )
  (wire (pts (xy 179.07 71.12) (xy 172.72 71.12))
    (stroke (width 0) (type default))
    (uuid a6c0ea85-4f8a-4a4f-bdbb-aa8d58b117e7)
  )
  (wire (pts (xy 222.885 100.965) (xy 222.885 104.775))
    (stroke (width 0) (type default))
    (uuid be36fb10-ad4e-448c-831d-4fc73e46cff9)
  )
  (wire (pts (xy 219.71 100.965) (xy 222.885 100.965))
    (stroke (width 0) (type default))
    (uuid c2294e9b-7617-4f02-a1b6-f3e5b6a9fbd7)
  )
  (wire (pts (xy 89.535 90.17) (xy 89.535 92.075))
    (stroke (width 0) (type default))
    (uuid c47789fb-fb47-4028-8cb7-d2d9cb2ec808)
  )
  (wire (pts (xy 89.535 88.265) (xy 89.535 90.17))
    (stroke (width 0) (type default))
    (uuid c7f0afeb-0f17-4654-b641-be6e6f6a9158)
  )
  (wire (pts (xy 222.885 97.155) (xy 222.885 100.965))
    (stroke (width 0) (type default))
    (uuid cf6221b9-ce32-4c06-9ac8-22c2386052c8)
  )
  (wire (pts (xy 209.55 81.28) (xy 209.55 83.82))
    (stroke (width 0) (type default))
    (uuid cf87aadd-9109-4f9b-8dac-d9456cf52e50)
  )
  (wire (pts (xy 179.07 92.075) (xy 199.39 92.075))
    (stroke (width 0) (type default))
    (uuid d6e2e2d2-e7ec-4429-b7b4-1028d0104b38)
  )
  (wire (pts (xy 104.775 88.265) (xy 106.68 88.265))
    (stroke (width 0) (type default))
    (uuid d8b8a687-0cf2-4995-811a-67203480c56c)
  )
  (wire (pts (xy 104.775 92.075) (xy 128.27 92.075))
    (stroke (width 0) (type default))
    (uuid e23cc4d5-3ee0-48c1-909c-dbc3bc0be2f5)
  )
  (wire (pts (xy 168.275 92.075) (xy 179.07 92.075))
    (stroke (width 0) (type default))
    (uuid e4ba26a6-d6a8-4aa0-96a8-f9b383cdcaa5)
  )
  (wire (pts (xy 87.63 90.17) (xy 89.535 90.17))
    (stroke (width 0) (type default))
    (uuid eecae906-377f-4ad4-b943-a5ad335ae488)
  )
  (wire (pts (xy 153.035 92.075) (xy 143.51 92.075))
    (stroke (width 0) (type default))
    (uuid f4b22234-dc89-4405-95b4-e8b2e62f9d0e)
  )
  (wire (pts (xy 205.105 81.28) (xy 209.55 81.28))
    (stroke (width 0) (type default))
    (uuid fbd8994f-f18f-41ec-87a0-599d8202ed0b)
  )

  (hierarchical_label "RF" (shape input) (at 106.68 88.265 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 01f28ee7-d876-46ab-9d90-1e1eb8089e15)
  )
  (hierarchical_label "OUT" (shape output) (at 219.71 92.075 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 37f9b4b2-ad09-4500-a0e5-0808c35ed18a)
  )
  (hierarchical_label "MIXER_CLK" (shape input) (at 199.39 97.155 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6ad9948d-4401-4552-ab5a-82c301db917e)
  )
  (hierarchical_label "LO" (shape input) (at 67.31 95.885 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 74b2942f-889e-4aaa-829d-d554c7fc47b8)
  )

  (symbol (lib_id "Device:C") (at 142.875 71.12 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 012162ae-aa8a-4879-bb12-2b6e4e3b9c8e)
    (property "Reference" "C26" (at 142.875 78.74 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100pF" (at 142.875 76.2 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 139.065 72.0852 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 142.875 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2d876823-899c-43f0-a098-6ef1ce093c87))
    (pin "2" (uuid eee24391-e42d-4ff7-9801-9aa6d881cf7b))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C26") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C24") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C33") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "MAX7413:MAX7413CUA+-ND") (at 209.55 94.615 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 05a37e3b-06a7-4ab5-925c-50f7435f33d7)
    (property "Reference" "U8" (at 211.455 83.185 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "MAX7413CUA+" (at 211.455 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "footprints:MAX7413CUA+" (at 209.55 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 209.55 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dd89464d-5ca6-45b7-84f2-606d49365684))
    (pin "2" (uuid 789eb52d-7bec-4a19-8c46-5879c949057c))
    (pin "3" (uuid 03b557b8-81a9-44ee-a070-7fafdd7a9f9b))
    (pin "4" (uuid bc426454-469f-4d52-98d7-5bd67557a50e))
    (pin "5" (uuid 08a3ae98-19d3-4b88-8320-14d352089c64))
    (pin "6" (uuid f3f2a683-ab25-40a5-935c-2756e36fc5d6))
    (pin "7" (uuid 942be8a3-539a-4c97-b7d1-ee4db50bfef1))
    (pin "8" (uuid 47551a00-2219-4ade-b14a-cfad286b9ff6))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "U8") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "U12") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 222.885 112.395 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 188af1b8-0dc3-4b28-a40a-efda35bf8f63)
    (property "Reference" "#PWR05" (at 222.885 118.745 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 222.885 117.475 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 222.885 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 222.885 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 47259526-297f-4a04-ad1d-124d76f08e24))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR05") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR048") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR057") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR056") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 159.385 71.12 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1e01eb32-cbbb-45b5-a307-43a4fe07411a)
    (property "Reference" "#PWR028" (at 159.385 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 159.385 76.2 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 159.385 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 159.385 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9825e466-bc9f-4256-9c09-4269bc179504))
    (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 "#PWR041") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR051") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR067") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 139.065 71.12 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 25069657-67cb-43c1-9606-55f55107904d)
    (property "Reference" "#PWR011" (at 139.065 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 139.065 66.675 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 139.065 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 139.065 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cbc86553-f4b9-46fd-b762-f1ef70787896))
    (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 "#PWR043") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR048") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR064") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 153.035 80.645 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 4f98836b-f641-4035-93b5-692d2d28fe38)
    (property "Reference" "R4" (at 150.495 81.915 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "62R" (at 150.495 79.375 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 154.813 80.645 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 153.035 80.645 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c67d605b-5d59-4d3e-871d-2f14fd677743))
    (pin "2" (uuid 9ec3062a-78ff-4c08-988b-b30e2502c7a2))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "R4") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "R5") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "R9") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 209.55 106.045 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 56b76294-1c07-419b-ae8d-f6040af917f9)
    (property "Reference" "#PWR05" (at 209.55 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 209.55 111.125 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 209.55 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 209.55 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a8112a68-a270-4ddf-8208-11bbf38b332b))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR05") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR048") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR0116") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR0115") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:L") (at 179.07 88.265 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 5ab87254-6e98-4563-84f9-ecfe7cc36b85)
    (property "Reference" "L2" (at 180.34 86.995 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "10uH" (at 180.34 89.535 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Inductor_SMD:L_0603_1608Metric" (at 179.07 88.265 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 179.07 88.265 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 95d85116-0b1e-4ce3-b1b1-c995257204c2))
    (pin "2" (uuid 71bf204c-1b0f-4895-9c1e-4d7827d905cb))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "L2") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "L4") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "L5") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 165.1 71.12 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 689b281a-6161-42e8-9bbc-af22a7c31c82)
    (property "Reference" "#PWR011" (at 165.1 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 165.1 66.675 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 165.1 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 165.1 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e9bfc264-e6fc-4c0b-8c92-9eb4fbad69e8))
    (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 "#PWR043") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR0111") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR0113") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 106.68 95.885 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 6fe8d97a-5354-4909-ad38-db525d8727b4)
    (property "Reference" "#PWR08" (at 113.03 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 110.49 95.885 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 106.68 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 106.68 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 17e8911c-d6c0-45a5-b16b-25615bf1b865))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR08") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR06") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR060") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR044") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 179.07 95.885 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 7638d974-79a0-4a40-99d9-7d7127358533)
    (property "Reference" "R12" (at 181.61 94.615 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "50R" (at 181.61 97.155 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 177.292 95.885 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 179.07 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4d9847dd-b48d-4d9a-8f86-e06f46ca04b4))
    (pin "2" (uuid c0ea9725-7b0c-45ef-ac0b-becd55208644))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "R12") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "R8") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 185.42 71.12 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 7fad8cf1-85a7-4201-a2f3-a1f4be28d04b)
    (property "Reference" "#PWR058" (at 185.42 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 185.42 66.04 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 185.42 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 185.42 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fe4cbd3d-6c0a-49de-9eae-4768b3041989))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR058") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR053") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 201.295 81.28 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 8a62332e-31b0-465c-83fb-3fc97a55cd57)
    (property "Reference" "C29" (at 201.295 73.66 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "0.1uF" (at 201.295 76.2 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 205.105 80.3148 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 201.295 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c647c4a8-4efa-4d39-a5a3-3ab0caba0f1f))
    (pin "2" (uuid e83c017f-d0ed-4f2f-97e2-884f2c2e3211))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C29") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C38") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 179.07 99.695 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 9f209670-459f-472a-bf19-a88a67776e3c)
    (property "Reference" "#PWR05" (at 179.07 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 179.07 104.14 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 179.07 99.695 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 179.07 99.695 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 934ad81a-6f91-4542-8bb6-20c8dd2e281f))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR05") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR048") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR068") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR052") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "BGA614H6327XTSA1:BGA614H6327XTSA1") (at 135.89 93.345 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid a684a670-e0d5-4938-b391-5b1a3a13a1c0)
    (property "Reference" "U3" (at 135.89 88.265 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "BGA614H6327XTSA1" (at 135.89 100.33 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "footprints:BGA614H6327XTSA1" (at 134.62 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 134.62 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2b74eb0f-da31-4d75-9afd-013de8600178))
    (pin "2" (uuid 926a657a-4934-411a-ad38-8b1f924f763b))
    (pin "3" (uuid ace59238-b663-41bf-ab84-3aa312686535))
    (pin "4" (uuid deef408e-ef04-466b-8fa6-a306a7351100))
    (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 "U5") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "U6") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "U10") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 222.885 108.585 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid abd8e876-7f7c-497c-9487-d9aa6ff3e526)
    (property "Reference" "C39" (at 226.06 107.315 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "0.1uF" (at 226.06 109.855 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 221.9198 104.775 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 222.885 108.585 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 669b22c3-0f45-4053-beca-cdf31d62caf4))
    (pin "2" (uuid 6c2505c2-c15f-4313-96cf-6a6796ea25b9))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C39") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C30") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 209.55 78.74 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid ba2e0124-045c-4411-afaa-663b152230e3)
    (property "Reference" "#PWR071" (at 209.55 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 209.55 73.66 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 209.55 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 209.55 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e6ad11f5-b674-4c99-b230-2336e35ae557))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR071") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR055") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 197.485 81.28 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid c0acd078-04f2-41c7-ad32-15d490d19f32)
    (property "Reference" "#PWR05" (at 191.135 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 194.31 81.28 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 197.485 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 197.485 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 61dc3527-3de1-452f-930b-73174575d1a7))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR05") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR048") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR070") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR054") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 128.27 95.885 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid c1119e54-d933-419c-a41c-1bf29ddeedd6)
    (property "Reference" "#PWR06" (at 121.92 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 124.46 95.885 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 128.27 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 128.27 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8f666c8f-860d-4759-b28e-8db39b34053e))
    (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 "#PWR010") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR045") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR061") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 143.51 95.885 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid c483820c-0f0a-4985-a496-8d13fde9c9d8)
    (property "Reference" "#PWR06" (at 149.86 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 146.685 95.885 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 143.51 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 143.51 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0d0c3a52-3cb1-48ae-ae76-3b30aec171b6))
    (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 "#PWR042") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR049") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR065") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 164.465 92.075 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d3df32b0-6d80-40f6-b69c-2110eed076bc)
    (property "Reference" "C26" (at 164.465 99.695 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100pF" (at 164.465 97.155 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 160.655 93.0402 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 164.465 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b24e9ddb-cdac-4069-96f8-82b4beed20ad))
    (pin "2" (uuid c0f597dc-7bff-4518-a2b9-b88de0f18de8))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C26") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C26") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C35") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 168.91 71.12 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid d4a3d04e-28a3-4591-8266-77b78e8602a7)
    (property "Reference" "C26" (at 168.91 78.74 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100pF" (at 168.91 76.2 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 165.1 72.0852 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 168.91 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a6fca041-fb29-4641-9e5f-2705ff4033ef))
    (pin "2" (uuid d8a1ff11-3fd3-470d-92cc-6e4be61d1596))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "C26") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C60") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C61") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:L") (at 153.035 88.265 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid f0ce35d8-c45b-469d-bb25-25e1f465763f)
    (property "Reference" "L2" (at 151.765 89.535 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47nH" (at 151.765 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Inductor_SMD:L_0603_1608Metric" (at 153.035 88.265 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 153.035 88.265 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c6ef5557-5323-43dd-b70a-1648915024d3))
    (pin "2" (uuid fe7517d6-8490-4055-81dd-bde207959c29))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "L2") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "L1") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "L2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 87.63 90.17 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid f216ff46-4433-45c8-9585-fa20a41c5ffb)
    (property "Reference" "#PWR07" (at 81.28 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 83.82 90.17 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 87.63 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 87.63 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 98571790-562c-45d9-a47e-413931c1d801))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR07") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "#PWR04") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR059") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR043") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "ADE-1MHW+:ADE-1MHW+") (at 97.155 92.075 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid f402e426-758a-4026-8c01-1b78ae83b646)
    (property "Reference" "U5" (at 97.155 83.185 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "ADE-1MHW+" (at 97.155 99.695 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "footprints:ADE-1MHW+" (at 98.425 94.615 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 98.425 94.615 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 28ab92d8-2f62-40d0-aa07-2f0218df04a5))
    (pin "2" (uuid fbe4a62e-05f1-48d6-844e-886d5248af31))
    (pin "3" (uuid 5a29e112-c65e-4a47-92c2-8ea24d19d7ba))
    (pin "4" (uuid 6f828525-cd76-4bc2-9ab4-6802b9393d60))
    (pin "5" (uuid ac6501a7-870a-499f-90ba-1c5f67a25835))
    (pin "6" (uuid cc75f640-99bc-4fb9-9ea5-f00137b2dd03))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U5") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "U2") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "U9") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "U5") (unit 1)
        )
      )
    )
  )
)