File: copyright_hints

package info (click to toggle)
csound 1%3A6.18.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 63,220 kB
  • sloc: ansic: 192,643; cpp: 14,149; javascript: 9,654; objc: 9,181; python: 3,376; java: 3,337; sh: 1,840; yacc: 1,255; xml: 985; perl: 635; lisp: 411; tcl: 341; lex: 217; makefile: 128
file content (3652 lines) | stat: -rw-r--r-- 112,213 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: FIXME
Upstream-Contact: FIXME
Source: FIXME
Disclaimer: Autogenerated by licensecheck

Files: AUTHORS
 Android/.gitignore
 Android/BUILDING_ON_ANDROID.txt
 Android/CHANGELOG
 Android/CSDPlayer/.classpath
 Android/CSDPlayer/.gitignore
 Android/CSDPlayer/.project
 Android/CSDPlayer/.settings/org.eclipse.jdt.core.prefs
 Android/CSDPlayer/AndroidManifest.xml
 Android/CSDPlayer/assets/Csound6AndroidExamples/Boulanger/trapped.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/Gogins/CloudStrata.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/Gogins/lua_scoregen.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/Gogins/luamoog.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/Hunkins/ChimePad/ChimePad.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/Hunkins/ChimePad/ChimePadReadMe.txt
 Android/CSDPlayer/assets/Csound6AndroidExamples/Khosravi/partikkel.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/Kung/xanadu.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/i.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/ii.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/iii.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/iv.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/ix.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/v.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/vi.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/vii.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/McCurdy/viii.csd
 Android/CSDPlayer/assets/Csound6_User_Guide.html
 Android/CSDPlayer/proguard.cfg
 Android/CSDPlayer/project.properties
 Android/CSDPlayer/res/layout/main.xml
 Android/CSDPlayer/res/menu/menu.xml
 Android/CSDPlayer/res/values/strings.xml
 Android/CSDPlayer/res/values/styles.xml
 Android/CSDPlayer/res/xml/settings.xml
 Android/CSDPlayer/src/com/csounds/Csound6/CsoundAppActivity.java
 Android/CSDPlayer/src/com/csounds/Csound6/SettingsActivity.java
 Android/CsoundAndroid/.classpath
 Android/CsoundAndroid/.externalToolBuilders/jni builder.launch
 Android/CsoundAndroid/.gitignore
 Android/CsoundAndroid/.project
 Android/CsoundAndroid/.settings/org.eclipse.jdt.core.prefs
 Android/CsoundAndroid/AndroidManifest.xml
 Android/CsoundAndroid/build.sh
 Android/CsoundAndroid/jni/Android.mk
 Android/CsoundAndroid/jni/AndroidCsound.cpp
 Android/CsoundAndroid/jni/AndroidCsound.hpp
 Android/CsoundAndroid/jni/Application.mk
 Android/CsoundAndroid/lint.xml
 Android/CsoundAndroid/proguard.cfg
 Android/CsoundAndroid/project.properties
 Android/CsoundAndroid/src/com/csounds/bindings/motion/CsoundMotion.java
 Android/CsoundAndroid/src/com/csounds/bindings/ui/CsoundUI.java
 Android/CsoundForAndroid/.gitignore
 Android/CsoundForAndroid/.idea/.name
 Android/CsoundForAndroid/.idea/compiler.xml
 Android/CsoundForAndroid/.idea/copyright/profiles_settings.xml
 Android/CsoundForAndroid/.idea/encodings.xml
 Android/CsoundForAndroid/.idea/kotlinc.xml
 Android/CsoundForAndroid/.idea/misc.xml
 Android/CsoundForAndroid/.idea/modules.xml
 Android/CsoundForAndroid/.idea/runConfigurations.xml
 Android/CsoundForAndroid/.idea/vcs.xml
 Android/CsoundForAndroid/CsoundAndroid/.gitignore
 Android/CsoundForAndroid/CsoundAndroid/build.gradle
 Android/CsoundForAndroid/CsoundAndroid/proguard-rules.pro
 Android/CsoundForAndroid/CsoundAndroid/src/main/AndroidManifest.xml
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/bindings/motion/CsoundMotion.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/bindings/ui/CsoundUI.java
 Android/CsoundForAndroid/CsoundAndroidExamples/.gitignore
 Android/CsoundForAndroid/CsoundAndroidExamples/build.gradle
 Android/CsoundForAndroid/CsoundAndroidExamples/proguard-rules.pro
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/AndroidManifest.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/accelerometer_test.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/button_test.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/csound_haiku_iv.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/harmonizer.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/main.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/ping_pong_delay.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/simple_test_1.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/layout/simple_test_2.xml
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/button_test.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/hardware_test.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/harmonizer.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/iv.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/multitouch_xy.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/ping_pong_delay.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/test.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/test2.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/trapped.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/raw/waveviewtest.csd
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/res/values/strings.xml
 Android/CsoundForAndroid/CsoundForAndroid.iml
 Android/CsoundForAndroid/build.gradle
 Android/CsoundForAndroid/gradle.properties
 Android/CsoundForAndroid/gradle/wrapper/gradle-wrapper.properties
 Android/CsoundForAndroid/gradlew
 Android/CsoundForAndroid/gradlew.bat
 Android/CsoundForAndroid/settings.gradle
 Android/README.md
 Android/build-all.sh
 Android/docs/.gitignore
 Android/docs/build.sh
 Android/docs/csound_android_manual.tex
 Android/docs/privacy-policy.html
 Android/downloadDependencies.sh
 Android/pluginlibs/.gitignore
 Android/pluginlibs/doppler/jni/Android.mk
 Android/pluginlibs/doppler/jni/Application.mk
 Android/pluginlibs/libOSC/.gitignore
 Android/pluginlibs/libOSC/build.sh
 Android/pluginlibs/libOSC/jni/Android.mk
 Android/pluginlibs/libOSC/jni/Application.mk
 Android/pluginlibs/libscansyn/.gitignore
 Android/pluginlibs/libscansyn/jni/Android.mk
 Android/pluginlibs/libscansyn/jni/Application.mk
 Android/pluginlibs/libstdutil/.gitignore
 Android/pluginlibs/libstdutil/build.sh
 Android/pluginlibs/libstdutil/jni/Android.mk
 Android/pluginlibs/libstdutil/jni/Application.mk
 Android/pluginlibs/signalflowgraph/.gitignore
 Android/pluginlibs/signalflowgraph/jni/Android.mk
 Android/pluginlibs/signalflowgraph/jni/Application.mk
 Android/release.sh
 Android/update.sh
 BUILD.md
 Bela/CMakeLists.txt
 Bela/Custom.cmake.bela
 Bela/README.md
 Bela/bela-makefile.patch
 Bela/build.sh
 Bela/crosscompile-setup.sh
 Bela/crosscompile.cmake
 CMakeLists.txt
 Custom.cmake.ex
 DockerFiles/Emscripten/Dockerfile
 DockerFiles/ReadMe.md
 DockerFiles/android/Dockerfile
 DockerFiles/linux/Dockerfile
 Emscripten/.gitignore
 Emscripten/README-RELEASE.md
 Emscripten/README.md
 Emscripten/build.sh
 Emscripten/convert.js
 Emscripten/convert.sh
 Emscripten/download_and_build_libsndfile.sh
 Emscripten/examples/.gitignore
 Emscripten/examples/README.md
 Emscripten/examples/gm.csd
 Emscripten/examples/gm1.csd
 Emscripten/examples/gm2.csd
 Emscripten/examples/index.html
 Emscripten/examples/js/README.md
 Emscripten/examples/midi.html
 Emscripten/examples/reverb.html
 Emscripten/examples/sliders.html
 Emscripten/examples/stria.csd
 Emscripten/examples/update-scripts.sh
 Emscripten/fresh-build.sh
 Emscripten/module/.gitignore
 Emscripten/module/.npmignore
 Emscripten/module/README.md
 Emscripten/module/package-lock.json
 Emscripten/module/rollup.config.js
 Emscripten/module/test.html
 Emscripten/package.json
 Emscripten/patches/sndfile.c.patch
 Emscripten/release.sh
 Emscripten/src/README.md
 Emscripten/src/jsdoc.json
 Emscripten/src/mkdoc.sh
 Emscripten/src/webcsound.tmpl
 Emscripten/update_example_libs_from_dist.sh
 Engine/README.md
 Engine/scope.c
 Frontends/CMakeLists.txt
 Frontends/beats/tchai.csd
 Frontends/beats/test.xs
 H/README.md
 INSTALLING
 InOut/CMakeLists.txt
 InOut/README.md
 OOps/README.md
 Opcodes/CMakeLists.txt
 Opcodes/README.md
 Opcodes/emugens/emugens_common.h
 Opcodes/gab/opcodes.txt
 Opcodes/p5g_mac
 Opcodes/tl/fractalnoise.dsp
 Release_Notes/Version_6.00
 Release_Notes/Version_6.01
 Release_Notes/Version_6.03
 Release_Notes/Version_6.04
 Release_Notes/Version_6.06
 Release_Notes/Version_6.07
 Release_Notes/Version_6.08.md
 Release_Notes/Version_6.09.md
 Release_Notes/Version_6.10.md
 Release_Notes/Version_6.11.md
 Release_Notes/Version_6.13.md
 Release_Notes/Version_6.14.md
 Release_Notes/Version_6.15.md
 Release_Notes/Version_6.16.md
 Release_Notes/Version_6.17.md
 Release_Notes/Version_6.18.md
 Submitting_opcodes.md
 Top/README.md
 all_string_files
 azure-pipelines.yml
 cmake/CheckAtomic.cmake
 cmake/CompilerOptimizations.cmake
 cmake/Modules/FindCsound.cmake
 cmake/Modules/FindFAUST.cmake
 cmake/Modules/FindFLUIDSYNTH.cmake
 cmake/Modules/FindGMM.cmake
 cmake/Modules/FindLUAJIT.cmake
 cmake/Modules/FindMUSICXML.cmake
 cmake/Modules/FindPORTAUDIO.cmake
 cmake/Modules/FindPORTMIDI.cmake
 cmake/Modules/FindPORTSMF.cmake
 cmake/Modules/FindSTK.cmake
 cmake/Modules/FindVSTSDK2X.cmake
 cmake/cmake_uninstall.cmake.in
 cmake/portaudio_test.c
 config.doxygen
 dependencies/.gitignore
 dependencies/README
 dependencies/build.sh
 dependencies/download.sh
 dependencies/patches/pm_common-CMakeLists.txt
 dependencies/patches/pm_dylib-CMakeLists.txt
 dependencies/patches/portmidi-CMakeLists.txt
 doc/.gitignore
 doc/Doxyfile
 doc/How_to_Build_Csound_on_Windows.doc
 doc/csound_system_documentation/csound_system_documentation.tex
 doc/csound_system_documentation/csound_writing_opcodes.tex
 doc/csound_system_documentation/inbox.txt
 doc/latex/doxygen.sty
 etc/.csoundrc
 etc/.csoundrc_windows
 examples/par.csd
 examples/plugin/README.md
 examples/plugin/opcodes.csd
 examples/plugin/plugin.doxygen
 examples/trapped.csd
 examples/xanadu.csd
 iOS/.gitignore
 iOS/CHANGELOG
 iOS/Csound iOS Obj-C Examples/.gitignore
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples.xcodeproj/project.pbxproj
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Assets.xcassets/AppIcon.appiconset/Contents.json
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Assets.xcassets/Contents.json
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Assets.xcassets/ExamplesText.imageset/Contents.json
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Assets.xcassets/IconSplash.imageset/Contents.json
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Assets.xcassets/InfoButton.imageset/Contents.json
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Assets.xcassets/InfoButtonWhite.imageset/Contents.json
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Assets.xcassets/LaunchBackground.imageset/Contents.json
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Base.lproj/DetailViewController_iPad.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Base.lproj/DetailViewController_iPhone.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Base.lproj/MasterViewController_iPad.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Base.lproj/MasterViewController_iPhone.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/Info.plist
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/LaunchScreen.storyboard
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioFileTest/AudioFileTestViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioFileTest/audiofiletest.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioInTest/AudioInTestViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioInTest/audioInTest.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ButtonTest/ButtonTestViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ButtonTest/buttonTest.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/ConsoleOutputViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Batchelor - A Call to Attention.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Boulanger - Traped in Convert.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Cascone - bluecube.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Enhus - The Electric Priest.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Mikelson - Halloween.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Peduto - csScelsi.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Piche - Incantation.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/TextOnly - Countdown.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/csdStorage/Yi - Cyclic Bells.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/CsoundHaiku4/CsoundHaiku4ViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/CsoundHaiku4/IV.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/HardwareTest/HardwareTestViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/HardwareTest/hardwareTest.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Harmonizer/HarmonizerTest.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Harmonizer/harmonizer.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/InstrumentEditor/InstrumentEditorViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/InstrumentEditor/instrumentEditor.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MidiTest/MidiTestViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MidiTest/MidiTestViewController_iPad.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MidiTest/midiTest.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MultiTouchXY/MultiTouchXYViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MultiTouchXY/multiTouchXY.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/PitchShifter/PitchShifterViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/PitchShifter/pitchshifter.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/RecordTest/RecordTestViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/RecordTest/recordTest.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest1/SimpleTest1ViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest1/test.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest2/SimpleTest2ViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest2/test2.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/TrappedGenerator/TrappedGeneratorViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/TrappedGenerator/trapped.csd
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Waveview/WaveviewViewController.xib
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Waveview/Waveviewtest.csd
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/ugen.h
 iOS/Csound iOS Swift Examples/.gitignore
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples.xcodeproj/project.pbxproj
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Assets.xcassets/AppIcon.appiconset/Contents.json
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Assets.xcassets/Contents.json
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Assets.xcassets/ExamplesText.imageset/Contents.json
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Assets.xcassets/IconSplash.imageset/Contents.json
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Assets.xcassets/InfoButton.imageset/Contents.json
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Assets.xcassets/InfoButtonWhite.imageset/Contents.json
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Assets.xcassets/LaunchBackground.imageset/Contents.json
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/AudioFilesTestViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/AudioInTestViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Base.lproj/Main.storyboard
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/ButtonTestViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/ConsoleOutputViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/CsoundHaiku4ViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/HardwareTestViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/HarmonizerTestViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/IV.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Info.plist
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/InstrumentEditorViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/LaunchScreen.storyboard
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/MidiTestViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/MidiTestViewController_iPad.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/MultiTouchXYViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/PitchShifterViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/RecordTestViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/SimpleTest2ViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/TrappedGeneratorViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/WaveviewViewController.xib
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Waveviewtest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/audioInTest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/audiofiletest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/buttonTest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Batchelor - A Call to Attention.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Boulanger - Traped in Convert.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Cascone - bluecube.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Enhus - The Electric Priest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Mikelson - Halloween.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Peduto - csScelsi.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Piche - Incantation.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/TextOnly - Countdown.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csdStorage/Yi - Cyclic Bells.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/ugen.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/hardwareTest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/harmonizer.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/instrumentEditor.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/midiTest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/multiTouchXY.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/pitchshifter.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/recordTest.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/test.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/test2.csd
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/trapped.csd
 iOS/README
 iOS/build.sh
 iOS/custom.cmake.ios
 iOS/device.xcconfig
 iOS/docs/.gitignore
 iOS/docs/build.sh
 iOS/docs/csound_ios_manual.tex
 iOS/release.sh
 iOS/simulator.xcconfig
 iOS/updateExamplesLibAndHeaders.sh
 include/CMakeLists.txt
 installer/SuSE/README.SUSE
 installer/SuSE/csound-python-2.6-fix.diff
 installer/SuSE/csound.changes
 installer/linux/Makefile
 installer/linux/d32.sh
 installer/linux/d64.sh
 installer/linux/f32.sh
 installer/linux/f64.sh
 installer/linux/fedora/csound-5.10.1-64-bit-plugin-path.patch
 installer/linux/fedora/csound-5.10.1-enable-oggplay.patch
 installer/linux/fedora/csound-5.10.1-rtalsa-fix.patch
 installer/linux/fedora/csound-5.12.1-fixpython.patch
 installer/linux/fedora/csound-5.13.0-compile-flag.patch
 installer/linux/fedora/csound-5.13.0-default-opcodedir.patch
 installer/linux/fedora/csound-5.13.0-default-pulse.patch
 installer/linux/fedora/csound-5.13.0-fix-conflicts.patch
 installer/linux/fedora/csound-5.13.0-fix-locale-install.patch
 installer/linux/fedora/csound-5.13.0-fixpythonint.patch
 installer/linux/fedora/csound-5.13.0-fltk.patch
 installer/linux/fedora/csound-5.13.0-no-usr-local.patch
 installer/linux/fedora/csound-5.13.0-tclversion.patch
 installer/linux/installer.fl
 installer/linux/installer.h
 installer/linux/mkdeb.sh
 installer/macosx/Custom_10.9.cmake
 installer/macosx/Distribution.dist
 installer/macosx/Distribution2.dist
 installer/macosx/PkgResources/CsoundApps/Welcome.rtf
 installer/macosx/PkgResources/CsoundApps/postinstall
 installer/macosx/PkgResources/CsoundApps/postupgrade
 installer/macosx/PkgResources/CsoundApps64/Welcome.rtf
 installer/macosx/PkgResources/CsoundApps64/postinstall
 installer/macosx/PkgResources/CsoundApps64/postupgrade
 installer/macosx/PkgResources/CsoundLib/Welcome.rtf
 installer/macosx/PkgResources/CsoundLib/postinstall
 installer/macosx/PkgResources/CsoundLib/postupgrade
 installer/macosx/PkgResources/CsoundLib/preinstall
 installer/macosx/PkgResources/CsoundLib/preupgrade
 installer/macosx/PkgResources/CsoundLib64/Welcome.rtf
 installer/macosx/PkgResources/CsoundLib64/postinstall
 installer/macosx/PkgResources/CsoundLib64/postupgrade
 installer/macosx/PkgResources/CsoundLib64/preinstall
 installer/macosx/PkgResources/CsoundLib64/preupgrade
 installer/macosx/PkgResources/SupportLibs/ReadMe.rtf
 installer/macosx/PkgResources/SupportLibs/Welcome.rtf
 installer/macosx/PkgResources/en.lproj/Welcome.rtf
 installer/macosx/overnight.sh
 installer/macosx/release-build-azure.sh
 installer/macosx/release-build.sh
 installer/misc/loris_stk_src.sh
 installer/misc/makedeb.sh
 installer/misc/makespec.sh
 installer/misc/mkpackage.py
 installer/misc/mksrcpkg.sh
 installer/misc/vim/cshelp
 installer/misc/vim/csound.vim
 installer/misc/vim/csound_csd.vim
 installer/misc/vim/csound_orc.vim
 installer/misc/vim/csound_sco.vim
 installer/windows/minimalReadme.txt
 interfaces/CMakeLists.txt
 interfaces/csound.asd
 interfaces/exclusions.i
 interfaces/filebuilding.cpp
 interfaces/filebuilding.lisp
 interfaces/lisp-swig.sh
 interfaces/pyMsgCb_stub.cpp
 interfaces/sb-csound.asd
 longline.c
 mingw64-linux/.gitignore
 mingw64-linux/Custom-mingw64-i686.cmake
 mingw64-linux/Custom-mingw64.cmake
 mingw64-linux/README.md
 mingw64-linux/Toolchain-mingw64-i686.cmake
 mingw64-linux/Toolchain-mingw64.cmake
 mingw64-linux/build-deps.sh
 mingw64-linux/build-deps32.sh
 mingw64-linux/build.sh
 mingw64-linux/build32.sh
 mingw64-linux/download-deps.sh
 mingw64-linux/download-deps32.sh
 mingw64-linux/release.sh
 mingw64/.gitignore
 mingw64/Custom-mingw64-mkg.cmake
 mingw64/Custom-mingw64.cmake
 mingw64/README.md
 mingw64/Toolchain-mingw64.cmake
 mingw64/build-installer.sh
 mingw64/build.sh
 mingw64/find_csound_dependencies.py
 mingw64/make_import_library.cmd
 mingw64/packages/.gitignore
 mingw64/packages/cunit/PKGBUILD
 mingw64/packages/gmm/PKGBUILD
 mingw64/packages/liblo/PKGBUILD
 mingw64/packages/musicxml/PKGBUILD
 mingw64/packages/pd-extended/PKGBUILD
 mingw64/packages/portaudio_asio/PKGBUILD
 mingw64/packages/portaudio_asio/portaudio_svn.patch
 mingw64/packages/portsmf/PKGBUILD
 mingw64/packages/stk/PKGBUILD
 mingw64/packages/stk/stk.patch
 nsliders.tk
 platform/vcpkg/ports/portaudio/fix-library-can-not-be-found.patch
 platform/vcpkg/ports/portaudio/vcpkg.json
 platform/vcpkg/triplets/x64-windows-csound.cmake
 platform/windows/Custom-vs.cmake
 platform/windows/README.md
 po/CMakeLists.txt
 po/LINGUAS
 po/README.txt
 po/sndfile_str.c
 po/tester
 po/update
 tests/README.md
 tests/c/CMakeLists.txt
 tests/c/channel_tests.c
 tests/c/cscore_score.sco
 tests/c/cscore_tests.c
 tests/c/csound_circular_buffer_test.c
 tests/c/csound_data_structures_test.c
 tests/c/csound_debugger_test.c
 tests/c/csound_message_buffer_test.c
 tests/c/csound_orc_compile_test.c
 tests/c/csound_orc_semantics_test.c
 tests/c/csound_type_system_test.c
 tests/c/engine_test.c
 tests/c/io_test.c
 tests/c/liveCoder.cpp
 tests/c/liveCoder.hpp
 tests/c/minimal.csd
 tests/c/perfthread_test.cpp
 tests/c/server_test.cpp
 tests/commandline/CMakeLists.txt
 tests/commandline/ableton_link_test.csd
 tests/commandline/ableton_link_test_force.csd
 tests/commandline/arrays/array_a_arithm.csd
 tests/commandline/arrays/array_copy.csd
 tests/commandline/arrays/arrays_S_global.csd
 tests/commandline/arrays/arrays_S_local.csd
 tests/commandline/arrays/arrays_a_global.csd
 tests/commandline/arrays/arrays_a_local.csd
 tests/commandline/arrays/arrays_i_global.csd
 tests/commandline/arrays/arrays_i_local.csd
 tests/commandline/arrays/arrays_k_global.csd
 tests/commandline/arrays/arrays_k_local.csd
 tests/commandline/contrib/StrayNumToFt.csd
 tests/commandline/contrib/multiple_strings_in_scoreline1.csd
 tests/commandline/contrib/multiple_strings_in_scoreline1a.csd
 tests/commandline/contrib/multiple_strings_in_scoreline1b.csd
 tests/commandline/contrib/multiple_strings_in_scoreline2.csd
 tests/commandline/contrib/multiple_strings_in_scoreline2a.csd
 tests/commandline/contrib/multiple_strings_in_scoreline3.csd
 tests/commandline/contrib/multiple_strings_in_scoreline3a.csd
 tests/commandline/contrib/runtime_type.csd
 tests/commandline/contrib/test_pset.csd
 tests/commandline/contrib/test_recompile_udo.csd
 tests/commandline/jacko_test.csd
 tests/commandline/nested_strings.csd
 tests/commandline/padsynth_gen.csd
 tests/commandline/prints_number_no_crash.csd
 tests/commandline/signalflowgraphtest.csd
 tests/commandline/test.py
 tests/commandline/test1.csd
 tests/commandline/test10.csd
 tests/commandline/test11.csd
 tests/commandline/test12.csd
 tests/commandline/test13.csd
 tests/commandline/test14.csd
 tests/commandline/test15.csd
 tests/commandline/test16.csd
 tests/commandline/test17.csd
 tests/commandline/test18.csd
 tests/commandline/test19.csd
 tests/commandline/test2.csd
 tests/commandline/test20.csd
 tests/commandline/test21.csd
 tests/commandline/test22.csd
 tests/commandline/test23.csd
 tests/commandline/test24.csd
 tests/commandline/test25.csd
 tests/commandline/test26.csd
 tests/commandline/test27.csd
 tests/commandline/test28.csd
 tests/commandline/test29.csd
 tests/commandline/test3.csd
 tests/commandline/test30.csd
 tests/commandline/test31.csd
 tests/commandline/test32.csd
 tests/commandline/test33.csd
 tests/commandline/test34.csd
 tests/commandline/test35.csd
 tests/commandline/test36.csd
 tests/commandline/test37.csd
 tests/commandline/test38.csd
 tests/commandline/test39.csd
 tests/commandline/test4.csd
 tests/commandline/test40.csd
 tests/commandline/test41.csd
 tests/commandline/test42.csd
 tests/commandline/test43.csd
 tests/commandline/test44.csd
 tests/commandline/test45.csd
 tests/commandline/test46.csd
 tests/commandline/test47.csd
 tests/commandline/test48.csd
 tests/commandline/test5.csd
 tests/commandline/test6.csd
 tests/commandline/test7.csd
 tests/commandline/test8.csd
 tests/commandline/test9.csd
 tests/commandline/testCsoundCatalog.py
 tests/commandline/testCsoundManual.py
 tests/commandline/testUI.py
 tests/commandline/test_array_function_call.csd
 tests/commandline/test_array_operations.csd
 tests/commandline/test_arrays.csd
 tests/commandline/test_arrays2.csd
 tests/commandline/test_arrays3.csd
 tests/commandline/test_arrays_addition.csd
 tests/commandline/test_arrays_constant_index.csd
 tests/commandline/test_arrays_fail1.csd
 tests/commandline/test_arrays_fns.csd
 tests/commandline/test_arrays_in_udo.csd
 tests/commandline/test_arrays_multi.csd
 tests/commandline/test_arrays_negative_dimension_fail.csd
 tests/commandline/test_arrays_string.csd
 tests/commandline/test_arrays_string2.csd
 tests/commandline/test_asig_as_array.csd
 tests/commandline/test_empty_conditional_branches.csd
 tests/commandline/test_empty_instr.csd
 tests/commandline/test_empty_udo.csd
 tests/commandline/test_fsig_udo.csd
 tests/commandline/test_instr0_labels.csd
 tests/commandline/test_invalid_expression.csd
 tests/commandline/test_invalid_ternary.csd
 tests/commandline/test_karrays_udo.csd
 tests/commandline/test_label_within_if_block.csd
 tests/commandline/test_nested_ifs.csd
 tests/commandline/test_opcode_as_function.csd
 tests/commandline/test_polymorphic_udo.csd
 tests/commandline/test_semantics_undefined_var.csd
 tests/commandline/test_sprintf.csd
 tests/commandline/test_sprintf2.csd
 tests/commandline/test_string.csd
 tests/commandline/test_udo_2d_array.csd
 tests/commandline/test_udo_a_array.csd
 tests/commandline/test_udo_string_array_join.csd
 tests/commandline/udo/crashing_test.csd
 tests/commandline/udo/fail_invalid_xin.csd
 tests/commandline/udo/fail_invalid_xout.csd
 tests/commandline/udo/fail_no_xin.csd
 tests/commandline/udo/fail_no_xout.csd
 tests/commandline/udo/test_udo_xout_const.csd
 tests/coverity_models/coverity_model.c
 tests/python/test_all.py
 tests/python/test_empty_initial_csound.py
 tests/regression/CMakeLists.txt
 tests/regression/arit.csd
 tests/regression/arrayout.csd
 tests/regression/bug18.csd
 tests/regression/bug49.csd
 tests/regression/buga.csd
 tests/regression/buga1.csd
 tests/regression/bugaa.csd
 tests/regression/bugadsr.csd
 tests/regression/bugarray.csd
 tests/regression/bugas.csd
 tests/regression/bugausst.csd
 tests/regression/bugb.csd
 tests/regression/bugbigargs.csd
 tests/regression/bugblam.csd
 tests/regression/bugbra.csd
 tests/regression/bugcopy.csd
 tests/regression/bugf.csd
 tests/regression/bugftlen.csd
 tests/regression/bugg.csd
 tests/regression/buggen31.csd
 tests/regression/bugi.csd
 tests/regression/buginit.csd
 tests/regression/bugj.csd
 tests/regression/bugl.csd
 tests/regression/bugline.csd
 tests/regression/buglosc.csd
 tests/regression/bugm.csd
 tests/regression/bugmon.csd
 tests/regression/bugn.csd
 tests/regression/bugname.csd
 tests/regression/bugpow.csd
 tests/regression/bugrezzy.csd
 tests/regression/bugs.csd
 tests/regression/bugsice.csd
 tests/regression/bugsize.csd
 tests/regression/bugsort.csd
 tests/regression/bugst.csd
 tests/regression/bugstr1.csd
 tests/regression/bugtrans.csd
 tests/regression/bugy.csd
 tests/regression/conditional.csd
 tests/regression/gen16.csd
 tests/regression/gerr.csd
 tests/regression/test.py
 tests/regression/testUI.py
 tests/regression/vbapa.csd
 tests/soak/00README
 tests/soak/0dbfs.csd
 tests/soak/128,8-cylinderX
 tests/soak/128,8-gridX
 tests/soak/128,8-torus
 tests/soak/128,8-torusX
 tests/soak/128-left_rightX
 tests/soak/128-spiral-8,16,128,2,1over2
 tests/soak/128-stringX
 tests/soak/128-stringcircular
 tests/soak/128-stringcircularX
 tests/soak/CMakeLists.txt
 tests/soak/Sample_CheckSums
 tests/soak/a.csd
 tests/soak/abs.csd
 tests/soak/active.csd
 tests/soak/active_k.csd
 tests/soak/active_scale.csd
 tests/soak/adds.csd
 tests/soak/adsr.csd
 tests/soak/adsyn.csd
 tests/soak/adsynt.csd
 tests/soak/adsynt2.csd
 tests/soak/alpass.csd
 tests/soak/alwayson.csd
 tests/soak/ampdb.csd
 tests/soak/ampdbfs.csd
 tests/soak/ampmidi.csd
 tests/soak/ampmidid.csd
 tests/soak/areson.csd
 tests/soak/aresonk.csd
 tests/soak/array_array_math.csd
 tests/soak/array_scalar_math.csd
 tests/soak/array_udo.csd
 tests/soak/assign.csd
 tests/soak/atone.csd
 tests/soak/atonek.csd
 tests/soak/atonex.csd
 tests/soak/b.csd
 tests/soak/babo.csd
 tests/soak/babo_expert.csd
 tests/soak/balance.csd
 tests/soak/bamboo.csd
 tests/soak/barmodel.csd
 tests/soak/bbcutm.csd
 tests/soak/bbcuts.csd
 tests/soak/beats.ogg
 tests/soak/betarand.csd
 tests/soak/bexprnd.csd
 tests/soak/bformenc.csd
 tests/soak/bformenc1.csd
 tests/soak/binit.csd
 tests/soak/biquad-2.csd
 tests/soak/biquad.csd
 tests/soak/birnd.csd
 tests/soak/bitshift.csd
 tests/soak/bitwise.csd
 tests/soak/bqrez.csd
 tests/soak/butterbp.csd
 tests/soak/butterbr.csd
 tests/soak/butterhp.csd
 tests/soak/butterlp.csd
 tests/soak/buzz.csd
 tests/soak/cabasa.csd
 tests/soak/cauchy.csd
 tests/soak/cauchyi.csd
 tests/soak/ceil.csd
 tests/soak/cell.csd
 tests/soak/cent.csd
 tests/soak/centroid.csd
 tests/soak/cggoto.csd
 tests/soak/changed.csd
 tests/soak/channelArrayOpcodes.csd
 tests/soak/channelOpcodesWithArrays.csd
 tests/soak/chebyshevpoly.csd
 tests/soak/checkbox.csd
 tests/soak/chnclear.csd
 tests/soak/chnget.csd
 tests/soak/chnmix.csd
 tests/soak/chnset.csd
 tests/soak/chuap.csd
 tests/soak/cigoto.csd
 tests/soak/ckgoto.csd
 tests/soak/clear.csd
 tests/soak/clfilt_highpass.csd
 tests/soak/clfilt_lowpass.csd
 tests/soak/clip.csd
 tests/soak/clockoff.csd
 tests/soak/clockon.csd
 tests/soak/cngoto.csd
 tests/soak/comb.csd
 tests/soak/combinv.csd
 tests/soak/compileorc.csd
 tests/soak/compilestr.csd
 tests/soak/connect.csd
 tests/soak/convolve.csd
 tests/soak/copya2ftab.csd
 tests/soak/copyf2array.csd
 tests/soak/cos.csd
 tests/soak/cosh.csd
 tests/soak/cosinv.csd
 tests/soak/cosseg.csd
 tests/soak/cossegb.csd
 tests/soak/cps2pch.csd
 tests/soak/cps2pch_19et.csd
 tests/soak/cps2pch_ftable.csd
 tests/soak/cpsmidinn.csd
 tests/soak/cpsoct.csd
 tests/soak/cpspch.csd
 tests/soak/cpstun.csd
 tests/soak/cpstuni.csd
 tests/soak/cpsxpch.csd
 tests/soak/cpsxpch_105et.csd
 tests/soak/cpsxpch_pierce.csd
 tests/soak/cpumeter.csd
 tests/soak/cpuprc.csd
 tests/soak/cross2.csd
 tests/soak/crossfm.csd
 tests/soak/crunch.csd
 tests/soak/csbeats.csd
 tests/soak/cuserrnd.csd
 tests/soak/cylinder-128,8
 tests/soak/dam.csd
 tests/soak/dam_expanded.csd
 tests/soak/date.csd
 tests/soak/dates.csd
 tests/soak/db.csd
 tests/soak/dbamp.csd
 tests/soak/dbfsamp.csd
 tests/soak/dcblock.csd
 tests/soak/dcblock2.csd
 tests/soak/dconv.csd
 tests/soak/define.csd
 tests/soak/define_args.csd
 tests/soak/delay.csd
 tests/soak/delay1.csd
 tests/soak/delayk.csd
 tests/soak/delayr.csd
 tests/soak/delayw.csd
 tests/soak/deltap.csd
 tests/soak/deltap3.csd
 tests/soak/deltapi.csd
 tests/soak/deltapn.csd
 tests/soak/deltapx.csd
 tests/soak/deltapxw.csd
 tests/soak/denorm.csd
 tests/soak/diff.csd
 tests/soak/diskgrain.csd
 tests/soak/diskin.csd
 tests/soak/diskin2.csd
 tests/soak/dispfft.csd
 tests/soak/display.csd
 tests/soak/distort.csd
 tests/soak/distort1.csd
 tests/soak/divides.csd
 tests/soak/divz.csd
 tests/soak/doppler.csd
 tests/soak/downsamp.csd
 tests/soak/dripwater.csd
 tests/soak/dssi4cs.csd
 tests/soak/dssiactivate.csd
 tests/soak/dssiaudio.csd
 tests/soak/dssictls.csd
 tests/soak/dssiinit.csd
 tests/soak/dssilist.csd
 tests/soak/dssiplay_mono.csd
 tests/soak/dssiplay_stereo.csd
 tests/soak/duserrnd.csd
 tests/soak/dust.csd
 tests/soak/dust2.csd
 tests/soak/e.csd
 tests/soak/else.csd
 tests/soak/elseif.csd
 tests/soak/endif.csd
 tests/soak/endin.csd
 tests/soak/endop.csd
 tests/soak/envlpx.csd
 tests/soak/eqfil.csd
 tests/soak/equal.csd
 tests/soak/equals.csd
 tests/soak/event.csd
 tests/soak/event_i.csd
 tests/soak/event_named.csd
 tests/soak/exp.csd
 tests/soak/expcurve.csd
 tests/soak/expon.csd
 tests/soak/exprand.csd
 tests/soak/exprandi.csd
 tests/soak/expseg.csd
 tests/soak/expsega.csd
 tests/soak/expsegb.csd
 tests/soak/expsegba.csd
 tests/soak/farey7.mid
 tests/soak/fareyleni.csd
 tests/soak/fibonacci.txt
 tests/soak/ficlose.csd
 tests/soak/filebit.csd
 tests/soak/filelen.csd
 tests/soak/filenchnls.csd
 tests/soak/filepeak.csd
 tests/soak/filesr.csd
 tests/soak/filevalid.csd
 tests/soak/fillarray.csd
 tests/soak/filter2.csd
 tests/soak/fin.csd
 tests/soak/fiopen.csd
 tests/soak/flanger.csd
 tests/soak/flashtxt.csd
 tests/soak/flooper.csd
 tests/soak/flooper2.csd
 tests/soak/floor.csd
 tests/soak/fmb3.csd
 tests/soak/fmbell.csd
 tests/soak/fmmetal.csd
 tests/soak/fmpercfl.csd
 tests/soak/fmrhode.csd
 tests/soak/fmvoice.csd
 tests/soak/fmwurlie.csd
 tests/soak/fof.csd
 tests/soak/fof2-2.csd
 tests/soak/fof2.csd
 tests/soak/fofilter.csd
 tests/soak/fog.csd
 tests/soak/fold.csd
 tests/soak/follow.csd
 tests/soak/follow2.csd
 tests/soak/foscil.csd
 tests/soak/foscili.csd
 tests/soak/fout.csd
 tests/soak/fout_ftable.csd
 tests/soak/fout_poly.csd
 tests/soak/fouti.csd
 tests/soak/fprintks-2.csd
 tests/soak/fprintks.csd
 tests/soak/fprints.csd
 tests/soak/frac.csd
 tests/soak/freeverb.csd
 tests/soak/ftchnls.csd
 tests/soak/ftconv.csd
 tests/soak/ftfree.csd
 tests/soak/ftgen-2.csd
 tests/soak/ftgen.csd
 tests/soak/ftgenonce.csd
 tests/soak/ftgentmp.csd
 tests/soak/ftlen.csd
 tests/soak/ftlptim.csd
 tests/soak/ftmorf.csd
 tests/soak/ftsave.csd
 tests/soak/ftsr.csd
 tests/soak/gain.csd
 tests/soak/gainslider.csd
 tests/soak/gauss.csd
 tests/soak/gaussi.csd
 tests/soak/gausstrig-2.csd
 tests/soak/gausstrig.csd
 tests/soak/gbuzz.csd
 tests/soak/gen01.csd
 tests/soak/gen01computed.csd
 tests/soak/gen02.csd
 tests/soak/gen03.csd
 tests/soak/gen04.csd
 tests/soak/gen05.csd
 tests/soak/gen06.csd
 tests/soak/gen07.csd
 tests/soak/gen08.csd
 tests/soak/gen09.csd
 tests/soak/gen09square.csd
 tests/soak/gen10.csd
 tests/soak/gen11.csd
 tests/soak/gen12.csd
 tests/soak/gen13.csd
 tests/soak/gen14.csd
 tests/soak/gen15.csd
 tests/soak/gen16.csd
 tests/soak/gen18.csd
 tests/soak/gen19.csd
 tests/soak/gen20.csd
 tests/soak/gen21.csd
 tests/soak/gen23.csd
 tests/soak/gen24.csd
 tests/soak/gen25.csd
 tests/soak/gen27.csd
 tests/soak/gen28.csd
 tests/soak/gen30.csd
 tests/soak/gen32.csd
 tests/soak/gen33.csd
 tests/soak/gen34.csd
 tests/soak/gen40.csd
 tests/soak/gen41.csd
 tests/soak/gen42.csd
 tests/soak/gen49.csd
 tests/soak/gen52.csd
 tests/soak/genarray.csd
 tests/soak/genarray_i.csd
 tests/soak/gendy-2.csd
 tests/soak/gendy.csd
 tests/soak/gendyc.csd
 tests/soak/gendyx-2.csd
 tests/soak/gendyx.csd
 tests/soak/genexp.csd
 tests/soak/genfarey-2.csd
 tests/soak/genfarey.csd
 tests/soak/gensone.csd
 tests/soak/gentanh.csd
 tests/soak/genwave.csd
 tests/soak/getcfg.csd
 tests/soak/gogobel.csd
 tests/soak/goto.csd
 tests/soak/grain.csd
 tests/soak/grain2.csd
 tests/soak/grain3.csd
 tests/soak/granule.csd
 tests/soak/greaterequal.csd
 tests/soak/greaterthan.csd
 tests/soak/guiro.csd
 tests/soak/harmon.csd
 tests/soak/harmon3.csd
 tests/soak/hilbert.csd
 tests/soak/hilbert_barberpole.csd
 tests/soak/hrtfearly.csd
 tests/soak/hrtfer.csd
 tests/soak/hrtfmove.csd
 tests/soak/hrtfmove2.csd
 tests/soak/hrtfstat-2.csd
 tests/soak/hrtfstat.csd
 tests/soak/hsboscil.csd
 tests/soak/i_statement.csd
 tests/soak/ifthen.csd
 tests/soak/igoto.csd
 tests/soak/ihold.csd
 tests/soak/imageopcodes.csd
 tests/soak/imageopcodesdemo2.csd
 tests/soak/include.csd
 tests/soak/init.csd
 tests/soak/inleta.csd
 tests/soak/inletk.csd
 tests/soak/instr.csd
 tests/soak/int.csd
 tests/soak/integ.csd
 tests/soak/interp.csd
 tests/soak/invalue.csd
 tests/soak/jitter.csd
 tests/soak/jitter2.csd
 tests/soak/jspline.csd
 tests/soak/kgoto.csd
 tests/soak/kickroll.het
 tests/soak/leftbrace.csd
 tests/soak/lenarray.csd
 tests/soak/lessequal.csd
 tests/soak/lessthan.csd
 tests/soak/lfo.csd
 tests/soak/limit.csd
 tests/soak/line.csd
 tests/soak/linen.csd
 tests/soak/lineto.csd
 tests/soak/linrand.csd
 tests/soak/linseg.csd
 tests/soak/linsegb.csd
 tests/soak/locsend_quad.csd
 tests/soak/locsend_stereo.csd
 tests/soak/locsig_quad.csd
 tests/soak/locsig_stereo.csd
 tests/soak/log.csd
 tests/soak/log10.csd
 tests/soak/log2.csd
 tests/soak/logbtwo.csd
 tests/soak/logcurve.csd
 tests/soak/loop_le.csd
 tests/soak/loop_lt.csd
 tests/soak/loopseg.csd
 tests/soak/loopsegp.csd
 tests/soak/looptseg.csd
 tests/soak/loopxseg.csd
 tests/soak/lorenz.csd
 tests/soak/loscil.csd
 tests/soak/loscil3.csd
 tests/soak/lowpass2.csd
 tests/soak/lowres.csd
 tests/soak/lowresx.csd
 tests/soak/lpf18.csd
 tests/soak/lpfreson.csd
 tests/soak/lphasor.csd
 tests/soak/lposcil.csd
 tests/soak/lposcil3.csd
 tests/soak/lposcila.csd
 tests/soak/lposcilsa.csd
 tests/soak/lposcilsa2.csd
 tests/soak/lpread.csd
 tests/soak/lpreson-2.csd
 tests/soak/lpreson.csd
 tests/soak/lpshold.csd
 tests/soak/lpsholdp.csd
 tests/soak/m.csd
 tests/soak/mac.csd
 tests/soak/maca.csd
 tests/soak/mandel.csd
 tests/soak/mandol.csd
 tests/soak/maparray.csd
 tests/soak/marimba.csd
 tests/soak/max.csd
 tests/soak/maxabs.csd
 tests/soak/maxabsaccum.csd
 tests/soak/maxaccum.csd
 tests/soak/maxalloc.csd
 tests/soak/maxarray.csd
 tests/soak/mclock.csd
 tests/soak/median.csd
 tests/soak/mediank.csd
 tests/soak/metro-2.csd
 tests/soak/metro.csd
 tests/soak/midichn_advanced.csd
 tests/soak/midichn_advanced.mid
 tests/soak/min.csd
 tests/soak/minabs.csd
 tests/soak/minabsaccum.csd
 tests/soak/minaccum.csd
 tests/soak/minarray.csd
 tests/soak/mincer.csd
 tests/soak/mirror.csd
 tests/soak/mode.csd
 tests/soak/modmatrix.csd
 tests/soak/monitor.csd
 tests/soak/moog.csd
 tests/soak/moogladder.csd
 tests/soak/moogvcf.csd
 tests/soak/moogvcf2.csd
 tests/soak/move
 tests/soak/mp3in.csd
 tests/soak/mp3len.csd
 tests/soak/mpulse.csd
 tests/soak/multiplies.csd
 tests/soak/multitap.csd
 tests/soak/mute.csd
 tests/soak/my.orc
 tests/soak/nestedap.csd
 tests/soak/nlfilt.csd
 tests/soak/nlfilt2.csd
 tests/soak/noise-2.csd
 tests/soak/noise.csd
 tests/soak/notequal.csd
 tests/soak/nreverb.csd
 tests/soak/nreverb_ftable.csd
 tests/soak/nrpn.csd
 tests/soak/nsamp.csd
 tests/soak/nsliders.tk
 tests/soak/ntrpol.csd
 tests/soak/octave.csd
 tests/soak/octcps.csd
 tests/soak/octpch.csd
 tests/soak/opa.csd
 tests/soak/opand.csd
 tests/soak/opcode_example.csd
 tests/soak/oscbnk.csd
 tests/soak/oscil.csd
 tests/soak/oscil1.csd
 tests/soak/oscil1i.csd
 tests/soak/oscil3.csd
 tests/soak/oscili.csd
 tests/soak/oscilikt.csd
 tests/soak/osciliktp.csd
 tests/soak/oscilikts.csd
 tests/soak/osciln.csd
 tests/soak/oscils.csd
 tests/soak/out.csd
 tests/soak/outc.csd
 tests/soak/outch.csd
 tests/soak/outleta.csd
 tests/soak/outletk.csd
 tests/soak/outq.csd
 tests/soak/outq1.csd
 tests/soak/outq2.csd
 tests/soak/outq3.csd
 tests/soak/outq4.csd
 tests/soak/outrg.csd
 tests/soak/outs.csd
 tests/soak/outs1.csd
 tests/soak/outs2.csd
 tests/soak/outvalue.csd
 tests/soak/p.csd
 tests/soak/pan.csd
 tests/soak/pan2.csd
 tests/soak/pareq.csd
 tests/soak/partials.csd
 tests/soak/partikkel-2.csd
 tests/soak/partikkel_softsync.csd
 tests/soak/partikkelsync.csd
 tests/soak/passign.csd
 tests/soak/pcauchy.csd
 tests/soak/pchoct.csd
 tests/soak/pcount.csd
 tests/soak/pdclip.csd
 tests/soak/pdhalf.csd
 tests/soak/pdhalfy.csd
 tests/soak/peak.csd
 tests/soak/phaser1.csd
 tests/soak/phaser2.csd
 tests/soak/phasor.csd
 tests/soak/phasorbnk.csd
 tests/soak/pindex-2.csd
 tests/soak/pinkish.csd
 tests/soak/pitch.csd
 tests/soak/pitchamdf.csd
 tests/soak/planet.csd
 tests/soak/plate.csd
 tests/soak/plltrack.csd
 tests/soak/pluck.csd
 tests/soak/poisson.csd
 tests/soak/polynomial.csd
 tests/soak/pop.csd
 tests/soak/port.csd
 tests/soak/poscil.csd
 tests/soak/poscil3-file.csd
 tests/soak/poscil3.csd
 tests/soak/pow.csd
 tests/soak/powershape.csd
 tests/soak/powoftwo.csd
 tests/soak/prealloc.csd
 tests/soak/prepiano.csd
 tests/soak/print.csd
 tests/soak/printf.csd
 tests/soak/printk.csd
 tests/soak/printk2.csd
 tests/soak/printks.csd
 tests/soak/prints.csd
 tests/soak/product.csd
 tests/soak/pset.csd
 tests/soak/ptable.csd
 tests/soak/ptablei.csd
 tests/soak/ptrack.csd
 tests/soak/push.csd
 tests/soak/puts.csd
 tests/soak/pvadd.csd
 tests/soak/pvbufread.csd
 tests/soak/pvcross.csd
 tests/soak/pvinterp.csd
 tests/soak/pvoc.csd
 tests/soak/pvread.csd
 tests/soak/pvsadsyn.csd
 tests/soak/pvsanal.csd
 tests/soak/pvsarp.csd
 tests/soak/pvsarp2.csd
 tests/soak/pvsbandp.csd
 tests/soak/pvsbandr.csd
 tests/soak/pvsblur.csd
 tests/soak/pvsbuffer.csd
 tests/soak/pvsbufread.csd
 tests/soak/pvsbufread2.csd
 tests/soak/pvscale.csd
 tests/soak/pvscent.csd
 tests/soak/pvscross.csd
 tests/soak/pvsdiskin.csd
 tests/soak/pvsdisp.csd
 tests/soak/pvsfilter.csd
 tests/soak/pvsfread.csd
 tests/soak/pvsfreeze.csd
 tests/soak/pvsftr.csd
 tests/soak/pvsftw.csd
 tests/soak/pvsfwrite.csd
 tests/soak/pvsgain.csd
 tests/soak/pvshift.csd
 tests/soak/pvsifd.csd
 tests/soak/pvsinfo.csd
 tests/soak/pvslock.csd
 tests/soak/pvsmaska.csd
 tests/soak/pvsmix.csd
 tests/soak/pvsmooth.csd
 tests/soak/pvsmorph.csd
 tests/soak/pvsmorph2.csd
 tests/soak/pvsosc.csd
 tests/soak/pvstanal.csd
 tests/soak/pvsvoc.csd
 tests/soak/pvswarp.csd
 tests/soak/pvsynth.csd
 tests/soak/pwd.csd
 tests/soak/q.csd
 tests/soak/r.csd
 tests/soak/raises.csd
 tests/soak/rand.csd
 tests/soak/randh.csd
 tests/soak/randi.csd
 tests/soak/random.csd
 tests/soak/randomh.csd
 tests/soak/randomi.csd
 tests/soak/rbjeq.csd
 tests/soak/readclock.csd
 tests/soak/readf.csd
 tests/soak/readfi.csd
 tests/soak/readk-2.csd
 tests/soak/readk.csd
 tests/soak/readk2.csd
 tests/soak/readk3.csd
 tests/soak/readk4.csd
 tests/soak/readscore.csd
 tests/soak/readscratch.csd
 tests/soak/reinit.csd
 tests/soak/repluck.csd
 tests/soak/reson.csd
 tests/soak/resonk.csd
 tests/soak/resonx.csd
 tests/soak/resonxk.csd
 tests/soak/resony.csd
 tests/soak/resyn.csd
 tests/soak/reverb.csd
 tests/soak/rezzy.csd
 tests/soak/rnd.csd
 tests/soak/rnd31.csd
 tests/soak/rnd31_krate.csd
 tests/soak/rnd31_seed7.csd
 tests/soak/round.csd
 tests/soak/rspline.csd
 tests/soak/runtests.py
 tests/soak/rv_mono.cva
 tests/soak/rv_stereo.cva
 tests/soak/s.csd
 tests/soak/samphold.csd
 tests/soak/sandpaper.csd
 tests/soak/scale.csd
 tests/soak/scalearray.csd
 tests/soak/scans-2.csd
 tests/soak/scans.csd
 tests/soak/schedkwhen.csd
 tests/soak/schedkwhennamed.csd
 tests/soak/schedule.csd
 tests/soak/schedwhen.csd
 tests/soak/scogen.csd
 tests/soak/scoreline.csd
 tests/soak/scoreline_i.csd
 tests/soak/seed.csd
 tests/soak/sekere.csd
 tests/soak/semitone.csd
 tests/soak/seqtime2.csd
 tests/soak/serialBegin.csd
 tests/soak/serialRead.csd
 tests/soak/serialWrite.csd
 tests/soak/setctrl.csd
 tests/soak/setscorepos.csd
 tests/soak/shaker.csd
 tests/soak/signalflowgraph.csd
 tests/soak/signum.csd
 tests/soak/sin.csd
 tests/soak/sinh.csd
 tests/soak/sininv.csd
 tests/soak/sinsyn.csd
 tests/soak/sleighbells.csd
 tests/soak/slicearray.csd
 tests/soak/sndloop.csd
 tests/soak/sndwarp.csd
 tests/soak/sndwarpst.csd
 tests/soak/soundin.csd
 tests/soak/space_quad.csd
 tests/soak/space_stereo.csd
 tests/soak/spat3d_UHJ.csd
 tests/soak/spat3d_quad.csd
 tests/soak/spat3d_stereo.csd
 tests/soak/spat3dt.csd
 tests/soak/spdist.csd
 tests/soak/spectrum.txt
 tests/soak/sprintf.csd
 tests/soak/sprintfk.csd
 tests/soak/spsend.csd
 tests/soak/spsend_quad.csd
 tests/soak/spsend_stereo.csd
 tests/soak/sqrt.csd
 tests/soak/sr.csd
 tests/soak/stack.csd
 tests/soak/statevar.csd
 tests/soak/stix.csd
 tests/soak/strcat.csd
 tests/soak/strcatk.csd
 tests/soak/strchar.csd
 tests/soak/strcmp.csd
 tests/soak/strcpyk.csd
 tests/soak/streson.csd
 tests/soak/strget.csd
 tests/soak/strindexk.csd
 tests/soak/string-128.matrix
 tests/soak/strlower.csd
 tests/soak/strrindex.csd
 tests/soak/strset.csd
 tests/soak/strsub.csd
 tests/soak/subinstr.csd
 tests/soak/subinstr_named.csd
 tests/soak/subtracts.csd
 tests/soak/sum.csd
 tests/soak/sumarray.csd
 tests/soak/svfilter.csd
 tests/soak/sym10.txt
 tests/soak/syncgrain.csd
 tests/soak/syncloop.csd
 tests/soak/syncphasor-CZresonance.csd
 tests/soak/syncphasor.csd
 tests/soak/system.csd
 tests/soak/t.csd
 tests/soak/tab.csd
 tests/soak/table.csd
 tests/soak/table1.inc
 tests/soak/tablecopy.csd
 tests/soak/tablefilter.csd
 tests/soak/tablei.csd
 tests/soak/tableikt.csd
 tests/soak/tableimix.csd
 tests/soak/tableiw.csd
 tests/soak/tablekt.csd
 tests/soak/tablemix.csd
 tests/soak/tableng.csd
 tests/soak/tableseg.csd
 tests/soak/tablexkt.csd
 tests/soak/tablexseg.csd
 tests/soak/tabmorph.csd
 tests/soak/tabmorpha.csd
 tests/soak/tabmorphak.csd
 tests/soak/tabmorphi.csd
 tests/soak/tabsum.csd
 tests/soak/tambourine.csd
 tests/soak/tan.csd
 tests/soak/tanh.csd
 tests/soak/taninv.csd
 tests/soak/taninv2.csd
 tests/soak/tbvcf.csd
 tests/soak/tempest.csd
 tests/soak/tempo.csd
 tests/soak/temposcal.csd
 tests/soak/tempoval.csd
 tests/soak/tigoto.csd
 tests/soak/timedseq.csd
 tests/soak/timeinstk.csd
 tests/soak/timeinsts.csd
 tests/soak/timek.csd
 tests/soak/times.csd
 tests/soak/timout.csd
 tests/soak/tival.csd
 tests/soak/tlineto.csd
 tests/soak/tone.csd
 tests/soak/tonek.csd
 tests/soak/tonex.csd
 tests/soak/toot1.csd
 tests/soak/toot10.csd
 tests/soak/toot2.csd
 tests/soak/toot3.csd
 tests/soak/toot4.csd
 tests/soak/toot5.csd
 tests/soak/toot6.csd
 tests/soak/toot7.csd
 tests/soak/toot8.csd
 tests/soak/toot9.csd
 tests/soak/tradsyn.csd
 tests/soak/trandom.csd
 tests/soak/transeg.csd
 tests/soak/transegb.csd
 tests/soak/trcross.csd
 tests/soak/trfilter.csd
 tests/soak/trhighest.csd
 tests/soak/trigexpseg.csd
 tests/soak/trigger.csd
 tests/soak/triglinseg.csd
 tests/soak/trigseq.csd
 tests/soak/trirand.csd
 tests/soak/trlowest.csd
 tests/soak/trmix.csd
 tests/soak/trscale.csd
 tests/soak/trshift.csd
 tests/soak/trsplit.csd
 tests/soak/turnoff.csd
 tests/soak/unirand.csd
 tests/soak/until.csd
 tests/soak/upsamp.csd
 tests/soak/urd.csd
 tests/soak/v.csd
 tests/soak/vadd.csd
 tests/soak/vadd_i.csd
 tests/soak/vaddv.csd
 tests/soak/vaget.csd
 tests/soak/valpass-2.csd
 tests/soak/valpass.csd
 tests/soak/vaset.csd
 tests/soak/vbap.csd
 tests/soak/vbap4.csd
 tests/soak/vbap4move.csd
 tests/soak/vbap8.csd
 tests/soak/vbap8move.csd
 tests/soak/vbapg.csd
 tests/soak/vbapgmove.csd
 tests/soak/vbaplsinit.csd
 tests/soak/vbapmove.csd
 tests/soak/vcella.csd
 tests/soak/vco.csd
 tests/soak/vco2.csd
 tests/soak/vco2ft.csd
 tests/soak/vco2ift.csd
 tests/soak/vco2init.csd
 tests/soak/vcopy.csd
 tests/soak/vdelay.csd
 tests/soak/vdelay3.csd
 tests/soak/vdelayx.csd
 tests/soak/vdelayxq.csd
 tests/soak/vdelayxs.csd
 tests/soak/vdelayxw.csd
 tests/soak/vdelayxws.csd
 tests/soak/vdivv.csd
 tests/soak/vexp.csd
 tests/soak/vexp_i.csd
 tests/soak/vexpseg.csd
 tests/soak/vexpv.csd
 tests/soak/vibes.csd
 tests/soak/vibr.csd
 tests/soak/vibrato.csd
 tests/soak/vincr-complex.csd
 tests/soak/vincr.csd
 tests/soak/vlinseg.csd
 tests/soak/vlowres.csd
 tests/soak/vmap.csd
 tests/soak/vmult-2.csd
 tests/soak/vmult.csd
 tests/soak/vmult_i.csd
 tests/soak/vmultv.csd
 tests/soak/voice.csd
 tests/soak/vosim.csd
 tests/soak/vpow-2.csd
 tests/soak/vpow.csd
 tests/soak/vpow_i-2.csd
 tests/soak/vpow_i.csd
 tests/soak/vpowv.csd
 tests/soak/vpvoc.csd
 tests/soak/vrandh.csd
 tests/soak/vrandi.csd
 tests/soak/vsubv.csd
 tests/soak/vtablei.csd
 tests/soak/vtablek.csd
 tests/soak/vtablewk.csd
 tests/soak/waveset.csd
 tests/soak/weibull.csd
 tests/soak/wgbow.csd
 tests/soak/wgbowedbar.csd
 tests/soak/wgbrass.csd
 tests/soak/wgclar.csd
 tests/soak/wgflute.csd
 tests/soak/wgpluck.csd
 tests/soak/wgpluck2.csd
 tests/soak/wgpluck_brighter.csd
 tests/soak/wguide1.csd
 tests/soak/wguide2.csd
 tests/soak/wrap.csd
 tests/soak/wterrain.csd
 tests/soak/x.csd
 tests/soak/xadsr.csd
 tests/soak/xscanmap.csd
 tests/soak/xscans.csd
 tests/soak/xscanu.csd
 tests/soak/xx.py
 tests/soak/zacl.csd
 tests/soak/zakinit.csd
 tests/soak/zamod.csd
 tests/soak/zar.csd
 tests/soak/zarg.csd
 tests/soak/zaw.csd
 tests/soak/zawm.csd
 tests/soak/zir.csd
 tests/soak/ziw.csd
 tests/soak/ziwm.csd
 tests/soak/zkcl.csd
 tests/soak/zkmod.csd
 tests/soak/zkr.csd
 tests/soak/zkw.csd
 tests/soak/zkwm.csd
 util/CMakeLists.txt
 util/README.adsyn
 util/SDIF/CMakeLists.txt
 util/SDIF/sdif_rdm.txt
 util/atsa_main.c
 util/cvl_main.c
 util/dnoise_main.c
 util/env_main.c
 util/het_main.c
 util/hetx_main.c
 util/lpc_main.c
 util/make_src_conv
 util/mixer_main.c
 util/perl/brkpt
 util/perl/linseg
 util/perl/tabdes
 util/pvc_main.c
 util/pvi_main.c
 util/pvx_main.c
 util/scale_main.c
 util/sndinfo_main.c
 util/srconv_main.c
 util/xtrc_main.c
 util1/CMakeLists.txt
 util1/csd_util/base64.c
 util1/csd_util/cs.c
 util1/csd_util/csb64enc.c
 util1/csd_util/makecsd.c
 util1/scot/scot_main.c
 util2/matrix.tk
 util2/nsliders.tk
 util2/pkgbuild.tcl
 vcpkg.json
 wasm/.gitignore
 wasm/.prettierrc.json
 wasm/Dockerfile
 wasm/README.md
 wasm/browser/.eslintrc
 wasm/browser/.gitignore
 wasm/browser/.jsdoc.conf.json
 wasm/browser/.prettierrc.json
 wasm/browser/README.md
 wasm/browser/compile.js
 wasm/browser/externs.js
 wasm/browser/goog/generate-webworker-module.js
 wasm/browser/goog/inline-arraybuffer.js
 wasm/browser/goog/mocks/index.js
 wasm/browser/goog/mocks/package.json
 wasm/browser/goog/path.js
 wasm/browser/goog/sab.worker.js
 wasm/browser/index.d.ts
 wasm/browser/polyfills/fetch-noop.js
 wasm/browser/polyfills/performance.js
 wasm/browser/polyfills/set-timeout-noop.js
 wasm/browser/polyfills/text-encoding.js
 wasm/browser/script/generate-readme.mjs
 wasm/browser/script/inline-webworker.js
 wasm/browser/script/polyfilled-transformer.js
 wasm/browser/script/rollup-arraybuffer.js
 wasm/browser/script/worklet-concat-files.js
 wasm/browser/shell.nix
 wasm/browser/src/constants.js
 wasm/browser/src/dlinit.js
 wasm/browser/src/events.js
 wasm/browser/src/filesystem/wasi.js
 wasm/browser/src/filesystem/worker-fs.js
 wasm/browser/src/index.js
 wasm/browser/src/libcsound.js
 wasm/browser/src/logger.js
 wasm/browser/src/mains/io.utils.js
 wasm/browser/src/mains/messages.main.js
 wasm/browser/src/mains/old-spn.main.js
 wasm/browser/src/mains/sab.main.js
 wasm/browser/src/mains/vanilla.main.js
 wasm/browser/src/mains/worklet.main.js
 wasm/browser/src/module.js
 wasm/browser/src/modules/attributes.js
 wasm/browser/src/modules/control-events.js
 wasm/browser/src/modules/extra.js
 wasm/browser/src/modules/general-io.js
 wasm/browser/src/modules/instantiation.js
 wasm/browser/src/modules/performance.js
 wasm/browser/src/modules/rtaudio.js
 wasm/browser/src/modules/rtmidi.js
 wasm/browser/src/modules/score-handling.js
 wasm/browser/src/modules/table.js
 wasm/browser/src/structures.js
 wasm/browser/src/utils.js
 wasm/browser/src/utils/clean-stdout-string.js
 wasm/browser/src/utils/clear-array.js
 wasm/browser/src/utils/event-promises.js
 wasm/browser/src/utils/message-port-state.js
 wasm/browser/src/utils/native-sizes.js
 wasm/browser/src/utils/new-audio-context.js
 wasm/browser/src/utils/request-midi.js
 wasm/browser/src/utils/string-pointers.js
 wasm/browser/src/utils/structure-buffer-to-object.js
 wasm/browser/src/utils/text-encoders.js
 wasm/browser/src/utils/trim-null.js
 wasm/browser/src/workers/common.utils.js
 wasm/browser/src/workers/old-spn.worker.js
 wasm/browser/src/workers/sab.worker.js
 wasm/browser/src/workers/vanilla.worker.js
 wasm/browser/src/workers/worklet.worker.js
 wasm/browser/src/zlib/adler32.js
 wasm/browser/src/zlib/huffman.js
 wasm/browser/src/zlib/inflate.js
 wasm/browser/src/zlib/rawinflate.js
 wasm/browser/src/zlib/util.js
 wasm/browser/src/zlib/zlib.js
 wasm/browser/tests/channel_test.html
 wasm/browser/tests/diskin.html
 wasm/browser/tests/index.html
 wasm/browser/tests/listener_test.html
 wasm/browser/tests/mic_test.html
 wasm/browser/tests/midi-test.html
 wasm/browser/tests/selenium_runner.js
 wasm/browser/tests/selenium_runner_firefox.js
 wasm/browser/tests/server.cjs
 wasm/browser/tests/tests.js
 wasm/browser/yarn.lock
 wasm/nodejs/.gitignore
 wasm/nodejs/package.json
 wasm/nodejs/src/filesystem.js
 wasm/nodejs/src/index.js
 wasm/nodejs/src/module.js
 wasm/nodejs/src/singlethread.js
 wasm/nodejs/src/utils.js
 wasm/nodejs/tests/test.js
 wasm/nodejs/yarn.lock
 wasm/scripts/compile.release.sh
 wasm/scripts/compile.sh
 wasm/scripts/compile.static.sh
 wasm/src/csound.nix
 wasm/src/csound_wasm.c
 wasm/src/exports.json
 wasm/src/libflac.nix
 wasm/src/liblame.config.in
 wasm/src/liblame.nix
 wasm/src/libmpg123.config.in
 wasm/src/libmpg123.nix
 wasm/src/libogg.nix
 wasm/src/libsndfile.nix
 wasm/src/libsndfile_disable_oggopus.patch
 wasm/src/libvorbis.nix
 wasm/src/plugin_example.nix
 wasm/src/plugin_example_cxx.nix
 wasm/src/scansyn_plugin.c
 wasm/src/staticfix.c
 wasm/src/unsupported_opcodes.c
 wasm/src/wasi-sdk-static.nix
 wasm/src/wasi-sdk.nix
 wasm/yarn.lock
Copyright: NONE
License: UNKNOWN
 FIXME

Files: Android/CsoundAndroid/jni/version.h
 Engine/corfiles.c
 Engine/csound_sco.y
 Engine/parse_param.h
 Engine/score_param.h
 Frontends/beats/main.c
 H/corfile.h
 H/cs_par_orc_semantics.h
 H/midioops.h
 InOut/libsnd.c
 Opcodes/OSC.c
 Opcodes/control.c
 Opcodes/control.h
 Opcodes/counter.c
 Opcodes/date.c
 Opcodes/dcblockr.h
 Opcodes/gammatone.c
 Opcodes/pan2.c
 Opcodes/repluck.c
 Opcodes/scansynx.c
 Opcodes/select.c
 Opcodes/sequencer.c
 Opcodes/sockrecv.c
 Opcodes/socksend.c
 Opcodes/system_call.c
 Opcodes/tabaudio.c
 Opcodes/tabsum.c
 Opcodes/urandom.c
 Opcodes/zak.h
 Top/getstring.c
 Top/one_file.c
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csdl.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/interlocks.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/text.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/version.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csdl.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/interlocks.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/text.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/version.h
 include/csdl.h
 include/interlocks.h
 include/text.h
 include/version.h.in
 util/envext.c
 util/het_export.c
 util/het_import.c
 util/heti_main.c
 util/lpc_export.c
 util/lpc_import.c
 util/lpci_main.c
 util/lpcx_main.c
 util/mixer.c
 util/mkdb.c
 util/pv_export.c
 util/pv_import.c
 util/scale.c
 util/xtrct.c
Copyright: 1994, John ffitch
  1995, John ffitch
  1996, John ffitch
  1997, John ffitch
  1998, John ffitch
  1999, John ffitch
  1999-2000, John ffitch
  2000, John ffitch
  2002, John ffitch
  2004, John ffitch
  2005, John ffitch
  2006, John ffitch
  2007, John ffitch
  2009, John ffitch
  2009-2010, John ffitch
  2010, John ffitch
  2011, John ffitch
  2012, John ffitch
  2013, John ffitch
  2016, John ffitch
  2017, John ffitch
  2018, John ffitch
  2019, John ffitch
  2020, John ffitch
  2021, John ffitch
License: LGPL-2.1+
 FIXME

Files: Android/CsoundAndroid/android_interface.i
 Emscripten/src/FileList.c
 Emscripten/src/FileList.js
 Frontends/csound/csound_main.c
 Opcodes/hrtfreverb.c
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/CppSound.hpp
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/CsoundFile.hpp
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/AppDelegate.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/AudioFilesTestViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/AudioInTestViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/BaseCsoundViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/ButtonTestViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/ConsoleOutputViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/ControlKnob.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/ControlXYGrid.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Csound-iOS-SwiftExamples-Bridging-Header.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/CsoundHaiku4ViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/CsoundVirtualKeyboard.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/HardwareTestViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/HarmonizerTestViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/InstrumentEditorViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/LevelMeterView.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/MasterViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/MidiTestViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/MultiTouchXYViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/PitchShifterViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/RecordTestViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/SimpleTest1ViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/SimpleTest2ViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/TrappedGeneratorViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/Waveview.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/WaveviewViewController.swift
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/CppSound.hpp
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/CsoundFile.hpp
 interfaces/CppSound.cpp
 interfaces/CppSound.hpp
 interfaces/CsoundFile.cpp
 interfaces/CsoundFile.hpp
 interfaces/Soundfile.cpp
 interfaces/Soundfile.hpp
 interfaces/java_interface.i
 interfaces/lua_interface.i
 interfaces/pyMsgCb.cpp
 interfaces/python_interface.i
 util/std_util.h
Copyright: NONE
License: LGPL-2.1+
 FIXME

Files: Engine/csound_data_structures.c
 Engine/csound_orc_expressions.c
 Engine/csound_orc_optimize.c
 Engine/csound_standard_types.c
 Engine/csound_type_system.c
 Engine/new_orc_parser.c
 Engine/pools.c
 H/csound_orc_expressions.h
 H/extract.h
 H/tok.h
 Opcodes/vaops.c
 Opcodes/wpfilters.c
 Opcodes/wpfilters.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/AppDelegate.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/AppDelegate.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/DetailViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/DetailViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/MasterViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/MasterViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ButtonTest/ButtonTestViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/CsoundHaiku4/CsoundHaiku4ViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/CsoundHaiku4/CsoundHaiku4ViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/HardwareTest/HardwareTestViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Harmonizer/HarmonizerTest.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Harmonizer/HarmonizerTest.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MidiTest/CsoundVirtualKeyboard.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MidiTest/CsoundVirtualKeyboard.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MultiTouchXY/MultiTouchXYViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MultiTouchXY/MultiTouchXYViewController.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/midi/MidiWidgetWrapper.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/midi/SliderMidiWidgetWrapper.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/midi/SliderMidiWidgetWrapper.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csound_data_structures.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csound_standard_types.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csound_type_system.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/midi/MidiWidgetWrapper.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/midi/SliderMidiWidgetWrapper.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/midi/SliderMidiWidgetWrapper.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csound_data_structures.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csound_standard_types.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csound_type_system.h
 include/csound_data_structures.h
 include/csound_standard_types.h
 include/csound_type_system.h
 util/csanalyze.c
Copyright: 2006, Steven Yi
  2007, Steven Yi
  2011, Steven Yi
  2012, Steven Yi
  2012-2013, Steven Yi
  2013, Steven Yi
  2017, Steven Yi
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/BaseCsoundViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/BaseCsoundViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ButtonTest/ButtonTestViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/HardwareTest/HardwareTestViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MidiTest/MidiTestViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/MidiTest/MidiTestViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/TrappedGenerator/TrappedGeneratorViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/TrappedGenerator/TrappedGeneratorViewController.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundAccelerometerBinding.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundAccelerometerBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundAttitudeBinding.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundAttitudeBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundGyroscopeBinding.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundGyroscopeBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundButtonBinding.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundButtonBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundLabelBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundMomentaryButtonBinding.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundMomentaryButtonBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundSliderBinding.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundSliderBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundSwitchBinding.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundSwitchBinding.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/midi/MidiWidgetsManager.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/midi/MidiWidgetsManager.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundAccelerometerBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundAccelerometerBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundAttitudeBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundAttitudeBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundGyroscopeBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundGyroscopeBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundButtonBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundButtonBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundLabelBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundMomentaryButtonBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundMomentaryButtonBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundSliderBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundSliderBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundSwitchBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundSwitchBinding.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/midi/MidiWidgetsManager.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/midi/MidiWidgetsManager.m
Copyright: 2014, Steven Yi, Aurelius Prochazka
License: LGPL-2.1+
 FIXME

Files: Engine/cfgvar.c
 Engine/envvar.c
 Engine/namedins.c
 Frontends/csound/sched.c
 H/csGblMtx.h
 H/diskin2.h
 H/envvar.h
 H/fftlib.h
 H/midifile.h
 H/namedins.h
 H/new_opts.h
 H/oscils.h
 InOut/midifile.c
 InOut/rtwinmm.c
 OOps/diskin2.c
 OOps/oscils.c
 Opcodes/deprecated.c
 Opcodes/ftconv.c
 Opcodes/loscilx.c
 Opcodes/oscbnk.c
 Opcodes/oscbnk.h
 Opcodes/pvoc.c
 Opcodes/pvoc.h
 Opcodes/spat3d.c
 Opcodes/spat3d.h
 Opcodes/stdopcod.c
 Top/new_opts.c
 Top/utility.c
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/cfgvar.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/msg_attr.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/cfgvar.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/msg_attr.h
 include/cfgvar.h
 include/msg_attr.h
 interfaces/csPerfThread.cpp
 interfaces/csPerfThread.hpp
 interfaces/cs_glue.cpp
 interfaces/cs_glue.hpp
 util/pvl_main.c
 util/utilmain.h
Copyright: 2001, Istvan Varga
  2002, 2005, Istvan Varga
  2002, 2005-2006, Istvan Varga
  2002, Istvan Varga
  2002-2005, Istvan Varga
  2005, Istvan Varga
  2005-2006, Istvan Varga
  2006, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Engine/auxfd.c
 Engine/entry1.c
 Engine/scsort.c
 Engine/sread.c
 Engine/twarp.c
 H/dumpf.h
 H/entry1.h
 H/oload.h
 H/prototyp.h
 H/sort.h
 H/ugens1.h
 H/ugens2.h
 H/ugens3.h
 H/ugens4.h
 H/windin.h
 InOut/winascii.c
 InOut/windin.c
 InOut/window.c
 OOps/dumpf.c
 OOps/ugens1.c
 OOps/ugens3.c
 OOps/ugens4.c
 Top/cscore_internal.c
 Top/cscorfns.c
 Top/main.c
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/cscore.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/cscore.h
 include/cscore.h
 util1/sortex/smain.c
 util1/sortex/xmain.c
Copyright: 1991, 1997, Barry Vercoe, John ffitch
  1991, Barry Vercoe, John ffitch
  1991-2002, Barry Vercoe, John ffitch
  1991-2005, Barry Vercoe, John ffitch
License: LGPL-2.1+
 FIXME

Files: Android/CSDPlayer/src/com/csounds/Csound6/JSCsoundObj.java
 Android/CsoundAndroid/src/com/csounds/CsoundObj.java
 Android/CsoundAndroid/src/com/csounds/CsoundObjListener.java
 Android/CsoundAndroid/src/com/csounds/bindings/AbstractBinding.java
 Android/CsoundAndroid/src/com/csounds/bindings/CsoundBinding.java
 Android/CsoundAndroid/src/com/csounds/bindings/motion/CsoundAccelerometerBinding.java
 Android/CsoundAndroid/src/com/csounds/bindings/ui/CsoundButtonBinding.java
 Android/CsoundAndroid/src/com/csounds/bindings/ui/CsoundSliderBinding.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/CsoundObj.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/CsoundObjListener.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/bindings/AbstractBinding.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/bindings/CsoundBinding.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/bindings/motion/CsoundAccelerometerBinding.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/bindings/ui/CsoundButtonBinding.java
 Android/CsoundForAndroid/CsoundAndroid/src/main/java/com/csounds/bindings/ui/CsoundSliderBinding.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/BaseCsoundActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/CsoundAndroidActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/AccelerometerActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/ButtonTestActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/CsoundHaikuIVActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/HarmonizerActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/MultiTouchXYActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/PingPongDelayActivity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/SimpleTest1Activity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/SimpleTest2Activity.java
 Android/CsoundForAndroid/CsoundAndroidExamples/src/main/java/com/csounds/examples/tests/WaveviewTestActivity.java
Copyright: 2011, Victor Lazzarini, Steven Yi
License: LGPL-2.1+
 FIXME

Files: Opcodes/bowed.h
 Opcodes/brass.h
 Opcodes/clarinet.h
 Opcodes/flute.h
 Opcodes/fm4op.c
 Opcodes/fm4op.h
 Opcodes/marimba.h
 Opcodes/modal4.c
 Opcodes/modal4.h
 Opcodes/moog1.c
 Opcodes/moog1.h
 Opcodes/phisem.c
 Opcodes/phisem.h
 Opcodes/physmod.c
 Opcodes/physutil.c
 Opcodes/physutil.h
 Opcodes/shaker.c
 Opcodes/shaker.h
 Opcodes/singwave.c
 Opcodes/singwave.h
 Opcodes/vibraphn.h
Copyright: 1996-1997, Perry Cook, John ffitch
  1997, 2000, Perry Cook, John ffitch
  1998, Perry Cook, John ffitch
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioInTest/AudioInTestViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest1/SimpleTest1ViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest1/SimpleTest1ViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest2/SimpleTest2ViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/SimpleTest2/SimpleTest2ViewController.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/CsoundObj.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/CsoundObj.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundMotion.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/motion/CsoundMotion.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundUI.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundUI.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/CsoundObj.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/CsoundObj.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundMotion.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/motion/CsoundMotion.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundUI.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundUI.m
Copyright: 2011, Steven Yi, Victor Lazzarini, Aurelius Prochazka
  2014, Steven Yi, Victor Lazzarini, Aurelius Prochazka
License: LGPL-2.1+
 FIXME

Files: Android/CsoundAndroid/jni/float-version.h
 H/compile_ops.h
 H/lpred.h
 InOut/circularbuffer.c
 InOut/rtpulse.c
 OOps/compile_ops.c
 OOps/lpred.c
 Opcodes/arrayops.cpp
 Opcodes/eqfil.c
 Opcodes/pvsops.cpp
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/float-version.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/pools.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/float-version.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/pools.h
 include/float-version.h.in
 include/pools.h
 wasm/src/plugin_example.c
Copyright: 1991-2010, Victor Lazzarini
  2007, Victor Lazzarini
  2008, Victor Lazzarini
  2012, Victor Lazzarini
  2013, Victor Lazzarini
  2017, Victor Lazzarini
  2018, Victor Lazzarini
  2020, Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: Opcodes/gab/gab.c
 Opcodes/gab/gab.h
 Opcodes/gab/hvs.c
 Opcodes/gab/newgabopc.c
 Opcodes/gab/sliderTable.c
 Opcodes/gab/tabmorph.c
 Opcodes/gab/vectorial.c
 Opcodes/gab/vectorial.h
 Opcodes/lowpassr.c
 Opcodes/lowpassr.h
 Opcodes/midiops2.h
 Opcodes/midiops3.c
 Opcodes/midiops3.h
 Opcodes/seqtime.c
 Opcodes/sfont.h
 Opcodes/sftype.h
Copyright: 1997, Gabriel Maldonado
  1998, Gabriel Maldonado
  2000, Gabriel Maldonado
  2002-2004, Gabriel Maldonado
  2007, Gabriel Maldonado
License: LGPL-2.1+
 FIXME

Files: Opcodes/locsig.c
 Opcodes/locsig.h
 Opcodes/pvadd.c
 Opcodes/pvadd.h
 Opcodes/pvinterp.c
 Opcodes/pvinterp.h
 Opcodes/pvocext.c
 Opcodes/pvocext.h
 Opcodes/pvread.h
 Opcodes/sndwarp.h
 Opcodes/space.c
 Opcodes/space.h
 Opcodes/vpvoc.c
 Opcodes/vpvoc.h
 util/pvlook.c
Copyright: 1992, Richard Karpen
  1993, Richard Karpen
  1996, Richard Karpen
  1997, Richard Karpen
  1998, Richard Karpen
License: LGPL-2.1+
 FIXME

Files: Android/COPYING
 Android/CSDPlayer/COPYING
 Android/CsoundAndroid/COPYING
 COPYING
 Emscripten/module/LICENSE.md
 iOS/Csound iOS Obj-C Examples/LICENSE.TXT
 iOS/Csound iOS Obj-C Examples/csound-iOS/LICENSE.TXT
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/LICENSE.TXT
 installer/macosx/PkgResources/CsoundApps/License.rtf
 installer/macosx/PkgResources/CsoundApps64/License.rtf
 installer/macosx/PkgResources/CsoundLib/License.rtf
 installer/macosx/PkgResources/CsoundLib64/License.rtf
 installer/macosx/PkgResources/SupportLibs/License.rtf
 installer/macosx/PkgResources/en.lproj/License.rtf
Copyright: 1991, 1999, Free Software Foundation, Inc.
License: LGPL-2.1
 FIXME

Files: H/mp3dec.h
 H/mp3dec_internal.h
 H/mpadec.h
 H/mpadec_internal.h
 InOut/libmpadec/layer1.c
 InOut/libmpadec/layer2.c
 InOut/libmpadec/layer3.c
 InOut/libmpadec/mp3dec.c
 InOut/libmpadec/mp3dec_internal.h
 InOut/libmpadec/mpadec.c
 InOut/libmpadec/mpadec_config.h
 InOut/libmpadec/mpadec_internal.h
 InOut/libmpadec/synth.c
 InOut/libmpadec/tables.c
Copyright: 2002-2004, Dmitriy Startsev (dstartsev@rambler.ru)
License: LGPL-2.1+
 FIXME

Files: Emscripten/module/src/CsoundNode.js
 Emscripten/module/src/CsoundObj.js
 Emscripten/module/src/CsoundScriptProcessorNode.js
 Emscripten/src/CsoundProcessor.js
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioInTest/AudioInTestViewController.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/midi/CsoundMIDI.h
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/midi/CsoundMIDI.m
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/midi/CsoundMIDI.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/midi/CsoundMIDI.m
 wasm/browser/src/mains/spn.main.js
 wasm/browser/src/mains/worklet.singlethread.main.js
 wasm/browser/src/workers/worklet.singlethread.worker.js
Copyright: 2011, Steven Yi, Victor Lazzarini
  2018, Steven Yi, Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: Android/CsoundAndroid/jni/csound_oboe.hpp
 H/midiinterop.h
 OOps/midiinterop.c
 Opcodes/ampmidid.cpp
 Opcodes/doppler.cpp
 Opcodes/mixer.cpp
 Opcodes/signalflowgraph.cpp
 Top/init_static_modules.c
 include/csound_threaded.hpp
 interfaces/csound.lisp
 interfaces/sb-csound.lisp
Copyright: 2002, Michael Gogins
  2005, Michael Gogins
  2006, Michael Gogins
  2014, Michael Gogins
  2016, Michael Gogins
  2017, Michael Gogins
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioFileTest/AudioFileTestViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioFileTest/AudioFileTestViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioFileTest/ControlKnob.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/AudioFileTest/ControlKnob.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/ConsoleOutputViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/ConsoleOutput/ConsoleOutputViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/PitchShifter/ControlXYGrid.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/PitchShifter/ControlXYGrid.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/PitchShifter/PitchShifterViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/PitchShifter/PitchShifterViewController.m
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/RecordTest/LevelMeterView.m
Copyright: 2014, Thomas Hass, Aurelius Prochazka
License: LGPL-2.1+
 FIXME

Files: Engine/extract.c
 H/disprep.h
 H/fgens.h
 H/lpc.h
 H/remote.h
 OOps/disprep.c
 OOps/remote.c
 Opcodes/harmon.c
 Opcodes/spectra.c
 Opcodes/spectra.h
Copyright: 1991, Barry Vercoe
  1992, Barry Vercoe
  1995, Barry Vercoe
  1996, Barry Vercoe
  2006, Barry Vercoe
License: LGPL-2.1+
 FIXME

Files: Emscripten/examples/canvas.html
 Emscripten/examples/csdplayer.html
 Emscripten/examples/midiplayer.html
 Emscripten/examples/minimal-div.html
 Emscripten/examples/minimal-div.xml
 Emscripten/examples/minimal.html
 Emscripten/examples/minimal.xml
 Emscripten/examples/randgen.html
 Emscripten/examples/stria.html
 Emscripten/examples/tabex.html
Copyright: 2013, V Lazzarini
  2017, V Lazzarini
License: UNKNOWN
 FIXME

Files: H/midiout.h
 OOps/midiout.c
 Opcodes/flanger.c
 Opcodes/flanger.h
 Opcodes/fout.h
 Opcodes/sf.h
 Opcodes/uggab.c
 Opcodes/uggab.h
Copyright: 1997, Gabriel Maldonado, John ffitch
  1998, Gabriel Maldonado, John ffitch
  1999, Gabriel Maldonado, John ffitch
  2000, Gabriel Maldonado, John ffitch
License: LGPL-2.1+
 FIXME

Files: Bela/BelaCsound.cpp
 Bela/main.cpp
 H/ugtabs.h
 InOut/cmidi.c
 OOps/ugtabs.c
 Opcodes/pvlock.c
Copyright: 2009, V Lazzarini
  2011, V Lazzarini
  2013, V Lazzarini
  2017, V Lazzarini
License: LGPL-2.1+
 FIXME

Files: Opcodes/dssi4cs/src/dssi4cs.h
 Top/csdebug.c
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csdebug.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csdebug.h
 include/csdebug.h
Copyright: 2005, Andres Cabrera
  2013, Andres Cabrera
  2014, Andres Cabrera
License: LGPL-2.1+
 FIXME

Files: H/aops.h
 H/ugens5.h
 OOps/aops.c
 OOps/ugens5.c
 Opcodes/afilters.c
Copyright: 1991, Barry Vercoe, John ffitch, Gabriel Maldonado
License: LGPL-2.1+
 FIXME

Files: Engine/csound_orc.lex
 Engine/csound_orc.y
 Engine/csound_orc_semantics.c
 Engine/symbtab.c
 Opcodes/arrays.c
Copyright: 2006, John ffitch, Steven Yi
  2006-2007, John ffitch, Steven Yi
  2011-2012, John ffitch, Steven Yi
License: LGPL-2.1+
 FIXME

Files: H/cmath.h
 OOps/cmath.c
 Opcodes/cross2.c
 Opcodes/fhtfun.h
 Opcodes/ptrigtbl.h
Copyright: 1994, Paris Smaragdis, John ffitch
  1997, Paris Smaragdis, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/pvsbasic.c
 Opcodes/pvsbasic.h
 Opcodes/sndloop.c
 Opcodes/syncgrain.c
 Opcodes/syncgrain.h
Copyright: Victor Lazzarini, 2004
License: LGPL-2.1+
 FIXME

Files: Opcodes/ifd.c
 Opcodes/partials.c
 Opcodes/psynth.c
 Opcodes/pvsdemix.c
 Opcodes/pvsdemix.h
Copyright: Victor Lazzarini, 2005
License: LGPL-2.1+
 FIXME

Files: Opcodes/vbap.c
 Opcodes/vbap.h
 Opcodes/vbap1.c
 Opcodes/vbap_n.c
 Opcodes/vbap_zak.c
Copyright: 2000, Ville Pulkki
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/main.m
 util/SDIF/sdif-mem.c
 util/SDIF/sdif-mem.h
 util/SDIF/sdif.c
 util/SDIF/sdif.h
Copyright: 1996
  1996-1999
  1999
  2012
License: UNKNOWN
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/InstrumentEditor/InstrumentEditorViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/InstrumentEditor/InstrumentEditorViewController.m
 iOS/Csound iOS Obj-C Examples/csound-iOS/classes/bindings/ui/CsoundLabelBinding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/classes/bindings/ui/CsoundLabelBinding.h
Copyright: 2014, Aurelius Prochazka
License: LGPL-2.1+
 FIXME

Files: InOut/libsnd_u.c
 iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csoundCore.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csoundCore.h
 include/csoundCore.h
Copyright: 1991-2006, Barry Vercoe, John ffitch, Istvan Varga
  2005, Barry Vercoe, John ffitch, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Frontends/beats/beats.h
 Frontends/beats/beats.l
 Frontends/beats/beats.y
 Opcodes/buchla.c
Copyright: 2009-2010, John ffitch,
  2012, John ffitch,
  2014, John ffitch,
License: LGPL-2.1+
 FIXME

Files: H/haiku_audio.h
 H/haiku_midi.h
 InOut/HaikuAudio.cpp
 InOut/HaikuMidi.cpp
Copyright: 2012, Peter J. Goodeve
  2012-2019, Peter J. Goodeve
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/pvfileio.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/pvfileio.h
 include/pvfileio.h
 util/SDIF/sdif2adsyn.c
Copyright: 2000, Richard Dobson
License: LGPL-2.1+
 FIXME

Files: po/american.po
 po/csound.po
 po/russian.po
 po/spanish.po
Copyright: 2008, John ffitch and Csound developers
  2016, John ffitch and Csound developers
License: UNKNOWN
 FIXME

Files: Android/CSDPlayer/assets/Csound6AndroidExamples/Gogins/Drone-HTML5.csd
 Android/CSDPlayer/assets/Csound6AndroidExamples/Gogins/Drone-IV.csd
 installer/windows/csound6_x64.iss
 installer/windows/csound6_x64_github.iss
Copyright: 2013, Michael Gogins.
License: UNKNOWN
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/sysdep.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/sysdep.h
 include/sysdep.h
Copyright: 1991, Barry Vercoe, John ffitch
License: LGPL-2 and/or LGPL-2.1+
 FIXME

Files: Emscripten/module/package.json
 wasm/browser/package.json
 wasm/package.json
Copyright: NONE
License: LGPL-2.1
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/soundio.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/soundio.h
 include/soundio.h
Copyright: 1991, 2000, Barry Vercoe, Richard Dobson
License: LGPL-2.1+
 FIXME

Files: Engine/cs_par_base.c
 Engine/cs_par_orc_semantic_analysis.c
 H/cs_par_ops.h
Copyright: 2009, Chris Wilson and John ffitch
  2010, Chris Wilson and John ffitch
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/cwindow.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/cwindow.h
 include/cwindow.h
Copyright: 1990, Dan Ellis
License: LGPL-2.1+
 FIXME

Files: Opcodes/crossfm.c
 Opcodes/crossfm.h
 interfaces/ctcsound.py
Copyright: 2005, Francois Pinot
  2016, Francois Pinot
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/OpcodeBase.hpp
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/OpcodeBase.hpp
 include/OpcodeBase.hpp
Copyright: 2005, 2009, 2017, Istva Varga, Victor Lazzarini and
License: LGPL-2.1+
 FIXME

Files: H/csmodule.h
 Top/csmodule.c
 Top/opcode.c
Copyright: 1997, John ffitch
  2002, John ffitch
  2005, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csound.hpp
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csound.hpp
 include/csound.hpp
Copyright: 2005, Istvan Varga, Michael Gogins
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/cs_par_structs.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/cs_par_structs.h
 include/cs_par_structs.h
Copyright: 2011, John ffitch and Chris Wilson
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/csound.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/csound.h
 include/csound.h
Copyright: 2001-2013, John ffitch, Michael Gogins, Victor Lazzarini,
  2003, 2005, 2008, 2013, John ffitch, Istvan Varga,
License: LGPL-2.1+
 FIXME

Files: Opcodes/ftest.c
 Opcodes/repluck.h
 Top/argdecode.c
Copyright: 1996, 1998, John ffitch, Victor Lazzarini
  1998-2013, John ffitch, Victor Lazzarini
  2004, 2008, John ffitch, Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: Opcodes/pluck.c
 Opcodes/pluck.h
 Opcodes/wavegde.h
Copyright: 1994, 2000, Michael A. Casey, John ffitch
  1994, MIT Media Lab
  1994, Michael A. Casey, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/butter.c
 Opcodes/grain.c
 Opcodes/grain.h
Copyright: 1994, Paris Smaragdis, John ffitch
  May 1994.
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/filebuilding.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/filebuilding.h
 interfaces/filebuilding.h
Copyright: 2001-2005, Michael Gogins, Matt Ingalls, John D. Ramsdell,
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/csound-iOS/headers/pstream.h
 iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/pstream.h
 include/pstream.h
Copyright: 2001, Richard Dobson
  Richard Dobson August 2001
License: LGPL-2.1+
 FIXME

Files: H/ugrw1.h
 OOps/ugrw1.c
 Opcodes/zak.c
Copyright: 1997, Robin Whittle
  Robin Whittle.
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/RecordTest/LevelMeterView.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/RecordTest/RecordTestViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/RecordTest/RecordTestViewController.m
Copyright: 2011, Thomas Hass
License: LGPL-2.1+
 FIXME

Files: Opcodes/gendy.c
 Opcodes/tl/fractalnoise.cpp
 Opcodes/tl/sc_noise.c
Copyright: Tito Latini, 2012
License: LGPL-2.1+
 FIXME

Files: examples/plugin/opcodes.cpp
 include/modload.h
 include/plugin.h
Copyright: Victor Lazzarini, 2017
License: LGPL-2.1+
 FIXME

Files: po/german.po
 po/italian.po
 po/romanian.po
Copyright: 2007, John ffitch and Csound community
License: UNKNOWN
 FIXME

Files: InOut/alphanumcmp.c
 InOut/alphanumcmp.h
Copyright: NONE
License: Expat
 FIXME

Files: installer/misc/csound.spec.in
 installer/misc/csound.spec.in.old
Copyright: NONE
License: LGPL
 FIXME

Files: util1/scot/scot.c
 util1/scot/scot.h
Copyright: 1991, Alan deLespinasse
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugnorman.c
 Opcodes/ugnorman.h
Copyright: 2004, Alex Norman
License: LGPL-2.1+
 FIXME

Files: Opcodes/grain4.c
 Opcodes/grain4.h
Copyright: 1994-1995, Allan S C Lee, John ffitch
License: LGPL-2.1+
 FIXME

Files: Engine/insert.c
 OOps/goto_ops.c
Copyright: 1991, 1997, 1999, 2002, 2005, Barry Vercoe, Istvan Varga, John ffitch,
License: LGPL-2.1+
 FIXME

Files: H/ugens6.h
 OOps/ugens6.c
Copyright: 1991-2000, Barry Vercoe, John ffitch, Jens Groh,
License: LGPL-2.1+
 FIXME

Files: Opcodes/sterrain.c
 Opcodes/wterrain2.c
Copyright: 2002, Matt Gilliard, John ffitch
  2020, Christian Bacher
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugens8.c
 Opcodes/ugens8.h
Copyright: 1991, 1998, 2000, Dan Ellis, Richard Karpen, Richard Dobson
License: LGPL-2.1+
 FIXME

Files: Opcodes/babo.c
 Opcodes/babo.h
Copyright: 2000, Davide Rocchesso, Nicola Bernardini
License: LGPL-2.1+
 FIXME

Files: Opcodes/emugens/emugens.c
 Opcodes/emugens/scugens.c
Copyright: 2017, Eduardo Moguillansky
License: LGPL-2.1+
 FIXME

Files: Opcodes/hrtferX.c
 Opcodes/hrtferx.h
Copyright: 1995, 2001, Eli Breder, David McIntyre, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/clfilt.c
 Opcodes/clfilt.h
Copyright: 2002, Erik Spjut
License: LGPL-2.1+
 FIXME

Files: H/winEPS.h
 InOut/winEPS.c
Copyright: 1995, Fabio P. Bertolotti
License: LGPL-2.1+
 FIXME

Files: Opcodes/fareygen.c
 Opcodes/fareyseq.c
Copyright: 2010, Georg Boenn
License: LGPL-2.1+
 FIXME

Files: Opcodes/cellular.c
 Opcodes/lufs.c
Copyright: 2011, Gleb Rogozinsky
  2020, Gleb Rogozinsky
License: LGPL-2.1+
 FIXME

Files: H/convolve.h
 Opcodes/ugens9.h
Copyright: 1996, Greg Sullivan
License: LGPL-2.1+
 FIXME

Files: Opcodes/ftgen.c
 Opcodes/quadbezier.c
Copyright: 2016, Guillermo Senna.
License: LGPL-2.1+
 FIXME

Files: H/bus.h
 OOps/bus.c
Copyright: 2004, John ffitch
  2005-2006, Istvan Varga
  2006, Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: Opcodes/pvs_ops.c
 Opcodes/pvs_ops.h
Copyright: 2003, Istvan Varga, John ffitch
  2006, Istvan Varga, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugensa.c
 Opcodes/ugensa.h
Copyright: 1997, J. Michael Clarke, based on ideas from CHANT (IRCAM)
License: LGPL-2.1+
 FIXME

Files: Engine/rdscor.c
 Engine/swritestr.c
Copyright: 2011, John ffitch (after Barry Vercoe)
License: LGPL-2.1+
 FIXME

Files: H/cs_par_base.h
 include/arrays.h
Copyright: 2011, 2017, John ffitch and Stephen Kyne
License: LGPL-2.1+
 FIXME

Files: InOut/rtpa.c
 InOut/rtpa.cpp
Copyright: 2004-2005, John ffitch, Istvan Varga,
License: LGPL-2.1+
 FIXME

Files: Opcodes/mandolin.c
 Opcodes/mandolin.h
Copyright: 1997, John ffitch, Perry Cook
License: LGPL-2.1+
 FIXME

Files: Opcodes/nlfilt.c
 Opcodes/nlfilt.h
Copyright: 1996, John ffitch, Richard Dobson
License: LGPL-2.1+
 FIXME

Files: Opcodes/linuxjoystick.c
 Opcodes/linuxjoystick.h
Copyright: 2010, Justin Glenn Smith <noisesmith@gmail.com>
License: LGPL-2.1+
 FIXME

Files: util/dnoise.c
 util/srconv.c
Copyright: 1989, 2000, Mark Dolson, John ffitch
  2000, Mark Dolson, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/wave-terrain.c
 Opcodes/wave-terrain.h
Copyright: 2002, Matt Gilliard, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/bbcut.c
 Opcodes/bbcut.h
Copyright: 2001, Nick Collins
License: LGPL-2.1+
 FIXME

Files: Opcodes/scansyn.c
 Opcodes/scansyn.h
Copyright: 1999, Paris Smaragdis
License: LGPL-2.1+
 FIXME

Files: Opcodes/bowedbar.c
 Opcodes/bowedbar.h
Copyright: 1999, Perry Cook, Georg Essl, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/ftsamplebank.cpp
 Opcodes/trigEnvSegs.cpp
Copyright: 2014, Rory Walsh
  2021, Rory Walsh
License: LGPL-2.1+
 FIXME

Files: Opcodes/ambicode.c
 Opcodes/ambicode1.c
Copyright: 2005, Samuel Groner,
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Waveview/WaveviewViewController.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Waveview/WaveviewViewController.m
Copyright: 2011, Steven Yi, Ed Costello
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Waveview/Waveview.h
 iOS/Csound iOS Obj-C Examples/Csound iOS Examples/ViewControllers/Waveview/Waveview.m
Copyright: 2015, Steven Yi, Ed Costello, Aurelius Prochazka
License: LGPL-2.1+
 FIXME

Files: Opcodes/newfils.c
 Opcodes/newfils.h
Copyright: Victor Lazzarini, 2004, Gleb Rogozinsky, 2020
License: LGPL-2.1+
 FIXME

Files: Opcodes/pitchtrack.c
 Opcodes/pvsbuffer.c
Copyright: Victor Lazzarini, 2007
License: LGPL-2.1+
 FIXME

Files: H/linevent.h
 H/sndinfUG.h
Copyright: 1999, matt ingalls
  2001, matt ingalls
License: LGPL-2.1+
 FIXME

Files: Opcodes/modmatrix.c
 Opcodes/modmatrix.h
Copyright: 2009, Øyvind Brandtsegg, Thom Johansen
License: LGPL-2.1+
 FIXME

Files: Engine/csound_pre.lex
 Engine/csound_prs.lex
Copyright: 2011, 2016, John ffitch
  2011, John ffitch
License: UNKNOWN
 FIXME

Files: H/pffft.h
 OOps/pffft.c
Copyright: 2004, the University Corporation for Atmospheric
  2013, Julien Pommier ( pommier@modartt.com )
License: UNKNOWN
 FIXME

Files: Opcodes/dssi4cs/src/load.c
 Opcodes/dssi4cs/src/utils.h
Copyright: 2005, Richard W.E. Furse
License: UNKNOWN
 FIXME

Files: installer/macosx/PkgResources/CsoundApps/ReadMe.rtf
 installer/macosx/PkgResources/CsoundApps64/ReadMe.rtf
Copyright: 2005, The Csound Team , csound.sf.net }
License: UNKNOWN
 FIXME

Files: installer/macosx/PkgResources/CsoundLib/ReadMe.rtf
 installer/macosx/PkgResources/CsoundLib64/ReadMe.rtf
Copyright: 2005, The Csound Team, csound.sf.net
License: UNKNOWN
 FIXME

Files: cmake/Modules/FindEIGEN3.cmake
Copyright: 2006-2007, Montel Laurent, <montel@kde.org>
  2008-2009, Gael Guennebaud, <g.gael@free.fr>
  2009, Benoit Jacob <jacob.benoit.1@gmail.com>
License: BSD-2-clause
 FIXME

Files: cmake/Modules/FindLIBLO.cmake
Copyright: 2006, Andreas Schneider <mail@cynapses.org>
  2008, Kyle Machulis <kyle@nonpolynomial.com>
License: BSD-3-clause
 FIXME

Files: OOps/random.c
Copyright: 1997-2002, Makoto Matsumoto and Takuji Nishimura,
License: BSD-3-clause
 FIXME

Files: wasm/browser/src/filesystem/constants.js
Copyright: 2017, Syrus <me@syrusakbary.com>
  2019, Gus Caplan
License: Expat
 FIXME

Files: Opcodes/lfsr.cpp
Copyright: 2016, Patrick Dowling
  2020, Dave Seidel
License: Expat and/or LGPL-2.1+
 FIXME

Files: util/new_srconv.c
Copyright: 2015, John ffitch after Erik de Castro Lopo
License: GPL-2+
 FIXME

Files: installer/linux/fedora/csound.spec
Copyright: NONE
License: LGPL-2
 FIXME

Files: Opcodes/cpumeter.c
Copyright: *c) 2011 John ffitch, based heavily on code:
  2002, James C. Warner
License: LGPL-2+
 FIXME

Files: installer/SuSE/csound.spec
Copyright: 2017, SUSE LINUX GmbH, Nuernberg, Germany.
License: LGPL-2.1
 FIXME

Files: Opcodes/partikkel.h
Copyright: 2006-2009
License: LGPL-2.1+
 FIXME

Files: Top/csound.c
Copyright: (char*) NULL, SF_id_software
  2001-2006, Michael Gogins, Matt Ingalls, John D. Ramsdell,
  CSOUNDCFG_INTEGER, 0, NULL, &max_len,
License: LGPL-2.1+
 FIXME

Files: Opcodes/minmax.c
Copyright: 2005, -6 Anthony M. Kozar Jr.
License: LGPL-2.1+
 FIXME

Files: Opcodes/sfont.c
Copyright: 2000, -7 Gabriel Maldonado, John ffitch, Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: Emscripten/src/CsoundObj.c
Copyright: 2014, -8 Steven Yi, Victor Lazzarini, Edward Costello
License: LGPL-2.1+
 FIXME

Files: Emscripten/src/csound.js
Copyright: 2017, -8 V Lazzarini
License: LGPL-2.1+
 FIXME

Files: Opcodes/filter.c
Copyright: 1986, -92 Numerical Recipes Software *%&&"U^3.
  1997, Michael A. Casey, John ffitch
  1997, Michael A. Casey, MIT Media Lab
License: LGPL-2.1+
 FIXME

Files: Opcodes/stdopcod.h
Copyright: 205 Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Opcodes/pvscent.c
Copyright: Alan OCinneide, 2005
  John ffitch, 2005
  V Lazzarini, 2012
License: LGPL-2.1+
 FIXME

Files: InOut/pmidi.c
Copyright: 2004, John ffitch after Barry Vercoe
  2005, Istvan Varga
  2008, Andres Cabrera
License: LGPL-2.1+
 FIXME

Files: Opcodes/dssi4cs/src/dssi4cs.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
  2005, Andres Cabrera
License: LGPL-2.1+
 FIXME

Files: Frontends/debugger/csdebugger.cpp
Copyright: 2014, Andres Cabrera, Rory Walsh
License: LGPL-2.1+
 FIXME

Files: InOut/rtalsa.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
  2005, Istvan Varga
  2009, Andrés Cabrera, Clemens Ladisch
  2012, Tito Latini
License: LGPL-2.1+
 FIXME

Files: Opcodes/shape.c
Copyright: 1991-2007, Barry Vercoe, John ffitch, Robin Whittle
  2004, 2007, Anthony M. Kozar Jr.
License: LGPL-2.1+
 FIXME

Files: Opcodes/follow.h
Copyright: 1994, 1999, Paris Smaragdis, John ffitch
  August 1994.
License: LGPL-2.1+
 FIXME

Files: Opcodes/follow.c
Copyright: 1994, 1999, Paris Smaragdis, John ffitch
  August 1994. All rights reserve
License: LGPL-2.1+
 FIXME

Files: doc/csound.tex
Copyright: 1991-2003, Barry Vercoe and John ffitch.
  2001-2004, Michael Gogins.
License: LGPL-2.1+
 FIXME

Files: OOps/midiops.c
Copyright: 1995, Barry Vercoe, Gabriel Maldonado,
License: LGPL-2.1+
 FIXME

Files: H/midiops.h
Copyright: 1995, Barry Vercoe, Gabriel maldonado,
License: LGPL-2.1+
 FIXME

Files: H/insert.h
Copyright: 1991, 2002, Barry Vercoe, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: InOut/midirecv.c
Copyright: 1995, Barry Vercoe, John ffitch
  2005, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Engine/musmon.c
Copyright: 1991, 2002, Barry Vercoe, John ffitch,
License: LGPL-2.1+
 FIXME

Files: util/sndinfo.c
Copyright: 1991, 2006, Barry Vercoe, John ffitch, Matt Ingalls,
License: LGPL-2.1+
 FIXME

Files: Engine/fgens.c
Copyright: 1991, 1994-1995, 1998, 2000, 2004, Barry Vercoe, John ffitch, Paris Smaragdis,
  Victor Lazzarini, 2004
License: LGPL-2.1+
 FIXME

Files: Engine/memfiles.c
Copyright: 1991, 2001, Barry Vercoe, John ffitch, Richard Dobson
  2005, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Engine/memalloc.c
Copyright: 1991, Barry Vercoe, John ffitch, Richard Dobson,
  2005, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: OOps/ugens2.c
Copyright: 1991, Barry Vercoe, John ffitch, Robin Whittle
License: LGPL-2.1+
 FIXME

Files: Engine/csound_orc_compile.c
Copyright: 1991, 1997, 2003, 2006, 2012, Barry Vercoe, John ffitch, Steven Yi, Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: installer/windows/INSTALLER.md
Copyright: 1991, Barry Vercoe, John ffitch, and other contributors.
License: LGPL-2.1+
 FIXME

Files: Engine/linevent.c
Copyright: 1991, Barry Vercoe, John ffitch, matt ingalls
License: LGPL-2.1+
 FIXME

Files: installer/SuSE/readme-csound6.txt
Copyright: 1991, Barry Vercoe, John ffitch.
License: LGPL-2.1+
 FIXME

Files: Engine/scxtract.c
Copyright: 1991, Barry Vercoe; 2012 John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/compress.c
Copyright: 2006, Barry Vercoe; adapted by John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/hrtfearly.c
Copyright: 2010, Brian Carty
License: LGPL-2.1+
 FIXME

Files: Opcodes/hrtfopcodes.c
Copyright: Brian Carty, 2010
License: LGPL-2.1+
 FIXME

Files: H/cs_jack.h
Copyright: 2008, Cesare Marilungo
License: LGPL-2.1+
 FIXME

Files: Opcodes/dssi4cs/src/dssi.h
Copyright: 2004, Chris Cannam, Steve Harris and Sean Bolton
License: LGPL-2.1+
 FIXME

Files: Opcodes/dsputil.c
Copyright: 1988, Codemist Ltd
  1991, Dan Ellis, Barry Vercoe, John ffitch,
License: LGPL-2.1+
 FIXME

Files: Opcodes/sfenum.h
Copyright: 1995-1998, Creative Technology Ltd. / E-mu Systems, Inc.
  Creative Technology Ltd. / E-mu Systems, Inc.
License: LGPL-2.1+
 FIXME

Files: Opcodes/dsputil.h
Copyright: 1991, Dan Ellis, Barry Vercoe, John ffitch,
License: LGPL-2.1+
 FIXME

Files: util/pvanal.c
Copyright: 1991, 1994, Dan Ellis, Dave Madole,
  2000, John ffitch, Richard Dobson
License: LGPL-2.1+
 FIXME

Files: InOut/midisend.c
Copyright: 1997, Dave Philips
  2005, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugakbari.c
Copyright: 2006, David Akbari
License: LGPL-2.1+
 FIXME

Files: H/vdelay.h
Copyright: 1994, Paris Smaragdis, John ffitch
  December 1994.
License: LGPL-2.1+
 FIXME

Files: Opcodes/framebuffer.c
Copyright: 2015, Edward Costello.
License: LGPL-2.1+
 FIXME

Files: Opcodes/3Dug.h
Copyright: 1995, 2001, Eli Breder, David McIntyre
License: LGPL-2.1+
 FIXME

Files: iOS/Csound iOS Swift Examples/LICENSE
Copyright: 1991, 1999, Free Software Foundation, Inc.
License: LGPL-2.1+
 FIXME

Files: Opcodes/midiops2.c
Copyright: 1997, Gabriel Maldonado
  2006, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Opcodes/metro.c
Copyright: 2000, Gabriel Maldonado, (C) 2019 Gleb Rogozinsky
License: LGPL-2.1+
 FIXME

Files: Opcodes/fout.c
Copyright: 1999, Gabriel Maldonado, John ffitch, Matt Ingalls
  2005-2006, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugens9.c
Copyright: 1996, Greg Sullivan, 2004 ma++ ingalls
License: LGPL-2.1+
 FIXME

Files: util/cvanal.c
Copyright: 1996, Greg Sullivan, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/biquad.h
Copyright: 1998-1999, 2001, Hans Mikelson,
License: LGPL-2.1+
 FIXME

Files: Opcodes/biquad.c
Copyright: 1998-1999, 2001, Hans Mikelson, Matt Gerassimoff,
License: LGPL-2.1+
 FIXME

Files: InOut/ipmidi.c
Copyright: 2012, Henri Manson
License: LGPL-2.1+
 FIXME

Files: H/str_ops.h
Copyright: 2005, Matt J. Ingalls, John ffitch
  2005-2006, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: OOps/str_ops.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
  2005, Matt J. Ingalls, John ffitch
  2005-2006, Istvan Varga
  2013, V Lazzarini (new string code)
License: LGPL-2.1+
 FIXME

Files: OOps/pvfileio.c
Copyright: 2000, Richard Dobson
  2005, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Opcodes/reverbsc.c
Copyright: 1999, 2005, Sean Costello and Istvan Varga
  2005, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: InOut/rtjack.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
  2005-2006, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: OOps/sndinfUG.c
Copyright: 1999, matt ingalls, Richard Dobson
  2006, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Opcodes/freeverb.c
Copyright: 2005, Istvan Varga (based on public domain C++ code by Jezar)
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugens7.c
Copyright: 1995, J. Michael Clarke, based on ideas from CHANT (IRCAM),
License: LGPL-2.1+
 FIXME

Files: OOps/fftlib.c
Copyright: 2005, John Green Istvan Varga Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: include/find_opcode.h
Copyright: 2016, John ffitc
License: LGPL-2.1+
 FIXME

Files: Opcodes/exciter.c
Copyright: 2014, John ffitch after Markus Schmidt (calf)
License: LGPL-2.1+
 FIXME

Files: Engine/sort.c
Copyright: 2010, John ffitch with some code from Barry Vercoe
License: LGPL-2.1+
 FIXME

Files: Opcodes/pvsband.c
Copyright: John ffitch, 2007
License: LGPL-2.1+
 FIXME

Files: Opcodes/dcblockr.c
Copyright: 1998, John ffitch, 2008 V Lazzarini
License: LGPL-2.1+
 FIXME

Files: Opcodes/pvsgendy.c
Copyright: John ffitch, 2009
License: LGPL-2.1+
 FIXME

Files: Opcodes/pitch0.c
Copyright: 1999, John ffitch, Istvan Varga
License: LGPL-2.1+
 FIXME

Files: Opcodes/pitch.h
Copyright: 1999, John ffitch, Istvan Varga, Peter Neub
License: LGPL-2.1+
 FIXME

Files: Opcodes/pitch.c
Copyright: 1999, John ffitch, Istvan Varga, Peter Neubäcker,
  1999, Phil Burk - No rights reserved.
License: LGPL-2.1+
 FIXME

Files: Opcodes/mp3in.c
Copyright: 2009, John ffitch, V Lazzarini
License: LGPL-2.1+
 FIXME

Files: OOps/pvsanal.c
Copyright: 2002, Richard Dobson
  2007, John ffitch/Richard Dobson (SDFT)
  Mark Dolson.
License: LGPL-2.1+
 FIXME

Files: H/resize.h
Copyright: 2011, Jon ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/dam.h
Copyright: 1997, Marc Resibois
License: LGPL-2.1+
 FIXME

Files: Opcodes/dam.c
Copyright: 1997, Marc Resibois
  Marc Resibois 1997
License: LGPL-2.1+
 FIXME

Files: Engine/csound_sco.lex
Copyright: 2013, March
License: LGPL-2.1+
 FIXME

Files: Engine/cs_new_dispatch.c
Copyright: Martin Brain (mjb@cs.bath.ac.uk) 04/08/12
License: LGPL-2.1+
 FIXME

Files: OOps/vdelay.c
Copyright: 1994, 1998, 2000-2001, Paris Smaragdis, Richard Karpen,
  May 1994.
License: LGPL-2.1+
 FIXME

Files: Opcodes/filter.h
Copyright: 1997, Michael A. Casey, John ffitch
  1997, Michael A. Casey, MIT Media Lab
License: LGPL-2.1+
 FIXME

Files: H/ugens7.h
Copyright: 1995, Michael Clarke, based on ideas from CHANT (IRCAM)
License: LGPL-2.1+
 FIXME

Files: Opcodes/padsynth_gen.cpp
Copyright: 2015, Michael Gogins after Nasca O Paul
License: LGPL-2.1+
 FIXME

Files: Opcodes/partikkel.c
Copyright: 2006-2016, Oeyvind Brandtsegg, Torgeir Strand Henriksen,
License: LGPL-2.1+
 FIXME

Files: util/atsa.c
Copyright: 2002-2004, Oscar Pablo Di Liscia, Pete Moss, Juan Pampin
License: LGPL-2.1+
 FIXME

Files: Opcodes/bformdec2.cpp
Copyright: 2019, Pablo Zinemanas
License: LGPL-2.1+
 FIXME

Files: Opcodes/paulstretch.c
Copyright: 2016, Paul Batchelor
License: LGPL-2.1+
 FIXME

Files: util/lpanal.c
Copyright: 1992, 1997, 2020, Paul Lansky, Barry Vercoe,
License: LGPL-2.1+
 FIXME

Files: InOut/rthaiku.cpp
Copyright: 2012-2019, Pete Goodeve
License: LGPL-2.1+
 FIXME

Files: OOps/pstream.c
Copyright: 2001, Richard Dobson, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/sndwarp.c
Copyright: 1997, Richard Karpen, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/pvread.c
Copyright: 1992, 2000, Richard Karpen, Richard Dobson
License: LGPL-2.1+
 FIXME

Files: Opcodes/dssi4cs/src/ladspa.h
Copyright: 2000-2002, Richard W.E. Furse, Paul Barton-Davis,
  applying to the plugin. If no Copyright applies the
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugsc.c
Copyright: 1999, Sean Costello
  1999, Sean M. Costello
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugsc.h
Copyright: 1999, Sean M. Costello
License: LGPL-2.1+
 FIXME

Files: Opcodes/liveconv.c
Copyright: 2017, Sigurd Saue, Oeyvind Brandtsegg
License: LGPL-2.1+
 FIXME

Files: H/csound_orc.h
Copyright: 2007, 2017, Stee Yi ad John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/platerev.c
Copyright: 2006, Stefan Bilbao
License: LGPL-2.1+
 FIXME

Files: Opcodes/bilbar.c
Copyright: 2006, Stefan Bilbao and John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/pinker.c
Copyright: 2014, Stefan Stenzel
  2014, Stefan Stenzel, John ffitch
License: LGPL-2.1+
 FIXME

Files: H/csound_orc_semantics.h
Copyright: 2013, Steve Yi
License: LGPL-2.1+
 FIXME

Files: Top/threads.c
Copyright: 2007, The Csound #project
License: LGPL-2.1+
 FIXME

Files: README.md
Copyright: 1991-2020, The Csound Developers, see CONTRIBUTORS
License: LGPL-2.1+
 FIXME

Files: Opcodes/serial.c
Copyright: 2006, Tod E. Kurt, tod@todbot.com
  2011, matt ingalls
License: LGPL-2.1+
 FIXME

Files: util/std_util.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
License: LGPL-2.1+
 FIXME

Files: InOut/rtauhal.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
  2011, Victor Lazzarini
License: LGPL-2.1+
 FIXME

Files: util/hetro.c
Copyright: 1992, Tom Sullivan, Richard Dobson, John ffitch
License: LGPL-2.1+
 FIXME

Files: OOps/mxfft.c
Copyright: 2002, Trevor Wishart, Keith Henderson
License: LGPL-2.1+
 FIXME

Files: Top/threadsafe.c
Copyright: V Lazzarini, 2013
License: LGPL-2.1+
 FIXME

Files: Top/server.c
Copyright: 2013, V Lazzarini, John ffitch
License: LGPL-2.1+
 FIXME

Files: Opcodes/scoreline.c
Copyright: Victor Lazzarini, 2004,2008
License: LGPL-2.1+
 FIXME

Files: Opcodes/gab/stdopcod.h
Copyright: 2012, Victor Lazzarini, John ffitch
License: LGPL-2.1+
 FIXME

Files: Android/CsoundAndroid/jni/rtopensl.c
Copyright: 2011, Victor Lazzarini.
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugmoss.c
Copyright: 2001, William 'Pete' Moss
  algorithms.
License: LGPL-2.1+
 FIXME

Files: Opcodes/ugmoss.h
Copyright: 2001, Willian 'Pete' Moss
License: LGPL-2.1+
 FIXME

Files: Opcodes/Vosim.c
Copyright: 2008, rasmus ekman
  kform < 0: Table is read backward.
License: LGPL-2.1+
 FIXME

Files: Opcodes/squinewave.c
Copyright: 2017, rasmus ekman 2017
License: LGPL-2.1+
 FIXME

Files: OOps/schedule.c
Copyright: 1999, 2002, rasmus ekman, Istvan Varga,
License: LGPL-2.1+
 FIXME

Files: H/schedule.h
Copyright: 1999, 2002, rasmus ekman, Istvan Varga, John ffitch,
License: LGPL-2.1+
 FIXME

Files: installer/macosx/PkgResources/en.lproj/ReadMe.rtf
Copyright: 2009, -20, The Csound Team, http://csound.github.io
License: UNKNOWN
 FIXME

Files: po/french.po
Copyright: 2007-2016, John ffitch and Csound community
  court dans le fichier son de sortie"
  dans le fichier son de sortie (pas d'espaces)"
License: UNKNOWN
 FIXME

Files: Emscripten/examples/httpd.py
Copyright: 2012, The Chromium Authors.
License: UNKNOWN
 FIXME

Files: po/es_CO.po
Copyright: 2008, csound
License: UNKNOWN
 FIXME

Files: platform/vcpkg/ports/portaudio/portfile.cmake
Copyright: file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
License: UNKNOWN
 FIXME

Files: Release_Notes/Version_6.12.md
Copyright: issue.
License: UNKNOWN
 FIXME

Files: Release_Notes/Version_6.05
Copyright: option is available, with a fixed
License: UNKNOWN
 FIXME

Files: etc/ChangeLog
Copyright: terms] from Nicola
License: UNKNOWN
 FIXME

Files: samples/README
Copyright: 1994, the MIT Media Lab and is provided free with no restrictions on use, provided
License: UNKNOWN
 FIXME