-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvoices.kicad_sch
More file actions
2827 lines (2813 loc) · 121 KB
/
Copy pathvoices.kicad_sch
File metadata and controls
2827 lines (2813 loc) · 121 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 78725405-b287-45c0-9453-cc539e119ac3)
(paper "A4")
(title_block
(title "Polykit-X8 Mainboard")
(date "2024-01-14")
(rev "v0.0.2")
(company "Jan Knipper")
(comment 1 "github.com/polykit")
)
(lib_symbols
)
(global_label "SW_FILTER_MODE_C" (shape input) (at 167.64 115.57 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 000ba6f8-cc9c-46ca-aeee-bdf8504ee002)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.084 115.4906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_LEVEL2" (shape input) (at 195.58 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0089cfaa-fb7a-4e61-8f37-47d5969611c9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 209.2417 63.4206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "OUT_L6" (shape input) (at 127 92.71 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 00c0c746-30ff-480e-b5a6-f02d80d2e652)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 136.2469 92.6306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_TRIANGLE_ON" (shape input) (at 127 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 01c30bc1-9f41-4a24-a216-a63efa60d885)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 145.3788 54.5306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_ADSR_R" (shape input) (at 236.22 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 05c13444-e10e-4ebd-bbac-596fcf0aed30)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 222.135 35.6394 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "OUT_R1" (shape input) (at 59.69 25.4 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0886ede8-f4f6-403e-98c8-149a84c43471)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 69.1788 25.3206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_RES" (shape input) (at 236.22 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 08d5586e-1822-4356-9d97-941516fabe89)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 225.5821 60.8806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PITCH1" (shape input) (at 33.02 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 09483320-ac04-4236-a4ef-fe547fe78c57)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 23.9545 71.1994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "EXTERNAL_IN" (shape input) (at 236.22 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d20045f-c1c8-4818-90b0-319fc396793d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 221.7117 48.1806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_PAN" (shape input) (at 33.02 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d7ce95d-bf6a-4c1e-8c3a-e8f38c61d41c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 22.3217 63.5794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_EXTERNAL_ON" (shape input) (at 59.69 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 107486d4-798e-47ef-ac6c-468bd840877f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.5526 107.8706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "OUT_R6" (shape input) (at 127 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 11899ea9-1948-4fea-ae81-afb0dfb82968)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 136.4888 95.1706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_LEVEL2" (shape input) (at 262.89 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 124c1959-ac22-45a2-aa2a-82d269643a85)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 276.5517 63.4206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_A" (shape input) (at 100.33 40.64 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 12943205-9a52-4531-8c9c-f20eb6eafac4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.9555 40.5606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_LEVEL2" (shape input) (at 261.62 133.35 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 12a5fda4-4638-46b6-9ed5-57f7566301da)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 275.2817 133.2706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PITCH8" (shape input) (at 234.95 140.97 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 12b15692-714e-4cf5-ac41-2811fdfadab8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 225.8845 141.0494 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_S" (shape input) (at 234.95 102.87 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13064375-3aa6-444e-933c-bcf458e79bdc)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.9255 102.9494 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PITCH7" (shape input) (at 167.64 140.97 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13171a71-0edd-4e35-be06-15ac6a26b557)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 158.5745 141.0494 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_SSYNC" (shape input) (at 168.91 25.4 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13366352-6522-4733-a18f-85af3b78389d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 155.7926 25.4794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_TRIANGLE_ON" (shape input) (at 59.69 124.46 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 13811ee9-d446-4189-81eb-f43792e6f9e1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.0688 124.3806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_SAW_ON" (shape input) (at 59.69 121.92 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 14be7c3c-8407-4e5e-afa1-6d7dd1874cd1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.1098 121.8406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_C" (shape input) (at 168.91 45.72 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 14f7ecbb-1f5f-420c-9cbf-ba2c9d28439b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 148.354 45.6406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "FM5" (shape input) (at 33.02 138.43 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 174d8e71-1597-4dcd-8bcc-716a5927cdba)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 26.8574 138.5094 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "OUT_L3" (shape input) (at 195.58 22.86 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1791570c-4d1a-43d2-9697-ae7bace07a37)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 204.8269 22.7806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "EXTERNAL_IN" (shape input) (at 168.91 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 19f1f41e-ed33-4642-adf1-b810e1b8349a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 154.4017 48.1806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_HSYNC" (shape input) (at 234.95 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1c975949-15e6-43e0-9ff3-b249f0ba1472)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 221.7117 92.7894 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_D" (shape input) (at 167.64 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1e1e375d-275d-449a-8200-84e4d39adf10)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 153.555 100.4094 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR" (shape input) (at 127 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 210f4515-76fb-443f-ad30-820c600ee889)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.476 105.3306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PITCH5" (shape input) (at 33.02 140.97 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2144ee21-4b81-434f-b59a-2372f74d408c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 23.9545 141.0494 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TRIG4" (shape input) (at 236.22 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 22bfee76-451a-4565-854c-a3e6a01c5ef6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 228.485 50.7206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_SAW_ON" (shape input) (at 127 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 242defec-1907-4704-8103-c860edee3447)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.4198 51.9906 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_ADSR_R" (shape input) (at 168.91 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 258d2c70-b165-4932-8c67-d8d38ecbd6e1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 154.825 35.6394 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR_NEG" (shape input) (at 127 102.87 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2599a58e-c63d-419d-b489-94fc8179bbb3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.1931 102.7906 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_FREQ" (shape input) (at 100.33 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 292d8257-ec69-4941-9d3e-85b9ec4bb3f4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 88.4826 58.3406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_PWM" (shape input) (at 33.02 135.89 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 29fa13a5-2ee7-48cd-93c1-64f7f918a10a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.8379 135.8106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_HSYNC" (shape input) (at 33.02 22.86 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2b8588b8-80ca-4b0b-a8a4-8f2983529e07)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.7817 22.9394 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VCA8" (shape input) (at 234.95 125.73 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2b89be96-6578-49d8-97b4-66a2a7627e9d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 227.8802 125.8094 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_R" (shape input) (at 100.33 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2da1c9ec-9ece-49e9-a985-e23cc567de21)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.245 35.6394 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_S" (shape input) (at 33.02 33.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2e271018-b704-43f4-952f-42657045360b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.9955 33.0994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_HSYNC" (shape input) (at 33.02 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2ecfb438-cfb7-415d-9963-9f1353a87ea1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.7817 92.7894 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FILTER_MODE_B" (shape input) (at 168.91 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 32d32ebd-3e2c-4bfa-bee3-fa5e98a6ada3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 148.354 43.1006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FREQ_ADSR" (shape input) (at 194.31 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 33720699-4c12-4d36-8259-62795da2262d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 210.9955 100.2506 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_A" (shape input) (at 168.91 40.64 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3408dc78-3bc3-45b7-a7c4-10fb41a5def6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 148.5355 40.5606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FILTER_MODE_A" (shape input) (at 234.95 110.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3441e693-059b-4bfd-ad60-66c08de4b1da)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 214.5755 110.4106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_PWM" (shape input) (at 234.95 135.89 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3475e738-1791-47f8-a045-ea7bcd243fd9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.7679 135.8106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VCA1" (shape input) (at 33.02 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 35a7fc04-d901-4b7c-a886-ee4deeee1333)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 25.9502 55.9594 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR" (shape input) (at 59.69 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 35e6507d-0cc9-4506-bebc-12803cf05dfd)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.166 105.3306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_LEVEL2" (shape input) (at 59.69 133.35 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 36f28b03-e146-4bc0-b2e5-9a0c5f30fcf7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.3517 133.2706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_EXTERNAL_ON" (shape input) (at 127 38.1 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3a169c1a-e12a-4506-8cb5-f5985843982e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 145.8626 38.0206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_C" (shape input) (at 236.22 45.72 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3afa67de-5f13-49f1-bff8-a2664ba51206)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.664 45.6406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FREQ_ADSR" (shape input) (at 127 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3c6f3846-1498-4d56-a22d-fd8b7859f7ca)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.6855 100.2506 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "FM3" (shape input) (at 168.91 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3de5cb11-3c72-4509-952c-0d1493660d45)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 162.7474 68.6594 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FREQ_ADSR_NEG" (shape input) (at 262.89 27.94 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3e96a442-7ddc-484e-a4d2-6d688b0ce3c2)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 284.2926 27.8606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_ADSR_S" (shape input) (at 100.33 33.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3f7737a1-8f92-4f20-838f-554c5f1ecf20)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.3055 33.0994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VCA7" (shape input) (at 167.64 125.73 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3f9701ea-678f-4c64-b1cb-169546ba5c07)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 160.5702 125.8094 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "OUT_L4" (shape input) (at 262.89 22.86 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4061e5ab-e153-478b-bde3-9fd8bdbd17c9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 272.1369 22.7806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_SSYNC" (shape input) (at 100.33 25.4 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 40a2b1b8-cebc-4f5f-a7db-c07505e53fb7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 87.2126 25.4794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR_NEG" (shape input) (at 194.31 102.87 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 41117c3f-2110-4fc7-9df9-edeeda7c9047)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 214.5031 102.7906 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_RES_ADSR" (shape input) (at 59.69 35.56 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4355329c-e069-4ebc-9dcf-21f3953edef4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.166 35.4806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_LEVEL1" (shape input) (at 127 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4396392f-1c00-4637-a85c-046bf8578610)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.6617 60.8806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_B" (shape input) (at 33.02 113.03 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 43b52f09-7c8f-4436-b849-e0c6a2795731)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 12.464 112.9506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_LEVEL1" (shape input) (at 261.62 130.81 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 43e37e43-7599-4ba8-8852-5d34fefd729a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 275.2817 130.7306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GATE2" (shape input) (at 100.33 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 453c8834-a908-4eb4-afda-ec5dfea41ce9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.2321 53.2606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_SSYNC" (shape input) (at 236.22 25.4 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 46b88182-0f1c-4681-89cc-c68072f9d348)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.1026 25.4794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_LEVEL2" (shape input) (at 127 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 46f7c8a7-abd7-4cad-962a-5323ef1ca439)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.6617 63.4206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_SAW_ON" (shape input) (at 261.62 121.92 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 48dbee72-9f17-463f-bef0-fe5300995957)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 275.0398 121.8406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_PAN" (shape input) (at 234.95 133.35 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 498a52fa-626e-42ab-a9f6-1c2f2143e93f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 224.2517 133.4294 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_A" (shape input) (at 33.02 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4b0ae069-53f3-4e78-8713-fc0909242d1a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.1164 97.8694 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_SSYNC" (shape input) (at 234.95 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4e3b5228-6e7f-42d0-bc6e-97834a603671)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 221.8326 95.3294 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_A" (shape input) (at 167.64 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4f8c139f-dbd0-40e3-b81a-1560aaff79d6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 153.7364 97.8694 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_R" (shape input) (at 33.02 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 51ded6b0-a143-4480-ae2c-2816b39b1758)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.935 35.6394 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GATE3" (shape input) (at 168.91 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 51e4058e-a815-4772-adab-40df141c12cb)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 160.8121 53.2606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_S" (shape input) (at 168.91 33.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 521c8933-ef96-45a6-b785-f8300f4e7a32)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 154.8855 33.0994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FILTER_MODE_C" (shape input) (at 234.95 115.57 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 542207a7-e0ef-4484-929f-9997e86ed587)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 214.394 115.4906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FILTER_MODE_A" (shape input) (at 100.33 110.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 56156ce2-b1d1-46ee-8c9d-98e6db4557a4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.9555 110.4106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_D" (shape input) (at 236.22 30.48 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 57138f12-7199-46f2-b9bc-71aa24eb9f06)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 222.135 30.5594 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_S" (shape input) (at 100.33 102.87 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 59af059b-1782-472b-863a-53ff26fe2b36)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.3055 102.9494 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_SAW_ON" (shape input) (at 195.58 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5a9a9046-980b-47ef-975c-1a8abc18fff1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 208.9998 51.9906 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_RES_ADSR" (shape input) (at 194.31 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5b0ed764-2601-4ca9-b78a-a067fc76f71a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 209.786 105.3306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_ADSR_R" (shape input) (at 33.02 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5b66b203-70c7-4a00-9cca-a9771a2cc5ee)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.935 105.4894 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_SSYNC" (shape input) (at 33.02 25.4 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5bff0c57-4f05-4852-b52f-3f78ddcf0442)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.9026 25.4794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR_NEG" (shape input) (at 262.89 33.02 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5ce14e00-ac75-47cc-bb82-e287bdac2e1e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 283.0831 32.9406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_SAW_ON" (shape input) (at 194.31 121.92 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5d06199e-9e3e-4133-94f1-f0f4d96fc945)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 207.7298 121.8406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_RES" (shape input) (at 167.64 130.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5df4abab-3f04-4b3e-90fc-f4bed53fa6dd)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 157.0021 130.7306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "OUT_R3" (shape input) (at 195.58 25.4 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5e2af31a-f623-4f7c-aa4a-8e692ddfe42d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 205.0688 25.3206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_PAN" (shape input) (at 100.33 133.35 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5fc20621-cb06-4ad7-82ff-1d3ac74ed45c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 89.6317 133.4294 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR_NEG" (shape input) (at 195.58 33.02 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 61cf023f-a16e-4acd-9b7f-543daf6a5455)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.7731 32.9406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_LEVEL1" (shape input) (at 194.31 130.81 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 630a8232-8f6d-401d-8465-7dcec767084c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 207.9717 130.7306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_B" (shape input) (at 236.22 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 63c3f48e-0f6b-427a-8f3d-d8301e560d36)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.664 43.1006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FREQ_ADSR" (shape input) (at 195.58 30.48 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 646f69f4-6ebb-4fe7-9c47-0249ca1393d7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 212.2655 30.4006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_RES_ADSR" (shape input) (at 127 35.56 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 647c742c-59d5-40b6-99e7-7f9f52032911)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.476 35.4806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_RES_ADSR_NEG" (shape input) (at 127 33.02 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 661a3a71-a8c4-41c3-9a5a-f50bf1503d99)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.1931 32.9406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_TRIANGLE_ON" (shape input) (at 195.58 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 66f81761-cafd-4a99-8793-5b802c18eb21)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 213.9588 54.5306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_FREQ" (shape input) (at 236.22 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 67a8da8b-fcbb-4791-a9d2-9036c1e7f899)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 224.3726 58.3406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_R" (shape input) (at 167.64 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 68d0e2d3-fd73-470c-bff3-e1780fee216f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 153.555 105.4894 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_EXTERNAL_ON" (shape input) (at 59.69 38.1 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 68e31e8f-065c-4ccc-94a5-34a5348915d1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.5526 38.0206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_ADSR_D" (shape input) (at 234.95 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6a12fde5-2182-4749-ad96-3e29a3d06d40)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.865 100.4094 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR_NEG" (shape input) (at 59.69 102.87 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6b523dfb-da61-45f4-90cc-b703810aa88a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.8831 102.7906 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TRIG5" (shape input) (at 33.02 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6c247f9e-41e9-44b3-ac94-57d618e7be11)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 25.285 120.5706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_HSYNC" (shape input) (at 167.64 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6c4ae9dd-7af4-48b4-804d-3193d75039c9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 154.4017 92.7894 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "FM6" (shape input) (at 100.33 138.43 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6ca88e7d-2386-4d31-a25a-b0194a1875bf)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 94.1674 138.5094 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TRIG7" (shape input) (at 167.64 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6ce8cf2c-9720-467e-b239-4a9a7ccd737f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 159.905 120.5706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_LEVEL2" (shape input) (at 194.31 133.35 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6e0c8c05-4caf-49a1-be2c-7fe1da312d57)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 207.9717 133.2706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_PWM" (shape input) (at 168.91 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7192048e-c6c4-4923-bfd8-9af5df022a37)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 157.7279 65.9606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FILTER_MODE_C" (shape input) (at 33.02 115.57 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 71b5b38c-8ad3-4831-8554-db46b164e609)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 12.464 115.4906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_LEVEL1" (shape input) (at 195.58 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 72972698-0f50-41b5-8404-7a97ab9addb3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 209.2417 60.8806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_TRIANGLE_ON" (shape input) (at 127 124.46 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 729ec86a-1636-448f-8cd4-65d714ee8e4e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 145.3788 124.3806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FREQ_ADSR" (shape input) (at 59.69 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7337ee6e-723b-421a-aeed-1d7fc4c1460c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.3755 100.2506 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "OUT_R2" (shape input) (at 127 25.4 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 74b6ef96-f3db-417d-8b7d-5191d34bcdf2)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 136.4888 25.3206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_ADSR_A" (shape input) (at 168.91 27.94 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 75476367-ff84-404c-8f69-a1c17f5a7c99)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 155.0064 28.0194 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_RES" (shape input) (at 100.33 130.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 762d7c2a-d7d4-4f88-a7d2-7ce04737e8bf)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 89.6921 130.7306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_FREQ" (shape input) (at 234.95 128.27 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 77bd3a4d-7847-40a8-b56b-6e6717806190)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.1026 128.1906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FREQ_ADSR_NEG" (shape input) (at 59.69 27.94 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 788ef164-c682-4660-b05a-efcd6bd1f3cf)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 81.0926 27.8606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GATE8" (shape input) (at 234.95 123.19 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7a7306d2-676e-4903-8612-dae5cb4a6616)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 226.8521 123.1106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_FREQ" (shape input) (at 168.91 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7b4ee234-fe12-4c51-988b-25e5eee997fe)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 157.0626 58.3406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_FREQ" (shape input) (at 167.64 128.27 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7bd813dc-8162-4f86-8450-92703526fb8e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 155.7926 128.1906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FILTER_MODE_A" (shape input) (at 33.02 110.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 80b845ca-3e0d-4995-9c33-ca1fcc05b156)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 12.6455 110.4106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_S" (shape input) (at 33.02 102.87 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 80c278e8-abea-47a1-b37f-a12464e4452a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.9955 102.9494 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FREQ_ADSR_NEG" (shape input) (at 195.58 27.94 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 81b03ae7-e074-4e9b-ab6d-749aed5ab531)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 216.9826 27.8606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FREQ_ADSR_NEG" (shape input) (at 194.31 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 829c4462-4fcc-4aa6-87ea-5a013d9c27d3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.7126 97.7106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_ADSR_S" (shape input) (at 236.22 33.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8305ae9b-2d8f-40d3-85a3-475d8d57911b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 222.1955 33.0994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_EXTERNAL_ON" (shape input) (at 127 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 85a34efe-6f6d-4412-b223-b0d20dceb8e6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 145.8626 107.8706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FREQ_ADSR_NEG" (shape input) (at 261.62 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 85ff8b2d-1acf-4f1e-a62b-acbb9d2a9a72)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 283.0226 97.7106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DAC_PWM" (shape input) (at 33.02 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 89f7e52b-bf31-4dcd-b5e6-db11a8d5cbed)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.8379 65.9606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "EXTERNAL_IN" (shape input) (at 234.95 118.11 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8ab89f74-36f3-46f4-9506-4ad8228d429e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.4417 118.0306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TRIG3" (shape input) (at 168.91 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8ae8b368-1bb9-470d-9ba1-fc9d64d47057)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 161.175 50.7206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_EXTERNAL_ON" (shape input) (at 194.31 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8aee109a-50f6-47c5-b323-b17651585f91)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 213.1726 107.8706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_SAW_ON" (shape input) (at 59.69 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8c2474bf-c82c-468b-853d-58c9c78246b3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.1098 51.9906 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_B" (shape input) (at 100.33 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8dd32636-7d62-4138-b46e-3d56f8885705)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.774 43.1006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_FILTER_MODE_A" (shape input) (at 167.64 110.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 90c84bd7-b863-4a4e-8be5-cc38cd086155)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.2655 110.4106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW_RES_ADSR_NEG" (shape input) (at 59.69 33.02 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 90f40b11-396e-4bab-aab0-8b929c9166b3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.8831 32.9406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SW_FILTER_MODE_A" (shape input) (at 236.22 40.64 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 910300b9-e66a-4f37-830f-552ba4e0a84d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.8455 40.5606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_HSYNC" (shape input) (at 168.91 22.86 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 913f171d-4a92-44d5-abd9-c8405af250bd)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 155.6717 22.9394 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_PAN" (shape input) (at 168.91 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 917f698e-2116-4d36-a25f-fa15e5c0e2e3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 158.2117 63.5794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TRIG2" (shape input) (at 100.33 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 923a95f2-fec7-4c7c-8551-2032c1e8237f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.595 50.7206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "EXTERNAL_IN" (shape input) (at 33.02 118.11 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 93492b3c-b4d0-4375-996d-741a2ecdab6d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.5117 118.0306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_PWM" (shape input) (at 100.33 135.89 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 93bf8e54-e136-42ba-9689-52b53d9b654d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 89.1479 135.8106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_ADSR_R" (shape input) (at 100.33 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 94b9e6b8-9211-43e0-97b8-0d26848fe73d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.245 105.4894 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GATE5" (shape input) (at 33.02 123.19 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 968e66c8-4c87-45af-a88b-240d6423ff76)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 24.9221 123.1106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DAC_LEVEL1" (shape input) (at 59.69 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9779f347-8c0c-4686-9406-f03be38c3df9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.3517 60.8806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "OUT_L7" (shape input) (at 194.31 92.71 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))