summaryrefslogtreecommitdiffstats
path: root/audio/solfege/pkg-plist
blob: 6ed2e27833458fd604bfd12070b3fc701e1fd9f6 (plain)
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
bin/solfege
etc/solfege
man/man1/solfege.1.gz
share/applications/solfege.desktop
share/locale/cs/LC_MESSAGES/solfege.mo
share/locale/da/LC_MESSAGES/solfege.mo
share/locale/de/LC_MESSAGES/solfege.mo
share/locale/eo/LC_MESSAGES/solfege.mo
share/locale/es/LC_MESSAGES/solfege.mo
share/locale/et/LC_MESSAGES/solfege.mo
share/locale/fa/LC_MESSAGES/solfege.mo
share/locale/fi/LC_MESSAGES/solfege.mo
share/locale/fr/LC_MESSAGES/solfege.mo
share/locale/gl/LC_MESSAGES/solfege.mo
share/locale/hr/LC_MESSAGES/solfege.mo
share/locale/hu/LC_MESSAGES/solfege.mo
share/locale/it/LC_MESSAGES/solfege.mo
share/locale/nb/LC_MESSAGES/solfege.mo
share/locale/nl/LC_MESSAGES/solfege.mo
share/locale/pl/LC_MESSAGES/solfege.mo
share/locale/pt_BR/LC_MESSAGES/solfege.mo
share/locale/ru/LC_MESSAGES/solfege.mo
share/locale/sv/LC_MESSAGES/solfege.mo
share/locale/tr/LC_MESSAGES/solfege.mo
share/locale/vi/LC_MESSAGES/solfege.mo
share/locale/zh_CN/LC_MESSAGES/solfege.mo
share/pixmaps/solfege.svg
%%DATADIR%%/default.config
%%DATADIR%%/exercises/standard/csound-tree.txt
%%DATADIR%%/exercises/standard/debugtree.txt
%%DATADIR%%/exercises/standard/learningtree.txt
%%DATADIR%%/exercises/standard/lesson-files/altered-1
%%DATADIR%%/exercises/standard/lesson-files/altered-2
%%DATADIR%%/exercises/standard/lesson-files/barnesanger
%%DATADIR%%/exercises/standard/lesson-files/besifring
%%DATADIR%%/exercises/standard/lesson-files/bin/csound-play-harmonic-interval.sh
%%DATADIR%%/exercises/standard/lesson-files/bpm
%%DATADIR%%/exercises/standard/lesson-files/cadense-1
%%DATADIR%%/exercises/standard/lesson-files/chord-7-inv
%%DATADIR%%/exercises/standard/lesson-files/chord-7b9-maj79
%%DATADIR%%/exercises/standard/lesson-files/chord-all-root
%%DATADIR%%/exercises/standard/lesson-files/chord-dim-aug
%%DATADIR%%/exercises/standard/lesson-files/chord-dim-aug-min-major
%%DATADIR%%/exercises/standard/lesson-files/chord-m7-7
%%DATADIR%%/exercises/standard/lesson-files/chord-m7-7-inv
%%DATADIR%%/exercises/standard/lesson-files/chord-m7-7-maj7-m7b5-dim7
%%DATADIR%%/exercises/standard/lesson-files/chord-m9-9
%%DATADIR%%/exercises/standard/lesson-files/chord-m9-9-7b9-maj79
%%DATADIR%%/exercises/standard/lesson-files/chord-maj7-m7b5-dim7
%%DATADIR%%/exercises/standard/lesson-files/chord-min-major
%%DATADIR%%/exercises/standard/lesson-files/chord-min-major-7
%%DATADIR%%/exercises/standard/lesson-files/chord-min-major-close-open
%%DATADIR%%/exercises/standard/lesson-files/chord-min-major-inv
%%DATADIR%%/exercises/standard/lesson-files/chord-voicing-test
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-10
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-2
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-2-3
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-2-to-8
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-3
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-4-5
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-4-5-8
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-6
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-6-7
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-7
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-7-9
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-9
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-harmonic-tritonus-7
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-10
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-2
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-2-3
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-2-to-8
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-3
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-4-5
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-4-5-8
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-6
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-6-7
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-7
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-7-9
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-9
%%DATADIR%%/exercises/standard/lesson-files/compare-intervals-melodic-tritonus-7
%%DATADIR%%/exercises/standard/lesson-files/csound-fifth-0.97
%%DATADIR%%/exercises/standard/lesson-files/csound-fifth-0.98
%%DATADIR%%/exercises/standard/lesson-files/csound-fifth-0.99
%%DATADIR%%/exercises/standard/lesson-files/csound-fifth-0.995
%%DATADIR%%/exercises/standard/lesson-files/csound-fifth-0.996
%%DATADIR%%/exercises/standard/lesson-files/csound-fifth-0.997
%%DATADIR%%/exercises/standard/lesson-files/csound-fifth-0.998
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj10-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj2-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj3-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj6-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj7-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-maj9-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min10-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min2-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min3-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min6-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min7-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-min9-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p4-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p5-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-harmonic-p8-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj10-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj2-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj3-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj6-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj7-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-maj9-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min10-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min2-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min3-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min6-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min7-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-min9-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p4-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p5-8cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-10cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-15cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-20cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-30cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-40cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-5cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-6cent
%%DATADIR%%/exercises/standard/lesson-files/csound-intonation-p8-8cent
%%DATADIR%%/exercises/standard/lesson-files/diatonic-1
%%DATADIR%%/exercises/standard/lesson-files/diatonic-2
%%DATADIR%%/exercises/standard/lesson-files/fifth-small-pure-0.99
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-10
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-2
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-2-3
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-2-to-15
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-2-to-8
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-3
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-4-5
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-4-5-8
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-6
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-6-7
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-7
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-7-9
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-9
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-self-config
%%DATADIR%%/exercises/standard/lesson-files/harmonic-intervals-tritonus-7
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-1
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-2
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-3
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-4
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-5
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-6
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-triads
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-triads-difficult
%%DATADIR%%/exercises/standard/lesson-files/hear-tones-triads-easy
%%DATADIR%%/exercises/standard/lesson-files/id-tone
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-10
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-11
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-12
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-3
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-4
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-5
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-6
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-7
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-8
%%DATADIR%%/exercises/standard/lesson-files/id-tone-cde-9
%%DATADIR%%/exercises/standard/lesson-files/include/cadence-major
%%DATADIR%%/exercises/standard/lesson-files/include/cadence-minor
%%DATADIR%%/exercises/standard/lesson-files/include/interval-elements
%%DATADIR%%/exercises/standard/lesson-files/include/jazz-progression-elements
%%DATADIR%%/exercises/standard/lesson-files/include/mma-grooves
%%DATADIR%%/exercises/standard/lesson-files/include/progression-elements
%%DATADIR%%/exercises/standard/lesson-files/include/sc-master
%%DATADIR%%/exercises/standard/lesson-files/include/solfege-voicing.mma
%%DATADIR%%/exercises/standard/lesson-files/interval_in_key_maj
%%DATADIR%%/exercises/standard/lesson-files/interval_in_key_min
%%DATADIR%%/exercises/standard/lesson-files/jsb-inventions
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-10
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-2
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-2-3
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-2-to-15
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-2-to-8
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-3
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-4-5
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-4-5-8
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-6
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-6-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-7-9
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-9
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-10
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-2
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-2-3
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-2-to-15
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-2-to-8
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-3
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-4-5
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-4-5-8
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-6
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-6-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-7-9
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-9
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-down-tritonus-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-self-config
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-tritonus-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-10
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-2
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-2-3
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-2-to-15
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-2-to-8
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-3
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-4-5
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-4-5-8
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-6
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-6-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-7
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-7-9
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-9
%%DATADIR%%/exercises/standard/lesson-files/melodic-intervals-up-tritonus-7
%%DATADIR%%/exercises/standard/lesson-files/mma-1
%%DATADIR%%/exercises/standard/lesson-files/mma-2
%%DATADIR%%/exercises/standard/lesson-files/mma-3
%%DATADIR%%/exercises/standard/lesson-files/mma-4-C
%%DATADIR%%/exercises/standard/lesson-files/mma-4-harmonic-minor
%%DATADIR%%/exercises/standard/lesson-files/mma-4-natural-minor
%%DATADIR%%/exercises/standard/lesson-files/mma-7-C
%%DATADIR%%/exercises/standard/lesson-files/mma-7-harmonic-minor
%%DATADIR%%/exercises/standard/lesson-files/mma-7-natural-minor
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-1
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-2
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-fifths
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-fourths
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-octave
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-seconds
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-sevenths
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-sixths
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-thirds
%%DATADIR%%/exercises/standard/lesson-files/nameinterval-unison
%%DATADIR%%/exercises/standard/lesson-files/polish-folk-songs
%%DATADIR%%/exercises/standard/lesson-files/progression-1
%%DATADIR%%/exercises/standard/lesson-files/progression-2
%%DATADIR%%/exercises/standard/lesson-files/progression-atte
%%DATADIR%%/exercises/standard/lesson-files/progression-x
%%DATADIR%%/exercises/standard/lesson-files/rhythm-all
%%DATADIR%%/exercises/standard/lesson-files/rhythm-easy
%%DATADIR%%/exercises/standard/lesson-files/rhythm-mid
%%DATADIR%%/exercises/standard/lesson-files/rhythm-self-config-binary
%%DATADIR%%/exercises/standard/lesson-files/rhythm-self-config-ternary
%%DATADIR%%/exercises/standard/lesson-files/rhythm-ternary
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-1
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-gen-1
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-gen-2
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-gen-3_4-1
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-gen-3_4-2
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-gen-3_4-3
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-gen-6_8-1
%%DATADIR%%/exercises/standard/lesson-files/rhythmdict-gen-6_8-2
%%DATADIR%%/exercises/standard/lesson-files/rhythmtapping2-self-config-binary
%%DATADIR%%/exercises/standard/lesson-files/rhythmtapping2-self-config-ternary
%%DATADIR%%/exercises/standard/lesson-files/sc-6tones
%%DATADIR%%/exercises/standard/lesson-files/sc-8tones
%%DATADIR%%/exercises/standard/lesson-files/sc-beb
%%DATADIR%%/exercises/standard/lesson-files/sc-beb-a
%%DATADIR%%/exercises/standard/lesson-files/sc-beb-d
%%DATADIR%%/exercises/standard/lesson-files/sc-beb-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-beb-name
%%DATADIR%%/exercises/standard/lesson-files/sc-beb-s
%%DATADIR%%/exercises/standard/lesson-files/sc-church
%%DATADIR%%/exercises/standard/lesson-files/sc-dha
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-a
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-d
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-f
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-g
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-name
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-p
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-s
%%DATADIR%%/exercises/standard/lesson-files/sc-dha-t
%%DATADIR%%/exercises/standard/lesson-files/sc-dom
%%DATADIR%%/exercises/standard/lesson-files/sc-dom-jazz
%%DATADIR%%/exercises/standard/lesson-files/sc-east
%%DATADIR%%/exercises/standard/lesson-files/sc-greek
%%DATADIR%%/exercises/standard/lesson-files/sc-hal
%%DATADIR%%/exercises/standard/lesson-files/sc-hal-jazz
%%DATADIR%%/exercises/standard/lesson-files/sc-ham
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-a
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-d
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-f
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-g
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-name
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-p
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-s
%%DATADIR%%/exercises/standard/lesson-files/sc-ham-t
%%DATADIR%%/exercises/standard/lesson-files/sc-har
%%DATADIR%%/exercises/standard/lesson-files/sc-har-a
%%DATADIR%%/exercises/standard/lesson-files/sc-har-d
%%DATADIR%%/exercises/standard/lesson-files/sc-har-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-har-f
%%DATADIR%%/exercises/standard/lesson-files/sc-har-g
%%DATADIR%%/exercises/standard/lesson-files/sc-har-name
%%DATADIR%%/exercises/standard/lesson-files/sc-har-p
%%DATADIR%%/exercises/standard/lesson-files/sc-har-s
%%DATADIR%%/exercises/standard/lesson-files/sc-har-t
%%DATADIR%%/exercises/standard/lesson-files/sc-hum-g
%%DATADIR%%/exercises/standard/lesson-files/sc-hun
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-a
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-d
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-f
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-g
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-name
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-p
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-s
%%DATADIR%%/exercises/standard/lesson-files/sc-hun-t
%%DATADIR%%/exercises/standard/lesson-files/sc-maj
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-a
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-d
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-f
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-g
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-name
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-p
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-px
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-s
%%DATADIR%%/exercises/standard/lesson-files/sc-maj-t
%%DATADIR%%/exercises/standard/lesson-files/sc-mau
%%DATADIR%%/exercises/standard/lesson-files/sc-mau-jazz
%%DATADIR%%/exercises/standard/lesson-files/sc-mel
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-a
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-d
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-f
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-g
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-name
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-p
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-s
%%DATADIR%%/exercises/standard/lesson-files/sc-mel-t
%%DATADIR%%/exercises/standard/lesson-files/sc-min
%%DATADIR%%/exercises/standard/lesson-files/sc-min-jazz
%%DATADIR%%/exercises/standard/lesson-files/sc-nat-g
%%DATADIR%%/exercises/standard/lesson-files/sc-nea
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-a
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-d
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-f
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-g
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-name
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-p
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-s
%%DATADIR%%/exercises/standard/lesson-files/sc-nea-t
%%DATADIR%%/exercises/standard/lesson-files/sc-nem
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-a
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-d
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-f
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-g
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-name
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-p
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-s
%%DATADIR%%/exercises/standard/lesson-files/sc-nem-t
%%DATADIR%%/exercises/standard/lesson-files/sc-pen
%%DATADIR%%/exercises/standard/lesson-files/sc-pen-a
%%DATADIR%%/exercises/standard/lesson-files/sc-pen-d
%%DATADIR%%/exercises/standard/lesson-files/sc-pen-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-pen-g
%%DATADIR%%/exercises/standard/lesson-files/sc-pen-name
%%DATADIR%%/exercises/standard/lesson-files/sc-pen-s
%%DATADIR%%/exercises/standard/lesson-files/sc-plagal
%%DATADIR%%/exercises/standard/lesson-files/sc-sim
%%DATADIR%%/exercises/standard/lesson-files/sc-sim-a
%%DATADIR%%/exercises/standard/lesson-files/sc-sim-d
%%DATADIR%%/exercises/standard/lesson-files/sc-sim-elem
%%DATADIR%%/exercises/standard/lesson-files/sc-sim-name
%%DATADIR%%/exercises/standard/lesson-files/sc-sim-s
%%DATADIR%%/exercises/standard/lesson-files/share/fanfare.midi
%%DATADIR%%/exercises/standard/lesson-files/share/fanfare.mp3
%%DATADIR%%/exercises/standard/lesson-files/share/fanfare.ogg
%%DATADIR%%/exercises/standard/lesson-files/share/fanfare.wav
%%DATADIR%%/exercises/standard/lesson-files/share/fifth-pure-220.00.wav
%%DATADIR%%/exercises/standard/lesson-files/share/fifth-pure-247.5.wav
%%DATADIR%%/exercises/standard/lesson-files/share/fifth-pure-293.33.wav
%%DATADIR%%/exercises/standard/lesson-files/share/fifth-small-220.00.wav
%%DATADIR%%/exercises/standard/lesson-files/share/fifth-small-247.5.wav
%%DATADIR%%/exercises/standard/lesson-files/share/fifth-small-293.33.wav
%%DATADIR%%/exercises/standard/lesson-files/share/fil1.sco
%%DATADIR%%/exercises/standard/lesson-files/share/sinus-ad.orc
%%DATADIR%%/exercises/standard/lesson-files/share/sinus.orc
%%DATADIR%%/exercises/standard/lesson-files/sing-chord-tone
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-10
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-2
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-2-3
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-2-to-8
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-3
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-4-5
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-4-5-8
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-6
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-6-7
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-7
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-7-9
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-9
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-self-config
%%DATADIR%%/exercises/standard/lesson-files/sing-intervals-tritonus-7
%%DATADIR%%/exercises/standard/lesson-files/sing-the-fifth
%%DATADIR%%/exercises/standard/lesson-files/sing-the-root
%%DATADIR%%/exercises/standard/lesson-files/sing-the-seventh
%%DATADIR%%/exercises/standard/lesson-files/sing-the-seventh-inv
%%DATADIR%%/exercises/standard/lesson-files/sing-the-third
%%DATADIR%%/exercises/standard/lesson-files/singchord-1
%%DATADIR%%/exercises/standard/lesson-files/singchord-2
%%DATADIR%%/exercises/standard/lesson-files/singchord-3
%%DATADIR%%/exercises/standard/lesson-files/singchord-4
%%DATADIR%%/exercises/standard/lesson-files/singchord-5
%%DATADIR%%/exercises/standard/lesson-files/singchord-6
%%DATADIR%%/exercises/standard/lesson-files/singchord-all
%%DATADIR%%/exercises/standard/lesson-files/solfa-17
%%DATADIR%%/exercises/standard/lesson-files/solfa-17-C
%%DATADIR%%/exercises/standard/lesson-files/solfa-7
%%DATADIR%%/exercises/standard/lesson-files/solfa-7-C
%%DATADIR%%/exercises/standard/lesson-files/solmisation
%%DATADIR%%/exercises/standard/lesson-files/tapping-all
%%DATADIR%%/exercises/standard/lesson-files/tapping-easy
%%DATADIR%%/exercises/standard/lesson-files/tapping-mid
%%DATADIR%%/exercises/standard/lesson-files/three-prog-root
%%DATADIR%%/exercises/standard/lesson-files/tone-after-dominant
%%DATADIR%%/exercises/standard/lesson-files/toneincontext
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-major
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-major-cr
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-major-cr-f6
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-major-cr-l6
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-major-f4
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-major-l4
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-minor
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-minor-cr
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-minor-cr-f6
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-minor-cr-l6
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-minor-f4
%%DATADIR%%/exercises/standard/lesson-files/toneincontext-minor-l4
%%DATADIR%%/exercises/standard/lesson-files/tunertest
%%DATADIR%%/exercises/standard/lesson-files/twelvetone
%%DATADIR%%/exercises/standard/lesson-files/volkslieder1
%%DATADIR%%/exercises/standard/lesson-files/volkslieder2
%%DATADIR%%/exercises/standard/lib/jazz_progressions
%%DATADIR%%/exercises/standard/lib/progression_elements
%%DATADIR%%/exercises/standard/regression-lesson-files/chord-no-name
%%DATADIR%%/exercises/standard/regression-lesson-files/chord-wav-music
%%DATADIR%%/exercises/standard/regression-lesson-files/chordvoicing-lessonfile-exception
%%DATADIR%%/exercises/standard/regression-lesson-files/chordvoicing-mpd-exception
%%DATADIR%%/exercises/standard/regression-lesson-files/compareintervals-1
%%DATADIR%%/exercises/standard/regression-lesson-files/compareintervals-2
%%DATADIR%%/exercises/standard/regression-lesson-files/compareintervals-3
%%DATADIR%%/exercises/standard/regression-lesson-files/compareintervals-4
%%DATADIR%%/exercises/standard/regression-lesson-files/dictation-exception-handling
%%DATADIR%%/exercises/standard/regression-lesson-files/dictation-no-questions
%%DATADIR%%/exercises/standard/regression-lesson-files/elembuilder-bad-tonic
%%DATADIR%%/exercises/standard/regression-lesson-files/elembuilder-scale-1
%%DATADIR%%/exercises/standard/regression-lesson-files/elembuilder-scale-2
%%DATADIR%%/exercises/standard/regression-lesson-files/elembuilder-scale-3
%%DATADIR%%/exercises/standard/regression-lesson-files/elembuilder-scale-4
%%DATADIR%%/exercises/standard/regression-lesson-files/elembuilder-scale-5
%%DATADIR%%/exercises/standard/regression-lesson-files/harmonicprogression-lessonfile-exception
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-assignment-to-reserved-word
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-at_question_start-1
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-at_question_start-2
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-at_question_start-3
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-bad-cuemusic
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-mediafiles
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-missing-.wav-file
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-noquestionsinfile
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-syntax-error-1
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-syntax-error-2
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-unsupported-named-block
%%DATADIR%%/exercises/standard/regression-lesson-files/idbyname-vmusic
%%DATADIR%%/exercises/standard/regression-lesson-files/idproperty-1
%%DATADIR%%/exercises/standard/regression-lesson-files/idproperty-2
%%DATADIR%%/exercises/standard/regression-lesson-files/idproperty-3
%%DATADIR%%/exercises/standard/regression-lesson-files/idproperty-4
%%DATADIR%%/exercises/standard/regression-lesson-files/nameinterval-bad-tones-header-var
%%DATADIR%%/exercises/standard/regression-lesson-files/nameinterval-constraints
%%DATADIR%%/exercises/standard/regression-lesson-files/rhythmtapping-1
%%DATADIR%%/exercises/standard/regression-lesson-files/rhythmtapping-2
%%DATADIR%%/exercises/standard/regression-lesson-files/rhythmtapping-3
%%DATADIR%%/exercises/standard/regression-lesson-files/rhythmtapping-4
%%DATADIR%%/exercises/standard/regression-lesson-files/rhythmtapping-bad-mpd-code
%%DATADIR%%/exercises/standard/regression-lesson-files/rhythmtapping2-1
%%DATADIR%%/exercises/standard/regression-lesson-files/rvoice
%%DATADIR%%/exercises/standard/regression-lesson-files/singanswer-bad-mpd-code
%%DATADIR%%/exercises/standard/regression-lesson-files/singanswer-missing-.wav-file
%%DATADIR%%/exercises/standard/regression-lesson-files/singanswer-missing-question_text
%%DATADIR%%/exercises/standard/regression-lesson-files/transpose-accidentals
%%DATADIR%%/exercises/standard/regression-lesson-files/transpose-key
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-chord-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-chordvoicing-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-dictation-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-elembuilder-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-harmonicprogressiondictation-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-idbyname-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-idproperty-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-rhythmtapping-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-singanswer-exceptions
%%DATADIR%%/exercises/standard/regression-lesson-files/xx-singchord-exceptions
%%DATADIR%%/feta/feta20-accidentals--1.xpm
%%DATADIR%%/feta/feta20-accidentals--2.xpm
%%DATADIR%%/feta/feta20-accidentals-0.xpm
%%DATADIR%%/feta/feta20-accidentals-1.xpm
%%DATADIR%%/feta/feta20-accidentals-2.xpm
%%DATADIR%%/feta/feta20-clefs-C.xpm
%%DATADIR%%/feta/feta20-clefs-F.xpm
%%DATADIR%%/feta/feta20-clefs-G.xpm
%%DATADIR%%/feta/feta20-dots-dot.xpm
%%DATADIR%%/feta/feta20-flags-d3.xpm
%%DATADIR%%/feta/feta20-flags-d4.xpm
%%DATADIR%%/feta/feta20-flags-d5.xpm
%%DATADIR%%/feta/feta20-flags-d6.xpm
%%DATADIR%%/feta/feta20-flags-u3.xpm
%%DATADIR%%/feta/feta20-flags-u4.xpm
%%DATADIR%%/feta/feta20-flags-u5.xpm
%%DATADIR%%/feta/feta20-flags-u6.xpm
%%DATADIR%%/feta/feta20-noteheads-0.xpm
%%DATADIR%%/feta/feta20-noteheads-1.xpm
%%DATADIR%%/feta/feta20-noteheads-2.xpm
%%DATADIR%%/feta/feta20-number-0.xpm
%%DATADIR%%/feta/feta20-number-1.xpm
%%DATADIR%%/feta/feta20-number-2.xpm
%%DATADIR%%/feta/feta20-number-3.xpm
%%DATADIR%%/feta/feta20-number-4.xpm
%%DATADIR%%/feta/feta20-number-5.xpm
%%DATADIR%%/feta/feta20-number-6.xpm
%%DATADIR%%/feta/feta20-number-7.xpm
%%DATADIR%%/feta/feta20-number-8.xpm
%%DATADIR%%/feta/feta20-number-9.xpm
%%DATADIR%%/feta/feta20-rests--1.xpm
%%DATADIR%%/feta/feta20-rests--2.xpm
%%DATADIR%%/feta/feta20-rests--4.xpm
%%DATADIR%%/feta/feta20-rests-0.xpm
%%DATADIR%%/feta/feta20-rests-0o.xpm
%%DATADIR%%/feta/feta20-rests-1.xpm
%%DATADIR%%/feta/feta20-rests-1o.xpm
%%DATADIR%%/feta/feta20-rests-2.xpm
%%DATADIR%%/feta/feta20-rests-3.xpm
%%DATADIR%%/feta/feta20-rests-4.xpm
%%DATADIR%%/feta/feta20-rests-5.xpm
%%DATADIR%%/feta/feta20-rests-6.xpm
%%DATADIR%%/feta/feta20-rests-7.xpm
%%DATADIR%%/graphics/add-dot.svg
%%DATADIR%%/graphics/applications-system.svg
%%DATADIR%%/graphics/dot-mode.svg
%%DATADIR%%/graphics/double-flat.svg
%%DATADIR%%/graphics/double-sharp.svg
%%DATADIR%%/graphics/erase.svg
%%DATADIR%%/graphics/flat.svg
%%DATADIR%%/graphics/happyface.png
%%DATADIR%%/graphics/holder.png
%%DATADIR%%/graphics/identify-bpm.png
%%DATADIR%%/graphics/identify-chord.png
%%DATADIR%%/graphics/image-not-found.png
%%DATADIR%%/graphics/natural.svg
%%DATADIR%%/graphics/note-1.svg
%%DATADIR%%/graphics/note-16.svg
%%DATADIR%%/graphics/note-2.svg
%%DATADIR%%/graphics/note-32.svg
%%DATADIR%%/graphics/note-4.svg
%%DATADIR%%/graphics/note-8.svg
%%DATADIR%%/graphics/notehead.svg
%%DATADIR%%/graphics/remove-dot.svg
%%DATADIR%%/graphics/rest-1.svg
%%DATADIR%%/graphics/rest-16.svg
%%DATADIR%%/graphics/rest-2.svg
%%DATADIR%%/graphics/rest-32.svg
%%DATADIR%%/graphics/rest-4.svg
%%DATADIR%%/graphics/rest-8.svg
%%DATADIR%%/graphics/rhythm-c12c12c12.png
%%DATADIR%%/graphics/rhythm-c12c12r12.png
%%DATADIR%%/graphics/rhythm-c12r12c12.png
%%DATADIR%%/graphics/rhythm-c16c16c16c16.png
%%DATADIR%%/graphics/rhythm-c16c16c16c16c16c16.png
%%DATADIR%%/graphics/rhythm-c16c16c16c16c8.png
%%DATADIR%%/graphics/rhythm-c16c16c4.png
%%DATADIR%%/graphics/rhythm-c16c16c8.png
%%DATADIR%%/graphics/rhythm-c16c16c8c16c16.png
%%DATADIR%%/graphics/rhythm-c16c16c8c8.png
%%DATADIR%%/graphics/rhythm-c16c8..png
%%DATADIR%%/graphics/rhythm-c16c8c16.png
%%DATADIR%%/graphics/rhythm-c4..png
%%DATADIR%%/graphics/rhythm-c4.png
%%DATADIR%%/graphics/rhythm-c4c16c16.png
%%DATADIR%%/graphics/rhythm-c4c8.png
%%DATADIR%%/graphics/rhythm-c8.c16.png
%%DATADIR%%/graphics/rhythm-c8c16c16.png
%%DATADIR%%/graphics/rhythm-c8c16c16c16c16.png
%%DATADIR%%/graphics/rhythm-c8c16c16c8.png
%%DATADIR%%/graphics/rhythm-c8c4.png
%%DATADIR%%/graphics/rhythm-c8c8.png
%%DATADIR%%/graphics/rhythm-c8c8c16c16.png
%%DATADIR%%/graphics/rhythm-c8c8c8.png
%%DATADIR%%/graphics/rhythm-r12c12c12.png
%%DATADIR%%/graphics/rhythm-r12c12r12.png
%%DATADIR%%/graphics/rhythm-r12r12c12.png
%%DATADIR%%/graphics/rhythm-r16c16c16c16.png
%%DATADIR%%/graphics/rhythm-r16c16c8.png
%%DATADIR%%/graphics/rhythm-r16c8..png
%%DATADIR%%/graphics/rhythm-r16c8c16.png
%%DATADIR%%/graphics/rhythm-r4.png
%%DATADIR%%/graphics/rhythm-r8c16c16.png
%%DATADIR%%/graphics/rhythm-r8c8.png
%%DATADIR%%/graphics/rhythm-r8r16c16.png
%%DATADIR%%/graphics/rhythm-wrong.png
%%DATADIR%%/graphics/sadface.png
%%DATADIR%%/graphics/sharp.svg
%%DATADIR%%/graphics/solfege.svg
%%DATADIR%%/graphics/solfege.xpm
%%DATADIR%%/graphics/test-sound.png
%%DATADIR%%/graphics/tie.svg
%%DATADIR%%/help-menu.xml
%%DATADIR%%/help/C/about-statistics.html
%%DATADIR%%/help/C/bug-reporting.html
%%DATADIR%%/help/C/chordvoicing-module.html
%%DATADIR%%/help/C/compareintervals-module.html
%%DATADIR%%/help/C/dictation-module.html
%%DATADIR%%/help/C/dictation.html
%%DATADIR%%/help/C/ear-training-test-printout-editor.html
%%DATADIR%%/help/C/elembuilder-module.html
%%DATADIR%%/help/C/elembuilder.html
%%DATADIR%%/help/C/extending-solfege.html
%%DATADIR%%/help/C/figures/chord.png
%%DATADIR%%/help/C/figures/chordname-example.png
%%DATADIR%%/help/C/figures/dictation.png
%%DATADIR%%/help/C/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/C/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/C/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/C/figures/id-interval-piano.png
%%DATADIR%%/help/C/figures/idbyname-chords.png
%%DATADIR%%/help/C/figures/idbyname-intonation.png
%%DATADIR%%/help/C/figures/identifybpm.png
%%DATADIR%%/help/C/figures/idtone.png
%%DATADIR%%/help/C/figures/melodicinterval-buttons.png
%%DATADIR%%/help/C/figures/nameinterval.png
%%DATADIR%%/help/C/figures/preferences-external-programs.png
%%DATADIR%%/help/C/figures/preferences-gui-idtone.png
%%DATADIR%%/help/C/figures/preferences-gui-interval.png
%%DATADIR%%/help/C/figures/preferences-gui.png
%%DATADIR%%/help/C/figures/preferences-midi.png
%%DATADIR%%/help/C/figures/preferences-practise.png
%%DATADIR%%/help/C/figures/preferences-sound-setup-win32.png
%%DATADIR%%/help/C/figures/preferences-sound-setup.png
%%DATADIR%%/help/C/figures/preferences-statistics.png
%%DATADIR%%/help/C/figures/preferences-user.png
%%DATADIR%%/help/C/figures/profile-manager.png
%%DATADIR%%/help/C/figures/progressionlabel-example-1.png
%%DATADIR%%/help/C/figures/rhythm.png
%%DATADIR%%/help/C/figures/rhythmtapping2.png
%%DATADIR%%/help/C/figures/rnc-example.png
%%DATADIR%%/help/C/figures/singchord.png
%%DATADIR%%/help/C/figures/singinterval.png
%%DATADIR%%/help/C/figures/statistics.png
%%DATADIR%%/help/C/figures/toneinkey.png
%%DATADIR%%/help/C/figures/trainingset-editor.png
%%DATADIR%%/help/C/figures/twelvetone.png
%%DATADIR%%/help/C/gpl.html
%%DATADIR%%/help/C/harmonicinterval-module.html
%%DATADIR%%/help/C/harmonicinterval.html
%%DATADIR%%/help/C/idbyname-cadences.html
%%DATADIR%%/help/C/idbyname-chords.html
%%DATADIR%%/help/C/idbyname-intonation.html
%%DATADIR%%/help/C/idbyname-module.html
%%DATADIR%%/help/C/idbyname.html
%%DATADIR%%/help/C/identifybpm-module.html
%%DATADIR%%/help/C/identifybpm.html
%%DATADIR%%/help/C/idproperty-module.html
%%DATADIR%%/help/C/idproperty.html
%%DATADIR%%/help/C/idtone-module.html
%%DATADIR%%/help/C/idtone.html
%%DATADIR%%/help/C/index.html
%%DATADIR%%/help/C/inverting-intervals.html
%%DATADIR%%/help/C/lesson-file-locations-details.html
%%DATADIR%%/help/C/lesson-files.html
%%DATADIR%%/help/C/ly/inverting-intervals.png
%%DATADIR%%/help/C/ly/theory-intervals-1.png
%%DATADIR%%/help/C/ly/theory-intervals-fifths-1.png
%%DATADIR%%/help/C/ly/theory-intervals-fifths-2.png
%%DATADIR%%/help/C/ly/theory-intervals-fifths.png
%%DATADIR%%/help/C/ly/theory-intervals-fourths.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds-1.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds-2.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds-3.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds.png
%%DATADIR%%/help/C/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/C/ly/theory-intervals-sixths.png
%%DATADIR%%/help/C/ly/theory-intervals-thirds.png
%%DATADIR%%/help/C/melodicinterval-module.html
%%DATADIR%%/help/C/melodicinterval.html
%%DATADIR%%/help/C/midi-instrument-names.html
%%DATADIR%%/help/C/mpd-module.html
%%DATADIR%%/help/C/music-theory.html
%%DATADIR%%/help/C/nameinterval-module.html
%%DATADIR%%/help/C/nameinterval.html
%%DATADIR%%/help/C/online-resources.html
%%DATADIR%%/help/C/preferences-window.html
%%DATADIR%%/help/C/profile-manager.html
%%DATADIR%%/help/C/rhythm-module.html
%%DATADIR%%/help/C/rhythm.html
%%DATADIR%%/help/C/rhythmdictation-module.html
%%DATADIR%%/help/C/rhythmdictation2-module.html
%%DATADIR%%/help/C/rhythmtapping-module.html
%%DATADIR%%/help/C/rhythmtapping2-module.html
%%DATADIR%%/help/C/rhythmtapping2.html
%%DATADIR%%/help/C/scales.html
%%DATADIR%%/help/C/scales/aug.html
%%DATADIR%%/help/C/scales/beb.html
%%DATADIR%%/help/C/scales/blu.html
%%DATADIR%%/help/C/scales/dha.html
%%DATADIR%%/help/C/scales/dim.html
%%DATADIR%%/help/C/scales/ham.html
%%DATADIR%%/help/C/scales/har.html
%%DATADIR%%/help/C/scales/hun.html
%%DATADIR%%/help/C/scales/images/modes/chords/dha1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dim2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham3c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham7c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har7c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj7c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel7c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea6c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea7c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/who1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1d.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1db.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2cd.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2dd.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/blu1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha2db.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha3c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim1d.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim1db.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim2cd.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/eni1c-d.png
%%DATADIR%%/help/C/scales/images/modes/scales/eni1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham3c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/har3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/har4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/har5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/har6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/har6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/har7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun2c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun2dd.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun4c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun4fd.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun7bb.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel1c-d.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea2db.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea6c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem2db.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen4g.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen5a.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/who1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/who1c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/who1db.png
%%DATADIR%%/help/C/scales/images/quadriads/c7+5.png
%%DATADIR%%/help/C/scales/images/quadriads/c7-5.png
%%DATADIR%%/help/C/scales/images/quadriads/c7.png
%%DATADIR%%/help/C/scales/images/quadriads/c^+5.png
%%DATADIR%%/help/C/scales/images/quadriads/c^-5.png
%%DATADIR%%/help/C/scales/images/quadriads/c^.png
%%DATADIR%%/help/C/scales/images/quadriads/cdim.png
%%DATADIR%%/help/C/scales/images/quadriads/cm7+5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm7-5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm7.png
%%DATADIR%%/help/C/scales/images/quadriads/cm^+5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm^-5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm^.png
%%DATADIR%%/help/C/scales/images/triads/abau.png
%%DATADIR%%/help/C/scales/images/triads/cau.png
%%DATADIR%%/help/C/scales/images/triads/cau1.png
%%DATADIR%%/help/C/scales/images/triads/cau1o.png
%%DATADIR%%/help/C/scales/images/triads/cau2.png
%%DATADIR%%/help/C/scales/images/triads/cau2o.png
%%DATADIR%%/help/C/scales/images/triads/cauo.png
%%DATADIR%%/help/C/scales/images/triads/cdi-fs8.png
%%DATADIR%%/help/C/scales/images/triads/cdi.png
%%DATADIR%%/help/C/scales/images/triads/cdi1.png
%%DATADIR%%/help/C/scales/images/triads/cdi1o.png
%%DATADIR%%/help/C/scales/images/triads/cdi2.png
%%DATADIR%%/help/C/scales/images/triads/cdi2o.png
%%DATADIR%%/help/C/scales/images/triads/cdio.png
%%DATADIR%%/help/C/scales/images/triads/cma.png
%%DATADIR%%/help/C/scales/images/triads/cma1.png
%%DATADIR%%/help/C/scales/images/triads/cma1o.png
%%DATADIR%%/help/C/scales/images/triads/cma2.png
%%DATADIR%%/help/C/scales/images/triads/cma2o.png
%%DATADIR%%/help/C/scales/images/triads/cmao.png
%%DATADIR%%/help/C/scales/images/triads/cmi.png
%%DATADIR%%/help/C/scales/images/triads/cmi1.png
%%DATADIR%%/help/C/scales/images/triads/cmi1o.png
%%DATADIR%%/help/C/scales/images/triads/cmi2.png
%%DATADIR%%/help/C/scales/images/triads/cmi2o.png
%%DATADIR%%/help/C/scales/images/triads/cmio.png
%%DATADIR%%/help/C/scales/images/triads/dau.png
%%DATADIR%%/help/C/scales/images/triads/dbau.png
%%DATADIR%%/help/C/scales/images/triads/eau.png
%%DATADIR%%/help/C/scales/images/triads/ebau.png
%%DATADIR%%/help/C/scales/maj.html
%%DATADIR%%/help/C/scales/mel.html
%%DATADIR%%/help/C/scales/modes.html
%%DATADIR%%/help/C/scales/nea.html
%%DATADIR%%/help/C/scales/nem.html
%%DATADIR%%/help/C/scales/pen.html
%%DATADIR%%/help/C/scales/sim.html
%%DATADIR%%/help/C/scales/who.html
%%DATADIR%%/help/C/selecting-exercises.html
%%DATADIR%%/help/C/singanswer-module.html
%%DATADIR%%/help/C/singchord-module.html
%%DATADIR%%/help/C/singchord.html
%%DATADIR%%/help/C/singinterval-module.html
%%DATADIR%%/help/C/singinterval.html
%%DATADIR%%/help/C/solfege-exercise-helps.html
%%DATADIR%%/help/C/solfege-intro.html
%%DATADIR%%/help/C/theory-intervals.html
%%DATADIR%%/help/C/tone-in-context.html
%%DATADIR%%/help/C/toneincontext-module.html
%%DATADIR%%/help/C/trainingset-editor.html
%%DATADIR%%/help/C/twelvetone-module.html
%%DATADIR%%/help/C/twelvetone.html
%%DATADIR%%/help/C/user-modules.html
%%DATADIR%%/help/de/about-statistics.html
%%DATADIR%%/help/de/bug-reporting.html
%%DATADIR%%/help/de/chordvoicing-module.html
%%DATADIR%%/help/de/compareintervals-module.html
%%DATADIR%%/help/de/dictation-module.html
%%DATADIR%%/help/de/dictation.html
%%DATADIR%%/help/de/ear-training-test-printout-editor.html
%%DATADIR%%/help/de/elembuilder-module.html
%%DATADIR%%/help/de/elembuilder.html
%%DATADIR%%/help/de/extending-solfege.html
%%DATADIR%%/help/de/gpl.html
%%DATADIR%%/help/de/harmonicinterval-module.html
%%DATADIR%%/help/de/harmonicinterval.html
%%DATADIR%%/help/de/idbyname-cadences.html
%%DATADIR%%/help/de/idbyname-chords.html
%%DATADIR%%/help/de/idbyname-intonation.html
%%DATADIR%%/help/de/idbyname-module.html
%%DATADIR%%/help/de/idbyname.html
%%DATADIR%%/help/de/identifybpm-module.html
%%DATADIR%%/help/de/identifybpm.html
%%DATADIR%%/help/de/idproperty-module.html
%%DATADIR%%/help/de/idproperty.html
%%DATADIR%%/help/de/idtone-module.html
%%DATADIR%%/help/de/idtone.html
%%DATADIR%%/help/de/index.html
%%DATADIR%%/help/de/inverting-intervals.html
%%DATADIR%%/help/de/lesson-file-locations-details.html
%%DATADIR%%/help/de/lesson-files.html
%%DATADIR%%/help/de/ly/inverting-intervals.png
%%DATADIR%%/help/de/ly/theory-intervals-1.png
%%DATADIR%%/help/de/ly/theory-intervals-fifths.png
%%DATADIR%%/help/de/ly/theory-intervals-fourths.png
%%DATADIR%%/help/de/ly/theory-intervals-seconds.png
%%DATADIR%%/help/de/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/de/ly/theory-intervals-sixths.png
%%DATADIR%%/help/de/ly/theory-intervals-thirds.png
%%DATADIR%%/help/de/melodicinterval-module.html
%%DATADIR%%/help/de/melodicinterval.html
%%DATADIR%%/help/de/midi-instrument-names.html
%%DATADIR%%/help/de/mpd-module.html
%%DATADIR%%/help/de/music-theory.html
%%DATADIR%%/help/de/nameinterval-module.html
%%DATADIR%%/help/de/nameinterval.html
%%DATADIR%%/help/de/online-resources.html
%%DATADIR%%/help/de/preferences-window.html
%%DATADIR%%/help/de/profile-manager.html
%%DATADIR%%/help/de/rhythm-module.html
%%DATADIR%%/help/de/rhythm.html
%%DATADIR%%/help/de/rhythmdictation-module.html
%%DATADIR%%/help/de/rhythmdictation2-module.html
%%DATADIR%%/help/de/rhythmtapping-module.html
%%DATADIR%%/help/de/rhythmtapping2-module.html
%%DATADIR%%/help/de/rhythmtapping2.html
%%DATADIR%%/help/de/scales.html
%%DATADIR%%/help/de/selecting-exercises.html
%%DATADIR%%/help/de/singanswer-module.html
%%DATADIR%%/help/de/singchord-module.html
%%DATADIR%%/help/de/singchord.html
%%DATADIR%%/help/de/singinterval-module.html
%%DATADIR%%/help/de/singinterval.html
%%DATADIR%%/help/de/solfege-exercise-helps.html
%%DATADIR%%/help/de/solfege-intro.html
%%DATADIR%%/help/de/theory-intervals.html
%%DATADIR%%/help/de/tone-in-context.html
%%DATADIR%%/help/de/toneincontext-module.html
%%DATADIR%%/help/de/trainingset-editor.html
%%DATADIR%%/help/de/twelvetone-module.html
%%DATADIR%%/help/de/twelvetone.html
%%DATADIR%%/help/de/user-modules.html
%%DATADIR%%/help/eo/about-statistics.html
%%DATADIR%%/help/eo/bug-reporting.html
%%DATADIR%%/help/eo/chordvoicing-module.html
%%DATADIR%%/help/eo/compareintervals-module.html
%%DATADIR%%/help/eo/dictation-module.html
%%DATADIR%%/help/eo/dictation.html
%%DATADIR%%/help/eo/ear-training-test-printout-editor.html
%%DATADIR%%/help/eo/elembuilder-module.html
%%DATADIR%%/help/eo/elembuilder.html
%%DATADIR%%/help/eo/extending-solfege.html
%%DATADIR%%/help/eo/figures/chord.png
%%DATADIR%%/help/eo/figures/dictation.png
%%DATADIR%%/help/eo/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/eo/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/eo/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/eo/figures/id-interval-piano.png
%%DATADIR%%/help/eo/figures/idbyname-chords.png
%%DATADIR%%/help/eo/figures/idbyname-intonation.png
%%DATADIR%%/help/eo/figures/identifybpm.png
%%DATADIR%%/help/eo/figures/idtone.png
%%DATADIR%%/help/eo/figures/melodicinterval-buttons.png
%%DATADIR%%/help/eo/figures/nameinterval.png
%%DATADIR%%/help/eo/figures/preferences-external-programs.png
%%DATADIR%%/help/eo/figures/preferences-gui-idtone.png
%%DATADIR%%/help/eo/figures/preferences-gui-interval.png
%%DATADIR%%/help/eo/figures/preferences-gui.png
%%DATADIR%%/help/eo/figures/preferences-midi.png
%%DATADIR%%/help/eo/figures/preferences-practise.png
%%DATADIR%%/help/eo/figures/preferences-sound-setup.png
%%DATADIR%%/help/eo/figures/preferences-statistics.png
%%DATADIR%%/help/eo/figures/preferences-user.png
%%DATADIR%%/help/eo/figures/profile-manager.png
%%DATADIR%%/help/eo/figures/rhythm.png
%%DATADIR%%/help/eo/figures/rhythmtapping2.png
%%DATADIR%%/help/eo/figures/singchord.png
%%DATADIR%%/help/eo/figures/singinterval.png
%%DATADIR%%/help/eo/figures/statistics.png
%%DATADIR%%/help/eo/figures/trainingset-editor.png
%%DATADIR%%/help/eo/figures/twelvetone.png
%%DATADIR%%/help/eo/gpl.html
%%DATADIR%%/help/eo/harmonicinterval-module.html
%%DATADIR%%/help/eo/harmonicinterval.html
%%DATADIR%%/help/eo/idbyname-cadences.html
%%DATADIR%%/help/eo/idbyname-chords.html
%%DATADIR%%/help/eo/idbyname-intonation.html
%%DATADIR%%/help/eo/idbyname-module.html
%%DATADIR%%/help/eo/idbyname.html
%%DATADIR%%/help/eo/identifybpm-module.html
%%DATADIR%%/help/eo/identifybpm.html
%%DATADIR%%/help/eo/idproperty-module.html
%%DATADIR%%/help/eo/idproperty.html
%%DATADIR%%/help/eo/idtone-module.html
%%DATADIR%%/help/eo/idtone.html
%%DATADIR%%/help/eo/index.html
%%DATADIR%%/help/eo/inverting-intervals.html
%%DATADIR%%/help/eo/lesson-file-locations-details.html
%%DATADIR%%/help/eo/lesson-files.html
%%DATADIR%%/help/eo/ly/inverting-intervals.png
%%DATADIR%%/help/eo/ly/theory-intervals-1.png
%%DATADIR%%/help/eo/ly/theory-intervals-fifths.png
%%DATADIR%%/help/eo/ly/theory-intervals-fourths.png
%%DATADIR%%/help/eo/ly/theory-intervals-seconds.png
%%DATADIR%%/help/eo/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/eo/ly/theory-intervals-sixths.png
%%DATADIR%%/help/eo/ly/theory-intervals-thirds.png
%%DATADIR%%/help/eo/melodicinterval-module.html
%%DATADIR%%/help/eo/melodicinterval.html
%%DATADIR%%/help/eo/midi-instrument-names.html
%%DATADIR%%/help/eo/mpd-module.html
%%DATADIR%%/help/eo/music-theory.html
%%DATADIR%%/help/eo/nameinterval-module.html
%%DATADIR%%/help/eo/nameinterval.html
%%DATADIR%%/help/eo/online-resources.html
%%DATADIR%%/help/eo/preferences-window.html
%%DATADIR%%/help/eo/profile-manager.html
%%DATADIR%%/help/eo/rhythm-module.html
%%DATADIR%%/help/eo/rhythm.html
%%DATADIR%%/help/eo/rhythmdictation-module.html
%%DATADIR%%/help/eo/rhythmdictation2-module.html
%%DATADIR%%/help/eo/rhythmtapping-module.html
%%DATADIR%%/help/eo/rhythmtapping2-module.html
%%DATADIR%%/help/eo/rhythmtapping2.html
%%DATADIR%%/help/eo/scales.html
%%DATADIR%%/help/eo/selecting-exercises.html
%%DATADIR%%/help/eo/singanswer-module.html
%%DATADIR%%/help/eo/singchord-module.html
%%DATADIR%%/help/eo/singchord.html
%%DATADIR%%/help/eo/singinterval-module.html
%%DATADIR%%/help/eo/singinterval.html
%%DATADIR%%/help/eo/solfege-exercise-helps.html
%%DATADIR%%/help/eo/solfege-intro.html
%%DATADIR%%/help/eo/theory-intervals.html
%%DATADIR%%/help/eo/tone-in-context.html
%%DATADIR%%/help/eo/toneincontext-module.html
%%DATADIR%%/help/eo/trainingset-editor.html
%%DATADIR%%/help/eo/twelvetone-module.html
%%DATADIR%%/help/eo/twelvetone.html
%%DATADIR%%/help/eo/user-modules.html
%%DATADIR%%/help/es/about-statistics.html
%%DATADIR%%/help/es/bug-reporting.html
%%DATADIR%%/help/es/chordvoicing-module.html
%%DATADIR%%/help/es/compareintervals-module.html
%%DATADIR%%/help/es/dictation-module.html
%%DATADIR%%/help/es/dictation.html
%%DATADIR%%/help/es/ear-training-test-printout-editor.html
%%DATADIR%%/help/es/elembuilder-module.html
%%DATADIR%%/help/es/elembuilder.html
%%DATADIR%%/help/es/extending-solfege.html
%%DATADIR%%/help/es/gpl.html
%%DATADIR%%/help/es/harmonicinterval-module.html
%%DATADIR%%/help/es/harmonicinterval.html
%%DATADIR%%/help/es/idbyname-cadences.html
%%DATADIR%%/help/es/idbyname-chords.html
%%DATADIR%%/help/es/idbyname-intonation.html
%%DATADIR%%/help/es/idbyname-module.html
%%DATADIR%%/help/es/idbyname.html
%%DATADIR%%/help/es/identifybpm-module.html
%%DATADIR%%/help/es/identifybpm.html
%%DATADIR%%/help/es/idproperty-module.html
%%DATADIR%%/help/es/idproperty.html
%%DATADIR%%/help/es/idtone-module.html
%%DATADIR%%/help/es/idtone.html
%%DATADIR%%/help/es/index.html
%%DATADIR%%/help/es/inverting-intervals.html
%%DATADIR%%/help/es/lesson-file-locations-details.html
%%DATADIR%%/help/es/lesson-files.html
%%DATADIR%%/help/es/ly/inverting-intervals.png
%%DATADIR%%/help/es/ly/theory-intervals-1.png
%%DATADIR%%/help/es/ly/theory-intervals-fifths.png
%%DATADIR%%/help/es/ly/theory-intervals-fourths.png
%%DATADIR%%/help/es/ly/theory-intervals-seconds.png
%%DATADIR%%/help/es/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/es/ly/theory-intervals-sixths.png
%%DATADIR%%/help/es/ly/theory-intervals-thirds.png
%%DATADIR%%/help/es/melodicinterval-module.html
%%DATADIR%%/help/es/melodicinterval.html
%%DATADIR%%/help/es/midi-instrument-names.html
%%DATADIR%%/help/es/mpd-module.html
%%DATADIR%%/help/es/music-theory.html
%%DATADIR%%/help/es/nameinterval-module.html
%%DATADIR%%/help/es/nameinterval.html
%%DATADIR%%/help/es/online-resources.html
%%DATADIR%%/help/es/preferences-window.html
%%DATADIR%%/help/es/profile-manager.html
%%DATADIR%%/help/es/rhythm-module.html
%%DATADIR%%/help/es/rhythm.html
%%DATADIR%%/help/es/rhythmdictation-module.html
%%DATADIR%%/help/es/rhythmdictation2-module.html
%%DATADIR%%/help/es/rhythmtapping-module.html
%%DATADIR%%/help/es/rhythmtapping2-module.html
%%DATADIR%%/help/es/rhythmtapping2.html
%%DATADIR%%/help/es/scales.html
%%DATADIR%%/help/es/selecting-exercises.html
%%DATADIR%%/help/es/singanswer-module.html
%%DATADIR%%/help/es/singchord-module.html
%%DATADIR%%/help/es/singchord.html
%%DATADIR%%/help/es/singinterval-module.html
%%DATADIR%%/help/es/singinterval.html
%%DATADIR%%/help/es/solfege-exercise-helps.html
%%DATADIR%%/help/es/solfege-intro.html
%%DATADIR%%/help/es/theory-intervals.html
%%DATADIR%%/help/es/tone-in-context.html
%%DATADIR%%/help/es/toneincontext-module.html
%%DATADIR%%/help/es/trainingset-editor.html
%%DATADIR%%/help/es/twelvetone-module.html
%%DATADIR%%/help/es/twelvetone.html
%%DATADIR%%/help/es/user-modules.html
%%DATADIR%%/help/et/about-statistics.html
%%DATADIR%%/help/et/bug-reporting.html
%%DATADIR%%/help/et/chordvoicing-module.html
%%DATADIR%%/help/et/compareintervals-module.html
%%DATADIR%%/help/et/dictation-module.html
%%DATADIR%%/help/et/dictation.html
%%DATADIR%%/help/et/ear-training-test-printout-editor.html
%%DATADIR%%/help/et/elembuilder-module.html
%%DATADIR%%/help/et/elembuilder.html
%%DATADIR%%/help/et/extending-solfege.html
%%DATADIR%%/help/et/figures/chord.png
%%DATADIR%%/help/et/figures/dictation.png
%%DATADIR%%/help/et/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/et/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/et/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/et/figures/id-interval-piano.png
%%DATADIR%%/help/et/figures/idbyname-chords.png
%%DATADIR%%/help/et/figures/idbyname-intonation.png
%%DATADIR%%/help/et/figures/identifybpm.png
%%DATADIR%%/help/et/figures/idtone.png
%%DATADIR%%/help/et/figures/melodicinterval-buttons.png
%%DATADIR%%/help/et/figures/nameinterval.png
%%DATADIR%%/help/et/figures/preferences-external-programs.png
%%DATADIR%%/help/et/figures/preferences-gui-idtone.png
%%DATADIR%%/help/et/figures/preferences-gui-interval.png
%%DATADIR%%/help/et/figures/preferences-gui.png
%%DATADIR%%/help/et/figures/preferences-midi.png
%%DATADIR%%/help/et/figures/preferences-practise.png
%%DATADIR%%/help/et/figures/preferences-sound-setup.png
%%DATADIR%%/help/et/figures/preferences-statistics.png
%%DATADIR%%/help/et/figures/preferences-user.png
%%DATADIR%%/help/et/figures/profile-manager.png
%%DATADIR%%/help/et/figures/rhythm.png
%%DATADIR%%/help/et/figures/rhythmtapping2.png
%%DATADIR%%/help/et/figures/singchord.png
%%DATADIR%%/help/et/figures/singinterval.png
%%DATADIR%%/help/et/figures/statistics.png
%%DATADIR%%/help/et/figures/trainingset-editor.png
%%DATADIR%%/help/et/figures/twelvetone.png
%%DATADIR%%/help/et/gpl.html
%%DATADIR%%/help/et/harmonicinterval-module.html
%%DATADIR%%/help/et/harmonicinterval.html
%%DATADIR%%/help/et/idbyname-cadences.html
%%DATADIR%%/help/et/idbyname-chords.html
%%DATADIR%%/help/et/idbyname-intonation.html
%%DATADIR%%/help/et/idbyname-module.html
%%DATADIR%%/help/et/idbyname.html
%%DATADIR%%/help/et/identifybpm-module.html
%%DATADIR%%/help/et/identifybpm.html
%%DATADIR%%/help/et/idproperty-module.html
%%DATADIR%%/help/et/idproperty.html
%%DATADIR%%/help/et/idtone-module.html
%%DATADIR%%/help/et/idtone.html
%%DATADIR%%/help/et/index.html
%%DATADIR%%/help/et/inverting-intervals.html
%%DATADIR%%/help/et/lesson-file-locations-details.html
%%DATADIR%%/help/et/lesson-files.html
%%DATADIR%%/help/et/ly/inverting-intervals.png
%%DATADIR%%/help/et/ly/theory-intervals-1.png
%%DATADIR%%/help/et/ly/theory-intervals-fifths.png
%%DATADIR%%/help/et/ly/theory-intervals-fourths.png
%%DATADIR%%/help/et/ly/theory-intervals-seconds.png
%%DATADIR%%/help/et/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/et/ly/theory-intervals-sixths.png
%%DATADIR%%/help/et/ly/theory-intervals-thirds.png
%%DATADIR%%/help/et/melodicinterval-module.html
%%DATADIR%%/help/et/melodicinterval.html
%%DATADIR%%/help/et/midi-instrument-names.html
%%DATADIR%%/help/et/mpd-module.html
%%DATADIR%%/help/et/music-theory.html
%%DATADIR%%/help/et/nameinterval-module.html
%%DATADIR%%/help/et/nameinterval.html
%%DATADIR%%/help/et/online-resources.html
%%DATADIR%%/help/et/preferences-window.html
%%DATADIR%%/help/et/profile-manager.html
%%DATADIR%%/help/et/rhythm-module.html
%%DATADIR%%/help/et/rhythm.html
%%DATADIR%%/help/et/rhythmdictation-module.html
%%DATADIR%%/help/et/rhythmdictation2-module.html
%%DATADIR%%/help/et/rhythmtapping-module.html
%%DATADIR%%/help/et/rhythmtapping2-module.html
%%DATADIR%%/help/et/rhythmtapping2.html
%%DATADIR%%/help/et/scales.html
%%DATADIR%%/help/et/selecting-exercises.html
%%DATADIR%%/help/et/singanswer-module.html
%%DATADIR%%/help/et/singchord-module.html
%%DATADIR%%/help/et/singchord.html
%%DATADIR%%/help/et/singinterval-module.html
%%DATADIR%%/help/et/singinterval.html
%%DATADIR%%/help/et/solfege-exercise-helps.html
%%DATADIR%%/help/et/solfege-intro.html
%%DATADIR%%/help/et/theory-intervals.html
%%DATADIR%%/help/et/tone-in-context.html
%%DATADIR%%/help/et/toneincontext-module.html
%%DATADIR%%/help/et/trainingset-editor.html
%%DATADIR%%/help/et/twelvetone-module.html
%%DATADIR%%/help/et/twelvetone.html
%%DATADIR%%/help/et/user-modules.html
%%DATADIR%%/help/fr/about-statistics.html
%%DATADIR%%/help/fr/bug-reporting.html
%%DATADIR%%/help/fr/chordvoicing-module.html
%%DATADIR%%/help/fr/compareintervals-module.html
%%DATADIR%%/help/fr/dictation-module.html
%%DATADIR%%/help/fr/dictation.html
%%DATADIR%%/help/fr/ear-training-test-printout-editor.html
%%DATADIR%%/help/fr/elembuilder-module.html
%%DATADIR%%/help/fr/elembuilder.html
%%DATADIR%%/help/fr/extending-solfege.html
%%DATADIR%%/help/fr/figures/chord.png
%%DATADIR%%/help/fr/figures/dictation.png
%%DATADIR%%/help/fr/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/fr/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/fr/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/fr/figures/id-interval-piano.png
%%DATADIR%%/help/fr/figures/idbyname-chords.png
%%DATADIR%%/help/fr/figures/idbyname-intonation.png
%%DATADIR%%/help/fr/figures/identifybpm.png
%%DATADIR%%/help/fr/figures/idtone.png
%%DATADIR%%/help/fr/figures/melodicinterval-buttons.png
%%DATADIR%%/help/fr/figures/nameinterval.png
%%DATADIR%%/help/fr/figures/preferences-external-programs.png
%%DATADIR%%/help/fr/figures/preferences-gui-idtone.png
%%DATADIR%%/help/fr/figures/preferences-gui-interval.png
%%DATADIR%%/help/fr/figures/preferences-gui.png
%%DATADIR%%/help/fr/figures/preferences-midi.png
%%DATADIR%%/help/fr/figures/preferences-practise.png
%%DATADIR%%/help/fr/figures/preferences-sound-setup.png
%%DATADIR%%/help/fr/figures/preferences-statistics.png
%%DATADIR%%/help/fr/figures/preferences-user.png
%%DATADIR%%/help/fr/figures/profile-manager.png
%%DATADIR%%/help/fr/figures/rhythm.png
%%DATADIR%%/help/fr/figures/rhythmtapping2.png
%%DATADIR%%/help/fr/figures/singchord.png
%%DATADIR%%/help/fr/figures/singinterval.png
%%DATADIR%%/help/fr/figures/statistics.png
%%DATADIR%%/help/fr/figures/trainingset-editor.png
%%DATADIR%%/help/fr/figures/twelvetone.png
%%DATADIR%%/help/fr/gpl.html
%%DATADIR%%/help/fr/harmonicinterval-module.html
%%DATADIR%%/help/fr/harmonicinterval.html
%%DATADIR%%/help/fr/idbyname-cadences.html
%%DATADIR%%/help/fr/idbyname-chords.html
%%DATADIR%%/help/fr/idbyname-intonation.html
%%DATADIR%%/help/fr/idbyname-module.html
%%DATADIR%%/help/fr/idbyname.html
%%DATADIR%%/help/fr/identifybpm-module.html
%%DATADIR%%/help/fr/identifybpm.html
%%DATADIR%%/help/fr/idproperty-module.html
%%DATADIR%%/help/fr/idproperty.html
%%DATADIR%%/help/fr/idtone-module.html
%%DATADIR%%/help/fr/idtone.html
%%DATADIR%%/help/fr/index.html
%%DATADIR%%/help/fr/inverting-intervals.html
%%DATADIR%%/help/fr/lesson-file-locations-details.html
%%DATADIR%%/help/fr/lesson-files.html
%%DATADIR%%/help/fr/ly/inverting-intervals.png
%%DATADIR%%/help/fr/ly/theory-intervals-1.png
%%DATADIR%%/help/fr/ly/theory-intervals-fifths.png
%%DATADIR%%/help/fr/ly/theory-intervals-fourths.png
%%DATADIR%%/help/fr/ly/theory-intervals-seconds.png
%%DATADIR%%/help/fr/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/fr/ly/theory-intervals-sixths.png
%%DATADIR%%/help/fr/ly/theory-intervals-thirds.png
%%DATADIR%%/help/fr/melodicinterval-module.html
%%DATADIR%%/help/fr/melodicinterval.html
%%DATADIR%%/help/fr/midi-instrument-names.html
%%DATADIR%%/help/fr/mpd-module.html
%%DATADIR%%/help/fr/music-theory.html
%%DATADIR%%/help/fr/nameinterval-module.html
%%DATADIR%%/help/fr/nameinterval.html
%%DATADIR%%/help/fr/online-resources.html
%%DATADIR%%/help/fr/preferences-window.html
%%DATADIR%%/help/fr/profile-manager.html
%%DATADIR%%/help/fr/rhythm-module.html
%%DATADIR%%/help/fr/rhythm.html
%%DATADIR%%/help/fr/rhythmdictation-module.html
%%DATADIR%%/help/fr/rhythmdictation2-module.html
%%DATADIR%%/help/fr/rhythmtapping-module.html
%%DATADIR%%/help/fr/rhythmtapping2-module.html
%%DATADIR%%/help/fr/rhythmtapping2.html
%%DATADIR%%/help/fr/scales.html
%%DATADIR%%/help/fr/selecting-exercises.html
%%DATADIR%%/help/fr/singanswer-module.html
%%DATADIR%%/help/fr/singchord-module.html
%%DATADIR%%/help/fr/singchord.html
%%DATADIR%%/help/fr/singinterval-module.html
%%DATADIR%%/help/fr/singinterval.html
%%DATADIR%%/help/fr/solfege-exercise-helps.html
%%DATADIR%%/help/fr/solfege-intro.html
%%DATADIR%%/help/fr/theory-intervals.html
%%DATADIR%%/help/fr/tone-in-context.html
%%DATADIR%%/help/fr/toneincontext-module.html
%%DATADIR%%/help/fr/trainingset-editor.html
%%DATADIR%%/help/fr/twelvetone-module.html
%%DATADIR%%/help/fr/twelvetone.html
%%DATADIR%%/help/fr/user-modules.html
%%DATADIR%%/help/gl/about-statistics.html
%%DATADIR%%/help/gl/bug-reporting.html
%%DATADIR%%/help/gl/chordvoicing-module.html
%%DATADIR%%/help/gl/compareintervals-module.html
%%DATADIR%%/help/gl/dictation-module.html
%%DATADIR%%/help/gl/dictation.html
%%DATADIR%%/help/gl/ear-training-test-printout-editor.html
%%DATADIR%%/help/gl/elembuilder-module.html
%%DATADIR%%/help/gl/elembuilder.html
%%DATADIR%%/help/gl/extending-solfege.html
%%DATADIR%%/help/gl/gpl.html
%%DATADIR%%/help/gl/harmonicinterval-module.html
%%DATADIR%%/help/gl/harmonicinterval.html
%%DATADIR%%/help/gl/idbyname-cadences.html
%%DATADIR%%/help/gl/idbyname-chords.html
%%DATADIR%%/help/gl/idbyname-intonation.html
%%DATADIR%%/help/gl/idbyname-module.html
%%DATADIR%%/help/gl/idbyname.html
%%DATADIR%%/help/gl/identifybpm-module.html
%%DATADIR%%/help/gl/identifybpm.html
%%DATADIR%%/help/gl/idproperty-module.html
%%DATADIR%%/help/gl/idproperty.html
%%DATADIR%%/help/gl/idtone-module.html
%%DATADIR%%/help/gl/idtone.html
%%DATADIR%%/help/gl/index.html
%%DATADIR%%/help/gl/inverting-intervals.html
%%DATADIR%%/help/gl/lesson-file-locations-details.html
%%DATADIR%%/help/gl/lesson-files.html
%%DATADIR%%/help/gl/ly/inverting-intervals.png
%%DATADIR%%/help/gl/ly/theory-intervals-1.png
%%DATADIR%%/help/gl/ly/theory-intervals-fifths.png
%%DATADIR%%/help/gl/ly/theory-intervals-fourths.png
%%DATADIR%%/help/gl/ly/theory-intervals-seconds.png
%%DATADIR%%/help/gl/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/gl/ly/theory-intervals-sixths.png
%%DATADIR%%/help/gl/ly/theory-intervals-thirds.png
%%DATADIR%%/help/gl/melodicinterval-module.html
%%DATADIR%%/help/gl/melodicinterval.html
%%DATADIR%%/help/gl/midi-instrument-names.html
%%DATADIR%%/help/gl/mpd-module.html
%%DATADIR%%/help/gl/music-theory.html
%%DATADIR%%/help/gl/nameinterval-module.html
%%DATADIR%%/help/gl/nameinterval.html
%%DATADIR%%/help/gl/online-resources.html
%%DATADIR%%/help/gl/preferences-window.html
%%DATADIR%%/help/gl/profile-manager.html
%%DATADIR%%/help/gl/rhythm-module.html
%%DATADIR%%/help/gl/rhythm.html
%%DATADIR%%/help/gl/rhythmdictation-module.html
%%DATADIR%%/help/gl/rhythmdictation2-module.html
%%DATADIR%%/help/gl/rhythmtapping-module.html
%%DATADIR%%/help/gl/rhythmtapping2-module.html
%%DATADIR%%/help/gl/rhythmtapping2.html
%%DATADIR%%/help/gl/scales.html
%%DATADIR%%/help/gl/selecting-exercises.html
%%DATADIR%%/help/gl/singanswer-module.html
%%DATADIR%%/help/gl/singchord-module.html
%%DATADIR%%/help/gl/singchord.html
%%DATADIR%%/help/gl/singinterval-module.html
%%DATADIR%%/help/gl/singinterval.html
%%DATADIR%%/help/gl/solfege-exercise-helps.html
%%DATADIR%%/help/gl/solfege-intro.html
%%DATADIR%%/help/gl/theory-intervals.html
%%DATADIR%%/help/gl/tone-in-context.html
%%DATADIR%%/help/gl/toneincontext-module.html
%%DATADIR%%/help/gl/trainingset-editor.html
%%DATADIR%%/help/gl/twelvetone-module.html
%%DATADIR%%/help/gl/twelvetone.html
%%DATADIR%%/help/gl/user-modules.html
%%DATADIR%%/help/nb/about-statistics.html
%%DATADIR%%/help/nb/bug-reporting.html
%%DATADIR%%/help/nb/chordvoicing-module.html
%%DATADIR%%/help/nb/compareintervals-module.html
%%DATADIR%%/help/nb/dictation-module.html
%%DATADIR%%/help/nb/dictation.html
%%DATADIR%%/help/nb/ear-training-test-printout-editor.html
%%DATADIR%%/help/nb/elembuilder-module.html
%%DATADIR%%/help/nb/elembuilder.html
%%DATADIR%%/help/nb/extending-solfege.html
%%DATADIR%%/help/nb/figures/chord.png
%%DATADIR%%/help/nb/figures/dictation.png
%%DATADIR%%/help/nb/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/nb/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/nb/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/nb/figures/id-interval-piano.png
%%DATADIR%%/help/nb/figures/id-intervals-buttons-thirds.png
%%DATADIR%%/help/nb/figures/idbyname-chords.png
%%DATADIR%%/help/nb/figures/idbyname-intonation.png
%%DATADIR%%/help/nb/figures/identifybpm.png
%%DATADIR%%/help/nb/figures/idtone.png
%%DATADIR%%/help/nb/figures/melodicinterval-buttons.png
%%DATADIR%%/help/nb/figures/nameinterval.png
%%DATADIR%%/help/nb/figures/preferences-external-programs.png
%%DATADIR%%/help/nb/figures/preferences-gui-idtone.png
%%DATADIR%%/help/nb/figures/preferences-gui-interval.png
%%DATADIR%%/help/nb/figures/preferences-gui.png
%%DATADIR%%/help/nb/figures/preferences-midi.png
%%DATADIR%%/help/nb/figures/preferences-practise.png
%%DATADIR%%/help/nb/figures/preferences-sound-setup.png
%%DATADIR%%/help/nb/figures/preferences-statistics.png
%%DATADIR%%/help/nb/figures/preferences-user.png
%%DATADIR%%/help/nb/figures/profile-manager.png
%%DATADIR%%/help/nb/figures/rhythm.png
%%DATADIR%%/help/nb/figures/rhythmtapping2.png
%%DATADIR%%/help/nb/figures/singchord.png
%%DATADIR%%/help/nb/figures/singinterval.png
%%DATADIR%%/help/nb/figures/statistics.png
%%DATADIR%%/help/nb/figures/trainingset-editor.png
%%DATADIR%%/help/nb/figures/twelvetone.png
%%DATADIR%%/help/nb/gpl.html
%%DATADIR%%/help/nb/harmonicinterval-module.html
%%DATADIR%%/help/nb/harmonicinterval.html
%%DATADIR%%/help/nb/idbyname-cadences.html
%%DATADIR%%/help/nb/idbyname-chords.html
%%DATADIR%%/help/nb/idbyname-intonation.html
%%DATADIR%%/help/nb/idbyname-module.html
%%DATADIR%%/help/nb/idbyname.html
%%DATADIR%%/help/nb/identifybpm-module.html
%%DATADIR%%/help/nb/identifybpm.html
%%DATADIR%%/help/nb/idproperty-module.html
%%DATADIR%%/help/nb/idproperty.html
%%DATADIR%%/help/nb/idtone-module.html
%%DATADIR%%/help/nb/idtone.html
%%DATADIR%%/help/nb/index.html
%%DATADIR%%/help/nb/inverting-intervals.html
%%DATADIR%%/help/nb/lesson-file-locations-details.html
%%DATADIR%%/help/nb/lesson-files.html
%%DATADIR%%/help/nb/ly/inverting-intervals.png
%%DATADIR%%/help/nb/ly/theory-intervals-1.png
%%DATADIR%%/help/nb/ly/theory-intervals-fifths.png
%%DATADIR%%/help/nb/ly/theory-intervals-fourths.png
%%DATADIR%%/help/nb/ly/theory-intervals-seconds.png
%%DATADIR%%/help/nb/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/nb/ly/theory-intervals-sixths.png
%%DATADIR%%/help/nb/ly/theory-intervals-thirds.png
%%DATADIR%%/help/nb/melodicinterval-module.html
%%DATADIR%%/help/nb/melodicinterval.html
%%DATADIR%%/help/nb/midi-instrument-names.html
%%DATADIR%%/help/nb/mpd-module.html
%%DATADIR%%/help/nb/music-theory.html
%%DATADIR%%/help/nb/nameinterval-module.html
%%DATADIR%%/help/nb/nameinterval.html
%%DATADIR%%/help/nb/online-resources.html
%%DATADIR%%/help/nb/preferences-window.html
%%DATADIR%%/help/nb/profile-manager.html
%%DATADIR%%/help/nb/rhythm-module.html
%%DATADIR%%/help/nb/rhythm.html
%%DATADIR%%/help/nb/rhythmdictation-module.html
%%DATADIR%%/help/nb/rhythmdictation2-module.html
%%DATADIR%%/help/nb/rhythmtapping-module.html
%%DATADIR%%/help/nb/rhythmtapping2-module.html
%%DATADIR%%/help/nb/rhythmtapping2.html
%%DATADIR%%/help/nb/scales.html
%%DATADIR%%/help/nb/selecting-exercises.html
%%DATADIR%%/help/nb/singanswer-module.html
%%DATADIR%%/help/nb/singchord-module.html
%%DATADIR%%/help/nb/singchord.html
%%DATADIR%%/help/nb/singinterval-module.html
%%DATADIR%%/help/nb/singinterval.html
%%DATADIR%%/help/nb/solfege-exercise-helps.html
%%DATADIR%%/help/nb/solfege-intro.html
%%DATADIR%%/help/nb/theory-intervals.html
%%DATADIR%%/help/nb/tone-in-context.html
%%DATADIR%%/help/nb/toneincontext-module.html
%%DATADIR%%/help/nb/trainingset-editor.html
%%DATADIR%%/help/nb/twelvetone-module.html
%%DATADIR%%/help/nb/twelvetone.html
%%DATADIR%%/help/nb/user-modules.html
%%DATADIR%%/help/nl/about-statistics.html
%%DATADIR%%/help/nl/bug-reporting.html
%%DATADIR%%/help/nl/chordvoicing-module.html
%%DATADIR%%/help/nl/compareintervals-module.html
%%DATADIR%%/help/nl/dictation-module.html
%%DATADIR%%/help/nl/dictation.html
%%DATADIR%%/help/nl/ear-training-test-printout-editor.html
%%DATADIR%%/help/nl/elembuilder-module.html
%%DATADIR%%/help/nl/elembuilder.html
%%DATADIR%%/help/nl/extending-solfege.html
%%DATADIR%%/help/nl/figures/chord.png
%%DATADIR%%/help/nl/figures/dictation.png
%%DATADIR%%/help/nl/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/nl/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/nl/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/nl/figures/id-interval-piano.png
%%DATADIR%%/help/nl/figures/idbyname-chords.png
%%DATADIR%%/help/nl/figures/idbyname-intonation.png
%%DATADIR%%/help/nl/figures/identifybpm.png
%%DATADIR%%/help/nl/figures/idtone.png
%%DATADIR%%/help/nl/figures/melodicinterval-buttons.png
%%DATADIR%%/help/nl/figures/nameinterval.png
%%DATADIR%%/help/nl/figures/preferences-external-programs.png
%%DATADIR%%/help/nl/figures/preferences-gui-idtone.png
%%DATADIR%%/help/nl/figures/preferences-gui-interval.png
%%DATADIR%%/help/nl/figures/preferences-gui.png
%%DATADIR%%/help/nl/figures/preferences-midi.png
%%DATADIR%%/help/nl/figures/preferences-practise.png
%%DATADIR%%/help/nl/figures/preferences-sound-setup.png
%%DATADIR%%/help/nl/figures/preferences-statistics.png
%%DATADIR%%/help/nl/figures/preferences-user.png
%%DATADIR%%/help/nl/figures/profile-manager.png
%%DATADIR%%/help/nl/figures/rhythm.png
%%DATADIR%%/help/nl/figures/rhythmtapping2.png
%%DATADIR%%/help/nl/figures/singchord.png
%%DATADIR%%/help/nl/figures/singinterval.png
%%DATADIR%%/help/nl/figures/statistics.png
%%DATADIR%%/help/nl/figures/trainingset-editor.png
%%DATADIR%%/help/nl/figures/twelvetone.png
%%DATADIR%%/help/nl/gpl.html
%%DATADIR%%/help/nl/harmonicinterval-module.html
%%DATADIR%%/help/nl/harmonicinterval.html
%%DATADIR%%/help/nl/idbyname-cadences.html
%%DATADIR%%/help/nl/idbyname-chords.html
%%DATADIR%%/help/nl/idbyname-intonation.html
%%DATADIR%%/help/nl/idbyname-module.html
%%DATADIR%%/help/nl/idbyname.html
%%DATADIR%%/help/nl/identifybpm-module.html
%%DATADIR%%/help/nl/identifybpm.html
%%DATADIR%%/help/nl/idproperty-module.html
%%DATADIR%%/help/nl/idproperty.html
%%DATADIR%%/help/nl/idtone-module.html
%%DATADIR%%/help/nl/idtone.html
%%DATADIR%%/help/nl/index.html
%%DATADIR%%/help/nl/inverting-intervals.html
%%DATADIR%%/help/nl/lesson-file-locations-details.html
%%DATADIR%%/help/nl/lesson-files.html
%%DATADIR%%/help/nl/ly/inverting-intervals.png
%%DATADIR%%/help/nl/ly/theory-intervals-1.png
%%DATADIR%%/help/nl/ly/theory-intervals-fifths.png
%%DATADIR%%/help/nl/ly/theory-intervals-fourths.png
%%DATADIR%%/help/nl/ly/theory-intervals-seconds.png
%%DATADIR%%/help/nl/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/nl/ly/theory-intervals-sixths.png
%%DATADIR%%/help/nl/ly/theory-intervals-thirds.png
%%DATADIR%%/help/nl/melodicinterval-module.html
%%DATADIR%%/help/nl/melodicinterval.html
%%DATADIR%%/help/nl/midi-instrument-names.html
%%DATADIR%%/help/nl/mpd-module.html
%%DATADIR%%/help/nl/music-theory.html
%%DATADIR%%/help/nl/nameinterval-module.html
%%DATADIR%%/help/nl/nameinterval.html
%%DATADIR%%/help/nl/online-resources.html
%%DATADIR%%/help/nl/preferences-window.html
%%DATADIR%%/help/nl/profile-manager.html
%%DATADIR%%/help/nl/rhythm-module.html
%%DATADIR%%/help/nl/rhythm.html
%%DATADIR%%/help/nl/rhythmdictation-module.html
%%DATADIR%%/help/nl/rhythmdictation2-module.html
%%DATADIR%%/help/nl/rhythmtapping-module.html
%%DATADIR%%/help/nl/rhythmtapping2-module.html
%%DATADIR%%/help/nl/rhythmtapping2.html
%%DATADIR%%/help/nl/scales.html
%%DATADIR%%/help/nl/selecting-exercises.html
%%DATADIR%%/help/nl/singanswer-module.html
%%DATADIR%%/help/nl/singchord-module.html
%%DATADIR%%/help/nl/singchord.html
%%DATADIR%%/help/nl/singinterval-module.html
%%DATADIR%%/help/nl/singinterval.html
%%DATADIR%%/help/nl/solfege-exercise-helps.html
%%DATADIR%%/help/nl/solfege-intro.html
%%DATADIR%%/help/nl/theory-intervals.html
%%DATADIR%%/help/nl/tone-in-context.html
%%DATADIR%%/help/nl/toneincontext-module.html
%%DATADIR%%/help/nl/trainingset-editor.html
%%DATADIR%%/help/nl/twelvetone-module.html
%%DATADIR%%/help/nl/twelvetone.html
%%DATADIR%%/help/nl/user-modules.html
%%DATADIR%%/help/pl/about-statistics.html
%%DATADIR%%/help/pl/bug-reporting.html
%%DATADIR%%/help/pl/chordvoicing-module.html
%%DATADIR%%/help/pl/compareintervals-module.html
%%DATADIR%%/help/pl/dictation-module.html
%%DATADIR%%/help/pl/dictation.html
%%DATADIR%%/help/pl/ear-training-test-printout-editor.html
%%DATADIR%%/help/pl/elembuilder-module.html
%%DATADIR%%/help/pl/elembuilder.html
%%DATADIR%%/help/pl/extending-solfege.html
%%DATADIR%%/help/pl/figures/chord.png
%%DATADIR%%/help/pl/figures/dictation.png
%%DATADIR%%/help/pl/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/pl/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/pl/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/pl/figures/id-interval-piano.png
%%DATADIR%%/help/pl/figures/idbyname-chords.png
%%DATADIR%%/help/pl/figures/idbyname-intonation.png
%%DATADIR%%/help/pl/figures/identifybpm.png
%%DATADIR%%/help/pl/figures/idtone.png
%%DATADIR%%/help/pl/figures/melodicinterval-buttons.png
%%DATADIR%%/help/pl/figures/nameinterval.png
%%DATADIR%%/help/pl/figures/preferences-external-programs.png
%%DATADIR%%/help/pl/figures/preferences-gui-idtone.png
%%DATADIR%%/help/pl/figures/preferences-gui-interval.png
%%DATADIR%%/help/pl/figures/preferences-gui.png
%%DATADIR%%/help/pl/figures/preferences-midi.png
%%DATADIR%%/help/pl/figures/preferences-practise.png
%%DATADIR%%/help/pl/figures/preferences-sound-setup.png
%%DATADIR%%/help/pl/figures/preferences-statistics.png
%%DATADIR%%/help/pl/figures/preferences-user.png
%%DATADIR%%/help/pl/figures/profile-manager.png
%%DATADIR%%/help/pl/figures/rhythm.png
%%DATADIR%%/help/pl/figures/rhythmtapping2.png
%%DATADIR%%/help/pl/figures/singchord.png
%%DATADIR%%/help/pl/figures/singinterval.png
%%DATADIR%%/help/pl/figures/statistics.png
%%DATADIR%%/help/pl/figures/trainingset-editor.png
%%DATADIR%%/help/pl/figures/twelvetone.png
%%DATADIR%%/help/pl/gpl.html
%%DATADIR%%/help/pl/harmonicinterval-module.html
%%DATADIR%%/help/pl/harmonicinterval.html
%%DATADIR%%/help/pl/idbyname-cadences.html
%%DATADIR%%/help/pl/idbyname-chords.html
%%DATADIR%%/help/pl/idbyname-intonation.html
%%DATADIR%%/help/pl/idbyname-module.html
%%DATADIR%%/help/pl/idbyname.html
%%DATADIR%%/help/pl/identifybpm-module.html
%%DATADIR%%/help/pl/identifybpm.html
%%DATADIR%%/help/pl/idproperty-module.html
%%DATADIR%%/help/pl/idproperty.html
%%DATADIR%%/help/pl/idtone-module.html
%%DATADIR%%/help/pl/idtone.html
%%DATADIR%%/help/pl/index.html
%%DATADIR%%/help/pl/inverting-intervals.html
%%DATADIR%%/help/pl/lesson-file-locations-details.html
%%DATADIR%%/help/pl/lesson-files.html
%%DATADIR%%/help/pl/ly/inverting-intervals.png
%%DATADIR%%/help/pl/ly/theory-intervals-1.png
%%DATADIR%%/help/pl/ly/theory-intervals-fifths.png
%%DATADIR%%/help/pl/ly/theory-intervals-fourths.png
%%DATADIR%%/help/pl/ly/theory-intervals-seconds.png
%%DATADIR%%/help/pl/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/pl/ly/theory-intervals-sixths.png
%%DATADIR%%/help/pl/ly/theory-intervals-thirds.png
%%DATADIR%%/help/pl/melodicinterval-module.html
%%DATADIR%%/help/pl/melodicinterval.html
%%DATADIR%%/help/pl/midi-instrument-names.html
%%DATADIR%%/help/pl/mpd-module.html
%%DATADIR%%/help/pl/music-theory.html
%%DATADIR%%/help/pl/nameinterval-module.html
%%DATADIR%%/help/pl/nameinterval.html
%%DATADIR%%/help/pl/online-resources.html
%%DATADIR%%/help/pl/preferences-window.html
%%DATADIR%%/help/pl/profile-manager.html
%%DATADIR%%/help/pl/rhythm-module.html
%%DATADIR%%/help/pl/rhythm.html
%%DATADIR%%/help/pl/rhythmdictation-module.html
%%DATADIR%%/help/pl/rhythmdictation2-module.html
%%DATADIR%%/help/pl/rhythmtapping-module.html
%%DATADIR%%/help/pl/rhythmtapping2-module.html
%%DATADIR%%/help/pl/rhythmtapping2.html
%%DATADIR%%/help/pl/scales.html
%%DATADIR%%/help/pl/selecting-exercises.html
%%DATADIR%%/help/pl/singanswer-module.html
%%DATADIR%%/help/pl/singchord-module.html
%%DATADIR%%/help/pl/singchord.html
%%DATADIR%%/help/pl/singinterval-module.html
%%DATADIR%%/help/pl/singinterval.html
%%DATADIR%%/help/pl/solfege-exercise-helps.html
%%DATADIR%%/help/pl/solfege-intro.html
%%DATADIR%%/help/pl/theory-intervals.html
%%DATADIR%%/help/pl/tone-in-context.html
%%DATADIR%%/help/pl/toneincontext-module.html
%%DATADIR%%/help/pl/trainingset-editor.html
%%DATADIR%%/help/pl/twelvetone-module.html
%%DATADIR%%/help/pl/twelvetone.html
%%DATADIR%%/help/pl/user-modules.html
%%DATADIR%%/help/pt_BR/about-statistics.html
%%DATADIR%%/help/pt_BR/bug-reporting.html
%%DATADIR%%/help/pt_BR/chordvoicing-module.html
%%DATADIR%%/help/pt_BR/compareintervals-module.html
%%DATADIR%%/help/pt_BR/dictation-module.html
%%DATADIR%%/help/pt_BR/dictation.html
%%DATADIR%%/help/pt_BR/ear-training-test-printout-editor.html
%%DATADIR%%/help/pt_BR/elembuilder-module.html
%%DATADIR%%/help/pt_BR/elembuilder.html
%%DATADIR%%/help/pt_BR/extending-solfege.html
%%DATADIR%%/help/pt_BR/figures/chord.png
%%DATADIR%%/help/pt_BR/figures/dictation.png
%%DATADIR%%/help/pt_BR/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/pt_BR/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/pt_BR/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/pt_BR/figures/id-interval-piano.png
%%DATADIR%%/help/pt_BR/figures/idbyname-chords.png
%%DATADIR%%/help/pt_BR/figures/idbyname-intonation.png
%%DATADIR%%/help/pt_BR/figures/identifybpm.png
%%DATADIR%%/help/pt_BR/figures/idtone.png
%%DATADIR%%/help/pt_BR/figures/melodicinterval-buttons.png
%%DATADIR%%/help/pt_BR/figures/nameinterval.png
%%DATADIR%%/help/pt_BR/figures/preferences-external-programs.png
%%DATADIR%%/help/pt_BR/figures/preferences-gui-idtone.png
%%DATADIR%%/help/pt_BR/figures/preferences-gui-interval.png
%%DATADIR%%/help/pt_BR/figures/preferences-gui.png
%%DATADIR%%/help/pt_BR/figures/preferences-midi.png
%%DATADIR%%/help/pt_BR/figures/preferences-practise.png
%%DATADIR%%/help/pt_BR/figures/preferences-sound-setup.png
%%DATADIR%%/help/pt_BR/figures/preferences-statistics.png
%%DATADIR%%/help/pt_BR/figures/preferences-user.png
%%DATADIR%%/help/pt_BR/figures/profile-manager.png
%%DATADIR%%/help/pt_BR/figures/rhythm.png
%%DATADIR%%/help/pt_BR/figures/rhythmtapping2.png
%%DATADIR%%/help/pt_BR/figures/singchord.png
%%DATADIR%%/help/pt_BR/figures/singinterval.png
%%DATADIR%%/help/pt_BR/figures/statistics.png
%%DATADIR%%/help/pt_BR/figures/trainingset-editor.png
%%DATADIR%%/help/pt_BR/figures/twelvetone.png
%%DATADIR%%/help/pt_BR/gpl.html
%%DATADIR%%/help/pt_BR/harmonicinterval-module.html
%%DATADIR%%/help/pt_BR/harmonicinterval.html
%%DATADIR%%/help/pt_BR/idbyname-cadences.html
%%DATADIR%%/help/pt_BR/idbyname-chords.html
%%DATADIR%%/help/pt_BR/idbyname-intonation.html
%%DATADIR%%/help/pt_BR/idbyname-module.html
%%DATADIR%%/help/pt_BR/idbyname.html
%%DATADIR%%/help/pt_BR/identifybpm-module.html
%%DATADIR%%/help/pt_BR/identifybpm.html
%%DATADIR%%/help/pt_BR/idproperty-module.html
%%DATADIR%%/help/pt_BR/idproperty.html
%%DATADIR%%/help/pt_BR/idtone-module.html
%%DATADIR%%/help/pt_BR/idtone.html
%%DATADIR%%/help/pt_BR/index.html
%%DATADIR%%/help/pt_BR/inverting-intervals.html
%%DATADIR%%/help/pt_BR/lesson-file-locations-details.html
%%DATADIR%%/help/pt_BR/lesson-files.html
%%DATADIR%%/help/pt_BR/ly/inverting-intervals.png
%%DATADIR%%/help/pt_BR/ly/theory-intervals-1.png
%%DATADIR%%/help/pt_BR/ly/theory-intervals-fifths.png
%%DATADIR%%/help/pt_BR/ly/theory-intervals-fourths.png
%%DATADIR%%/help/pt_BR/ly/theory-intervals-seconds.png
%%DATADIR%%/help/pt_BR/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/pt_BR/ly/theory-intervals-sixths.png
%%DATADIR%%/help/pt_BR/ly/theory-intervals-thirds.png
%%DATADIR%%/help/pt_BR/melodicinterval-module.html
%%DATADIR%%/help/pt_BR/melodicinterval.html
%%DATADIR%%/help/pt_BR/midi-instrument-names.html
%%DATADIR%%/help/pt_BR/mpd-module.html
%%DATADIR%%/help/pt_BR/music-theory.html
%%DATADIR%%/help/pt_BR/nameinterval-module.html
%%DATADIR%%/help/pt_BR/nameinterval.html
%%DATADIR%%/help/pt_BR/online-resources.html
%%DATADIR%%/help/pt_BR/preferences-window.html
%%DATADIR%%/help/pt_BR/profile-manager.html
%%DATADIR%%/help/pt_BR/rhythm-module.html
%%DATADIR%%/help/pt_BR/rhythm.html
%%DATADIR%%/help/pt_BR/rhythmdictation-module.html
%%DATADIR%%/help/pt_BR/rhythmdictation2-module.html
%%DATADIR%%/help/pt_BR/rhythmtapping-module.html
%%DATADIR%%/help/pt_BR/rhythmtapping2-module.html
%%DATADIR%%/help/pt_BR/rhythmtapping2.html
%%DATADIR%%/help/pt_BR/scales.html
%%DATADIR%%/help/pt_BR/selecting-exercises.html
%%DATADIR%%/help/pt_BR/singanswer-module.html
%%DATADIR%%/help/pt_BR/singchord-module.html
%%DATADIR%%/help/pt_BR/singchord.html
%%DATADIR%%/help/pt_BR/singinterval-module.html
%%DATADIR%%/help/pt_BR/singinterval.html
%%DATADIR%%/help/pt_BR/solfege-exercise-helps.html
%%DATADIR%%/help/pt_BR/solfege-intro.html
%%DATADIR%%/help/pt_BR/theory-intervals.html
%%DATADIR%%/help/pt_BR/tone-in-context.html
%%DATADIR%%/help/pt_BR/toneincontext-module.html
%%DATADIR%%/help/pt_BR/trainingset-editor.html
%%DATADIR%%/help/pt_BR/twelvetone-module.html
%%DATADIR%%/help/pt_BR/twelvetone.html
%%DATADIR%%/help/pt_BR/user-modules.html
%%DATADIR%%/help/ru/about-statistics.html
%%DATADIR%%/help/ru/bug-reporting.html
%%DATADIR%%/help/ru/chordvoicing-module.html
%%DATADIR%%/help/ru/compareintervals-module.html
%%DATADIR%%/help/ru/dictation-module.html
%%DATADIR%%/help/ru/dictation.html
%%DATADIR%%/help/ru/ear-training-test-printout-editor.html
%%DATADIR%%/help/ru/elembuilder-module.html
%%DATADIR%%/help/ru/elembuilder.html
%%DATADIR%%/help/ru/extending-solfege.html
%%DATADIR%%/help/ru/gpl.html
%%DATADIR%%/help/ru/harmonicinterval-module.html
%%DATADIR%%/help/ru/harmonicinterval.html
%%DATADIR%%/help/ru/idbyname-cadences.html
%%DATADIR%%/help/ru/idbyname-chords.html
%%DATADIR%%/help/ru/idbyname-intonation.html
%%DATADIR%%/help/ru/idbyname-module.html
%%DATADIR%%/help/ru/idbyname.html
%%DATADIR%%/help/ru/identifybpm-module.html
%%DATADIR%%/help/ru/identifybpm.html
%%DATADIR%%/help/ru/idproperty-module.html
%%DATADIR%%/help/ru/idproperty.html
%%DATADIR%%/help/ru/idtone-module.html
%%DATADIR%%/help/ru/idtone.html
%%DATADIR%%/help/ru/index.html
%%DATADIR%%/help/ru/inverting-intervals.html
%%DATADIR%%/help/ru/lesson-file-locations-details.html
%%DATADIR%%/help/ru/lesson-files.html
%%DATADIR%%/help/ru/ly/inverting-intervals.png
%%DATADIR%%/help/ru/ly/theory-intervals-1.png
%%DATADIR%%/help/ru/ly/theory-intervals-fifths.png
%%DATADIR%%/help/ru/ly/theory-intervals-fourths.png
%%DATADIR%%/help/ru/ly/theory-intervals-seconds.png
%%DATADIR%%/help/ru/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/ru/ly/theory-intervals-sixths.png
%%DATADIR%%/help/ru/ly/theory-intervals-thirds.png
%%DATADIR%%/help/ru/melodicinterval-module.html
%%DATADIR%%/help/ru/melodicinterval.html
%%DATADIR%%/help/ru/midi-instrument-names.html
%%DATADIR%%/help/ru/mpd-module.html
%%DATADIR%%/help/ru/music-theory.html
%%DATADIR%%/help/ru/nameinterval-module.html
%%DATADIR%%/help/ru/nameinterval.html
%%DATADIR%%/help/ru/online-resources.html
%%DATADIR%%/help/ru/preferences-window.html
%%DATADIR%%/help/ru/profile-manager.html
%%DATADIR%%/help/ru/rhythm-module.html
%%DATADIR%%/help/ru/rhythm.html
%%DATADIR%%/help/ru/rhythmdictation-module.html
%%DATADIR%%/help/ru/rhythmdictation2-module.html
%%DATADIR%%/help/ru/rhythmtapping-module.html
%%DATADIR%%/help/ru/rhythmtapping2-module.html
%%DATADIR%%/help/ru/rhythmtapping2.html
%%DATADIR%%/help/ru/scales.html
%%DATADIR%%/help/ru/selecting-exercises.html
%%DATADIR%%/help/ru/singanswer-module.html
%%DATADIR%%/help/ru/singchord-module.html
%%DATADIR%%/help/ru/singchord.html
%%DATADIR%%/help/ru/singinterval-module.html
%%DATADIR%%/help/ru/singinterval.html
%%DATADIR%%/help/ru/solfege-exercise-helps.html
%%DATADIR%%/help/ru/solfege-intro.html
%%DATADIR%%/help/ru/theory-intervals.html
%%DATADIR%%/help/ru/tone-in-context.html
%%DATADIR%%/help/ru/toneincontext-module.html
%%DATADIR%%/help/ru/trainingset-editor.html
%%DATADIR%%/help/ru/twelvetone-module.html
%%DATADIR%%/help/ru/twelvetone.html
%%DATADIR%%/help/ru/user-modules.html
%%DATADIR%%/help/style.css
%%DATADIR%%/help/tr/about-statistics.html
%%DATADIR%%/help/tr/bug-reporting.html
%%DATADIR%%/help/tr/chordvoicing-module.html
%%DATADIR%%/help/tr/compareintervals-module.html
%%DATADIR%%/help/tr/dictation-module.html
%%DATADIR%%/help/tr/dictation.html
%%DATADIR%%/help/tr/ear-training-test-printout-editor.html
%%DATADIR%%/help/tr/elembuilder-module.html
%%DATADIR%%/help/tr/elembuilder.html
%%DATADIR%%/help/tr/extending-solfege.html
%%DATADIR%%/help/tr/figures/chord.png
%%DATADIR%%/help/tr/figures/dictation.png
%%DATADIR%%/help/tr/figures/ear-training-test-printout-editor.png
%%DATADIR%%/help/tr/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/tr/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/tr/figures/id-interval-piano.png
%%DATADIR%%/help/tr/figures/idbyname-chords.png
%%DATADIR%%/help/tr/figures/idbyname-intonation.png
%%DATADIR%%/help/tr/figures/identifybpm.png
%%DATADIR%%/help/tr/figures/idtone.png
%%DATADIR%%/help/tr/figures/melodicinterval-buttons.png
%%DATADIR%%/help/tr/figures/nameinterval.png
%%DATADIR%%/help/tr/figures/preferences-external-programs.png
%%DATADIR%%/help/tr/figures/preferences-gui-idtone.png
%%DATADIR%%/help/tr/figures/preferences-gui-interval.png
%%DATADIR%%/help/tr/figures/preferences-gui.png
%%DATADIR%%/help/tr/figures/preferences-midi.png
%%DATADIR%%/help/tr/figures/preferences-practise.png
%%DATADIR%%/help/tr/figures/preferences-sound-setup.png
%%DATADIR%%/help/tr/figures/preferences-statistics.png
%%DATADIR%%/help/tr/figures/preferences-user.png
%%DATADIR%%/help/tr/figures/profile-manager.png
%%DATADIR%%/help/tr/figures/rhythm.png
%%DATADIR%%/help/tr/figures/rhythmtapping2.png
%%DATADIR%%/help/tr/figures/singchord.png
%%DATADIR%%/help/tr/figures/singinterval.png
%%DATADIR%%/help/tr/figures/statistics.png
%%DATADIR%%/help/tr/figures/trainingset-editor.png
%%DATADIR%%/help/tr/figures/twelvetone.png
%%DATADIR%%/help/tr/gpl.html
%%DATADIR%%/help/tr/harmonicinterval-module.html
%%DATADIR%%/help/tr/harmonicinterval.html
%%DATADIR%%/help/tr/idbyname-cadences.html
%%DATADIR%%/help/tr/idbyname-chords.html
%%DATADIR%%/help/tr/idbyname-intonation.html
%%DATADIR%%/help/tr/idbyname-module.html
%%DATADIR%%/help/tr/idbyname.html
%%DATADIR%%/help/tr/identifybpm-module.html
%%DATADIR%%/help/tr/identifybpm.html
%%DATADIR%%/help/tr/idproperty-module.html
%%DATADIR%%/help/tr/idproperty.html
%%DATADIR%%/help/tr/idtone-module.html
%%DATADIR%%/help/tr/idtone.html
%%DATADIR%%/help/tr/index.html
%%DATADIR%%/help/tr/inverting-intervals.html
%%DATADIR%%/help/tr/lesson-file-locations-details.html
%%DATADIR%%/help/tr/lesson-files.html
%%DATADIR%%/help/tr/ly/inverting-intervals.png
%%DATADIR%%/help/tr/ly/theory-intervals-1.png
%%DATADIR%%/help/tr/ly/theory-intervals-fifths.png
%%DATADIR%%/help/tr/ly/theory-intervals-fourths.png
%%DATADIR%%/help/tr/ly/theory-intervals-seconds.png
%%DATADIR%%/help/tr/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/tr/ly/theory-intervals-sixths.png
%%DATADIR%%/help/tr/ly/theory-intervals-thirds.png
%%DATADIR%%/help/tr/melodicinterval-module.html
%%DATADIR%%/help/tr/melodicinterval.html
%%DATADIR%%/help/tr/midi-instrument-names.html
%%DATADIR%%/help/tr/mpd-module.html
%%DATADIR%%/help/tr/music-theory.html
%%DATADIR%%/help/tr/nameinterval-module.html
%%DATADIR%%/help/tr/nameinterval.html
%%DATADIR%%/help/tr/online-resources.html
%%DATADIR%%/help/tr/preferences-window.html
%%DATADIR%%/help/tr/profile-manager.html
%%DATADIR%%/help/tr/rhythm-module.html
%%DATADIR%%/help/tr/rhythm.html
%%DATADIR%%/help/tr/rhythmdictation-module.html
%%DATADIR%%/help/tr/rhythmdictation2-module.html
%%DATADIR%%/help/tr/rhythmtapping-module.html
%%DATADIR%%/help/tr/rhythmtapping2-module.html
%%DATADIR%%/help/tr/rhythmtapping2.html
%%DATADIR%%/help/tr/scales.html
%%DATADIR%%/help/tr/selecting-exercises.html
%%DATADIR%%/help/tr/singanswer-module.html
%%DATADIR%%/help/tr/singchord-module.html
%%DATADIR%%/help/tr/singchord.html
%%DATADIR%%/help/tr/singinterval-module.html
%%DATADIR%%/help/tr/singinterval.html
%%DATADIR%%/help/tr/solfege-exercise-helps.html
%%DATADIR%%/help/tr/solfege-intro.html
%%DATADIR%%/help/tr/theory-intervals.html
%%DATADIR%%/help/tr/tone-in-context.html
%%DATADIR%%/help/tr/toneincontext-module.html
%%DATADIR%%/help/tr/trainingset-editor.html
%%DATADIR%%/help/tr/twelvetone-module.html
%%DATADIR%%/help/tr/twelvetone.html
%%DATADIR%%/help/tr/user-modules.html
%%DATADIR%%/solfege.gtkrc
%%DATADIR%%/solfege/__init__.py
%%DATADIR%%/solfege/__init__.pyc
%%DATADIR%%/solfege/_version.py
%%DATADIR%%/solfege/_version.pyc
%%DATADIR%%/solfege/abstract.py
%%DATADIR%%/solfege/abstract.pyc
%%DATADIR%%/solfege/abstract_solmisation_addon.py
%%DATADIR%%/solfege/abstract_solmisation_addon.pyc
%%DATADIR%%/solfege/application.py
%%DATADIR%%/solfege/application.pyc
%%DATADIR%%/solfege/buildinfo.py
%%DATADIR%%/solfege/buildinfo.pyc
%%DATADIR%%/solfege/cfg.py
%%DATADIR%%/solfege/cfg.pyc
%%DATADIR%%/solfege/configwindow.py
%%DATADIR%%/solfege/configwindow.pyc
%%DATADIR%%/solfege/const.py
%%DATADIR%%/solfege/const.pyc
%%DATADIR%%/solfege/dataparser.py
%%DATADIR%%/solfege/dataparser.pyc
%%DATADIR%%/solfege/download_pyalsa.py
%%DATADIR%%/solfege/download_pyalsa.pyc
%%DATADIR%%/solfege/esel.py
%%DATADIR%%/solfege/esel.pyc
%%DATADIR%%/solfege/exercises/__init__.py
%%DATADIR%%/solfege/exercises/__init__.pyc
%%DATADIR%%/solfege/exercises/chord.py
%%DATADIR%%/solfege/exercises/chord.pyc
%%DATADIR%%/solfege/exercises/chordvoicing.py
%%DATADIR%%/solfege/exercises/chordvoicing.pyc
%%DATADIR%%/solfege/exercises/compareintervals.py
%%DATADIR%%/solfege/exercises/compareintervals.pyc
%%DATADIR%%/solfege/exercises/dictation.py
%%DATADIR%%/solfege/exercises/dictation.pyc
%%DATADIR%%/solfege/exercises/elembuilder.py
%%DATADIR%%/solfege/exercises/elembuilder.pyc
%%DATADIR%%/solfege/exercises/harmonicinterval.py
%%DATADIR%%/solfege/exercises/harmonicinterval.pyc
%%DATADIR%%/solfege/exercises/harmonicprogressiondictation.py
%%DATADIR%%/solfege/exercises/harmonicprogressiondictation.pyc
%%DATADIR%%/solfege/exercises/idbyname.py
%%DATADIR%%/solfege/exercises/idbyname.pyc
%%DATADIR%%/solfege/exercises/identifybpm.py
%%DATADIR%%/solfege/exercises/identifybpm.pyc
%%DATADIR%%/solfege/exercises/idproperty.py
%%DATADIR%%/solfege/exercises/idproperty.pyc
%%DATADIR%%/solfege/exercises/idtone.py
%%DATADIR%%/solfege/exercises/idtone.pyc
%%DATADIR%%/solfege/exercises/melodicinterval.py
%%DATADIR%%/solfege/exercises/melodicinterval.pyc
%%DATADIR%%/solfege/exercises/nameinterval.py
%%DATADIR%%/solfege/exercises/nameinterval.pyc
%%DATADIR%%/solfege/exercises/rhythm.py
%%DATADIR%%/solfege/exercises/rhythm.pyc
%%DATADIR%%/solfege/exercises/rhythmdictation.py
%%DATADIR%%/solfege/exercises/rhythmdictation.pyc
%%DATADIR%%/solfege/exercises/rhythmdictation2.py
%%DATADIR%%/solfege/exercises/rhythmdictation2.pyc
%%DATADIR%%/solfege/exercises/rhythmtapping.py
%%DATADIR%%/solfege/exercises/rhythmtapping.pyc
%%DATADIR%%/solfege/exercises/rhythmtapping2.py
%%DATADIR%%/solfege/exercises/rhythmtapping2.pyc
%%DATADIR%%/solfege/exercises/singanswer.py
%%DATADIR%%/solfege/exercises/singanswer.pyc
%%DATADIR%%/solfege/exercises/singchord.py
%%DATADIR%%/solfege/exercises/singchord.pyc
%%DATADIR%%/solfege/exercises/singinterval.py
%%DATADIR%%/solfege/exercises/singinterval.pyc
%%DATADIR%%/solfege/exercises/solmisation.py
%%DATADIR%%/solfege/exercises/solmisation.pyc
%%DATADIR%%/solfege/exercises/toneincontext.py
%%DATADIR%%/solfege/exercises/toneincontext.pyc
%%DATADIR%%/solfege/exercises/tuner.py
%%DATADIR%%/solfege/exercises/tuner.pyc
%%DATADIR%%/solfege/exercises/twelvetone.py
%%DATADIR%%/solfege/exercises/twelvetone.pyc
%%DATADIR%%/solfege/filesystem.py
%%DATADIR%%/solfege/filesystem.pyc
%%DATADIR%%/solfege/fpeditor.py
%%DATADIR%%/solfege/fpeditor.pyc
%%DATADIR%%/solfege/frontpage.py
%%DATADIR%%/solfege/frontpage.pyc
%%DATADIR%%/solfege/gu.py
%%DATADIR%%/solfege/gu.pyc
%%DATADIR%%/solfege/history.py
%%DATADIR%%/solfege/history.pyc
%%DATADIR%%/solfege/i18n.py
%%DATADIR%%/solfege/i18n.pyc
%%DATADIR%%/solfege/inputwidgets.py
%%DATADIR%%/solfege/inputwidgets.pyc
%%DATADIR%%/solfege/instrumentselector.py
%%DATADIR%%/solfege/instrumentselector.pyc
%%DATADIR%%/solfege/languages.py
%%DATADIR%%/solfege/languages.pyc
%%DATADIR%%/solfege/lessonfile.py
%%DATADIR%%/solfege/lessonfile.pyc
%%DATADIR%%/solfege/lessonfile_editor_main.py
%%DATADIR%%/solfege/lessonfile_editor_main.pyc
%%DATADIR%%/solfege/lessonfilegui.py
%%DATADIR%%/solfege/lessonfilegui.pyc
%%DATADIR%%/solfege/lfmod.py
%%DATADIR%%/solfege/lfmod.pyc
%%DATADIR%%/solfege/mainwin.py
%%DATADIR%%/solfege/mainwin.pyc
%%DATADIR%%/solfege/make_screenshots.py
%%DATADIR%%/solfege/make_screenshots.pyc
%%DATADIR%%/solfege/mpd/__init__.py
%%DATADIR%%/solfege/mpd/__init__.pyc
%%DATADIR%%/solfege/mpd/_exceptions.py
%%DATADIR%%/solfege/mpd/_exceptions.pyc
%%DATADIR%%/solfege/mpd/const.py
%%DATADIR%%/solfege/mpd/const.pyc
%%DATADIR%%/solfege/mpd/duration.py
%%DATADIR%%/solfege/mpd/duration.pyc
%%DATADIR%%/solfege/mpd/elems.py
%%DATADIR%%/solfege/mpd/elems.pyc
%%DATADIR%%/solfege/mpd/engravers.py
%%DATADIR%%/solfege/mpd/engravers.pyc
%%DATADIR%%/solfege/mpd/interval.py
%%DATADIR%%/solfege/mpd/interval.pyc
%%DATADIR%%/solfege/mpd/lexer.py
%%DATADIR%%/solfege/mpd/lexer.pyc
%%DATADIR%%/solfege/mpd/mfutils.py
%%DATADIR%%/solfege/mpd/mfutils.pyc
%%DATADIR%%/solfege/mpd/mpdutils.py
%%DATADIR%%/solfege/mpd/mpdutils.pyc
%%DATADIR%%/solfege/mpd/musicalpitch.py
%%DATADIR%%/solfege/mpd/musicalpitch.pyc
%%DATADIR%%/solfege/mpd/musicdisplayer.py
%%DATADIR%%/solfege/mpd/musicdisplayer.pyc
%%DATADIR%%/solfege/mpd/parser.py
%%DATADIR%%/solfege/mpd/parser.pyc
%%DATADIR%%/solfege/mpd/performer.py
%%DATADIR%%/solfege/mpd/performer.pyc
%%DATADIR%%/solfege/mpd/rat.py
%%DATADIR%%/solfege/mpd/rat.pyc
%%DATADIR%%/solfege/mpd/requests.py
%%DATADIR%%/solfege/mpd/requests.pyc
%%DATADIR%%/solfege/mpd/rhythmwidget.py
%%DATADIR%%/solfege/mpd/rhythmwidget.pyc
%%DATADIR%%/solfege/mpd/track.py
%%DATADIR%%/solfege/mpd/track.pyc
%%DATADIR%%/solfege/multipleintervalconfigwidget.py
%%DATADIR%%/solfege/multipleintervalconfigwidget.pyc
%%DATADIR%%/solfege/notenamespinbutton.py
%%DATADIR%%/solfege/notenamespinbutton.pyc
%%DATADIR%%/solfege/optionparser.py
%%DATADIR%%/solfege/optionparser.pyc
%%DATADIR%%/solfege/osutils.py
%%DATADIR%%/solfege/osutils.pyc
%%DATADIR%%/solfege/parsetree.py
%%DATADIR%%/solfege/parsetree.pyc
%%DATADIR%%/solfege/practisesheetdlg.py
%%DATADIR%%/solfege/practisesheetdlg.pyc
%%DATADIR%%/solfege/presetup.py
%%DATADIR%%/solfege/presetup.pyc
%%DATADIR%%/solfege/profilemanager.py
%%DATADIR%%/solfege/profilemanager.pyc
%%DATADIR%%/solfege/reportbug.py
%%DATADIR%%/solfege/reportbug.pyc
%%DATADIR%%/solfege/reportlib.py
%%DATADIR%%/solfege/reportlib.pyc
%%DATADIR%%/solfege/runtime.py
%%DATADIR%%/solfege/runtime.pyc
%%DATADIR%%/solfege/soundcard/__init__.py
%%DATADIR%%/solfege/soundcard/__init__.pyc
%%DATADIR%%/solfege/soundcard/alsa_sequencer.py
%%DATADIR%%/solfege/soundcard/alsa_sequencer.pyc
%%DATADIR%%/solfege/soundcard/exporter.py
%%DATADIR%%/solfege/soundcard/exporter.pyc
%%DATADIR%%/solfege/soundcard/fakesynth.py
%%DATADIR%%/solfege/soundcard/fakesynth.pyc
%%DATADIR%%/solfege/soundcard/midifilesynth.py
%%DATADIR%%/solfege/soundcard/midifilesynth.pyc
%%DATADIR%%/solfege/soundcard/oss_common.py
%%DATADIR%%/solfege/soundcard/oss_common.pyc
%%DATADIR%%/solfege/soundcard/oss_sequencer.py
%%DATADIR%%/solfege/soundcard/oss_sequencer.pyc
%%DATADIR%%/solfege/soundcard/oss_sequencer2.py
%%DATADIR%%/solfege/soundcard/oss_sequencer2.pyc
%%DATADIR%%/solfege/soundcard/solfege_c_midi.py
%%DATADIR%%/solfege/soundcard/solfege_c_midi.pyc
%%DATADIR%%/solfege/soundcard/soundcardexceptions.py
%%DATADIR%%/solfege/soundcard/soundcardexceptions.pyc
%%DATADIR%%/solfege/soundcard/synth_common.py
%%DATADIR%%/solfege/soundcard/synth_common.pyc
%%DATADIR%%/solfege/soundcard/winsynth.py
%%DATADIR%%/solfege/soundcard/winsynth.pyc
%%DATADIR%%/solfege/specialwidgets.py
%%DATADIR%%/solfege/specialwidgets.pyc
%%DATADIR%%/solfege/startup.py
%%DATADIR%%/solfege/startup.pyc
%%DATADIR%%/solfege/statistics.py
%%DATADIR%%/solfege/statistics.pyc
%%DATADIR%%/solfege/statisticsviewer.py
%%DATADIR%%/solfege/statisticsviewer.pyc
%%DATADIR%%/solfege/stock.py
%%DATADIR%%/solfege/stock.pyc
%%DATADIR%%/solfege/testlib.py
%%DATADIR%%/solfege/testlib.pyc
%%DATADIR%%/solfege/tracebackwindow.py
%%DATADIR%%/solfege/tracebackwindow.pyc
%%DATADIR%%/solfege/trainingsetdlg.py
%%DATADIR%%/solfege/trainingsetdlg.pyc
%%DATADIR%%/solfege/utils.py
%%DATADIR%%/solfege/utils.pyc
%%DATADIR%%/solfege/uuid.py
%%DATADIR%%/solfege/uuid.pyc
%%DATADIR%%/solfege/winlang.py
%%DATADIR%%/solfege/winlang.pyc
%%DATADIR%%/solfege/winreg.py
%%DATADIR%%/solfege/winreg.pyc
%%DATADIR%%/solfege/xrandom.py
%%DATADIR%%/solfege/xrandom.pyc
%%DATADIR%%/ui.xml
OpenPOWER on IntegriCloud