summaryrefslogblamecommitdiff
path: root/mixer.kicad_sch
blob: cf96b0ae6488aa5a724af5ceb5ce8896eac63b58 (plain) (tree)
1
2
3
4
5
6
7
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

                                                  
                                             



              











































                                                             







                                                                           

                                              










































































































































































































































































                                                                                                            










                                                       
                                                                                                     

                                              








                                           


                    




















































                                                                                                   



                                           











































































































































































































































































































































































































































































                                                                                                                               











































































































































































































































































































































































































                                                                                                                               


         

   


























                                                                                                                               

   































                                                                                                                               

   

























                                                                                                                               
   
































                                                                                                                               
   



































                                                                                                                               
   



























                                                                                                                               
   


























                                                                                                                               

   
                                                              
                                                            

                                                       

                                            
                                                

                                                       
                                                 

                                            
                                                 

                                            
                                                         


                                                     

                                       








                                                                                                                               



       
                                                              
                                                            

                                                       

                                            
                                                 

                                                       
                                                 

                                            
                                                 

                                            
                                                         


                                                     
                                       
         







                                                                                                                               




         
                                                             
                                                            

                                                       

                                            
                                                  

                                                       
                                                 

                                            
                                                 

                                            
                                                         


                                                     
                                       
         







                                                                                                                               




         



                                                              

                                       
                                                    

                                       
                                                   

                                            
                                                   

                                            

                                                         

                                

                                                                                          
         




                                                                                                                               




         




                                                             
     
                                                 

                                       
                                                  

                                            
                                                  

                                            
                                                         


                                                     
                                       
         



































































                                                                                                                               




         
                                                            
                                                            

                                                     

                                            
                                               

                                                       
                                               

                                            
                                               

                                            
                                                         


                                                     
                                       
         














































                                                                                                                               



         
 
(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 input 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" "MAX7413CUD" (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 "Regulator_Linear:LM1117MP-ADJ" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at -3.81 3.175 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LM1117MP-ADJ" (at 0 3.175 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "linear regulator ldo adjustable positive" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "800mA Low-Dropout Linear Regulator, adjustable output, SOT-223" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SOT?223*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LM1117MP-ADJ_0_1"
        (rectangle (start -5.08 -5.08) (end 5.08 1.905)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
      )
      (symbol "LM1117MP-ADJ_1_1"
        (pin input line (at 0 -7.62 90) (length 2.54)
          (name "ADJ" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 7.62 0 180) (length 2.54)
          (name "VO" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -7.62 0 0) (length 2.54)
          (name "VI" (effects (font (size 1.27 1.27))))
          (number "3" (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:-3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "-3V3" (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 \"-3V3\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "-3V3_0_0"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "-3V3" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "-3V3_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 1.27)
            (xy 0.762 1.27)
            (xy 0 2.54)
            (xy -0.762 1.27)
            (xy 0 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type outline))
        )
      )
    )
    (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 156.21 119.38) (diameter 0) (color 0 0 0 0)
    (uuid 2d4fe755-f70b-4a50-883b-73fde6d74cec)
  )
  (junction (at 153.035 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 5835f691-b5bc-4f8a-af3e-00e0cabd11bf)
  )
  (junction (at 89.535 90.17) (diameter 0) (color 0 0 0 0)
    (uuid 6393f06d-29c4-4874-a713-ef70e0a34a23)
  )
  (junction (at 128.905 119.38) (diameter 0) (color 0 0 0 0)
    (uuid 698bdd6a-a464-41d2-a288-e467307c248c)
  )
  (junction (at 156.21 127) (diameter 0) (color 0 0 0 0)
    (uuid 707acf16-0a6b-499c-b1a7-ae3089c39852)
  )
  (junction (at 146.05 127) (diameter 0) (color 0 0 0 0)
    (uuid 826e1a0c-cbf8-4817-bd4c-bea4b53a17f4)
  )
  (junction (at 156.21 142.24) (diameter 0) (color 0 0 0 0)
    (uuid 99f5380e-76b1-4ea3-a17e-59c032e45abc)
  )
  (junction (at 201.93 81.28) (diameter 0) (color 0 0 0 0)
    (uuid c8d8bb1f-1d07-4af2-9ef2-5e18bddff2bc)
  )
  (junction (at 176.53 92.075) (diameter 0) (color 0 0 0 0)
    (uuid d082ca9b-70ea-4f0d-9447-511344ea3f92)
  )
  (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 67.31 95.885) (xy 71.12 95.885))
    (stroke (width 0) (type default))
    (uuid 396bc4e0-87b9-488e-af98-dd37afbce311)
  )
  (wire (pts (xy 212.09 97.155) (xy 219.71 97.155))
    (stroke (width 0) (type default))
    (uuid 4cb59007-7707-4dd4-9815-75cabdb91b20)
  )
  (wire (pts (xy 146.05 127) (xy 156.21 127))
    (stroke (width 0) (type default))
    (uuid 51f8bbd0-b56c-4cc5-9eb0-bdaf835a3c09)
  )
  (wire (pts (xy 146.05 127) (xy 146.05 134.62))
    (stroke (width 0) (type default))
    (uuid 524d8491-1960-41b3-81d9-9f4736663aa6)
  )
  (wire (pts (xy 191.77 97.155) (xy 182.245 97.155))
    (stroke (width 0) (type default))
    (uuid 5640289c-197b-4da1-a9ee-52191e50844d)
  )
  (wire (pts (xy 153.67 119.38) (xy 156.21 119.38))
    (stroke (width 0) (type default))
    (uuid 58b25b9b-f37c-4543-be9e-99d73478b92a)
  )
  (wire (pts (xy 212.09 88.9) (xy 212.09 81.28))
    (stroke (width 0) (type default))
    (uuid 68f36c91-0497-4818-a8eb-e5bb033aa768)
  )
  (wire (pts (xy 128.905 119.38) (xy 138.43 119.38))
    (stroke (width 0) (type default))
    (uuid 6b78dd2b-202b-48da-8e52-fd57e552aee0)
  )
  (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 201.93 78.74) (xy 201.93 81.28))
    (stroke (width 0) (type default))
    (uuid 79a03688-5487-4f4c-9c3d-0098f3ef35ff)
  )
  (wire (pts (xy 156.21 142.24) (xy 156.21 142.875))
    (stroke (width 0) (type default))
    (uuid 931b8ea0-e7a5-44cf-8b74-210e5b15bd65)
  )
  (wire (pts (xy 212.09 81.28) (xy 201.93 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 78.74 95.885) (xy 89.535 95.885))
    (stroke (width 0) (type default))
    (uuid a6b8eec8-c97f-40f8-b936-a444e84cf244)
  )
  (wire (pts (xy 156.21 119.38) (xy 167.005 119.38))
    (stroke (width 0) (type default))
    (uuid a98f0dd1-2eab-465f-807c-6bdf856e03bd)
  )
  (wire (pts (xy 182.245 97.155) (xy 182.245 97.79))
    (stroke (width 0) (type default))
    (uuid ae26f776-cdcf-420f-9751-177d1471534d)
  )
  (wire (pts (xy 146.05 142.24) (xy 156.21 142.24))
    (stroke (width 0) (type default))
    (uuid bbecd6f7-48fe-4ae0-aecb-d5f88f6c40d0)
  )
  (wire (pts (xy 156.21 134.62) (xy 156.21 142.24))
    (stroke (width 0) (type default))
    (uuid bc5931d8-ce0d-4641-b959-6d72780569e1)
  )
  (wire (pts (xy 215.265 100.965) (xy 215.265 104.775))
    (stroke (width 0) (type default))
    (uuid be36fb10-ad4e-448c-831d-4fc73e46cff9)
  )
  (wire (pts (xy 212.09 100.965) (xy 215.265 100.965))
    (stroke (width 0) (type default))
    (uuid c2294e9b-7617-4f02-a1b6-f3e5b6a9fbd7)
  )
  (wire (pts (xy 128.905 114.935) (xy 128.905 119.38))
    (stroke (width 0) (type default))
    (uuid c3ce43e8-deb8-4410-a4f7-394f97acd9ea)
  )
  (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 201.93 81.28) (xy 201.93 83.82))
    (stroke (width 0) (type default))
    (uuid cf87aadd-9109-4f9b-8dac-d9456cf52e50)
  )
  (wire (pts (xy 176.53 92.075) (xy 191.77 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 167.005 142.24) (xy 156.21 142.24))
    (stroke (width 0) (type default))
    (uuid e2c2be81-10bf-427f-8f4c-2b85f9b4f89c)
  )
  (wire (pts (xy 168.275 92.075) (xy 176.53 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 167.005 127) (xy 167.005 142.24))
    (stroke (width 0) (type default))
    (uuid f80575e7-96f8-44fd-8aaf-2ef30e0319f6)
  )
  (wire (pts (xy 197.485 81.28) (xy 201.93 81.28))
    (stroke (width 0) (type default))
    (uuid fbd8994f-f18f-41ec-87a0-599d8202ed0b)
  )

  (label "VBIAS" (at 167.005 119.38 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 636fc406-04ad-4f99-b78d-2f70f2097a23)
  )
  (label "VBIAS" (at 215.265 100.965 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid c43456c9-82a6-4bd1-b86f-36dcaed177af)
  )

  (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 212.09 92.075 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 37f9b4b2-ad09-4500-a0e5-0808c35ed18a)
  )
  (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) (fields_autoplaced)
    (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" "" (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 "C30") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C40") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "MAX7413:MAX7413CUA+-ND") (at 201.93 94.615 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 05a37e3b-06a7-4ab5-925c-50f7435f33d7)
    (property "Reference" "U14" (at 203.835 83.185 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "MAX7413CUD" (at 203.835 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 201.93 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 201.93 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 "U14") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "U15") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 128.905 123.19 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 079eaf65-b57a-4f6a-b536-a7f09d7351af)
    (property "Reference" "C43" (at 132.08 121.92 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10uF" (at 132.08 124.46 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 129.8702 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 128.905 123.19 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e5c4cff1-c24d-4918-8196-957caca5e745))
    (pin "2" (uuid cba1dfff-0d19-4c33-938b-03b3d2002e14))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C43") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C42") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 128.905 114.935 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1dea59e9-21c0-4190-9bc0-d4c6a2bbc3bf)
    (property "Reference" "#PWR028" (at 128.905 118.745 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 128.905 109.855 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 128.905 114.935 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 128.905 114.935 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 723ade44-2c93-4c0b-a757-db8d4881b47b))
    (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 "#PWR071") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR072") (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 "#PWR045") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR055") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 227.33 97.155 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1fe1b12c-9c1d-4ba0-879a-65a06a91566c)
    (property "Reference" "#PWR05" (at 233.68 97.155 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 230.505 97.155 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 227.33 97.155 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 227.33 97.155 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 60f9b93c-ab32-43ad-ab71-abfd6c11ce4e))
    (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 "#PWR056") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR048") (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 "#PWR050") (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 182.245 101.6 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 2a8f75e1-6e96-4f5a-b1e9-f28f3731f0f5)
    (property "Reference" "C51" (at 186.055 100.33 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100nF" (at 186.055 102.87 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 181.2798 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 182.245 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ad87768e-3a28-4618-b18d-f6f38066af5d))
    (pin "2" (uuid 39a58245-3a53-4613-afeb-f6aeecb2327d))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C51") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C50") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 156.21 130.81 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 36b5e50e-5655-4eec-96ae-1497abb568e0)
    (property "Reference" "R12" (at 158.75 129.54 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "R" (at 158.75 132.08 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 154.432 130.81 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 156.21 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9d13eff3-4177-41cc-8510-e0761455970a))
    (pin "2" (uuid d8abba9f-e11b-4fe2-83b1-a8b6412a8c89))
    (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 "R11") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 156.21 123.19 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 4284b167-8d59-438a-b796-f7085d68b135)
    (property "Reference" "R10" (at 158.75 121.92 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "R" (at 158.75 124.46 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 154.432 123.19 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 156.21 123.19 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f35ef691-cc4c-471d-9290-5f4bde073027))
    (pin "2" (uuid c42ae22d-6b0e-4487-a8cf-00643751e1e6))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "R10") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "R9") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 167.005 123.19 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 430b08a5-b027-48b9-a302-81199c5ebbd6)
    (property "Reference" "C41" (at 170.18 121.92 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100uF" (at 170.18 124.46 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 167.9702 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 167.005 123.19 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 515a10d3-1eae-4ed8-b087-6ea734c293e3))
    (pin "2" (uuid 3d7a606d-9eb5-48eb-a9e0-a40d00d358a9))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C41") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C35") (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" "" (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 "R7") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "R8") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 223.52 97.155 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 606f4f42-03fe-428e-8636-cda3827bdcd9)
    (property "Reference" "C47" (at 223.52 90.17 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100nF" (at 223.52 92.71 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 227.33 96.1898 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 223.52 97.155 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a329840f-04ad-468f-9c35-fb8db5b4ba95))
    (pin "2" (uuid 60e9539e-2da3-4186-9b67-3344f020227c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C47") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C46") (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 "#PWR06") (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 146.05 138.43 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 726fbb63-def6-43b8-bba5-2e52e7d1090f)
    (property "Reference" "C45" (at 149.225 137.16 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10uF" (at 149.225 139.7 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 147.0152 142.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 146.05 138.43 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid aaf329f8-a10c-45ea-a6e1-50848c541a84))
    (pin "2" (uuid 0538eb86-8b07-40f8-affc-9cb8338d1141))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C45") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C44") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Regulator_Linear:LM1117MP-ADJ") (at 146.05 119.38 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 75d6836b-a4f1-433d-aeb9-eb0c2a87971c)
    (property "Reference" "U11" (at 146.05 113.03 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "LM1117MP-ADJ" (at 146.05 115.57 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 146.05 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (at 146.05 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4b6ce7b9-7815-452a-8ebf-58d735a1f4af))
    (pin "2" (uuid 12c5fb42-835d-4eba-8725-ed66756383d9))
    (pin "3" (uuid 62895855-5c5a-4d5c-b82b-c17fc1ff5a3e))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "U11") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "U10") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 176.53 88.265 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 7638d974-79a0-4a40-99d9-7d7127358533)
    (property "Reference" "R14" (at 179.07 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "50R" (at 179.07 89.535 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 174.752 88.265 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 176.53 88.265 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 "R14") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "R13") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 182.245 105.41 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 89e5abf2-e85d-4723-81c6-9126b977dd0d)
    (property "Reference" "#PWR05" (at 182.245 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 182.245 110.49 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 182.245 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 182.245 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 738e8f78-8d8b-439d-95e9-95f5075949d8))
    (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 "#PWR080") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR079") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 193.675 81.28 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 8a62332e-31b0-465c-83fb-3fc97a55cd57)
    (property "Reference" "C38" (at 193.675 73.66 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "100nF" (at 193.675 76.2 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 197.485 80.3148 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 193.675 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 "C38") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C39") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 128.905 127 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 939d9d44-3935-4189-b723-ad9197bfdbd2)
    (property "Reference" "#PWR06" (at 128.905 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 128.905 132.08 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 128.905 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 128.905 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 71ce2da4-2c94-4a16-8db1-502e31da653c))
    (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 "#PWR073") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR074") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:-3V3") (at 201.93 106.045 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 9deb9b17-3998-4413-9fd6-67d97b9c97ad)
    (property "Reference" "#PWR068" (at 201.93 108.585 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "-3V3" (at 201.93 110.49 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 201.93 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 201.93 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e75952df-f977-4366-ad52-62b2e7d92f3b))
    (instances
      (project "analog_frontend"
        (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 "#PWR067") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 176.53 84.455 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 9f209670-459f-472a-bf19-a88a67776e3c)
    (property "Reference" "#PWR05" (at 176.53 78.105 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 176.53 80.01 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 176.53 84.455 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 176.53 84.455 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 "#PWR078") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR077") (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" "" (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 "U8") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "U9") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 215.265 108.585 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid abd8e876-7f7c-497c-9487-d9aa6ff3e526)
    (property "Reference" "C49" (at 219.075 107.315 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100nF" (at 219.075 109.855 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 214.2998 104.775 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 215.265 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 "C49") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C48") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+3.3V") (at 201.93 78.74 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid ba2e0124-045c-4411-afaa-663b152230e3)
    (property "Reference" "#PWR070" (at 201.93 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (at 201.93 73.66 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 201.93 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 201.93 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 "#PWR070") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR069") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 189.865 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 183.515 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 186.69 81.28 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 189.865 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 189.865 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 "#PWR059") (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 "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 "#PWR054") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR066") (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 "#PWR046") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR057") (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" "" (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 "C29") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C34") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 156.21 142.875 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d478af33-2f70-404a-ac35-0c08f41b078c)
    (property "Reference" "#PWR06" (at 156.21 149.225 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 156.21 147.955 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 156.21 142.875 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 156.21 142.875 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bc83c5fc-c0a3-4a0c-8d57-5b6f4d09c150))
    (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 "#PWR051") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR058") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:-3V3") (at 215.265 112.395 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid ec0ab93b-90de-4867-8560-ec9add34c27e)
    (property "Reference" "#PWR076" (at 215.265 114.935 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "-3V3" (at 215.265 116.84 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 215.265 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 215.265 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4d5a3e8d-26f9-40cd-8e65-e05707c56702))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "#PWR076") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR075") (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" "" (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 "L3") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "L4") (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 "#PWR04") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "#PWR047") (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" "" (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 "U2") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "U6") (unit 1)
        )
      )
    )
  )
)