chordsheetjs 13.2.0 → 13.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bundle.js +607 -570
- package/lib/bundle.min.js +61 -61
- package/lib/index.js +610 -586
- package/lib/index.js.map +1 -1
- package/lib/main.d.ts +11 -4
- package/lib/main.d.ts.map +1 -1
- package/lib/module.js +610 -586
- package/lib/module.js.map +1 -1
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -912,22 +912,16 @@ const $3d106a0ee348cfa8$export$40141681ebb03523 = {
|
|
|
912
912
|
* @param {string} chords The chords
|
|
913
913
|
* @param {string | null} lyrics The lyrics
|
|
914
914
|
* @param {string | null} annotation The annotation
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
*/ this.lyrics = lyrics || '';
|
|
926
|
-
/**
|
|
927
|
-
* The annotation
|
|
928
|
-
* @member
|
|
929
|
-
* @type {string}
|
|
930
|
-
*/ this.annotation = annotation || '';
|
|
915
|
+
* @param {Chord | null} chordObj Optional pre-parsed Chord object
|
|
916
|
+
*/ constructor(chords = '', lyrics = null, annotation = null, chordObj = null){
|
|
917
|
+
this._chordObj = null;
|
|
918
|
+
this.chords = chords || '';
|
|
919
|
+
this.lyrics = lyrics || '';
|
|
920
|
+
this.annotation = annotation || '';
|
|
921
|
+
this._chordObj = chordObj;
|
|
922
|
+
}
|
|
923
|
+
/** Returns the Chord object if available, otherwise parses from string */ get chord() {
|
|
924
|
+
return this._chordObj || (0, $177a605b8569b31c$export$2e2bcd8739ae039).parse(this.chords.trim());
|
|
931
925
|
}
|
|
932
926
|
/**
|
|
933
927
|
* Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet (except for ChordPro sheets)
|
|
@@ -944,13 +938,13 @@ const $3d106a0ee348cfa8$export$40141681ebb03523 = {
|
|
|
944
938
|
* Returns a deep copy of the ChordLyricsPair, useful when programmatically transforming a song
|
|
945
939
|
* @returns {ChordLyricsPair}
|
|
946
940
|
*/ clone() {
|
|
947
|
-
return new $551a223fc13b5c10$var$ChordLyricsPair(this.chords, this.lyrics, this.annotation);
|
|
941
|
+
return new $551a223fc13b5c10$var$ChordLyricsPair(this.chords, this.lyrics, this.annotation, this._chordObj?.clone() || null);
|
|
948
942
|
}
|
|
949
943
|
toString() {
|
|
950
944
|
return `ChordLyricsPair(chords=${this.chords}, lyrics=${this.lyrics})`;
|
|
951
945
|
}
|
|
952
|
-
set({ chords: chords, lyrics: lyrics, annotation: annotation }) {
|
|
953
|
-
return new $551a223fc13b5c10$var$ChordLyricsPair(chords
|
|
946
|
+
set({ chords: chords, lyrics: lyrics, annotation: annotation, chordObj: chordObj }) {
|
|
947
|
+
return new $551a223fc13b5c10$var$ChordLyricsPair(chords ?? this.chords, lyrics ?? this.lyrics, annotation ?? this.annotation, chordObj ?? null);
|
|
954
948
|
}
|
|
955
949
|
setLyrics(lyrics) {
|
|
956
950
|
return this.set({
|
|
@@ -987,7 +981,8 @@ const $3d106a0ee348cfa8$export$40141681ebb03523 = {
|
|
|
987
981
|
if (chordObj) {
|
|
988
982
|
const changedChord = func(chordObj);
|
|
989
983
|
return this.set({
|
|
990
|
-
chords: changedChord.toString()
|
|
984
|
+
chords: changedChord.toString(),
|
|
985
|
+
chordObj: changedChord
|
|
991
986
|
});
|
|
992
987
|
}
|
|
993
988
|
return this.clone();
|
|
@@ -1634,6 +1629,8 @@ const $5f19a6aa6bc347f1$var$mapping = {
|
|
|
1634
1629
|
"13(#7)": "ma13",
|
|
1635
1630
|
"+13": "ma13",
|
|
1636
1631
|
"M13": "ma13",
|
|
1632
|
+
"maj13": "ma13",
|
|
1633
|
+
"Maj13": "ma13",
|
|
1637
1634
|
"ma13(#11)": "ma13(#11)",
|
|
1638
1635
|
"maj13#11": "ma13(#11)",
|
|
1639
1636
|
"maj13+11": "ma13(#11)",
|
|
@@ -2231,12 +2228,13 @@ const $c2d6ab25ad00308f$var$PREFERS_FLAT_NUMBERS = [
|
|
|
2231
2228
|
*/ static distance(oneKey, otherKey) {
|
|
2232
2229
|
return this.wrapOrFail(oneKey).distanceTo(otherKey);
|
|
2233
2230
|
}
|
|
2234
|
-
constructor({ grade: grade = null, number: number = null, minor: minor, type: type, accidental: accidental, referenceKeyGrade: referenceKeyGrade = null, referenceKeyMode: referenceKeyMode = null, originalKeyString: originalKeyString = null, preferredAccidental: preferredAccidental = null }){
|
|
2231
|
+
constructor({ grade: grade = null, number: number = null, minor: minor, type: type, accidental: accidental, referenceKeyGrade: referenceKeyGrade = null, referenceKeyMode: referenceKeyMode = null, originalKeyString: originalKeyString = null, preferredAccidental: preferredAccidental = null, explicitAccidental: explicitAccidental = false }){
|
|
2235
2232
|
this.number = null;
|
|
2236
2233
|
this.minor = false;
|
|
2237
2234
|
this.referenceKeyGrade = null;
|
|
2238
2235
|
this.referenceKeyMode = null;
|
|
2239
2236
|
this.originalKeyString = null;
|
|
2237
|
+
this.explicitAccidental = false;
|
|
2240
2238
|
this.grade = grade;
|
|
2241
2239
|
this.number = number;
|
|
2242
2240
|
this.minor = minor;
|
|
@@ -2246,6 +2244,7 @@ const $c2d6ab25ad00308f$var$PREFERS_FLAT_NUMBERS = [
|
|
|
2246
2244
|
this.referenceKeyGrade = referenceKeyGrade;
|
|
2247
2245
|
this.referenceKeyMode = referenceKeyMode;
|
|
2248
2246
|
this.originalKeyString = originalKeyString;
|
|
2247
|
+
this.explicitAccidental = explicitAccidental;
|
|
2249
2248
|
}
|
|
2250
2249
|
distanceTo(otherKey) {
|
|
2251
2250
|
const otherKeyObj = $c2d6ab25ad00308f$var$Key.wrapOrFail(otherKey);
|
|
@@ -2499,7 +2498,8 @@ const $c2d6ab25ad00308f$var$PREFERS_FLAT_NUMBERS = [
|
|
|
2499
2498
|
useAccidental(newAccidental) {
|
|
2500
2499
|
this.ensureGrade();
|
|
2501
2500
|
return this.set({
|
|
2502
|
-
accidental: newAccidental
|
|
2501
|
+
accidental: newAccidental,
|
|
2502
|
+
explicitAccidental: newAccidental !== null
|
|
2503
2503
|
});
|
|
2504
2504
|
}
|
|
2505
2505
|
/** @deprecated Use useAccidental instead */ useModifier(newAccidental) {
|
|
@@ -2518,6 +2518,8 @@ const $c2d6ab25ad00308f$var$PREFERS_FLAT_NUMBERS = [
|
|
|
2518
2518
|
}
|
|
2519
2519
|
normalizeEnharmonics(key) {
|
|
2520
2520
|
if (key) {
|
|
2521
|
+
// Preserve explicit accidental choices made via useAccidental()
|
|
2522
|
+
if (this.explicitAccidental) return this.clone();
|
|
2521
2523
|
const rootKeyString = $c2d6ab25ad00308f$var$Key.wrapOrFail(key).toString({
|
|
2522
2524
|
showMinor: true
|
|
2523
2525
|
});
|
|
@@ -2542,6 +2544,7 @@ const $c2d6ab25ad00308f$var$PREFERS_FLAT_NUMBERS = [
|
|
|
2542
2544
|
referenceKeyGrade: this.referenceKeyGrade,
|
|
2543
2545
|
originalKeyString: this.originalKeyString,
|
|
2544
2546
|
preferredAccidental: this.preferredAccidental,
|
|
2547
|
+
explicitAccidental: this.explicitAccidental,
|
|
2545
2548
|
...overwrite ? attributes : {}
|
|
2546
2549
|
});
|
|
2547
2550
|
}
|
|
@@ -5113,7 +5116,6 @@ var $6c1ed1378c3b5965$export$2e2bcd8739ae039 = $6c1ed1378c3b5965$var$ChordDefini
|
|
|
5113
5116
|
|
|
5114
5117
|
|
|
5115
5118
|
|
|
5116
|
-
|
|
5117
5119
|
/**
|
|
5118
5120
|
* Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format-specification/#overview
|
|
5119
5121
|
*/ class $0bd084786477abba$var$Comment {
|
|
@@ -6431,10 +6433,10 @@ var $15f1d40e3d1ed3a0$export$2e2bcd8739ae039 = $15f1d40e3d1ed3a0$var$Ternary;
|
|
|
6431
6433
|
}
|
|
6432
6434
|
formatChordLyricsPairChords(chordLyricsPair) {
|
|
6433
6435
|
if (chordLyricsPair.chords) {
|
|
6434
|
-
const
|
|
6435
|
-
if (!
|
|
6436
|
-
const
|
|
6437
|
-
return `[${
|
|
6436
|
+
const chordObj = chordLyricsPair.chord;
|
|
6437
|
+
if (!chordObj) return `[${chordLyricsPair.chords}]`;
|
|
6438
|
+
const finalChord = this.configuration.normalizeChords ? chordObj.normalize() : chordObj;
|
|
6439
|
+
return `[${finalChord}]`;
|
|
6438
6440
|
}
|
|
6439
6441
|
if (chordLyricsPair.annotation) return `[*${chordLyricsPair.annotation}]`;
|
|
6440
6442
|
return '';
|
|
@@ -15036,431 +15038,435 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
15036
15038
|
const peg$c1455 = peg$literalExpectation("+11b9", false);
|
|
15037
15039
|
const peg$c1456 = "+11-9";
|
|
15038
15040
|
const peg$c1457 = peg$literalExpectation("+11-9", false);
|
|
15039
|
-
const peg$c1458 = "
|
|
15040
|
-
const peg$c1459 = peg$literalExpectation("
|
|
15041
|
-
const peg$c1460 = "
|
|
15042
|
-
const peg$c1461 = peg$literalExpectation("
|
|
15043
|
-
const peg$c1462 = "+13#
|
|
15044
|
-
const peg$c1463 = peg$literalExpectation("+13#
|
|
15045
|
-
const peg$c1464 = "+
|
|
15046
|
-
const peg$c1465 = peg$literalExpectation("+
|
|
15047
|
-
const peg$c1466 = "+
|
|
15048
|
-
const peg$c1467 = peg$literalExpectation("+
|
|
15049
|
-
const peg$c1468 = "
|
|
15050
|
-
const peg$c1469 = peg$literalExpectation("
|
|
15051
|
-
const peg$c1470 = "+
|
|
15052
|
-
const peg$c1471 = peg$literalExpectation("+
|
|
15053
|
-
const peg$c1472 = "M13-
|
|
15054
|
-
const peg$c1473 = peg$literalExpectation("M13-
|
|
15055
|
-
const peg$c1474 = "+
|
|
15056
|
-
const peg$c1475 = peg$literalExpectation("+
|
|
15057
|
-
const peg$c1476 = "
|
|
15058
|
-
const peg$c1477 = peg$literalExpectation("
|
|
15059
|
-
const peg$c1478 = "
|
|
15060
|
-
const peg$c1479 = peg$literalExpectation("
|
|
15061
|
-
const peg$c1480 = "
|
|
15062
|
-
const peg$c1481 = peg$literalExpectation("
|
|
15063
|
-
const peg$c1482 = "ma7#
|
|
15064
|
-
const peg$c1483 = peg$literalExpectation("ma7#
|
|
15065
|
-
const peg$c1484 = "ma7+
|
|
15066
|
-
const peg$c1485 = peg$literalExpectation("ma7+
|
|
15067
|
-
const peg$c1486 = "
|
|
15068
|
-
const peg$c1487 = peg$literalExpectation("
|
|
15069
|
-
const peg$c1488 = "
|
|
15070
|
-
const peg$c1489 = peg$literalExpectation("
|
|
15071
|
-
const peg$c1490 = "
|
|
15072
|
-
const peg$c1491 = peg$literalExpectation("
|
|
15073
|
-
const peg$c1492 = "
|
|
15074
|
-
const peg$c1493 = peg$literalExpectation("
|
|
15075
|
-
const peg$c1494 = "
|
|
15076
|
-
const peg$c1495 = peg$literalExpectation("
|
|
15077
|
-
const peg$c1496 = "ma7-
|
|
15078
|
-
const peg$c1497 = peg$literalExpectation("ma7-
|
|
15079
|
-
const peg$c1498 = "
|
|
15080
|
-
const peg$c1499 = peg$literalExpectation("
|
|
15081
|
-
const peg$c1500 = "
|
|
15082
|
-
const peg$c1501 = peg$literalExpectation("
|
|
15083
|
-
const peg$c1502 = "
|
|
15084
|
-
const peg$c1503 = peg$literalExpectation("
|
|
15085
|
-
const peg$c1504 = "
|
|
15086
|
-
const peg$c1505 = peg$literalExpectation("
|
|
15087
|
-
const peg$c1506 = "
|
|
15088
|
-
const peg$c1507 = peg$literalExpectation("
|
|
15089
|
-
const peg$c1508 = "
|
|
15090
|
-
const peg$c1509 = peg$literalExpectation("
|
|
15091
|
-
const peg$c1510 = "
|
|
15092
|
-
const peg$c1511 = peg$literalExpectation("
|
|
15093
|
-
const peg$c1512 = "
|
|
15094
|
-
const peg$c1513 = peg$literalExpectation("
|
|
15095
|
-
const peg$c1514 = "
|
|
15096
|
-
const peg$c1515 = peg$literalExpectation("
|
|
15097
|
-
const peg$c1516 = "
|
|
15098
|
-
const peg$c1517 = peg$literalExpectation("
|
|
15099
|
-
const peg$c1518 = "
|
|
15100
|
-
const peg$c1519 = peg$literalExpectation("
|
|
15101
|
-
const peg$c1520 = "(
|
|
15102
|
-
const peg$c1521 = peg$literalExpectation("(
|
|
15103
|
-
const peg$c1522 = "(
|
|
15104
|
-
const peg$c1523 = peg$literalExpectation("(
|
|
15105
|
-
const peg$c1524 = "
|
|
15106
|
-
const peg$c1525 = peg$literalExpectation("
|
|
15107
|
-
const peg$c1526 = "
|
|
15108
|
-
const peg$c1527 = peg$literalExpectation("
|
|
15109
|
-
const peg$c1528 = "
|
|
15110
|
-
const peg$c1529 = peg$literalExpectation("
|
|
15111
|
-
const peg$c1530 = "
|
|
15112
|
-
const peg$c1531 = peg$literalExpectation("
|
|
15113
|
-
const peg$c1532 = "
|
|
15114
|
-
const peg$c1533 = peg$literalExpectation("
|
|
15115
|
-
const peg$c1534 = "
|
|
15116
|
-
const peg$c1535 = peg$literalExpectation("
|
|
15117
|
-
const peg$c1536 = "
|
|
15118
|
-
const peg$c1537 = peg$literalExpectation("
|
|
15119
|
-
const peg$c1538 = "(
|
|
15120
|
-
const peg$c1539 = peg$literalExpectation("(
|
|
15121
|
-
const peg$c1540 = "
|
|
15122
|
-
const peg$c1541 = peg$literalExpectation("
|
|
15123
|
-
const peg$c1542 = "
|
|
15124
|
-
const peg$c1543 = peg$literalExpectation("
|
|
15125
|
-
const peg$c1544 = "
|
|
15126
|
-
const peg$c1545 = peg$literalExpectation("
|
|
15127
|
-
const peg$c1546 = "
|
|
15128
|
-
const peg$c1547 = peg$literalExpectation("
|
|
15129
|
-
const peg$c1548 = "
|
|
15130
|
-
const peg$c1549 = peg$literalExpectation("
|
|
15131
|
-
const peg$c1550 = "
|
|
15132
|
-
const peg$c1551 = peg$literalExpectation("
|
|
15133
|
-
const peg$c1552 = "11#
|
|
15134
|
-
const peg$c1553 = peg$literalExpectation("11#
|
|
15135
|
-
const peg$c1554 = "11+
|
|
15136
|
-
const peg$c1555 = peg$literalExpectation("11+
|
|
15137
|
-
const peg$c1556 = "
|
|
15138
|
-
const peg$c1557 = peg$literalExpectation("
|
|
15139
|
-
const peg$c1558 = "11
|
|
15140
|
-
const peg$c1559 = peg$literalExpectation("11
|
|
15141
|
-
const peg$c1560 = "
|
|
15142
|
-
const peg$c1561 = peg$literalExpectation("
|
|
15143
|
-
const peg$c1562 = "11-
|
|
15144
|
-
const peg$c1563 = peg$literalExpectation("11-
|
|
15145
|
-
const peg$c1564 = "
|
|
15146
|
-
const peg$c1565 = peg$literalExpectation("
|
|
15147
|
-
const peg$c1566 = "
|
|
15148
|
-
const peg$c1567 = peg$literalExpectation("
|
|
15149
|
-
const peg$c1568 = "13#
|
|
15150
|
-
const peg$c1569 = peg$literalExpectation("13#
|
|
15151
|
-
const peg$c1570 = "13+
|
|
15152
|
-
const peg$c1571 = peg$literalExpectation("13+
|
|
15153
|
-
const peg$c1572 = "
|
|
15154
|
-
const peg$c1573 = peg$literalExpectation("
|
|
15155
|
-
const peg$c1574 = "13
|
|
15156
|
-
const peg$c1575 = peg$literalExpectation("13
|
|
15157
|
-
const peg$c1576 = "
|
|
15158
|
-
const peg$c1577 = peg$literalExpectation("
|
|
15159
|
-
const peg$c1578 = "13-
|
|
15160
|
-
const peg$c1579 = peg$literalExpectation("13-
|
|
15161
|
-
const peg$c1580 = "
|
|
15162
|
-
const peg$c1581 = peg$literalExpectation("
|
|
15163
|
-
const peg$c1582 = "
|
|
15164
|
-
const peg$c1583 = peg$literalExpectation("
|
|
15165
|
-
const peg$c1584 = "
|
|
15166
|
-
const peg$c1585 = peg$literalExpectation("
|
|
15167
|
-
const peg$c1586 = "
|
|
15168
|
-
const peg$c1587 = peg$literalExpectation("
|
|
15169
|
-
const peg$c1588 = "
|
|
15170
|
-
const peg$c1589 = peg$literalExpectation("
|
|
15171
|
-
const peg$c1590 = "
|
|
15172
|
-
const peg$c1591 = peg$literalExpectation("
|
|
15173
|
-
const peg$c1592 = "
|
|
15174
|
-
const peg$c1593 = peg$literalExpectation("
|
|
15175
|
-
const peg$c1594 = "
|
|
15176
|
-
const peg$c1595 = peg$literalExpectation("
|
|
15177
|
-
const peg$c1596 = "
|
|
15178
|
-
const peg$c1597 = peg$literalExpectation("
|
|
15179
|
-
const peg$c1598 = "7
|
|
15180
|
-
const peg$c1599 = peg$literalExpectation("7
|
|
15181
|
-
const peg$c1600 = "
|
|
15182
|
-
const peg$c1601 = peg$literalExpectation("
|
|
15183
|
-
const peg$c1602 = "7
|
|
15184
|
-
const peg$c1603 = peg$literalExpectation("7
|
|
15185
|
-
const peg$c1604 = "
|
|
15186
|
-
const peg$c1605 = peg$literalExpectation("
|
|
15187
|
-
const peg$c1606 = "
|
|
15188
|
-
const peg$c1607 = peg$literalExpectation("
|
|
15189
|
-
const peg$c1608 = "
|
|
15190
|
-
const peg$c1609 = peg$literalExpectation("
|
|
15191
|
-
const peg$c1610 = "
|
|
15192
|
-
const peg$c1611 = peg$literalExpectation("
|
|
15193
|
-
const peg$c1612 = "
|
|
15194
|
-
const peg$c1613 = peg$literalExpectation("
|
|
15195
|
-
const peg$c1614 = "
|
|
15196
|
-
const peg$c1615 = peg$literalExpectation("
|
|
15197
|
-
const peg$c1616 = "
|
|
15198
|
-
const peg$c1617 = peg$literalExpectation("
|
|
15199
|
-
const peg$c1618 = "
|
|
15200
|
-
const peg$c1619 = peg$literalExpectation("
|
|
15201
|
-
const peg$c1620 = "
|
|
15202
|
-
const peg$c1621 = peg$literalExpectation("
|
|
15203
|
-
const peg$c1622 = "
|
|
15204
|
-
const peg$c1623 = peg$literalExpectation("
|
|
15205
|
-
const peg$c1624 = "
|
|
15206
|
-
const peg$c1625 = peg$literalExpectation("
|
|
15207
|
-
const peg$c1626 = "
|
|
15208
|
-
const peg$c1627 = peg$literalExpectation("
|
|
15209
|
-
const peg$c1628 = "
|
|
15210
|
-
const peg$c1629 = peg$literalExpectation("
|
|
15211
|
-
const peg$c1630 = "
|
|
15212
|
-
const peg$c1631 = peg$literalExpectation("
|
|
15213
|
-
const peg$c1632 = "
|
|
15214
|
-
const peg$c1633 = peg$literalExpectation("
|
|
15215
|
-
const peg$c1634 = "
|
|
15216
|
-
const peg$c1635 = peg$literalExpectation("
|
|
15217
|
-
const peg$c1636 = "
|
|
15218
|
-
const peg$c1637 = peg$literalExpectation("
|
|
15219
|
-
const peg$c1638 = "
|
|
15220
|
-
const peg$c1639 = peg$literalExpectation("
|
|
15221
|
-
const peg$c1640 = "
|
|
15222
|
-
const peg$c1641 = peg$literalExpectation("
|
|
15223
|
-
const peg$c1642 = "
|
|
15224
|
-
const peg$c1643 = peg$literalExpectation("
|
|
15225
|
-
const peg$c1644 = "
|
|
15226
|
-
const peg$c1645 = peg$literalExpectation("
|
|
15227
|
-
const peg$c1646 = "
|
|
15228
|
-
const peg$c1647 = peg$literalExpectation("
|
|
15229
|
-
const peg$c1648 = "
|
|
15230
|
-
const peg$c1649 = peg$literalExpectation("
|
|
15231
|
-
const peg$c1650 = "
|
|
15232
|
-
const peg$c1651 = peg$literalExpectation("
|
|
15233
|
-
const peg$c1652 = "m7
|
|
15234
|
-
const peg$c1653 = peg$literalExpectation("m7
|
|
15235
|
-
const peg$c1654 = "
|
|
15236
|
-
const peg$c1655 = peg$literalExpectation("
|
|
15237
|
-
const peg$c1656 = "
|
|
15238
|
-
const peg$c1657 = peg$literalExpectation("
|
|
15239
|
-
const peg$c1658 = "
|
|
15240
|
-
const peg$c1659 = peg$literalExpectation("
|
|
15241
|
-
const peg$c1660 = "
|
|
15242
|
-
const peg$c1661 = peg$literalExpectation("
|
|
15243
|
-
const peg$c1662 = "
|
|
15244
|
-
const peg$c1663 = peg$literalExpectation("
|
|
15245
|
-
const peg$c1664 = "
|
|
15246
|
-
const peg$c1665 = peg$literalExpectation("
|
|
15247
|
-
const peg$c1666 = "
|
|
15248
|
-
const peg$c1667 = peg$literalExpectation("
|
|
15249
|
-
const peg$c1668 = "
|
|
15250
|
-
const peg$c1669 = peg$literalExpectation("
|
|
15251
|
-
const peg$c1670 = "
|
|
15252
|
-
const peg$c1671 = peg$literalExpectation("
|
|
15253
|
-
const peg$c1672 = "
|
|
15254
|
-
const peg$c1673 = peg$literalExpectation("
|
|
15255
|
-
const peg$c1674 = "
|
|
15256
|
-
const peg$c1675 = peg$literalExpectation("
|
|
15257
|
-
const peg$c1676 = "
|
|
15258
|
-
const peg$c1677 = peg$literalExpectation("
|
|
15259
|
-
const peg$c1678 = "
|
|
15260
|
-
const peg$c1679 = peg$literalExpectation("
|
|
15261
|
-
const peg$c1680 = "
|
|
15262
|
-
const peg$c1681 = peg$literalExpectation("
|
|
15263
|
-
const peg$c1682 = "
|
|
15264
|
-
const peg$c1683 = peg$literalExpectation("
|
|
15265
|
-
const peg$c1684 = "
|
|
15266
|
-
const peg$c1685 = peg$literalExpectation("
|
|
15267
|
-
const peg$c1686 = "
|
|
15268
|
-
const peg$c1687 = peg$literalExpectation("
|
|
15269
|
-
const peg$c1688 = "
|
|
15270
|
-
const peg$c1689 = peg$literalExpectation("
|
|
15271
|
-
const peg$c1690 = "
|
|
15272
|
-
const peg$c1691 = peg$literalExpectation("
|
|
15273
|
-
const peg$c1692 = "
|
|
15274
|
-
const peg$c1693 = peg$literalExpectation("
|
|
15275
|
-
const peg$c1694 = "
|
|
15276
|
-
const peg$c1695 = peg$literalExpectation("
|
|
15277
|
-
const peg$c1696 = "
|
|
15278
|
-
const peg$c1697 = peg$literalExpectation("
|
|
15279
|
-
const peg$c1698 = "
|
|
15280
|
-
const peg$c1699 = peg$literalExpectation("
|
|
15281
|
-
const peg$c1700 = "
|
|
15282
|
-
const peg$c1701 = peg$literalExpectation("
|
|
15283
|
-
const peg$c1702 = "
|
|
15284
|
-
const peg$c1703 = peg$literalExpectation("
|
|
15285
|
-
const peg$c1704 = "+7#
|
|
15286
|
-
const peg$c1705 = peg$literalExpectation("+7#
|
|
15287
|
-
const peg$c1706 = "M7+
|
|
15288
|
-
const peg$c1707 = peg$literalExpectation("M7+
|
|
15289
|
-
const peg$c1708 = "+
|
|
15290
|
-
const peg$c1709 = peg$literalExpectation("+
|
|
15291
|
-
const peg$c1710 = "M7
|
|
15292
|
-
const peg$c1711 = peg$literalExpectation("M7
|
|
15293
|
-
const peg$c1712 = "+
|
|
15294
|
-
const peg$c1713 = peg$literalExpectation("+
|
|
15295
|
-
const peg$c1714 = "M7-
|
|
15296
|
-
const peg$c1715 = peg$literalExpectation("M7-
|
|
15297
|
-
const peg$c1716 = "+
|
|
15298
|
-
const peg$c1717 = peg$literalExpectation("+
|
|
15299
|
-
const peg$c1718 = "
|
|
15300
|
-
const peg$c1719 = peg$literalExpectation("
|
|
15301
|
-
const peg$c1720 = "+
|
|
15302
|
-
const peg$c1721 = peg$literalExpectation("+
|
|
15303
|
-
const peg$c1722 = "M9
|
|
15304
|
-
const peg$c1723 = peg$literalExpectation("M9
|
|
15305
|
-
const peg$c1724 = "
|
|
15306
|
-
const peg$c1725 = peg$literalExpectation("
|
|
15307
|
-
const peg$c1726 = "
|
|
15308
|
-
const peg$c1727 = peg$literalExpectation("
|
|
15309
|
-
const peg$c1728 = "
|
|
15310
|
-
const peg$c1729 = peg$literalExpectation("
|
|
15311
|
-
const peg$c1730 = "(
|
|
15312
|
-
const peg$c1731 = peg$literalExpectation("(
|
|
15313
|
-
const peg$c1732 = "(
|
|
15314
|
-
const peg$c1733 = peg$literalExpectation("(
|
|
15315
|
-
const peg$c1734 = "(
|
|
15316
|
-
const peg$c1735 = peg$literalExpectation("(
|
|
15317
|
-
const peg$c1736 = "
|
|
15318
|
-
const peg$c1737 = peg$literalExpectation("
|
|
15319
|
-
const peg$c1738 = "
|
|
15320
|
-
const peg$c1739 = peg$literalExpectation("
|
|
15321
|
-
const peg$c1740 = "
|
|
15322
|
-
const peg$c1741 = peg$literalExpectation("
|
|
15323
|
-
const peg$c1742 = "
|
|
15324
|
-
const peg$c1743 = peg$literalExpectation("
|
|
15325
|
-
const peg$c1744 = "
|
|
15326
|
-
const peg$c1745 = peg$literalExpectation("
|
|
15327
|
-
const peg$c1746 = "
|
|
15328
|
-
const peg$c1747 = peg$literalExpectation("
|
|
15329
|
-
const peg$c1748 = "
|
|
15330
|
-
const peg$c1749 = peg$literalExpectation("
|
|
15331
|
-
const peg$c1750 = "7#
|
|
15332
|
-
const peg$c1751 = peg$literalExpectation("7#
|
|
15333
|
-
const peg$c1752 = "7+
|
|
15334
|
-
const peg$c1753 = peg$literalExpectation("7+
|
|
15335
|
-
const peg$c1754 = "
|
|
15336
|
-
const peg$c1755 = peg$literalExpectation("
|
|
15337
|
-
const peg$c1756 = "7
|
|
15338
|
-
const peg$c1757 = peg$literalExpectation("7
|
|
15339
|
-
const peg$c1758 = "
|
|
15340
|
-
const peg$c1759 = peg$literalExpectation("
|
|
15341
|
-
const peg$c1760 = "7-
|
|
15342
|
-
const peg$c1761 = peg$literalExpectation("7-
|
|
15343
|
-
const peg$c1762 = "
|
|
15344
|
-
const peg$c1763 = peg$literalExpectation("
|
|
15345
|
-
const peg$c1764 = "9
|
|
15346
|
-
const peg$c1765 = peg$literalExpectation("9
|
|
15347
|
-
const peg$c1766 = "
|
|
15348
|
-
const peg$c1767 = peg$literalExpectation("
|
|
15349
|
-
const peg$c1768 = "9
|
|
15350
|
-
const peg$c1769 = peg$literalExpectation("9
|
|
15351
|
-
const peg$c1770 = "
|
|
15352
|
-
const peg$c1771 = peg$literalExpectation("
|
|
15353
|
-
const peg$c1772 = "
|
|
15354
|
-
const peg$c1773 = peg$literalExpectation("
|
|
15355
|
-
const peg$c1774 = "
|
|
15356
|
-
const peg$c1775 = peg$literalExpectation("
|
|
15357
|
-
const peg$c1776 = "
|
|
15358
|
-
const peg$c1777 = peg$literalExpectation("
|
|
15359
|
-
const peg$c1778 = "
|
|
15360
|
-
const peg$c1779 = peg$literalExpectation("
|
|
15361
|
-
const peg$c1780 = "
|
|
15362
|
-
const peg$c1781 = peg$literalExpectation("
|
|
15363
|
-
const peg$c1782 = "
|
|
15364
|
-
const peg$c1783 = peg$literalExpectation("
|
|
15365
|
-
const peg$c1784 = "
|
|
15366
|
-
const peg$c1785 = peg$literalExpectation("
|
|
15367
|
-
const peg$c1786 = "m+
|
|
15368
|
-
const peg$c1787 = peg$literalExpectation("m+
|
|
15369
|
-
const peg$c1788 = "
|
|
15370
|
-
const peg$c1789 = peg$literalExpectation("
|
|
15371
|
-
const peg$c1790 = "
|
|
15372
|
-
const peg$c1791 = peg$literalExpectation("
|
|
15373
|
-
const peg$c1792 = "
|
|
15374
|
-
const peg$c1793 = peg$literalExpectation("
|
|
15375
|
-
const peg$c1794 = "-
|
|
15376
|
-
const peg$c1795 = peg$literalExpectation("-
|
|
15377
|
-
const peg$c1796 = "
|
|
15378
|
-
const peg$c1797 = peg$literalExpectation("
|
|
15379
|
-
const peg$c1798 = "
|
|
15380
|
-
const peg$c1799 = peg$literalExpectation("
|
|
15381
|
-
const peg$c1800 = "
|
|
15382
|
-
const peg$c1801 = peg$literalExpectation("
|
|
15383
|
-
const peg$c1802 = "
|
|
15384
|
-
const peg$c1803 = peg$literalExpectation("
|
|
15385
|
-
const peg$c1804 = "
|
|
15386
|
-
const peg$c1805 = peg$literalExpectation("
|
|
15387
|
-
const peg$c1806 = "
|
|
15388
|
-
const peg$c1807 = peg$literalExpectation("
|
|
15389
|
-
const peg$c1808 = "
|
|
15390
|
-
const peg$c1809 = peg$literalExpectation("
|
|
15391
|
-
const peg$c1810 = "
|
|
15392
|
-
const peg$c1811 = peg$literalExpectation("
|
|
15393
|
-
const peg$c1812 = "
|
|
15394
|
-
const peg$c1813 = peg$literalExpectation("
|
|
15395
|
-
const peg$c1814 = "+
|
|
15396
|
-
const peg$c1815 = peg$literalExpectation("+
|
|
15397
|
-
const peg$c1816 = "
|
|
15398
|
-
const peg$c1817 = peg$literalExpectation("
|
|
15399
|
-
const peg$c1818 = "
|
|
15400
|
-
const peg$c1819 = peg$literalExpectation("
|
|
15401
|
-
const peg$c1820 = "
|
|
15402
|
-
const peg$c1821 = peg$literalExpectation("
|
|
15403
|
-
const peg$c1822 = "
|
|
15404
|
-
const peg$c1823 = peg$literalExpectation("
|
|
15405
|
-
const peg$c1824 = "
|
|
15406
|
-
const peg$c1825 = peg$literalExpectation("
|
|
15407
|
-
const peg$c1826 = "
|
|
15408
|
-
const peg$c1827 = peg$literalExpectation("
|
|
15409
|
-
const peg$c1828 = "
|
|
15410
|
-
const peg$c1829 = peg$literalExpectation("
|
|
15411
|
-
const peg$c1830 = "
|
|
15412
|
-
const peg$c1831 = peg$literalExpectation("
|
|
15413
|
-
const peg$c1832 = "
|
|
15414
|
-
const peg$c1833 = peg$literalExpectation("
|
|
15415
|
-
const peg$c1834 = "
|
|
15416
|
-
const peg$c1835 = peg$literalExpectation("
|
|
15417
|
-
const peg$c1836 = "
|
|
15418
|
-
const peg$c1837 = peg$literalExpectation("
|
|
15419
|
-
const peg$c1838 = "
|
|
15420
|
-
const peg$c1839 = peg$literalExpectation("
|
|
15421
|
-
const peg$c1840 = "
|
|
15422
|
-
const peg$c1841 = peg$literalExpectation("
|
|
15423
|
-
const peg$c1842 = "
|
|
15424
|
-
const peg$c1843 = peg$literalExpectation("
|
|
15425
|
-
const peg$c1844 = "
|
|
15426
|
-
const peg$c1845 = peg$literalExpectation("
|
|
15427
|
-
const peg$c1846 = "
|
|
15428
|
-
const peg$c1847 = peg$literalExpectation("
|
|
15429
|
-
const peg$c1848 = "
|
|
15430
|
-
const peg$c1849 = peg$literalExpectation("
|
|
15431
|
-
const peg$c1850 = "
|
|
15432
|
-
const peg$c1851 = peg$literalExpectation("
|
|
15433
|
-
const peg$c1852 = "
|
|
15434
|
-
const peg$c1853 = peg$literalExpectation("
|
|
15435
|
-
const peg$c1854 =
|
|
15436
|
-
const peg$c1855 = "
|
|
15437
|
-
const peg$c1856 =
|
|
15438
|
-
const peg$c1857 = "
|
|
15439
|
-
const peg$c1858 = peg$literalExpectation("
|
|
15440
|
-
const peg$c1859 = "
|
|
15441
|
-
const peg$c1860 = peg$literalExpectation("
|
|
15442
|
-
const peg$c1861 = "
|
|
15443
|
-
const peg$c1862 = peg$literalExpectation("
|
|
15444
|
-
const peg$c1863 = "
|
|
15445
|
-
const peg$c1864 = peg$literalExpectation("
|
|
15446
|
-
const peg$c1865 = "-
|
|
15447
|
-
const peg$c1866 = peg$literalExpectation("-
|
|
15448
|
-
const peg$c1867 = "
|
|
15449
|
-
const peg$c1868 = peg$literalExpectation("
|
|
15450
|
-
const peg$c1869 = "-
|
|
15451
|
-
const peg$c1870 = peg$literalExpectation("-
|
|
15452
|
-
const peg$c1871 = "
|
|
15453
|
-
const peg$c1872 = peg$literalExpectation("
|
|
15454
|
-
const peg$c1873 = "
|
|
15455
|
-
const peg$c1874 = peg$literalExpectation("
|
|
15456
|
-
const peg$c1875 = "
|
|
15457
|
-
const peg$c1876 = peg$literalExpectation("
|
|
15458
|
-
const peg$c1877 = "
|
|
15459
|
-
const peg$c1878 = peg$literalExpectation("
|
|
15460
|
-
const peg$c1879 = "
|
|
15461
|
-
const peg$c1880 = peg$literalExpectation("
|
|
15462
|
-
const peg$c1881 =
|
|
15463
|
-
const peg$c1882 = peg$
|
|
15041
|
+
const peg$c1458 = "maj13";
|
|
15042
|
+
const peg$c1459 = peg$literalExpectation("maj13", false);
|
|
15043
|
+
const peg$c1460 = "Maj13";
|
|
15044
|
+
const peg$c1461 = peg$literalExpectation("Maj13", false);
|
|
15045
|
+
const peg$c1462 = "+13#5";
|
|
15046
|
+
const peg$c1463 = peg$literalExpectation("+13#5", false);
|
|
15047
|
+
const peg$c1464 = "M13+5";
|
|
15048
|
+
const peg$c1465 = peg$literalExpectation("M13+5", false);
|
|
15049
|
+
const peg$c1466 = "+13#9";
|
|
15050
|
+
const peg$c1467 = peg$literalExpectation("+13#9", false);
|
|
15051
|
+
const peg$c1468 = "+13+9";
|
|
15052
|
+
const peg$c1469 = peg$literalExpectation("+13+9", false);
|
|
15053
|
+
const peg$c1470 = "+13b5";
|
|
15054
|
+
const peg$c1471 = peg$literalExpectation("+13b5", false);
|
|
15055
|
+
const peg$c1472 = "M13-5";
|
|
15056
|
+
const peg$c1473 = peg$literalExpectation("M13-5", false);
|
|
15057
|
+
const peg$c1474 = "+13b9";
|
|
15058
|
+
const peg$c1475 = peg$literalExpectation("+13b9", false);
|
|
15059
|
+
const peg$c1476 = "M13-9";
|
|
15060
|
+
const peg$c1477 = peg$literalExpectation("M13-9", false);
|
|
15061
|
+
const peg$c1478 = "+7#11";
|
|
15062
|
+
const peg$c1479 = peg$literalExpectation("+7#11", false);
|
|
15063
|
+
const peg$c1480 = "M7+11";
|
|
15064
|
+
const peg$c1481 = peg$literalExpectation("M7+11", false);
|
|
15065
|
+
const peg$c1482 = "ma7#5";
|
|
15066
|
+
const peg$c1483 = peg$literalExpectation("ma7#5", false);
|
|
15067
|
+
const peg$c1484 = "ma7+5";
|
|
15068
|
+
const peg$c1485 = peg$literalExpectation("ma7+5", false);
|
|
15069
|
+
const peg$c1486 = "ma7#9";
|
|
15070
|
+
const peg$c1487 = peg$literalExpectation("ma7#9", false);
|
|
15071
|
+
const peg$c1488 = "ma7+9";
|
|
15072
|
+
const peg$c1489 = peg$literalExpectation("ma7+9", false);
|
|
15073
|
+
const peg$c1490 = "+7b13";
|
|
15074
|
+
const peg$c1491 = peg$literalExpectation("+7b13", false);
|
|
15075
|
+
const peg$c1492 = "M7-13";
|
|
15076
|
+
const peg$c1493 = peg$literalExpectation("M7-13", false);
|
|
15077
|
+
const peg$c1494 = "ma7b5";
|
|
15078
|
+
const peg$c1495 = peg$literalExpectation("ma7b5", false);
|
|
15079
|
+
const peg$c1496 = "ma7-5";
|
|
15080
|
+
const peg$c1497 = peg$literalExpectation("ma7-5", false);
|
|
15081
|
+
const peg$c1498 = "ma7b9";
|
|
15082
|
+
const peg$c1499 = peg$literalExpectation("ma7b9", false);
|
|
15083
|
+
const peg$c1500 = "ma7-9";
|
|
15084
|
+
const peg$c1501 = peg$literalExpectation("ma7-9", false);
|
|
15085
|
+
const peg$c1502 = "9(#7)";
|
|
15086
|
+
const peg$c1503 = peg$literalExpectation("9(#7)", false);
|
|
15087
|
+
const peg$c1504 = "+9#11";
|
|
15088
|
+
const peg$c1505 = peg$literalExpectation("+9#11", false);
|
|
15089
|
+
const peg$c1506 = "M9+11";
|
|
15090
|
+
const peg$c1507 = peg$literalExpectation("M9+11", false);
|
|
15091
|
+
const peg$c1508 = "ma9#5";
|
|
15092
|
+
const peg$c1509 = peg$literalExpectation("ma9#5", false);
|
|
15093
|
+
const peg$c1510 = "ma9+5";
|
|
15094
|
+
const peg$c1511 = peg$literalExpectation("ma9+5", false);
|
|
15095
|
+
const peg$c1512 = "+9b13";
|
|
15096
|
+
const peg$c1513 = peg$literalExpectation("+9b13", false);
|
|
15097
|
+
const peg$c1514 = "M9-13";
|
|
15098
|
+
const peg$c1515 = peg$literalExpectation("M9-13", false);
|
|
15099
|
+
const peg$c1516 = "ma9b5";
|
|
15100
|
+
const peg$c1517 = peg$literalExpectation("ma9b5", false);
|
|
15101
|
+
const peg$c1518 = "ma9-5";
|
|
15102
|
+
const peg$c1519 = peg$literalExpectation("ma9-5", false);
|
|
15103
|
+
const peg$c1520 = "(#4)";
|
|
15104
|
+
const peg$c1521 = peg$literalExpectation("(#4)", false);
|
|
15105
|
+
const peg$c1522 = "(+4)";
|
|
15106
|
+
const peg$c1523 = peg$literalExpectation("(+4)", false);
|
|
15107
|
+
const peg$c1524 = "(11)";
|
|
15108
|
+
const peg$c1525 = peg$literalExpectation("(11)", false);
|
|
15109
|
+
const peg$c1526 = "(13)";
|
|
15110
|
+
const peg$c1527 = peg$literalExpectation("(13)", false);
|
|
15111
|
+
const peg$c1528 = "add2";
|
|
15112
|
+
const peg$c1529 = peg$literalExpectation("add2", false);
|
|
15113
|
+
const peg$c1530 = "add4";
|
|
15114
|
+
const peg$c1531 = peg$literalExpectation("add4", false);
|
|
15115
|
+
const peg$c1532 = "add6";
|
|
15116
|
+
const peg$c1533 = peg$literalExpectation("add6", false);
|
|
15117
|
+
const peg$c1534 = "add9";
|
|
15118
|
+
const peg$c1535 = peg$literalExpectation("add9", false);
|
|
15119
|
+
const peg$c1536 = "(b5)";
|
|
15120
|
+
const peg$c1537 = peg$literalExpectation("(b5)", false);
|
|
15121
|
+
const peg$c1538 = "(-5)";
|
|
15122
|
+
const peg$c1539 = peg$literalExpectation("(-5)", false);
|
|
15123
|
+
const peg$c1540 = "2(6)";
|
|
15124
|
+
const peg$c1541 = peg$literalExpectation("2(6)", false);
|
|
15125
|
+
const peg$c1542 = "(b6)";
|
|
15126
|
+
const peg$c1543 = peg$literalExpectation("(b6)", false);
|
|
15127
|
+
const peg$c1544 = "unis";
|
|
15128
|
+
const peg$c1545 = peg$literalExpectation("unis", false);
|
|
15129
|
+
const peg$c1546 = "Majj";
|
|
15130
|
+
const peg$c1547 = peg$literalExpectation("Majj", false);
|
|
15131
|
+
const peg$c1548 = "(#5)";
|
|
15132
|
+
const peg$c1549 = peg$literalExpectation("(#5)", false);
|
|
15133
|
+
const peg$c1550 = "(+5)";
|
|
15134
|
+
const peg$c1551 = peg$literalExpectation("(+5)", false);
|
|
15135
|
+
const peg$c1552 = "11#5";
|
|
15136
|
+
const peg$c1553 = peg$literalExpectation("11#5", false);
|
|
15137
|
+
const peg$c1554 = "11+5";
|
|
15138
|
+
const peg$c1555 = peg$literalExpectation("11+5", false);
|
|
15139
|
+
const peg$c1556 = "11#9";
|
|
15140
|
+
const peg$c1557 = peg$literalExpectation("11#9", false);
|
|
15141
|
+
const peg$c1558 = "11+9";
|
|
15142
|
+
const peg$c1559 = peg$literalExpectation("11+9", false);
|
|
15143
|
+
const peg$c1560 = "11b5";
|
|
15144
|
+
const peg$c1561 = peg$literalExpectation("11b5", false);
|
|
15145
|
+
const peg$c1562 = "11-5";
|
|
15146
|
+
const peg$c1563 = peg$literalExpectation("11-5", false);
|
|
15147
|
+
const peg$c1564 = "11b9";
|
|
15148
|
+
const peg$c1565 = peg$literalExpectation("11b9", false);
|
|
15149
|
+
const peg$c1566 = "11-9";
|
|
15150
|
+
const peg$c1567 = peg$literalExpectation("11-9", false);
|
|
15151
|
+
const peg$c1568 = "13#5";
|
|
15152
|
+
const peg$c1569 = peg$literalExpectation("13#5", false);
|
|
15153
|
+
const peg$c1570 = "13+5";
|
|
15154
|
+
const peg$c1571 = peg$literalExpectation("13+5", false);
|
|
15155
|
+
const peg$c1572 = "13#9";
|
|
15156
|
+
const peg$c1573 = peg$literalExpectation("13#9", false);
|
|
15157
|
+
const peg$c1574 = "13+9";
|
|
15158
|
+
const peg$c1575 = peg$literalExpectation("13+9", false);
|
|
15159
|
+
const peg$c1576 = "13b5";
|
|
15160
|
+
const peg$c1577 = peg$literalExpectation("13b5", false);
|
|
15161
|
+
const peg$c1578 = "13-5";
|
|
15162
|
+
const peg$c1579 = peg$literalExpectation("13-5", false);
|
|
15163
|
+
const peg$c1580 = "13b9";
|
|
15164
|
+
const peg$c1581 = peg$literalExpectation("13b9", false);
|
|
15165
|
+
const peg$c1582 = "13-9";
|
|
15166
|
+
const peg$c1583 = peg$literalExpectation("13-9", false);
|
|
15167
|
+
const peg$c1584 = "sus2";
|
|
15168
|
+
const peg$c1585 = peg$literalExpectation("sus2", false);
|
|
15169
|
+
const peg$c1586 = "2(4)";
|
|
15170
|
+
const peg$c1587 = peg$literalExpectation("2(4)", false);
|
|
15171
|
+
const peg$c1588 = "4(2)";
|
|
15172
|
+
const peg$c1589 = peg$literalExpectation("4(2)", false);
|
|
15173
|
+
const peg$c1590 = "6(2)";
|
|
15174
|
+
const peg$c1591 = peg$literalExpectation("6(2)", false);
|
|
15175
|
+
const peg$c1592 = "6(9)";
|
|
15176
|
+
const peg$c1593 = peg$literalExpectation("6(9)", false);
|
|
15177
|
+
const peg$c1594 = "dom7";
|
|
15178
|
+
const peg$c1595 = peg$literalExpectation("dom7", false);
|
|
15179
|
+
const peg$c1596 = "7#11";
|
|
15180
|
+
const peg$c1597 = peg$literalExpectation("7#11", false);
|
|
15181
|
+
const peg$c1598 = "7+11";
|
|
15182
|
+
const peg$c1599 = peg$literalExpectation("7+11", false);
|
|
15183
|
+
const peg$c1600 = "aug7";
|
|
15184
|
+
const peg$c1601 = peg$literalExpectation("aug7", false);
|
|
15185
|
+
const peg$c1602 = "7(6)";
|
|
15186
|
+
const peg$c1603 = peg$literalExpectation("7(6)", false);
|
|
15187
|
+
const peg$c1604 = "7b13";
|
|
15188
|
+
const peg$c1605 = peg$literalExpectation("7b13", false);
|
|
15189
|
+
const peg$c1606 = "7-13";
|
|
15190
|
+
const peg$c1607 = peg$literalExpectation("7-13", false);
|
|
15191
|
+
const peg$c1608 = "7sus";
|
|
15192
|
+
const peg$c1609 = peg$literalExpectation("7sus", false);
|
|
15193
|
+
const peg$c1610 = "dom9";
|
|
15194
|
+
const peg$c1611 = peg$literalExpectation("dom9", false);
|
|
15195
|
+
const peg$c1612 = "9#11";
|
|
15196
|
+
const peg$c1613 = peg$literalExpectation("9#11", false);
|
|
15197
|
+
const peg$c1614 = "9+11";
|
|
15198
|
+
const peg$c1615 = peg$literalExpectation("9+11", false);
|
|
15199
|
+
const peg$c1616 = "aug9";
|
|
15200
|
+
const peg$c1617 = peg$literalExpectation("aug9", false);
|
|
15201
|
+
const peg$c1618 = "9b13";
|
|
15202
|
+
const peg$c1619 = peg$literalExpectation("9b13", false);
|
|
15203
|
+
const peg$c1620 = "9-13";
|
|
15204
|
+
const peg$c1621 = peg$literalExpectation("9-13", false);
|
|
15205
|
+
const peg$c1622 = "9aug";
|
|
15206
|
+
const peg$c1623 = peg$literalExpectation("9aug", false);
|
|
15207
|
+
const peg$c1624 = "9sus";
|
|
15208
|
+
const peg$c1625 = peg$literalExpectation("9sus", false);
|
|
15209
|
+
const peg$c1626 = "dim7";
|
|
15210
|
+
const peg$c1627 = peg$literalExpectation("dim7", false);
|
|
15211
|
+
const peg$c1628 = "m(4)";
|
|
15212
|
+
const peg$c1629 = peg$literalExpectation("m(4)", false);
|
|
15213
|
+
const peg$c1630 = "m(9)";
|
|
15214
|
+
const peg$c1631 = peg$literalExpectation("m(9)", false);
|
|
15215
|
+
const peg$c1632 = "mi11";
|
|
15216
|
+
const peg$c1633 = peg$literalExpectation("mi11", false);
|
|
15217
|
+
const peg$c1634 = "m9+5";
|
|
15218
|
+
const peg$c1635 = peg$literalExpectation("m9+5", false);
|
|
15219
|
+
const peg$c1636 = "-9-5";
|
|
15220
|
+
const peg$c1637 = peg$literalExpectation("-9-5", false);
|
|
15221
|
+
const peg$c1638 = "mi13";
|
|
15222
|
+
const peg$c1639 = peg$literalExpectation("mi13", false);
|
|
15223
|
+
const peg$c1640 = "min2";
|
|
15224
|
+
const peg$c1641 = peg$literalExpectation("min2", false);
|
|
15225
|
+
const peg$c1642 = "min6";
|
|
15226
|
+
const peg$c1643 = peg$literalExpectation("min6", false);
|
|
15227
|
+
const peg$c1644 = "m6M7";
|
|
15228
|
+
const peg$c1645 = peg$literalExpectation("m6M7", false);
|
|
15229
|
+
const peg$c1646 = "m6+7";
|
|
15230
|
+
const peg$c1647 = peg$literalExpectation("m6+7", false);
|
|
15231
|
+
const peg$c1648 = "min7";
|
|
15232
|
+
const peg$c1649 = peg$literalExpectation("min7", false);
|
|
15233
|
+
const peg$c1650 = "m7#5";
|
|
15234
|
+
const peg$c1651 = peg$literalExpectation("m7#5", false);
|
|
15235
|
+
const peg$c1652 = "m7+5";
|
|
15236
|
+
const peg$c1653 = peg$literalExpectation("m7+5", false);
|
|
15237
|
+
const peg$c1654 = "-7#5";
|
|
15238
|
+
const peg$c1655 = peg$literalExpectation("-7#5", false);
|
|
15239
|
+
const peg$c1656 = "m7#9";
|
|
15240
|
+
const peg$c1657 = peg$literalExpectation("m7#9", false);
|
|
15241
|
+
const peg$c1658 = "m7+9";
|
|
15242
|
+
const peg$c1659 = peg$literalExpectation("m7+9", false);
|
|
15243
|
+
const peg$c1660 = "-7#9";
|
|
15244
|
+
const peg$c1661 = peg$literalExpectation("-7#9", false);
|
|
15245
|
+
const peg$c1662 = "m7b5";
|
|
15246
|
+
const peg$c1663 = peg$literalExpectation("m7b5", false);
|
|
15247
|
+
const peg$c1664 = "m7-5";
|
|
15248
|
+
const peg$c1665 = peg$literalExpectation("m7-5", false);
|
|
15249
|
+
const peg$c1666 = "-7b5";
|
|
15250
|
+
const peg$c1667 = peg$literalExpectation("-7b5", false);
|
|
15251
|
+
const peg$c1668 = "m7b9";
|
|
15252
|
+
const peg$c1669 = peg$literalExpectation("m7b9", false);
|
|
15253
|
+
const peg$c1670 = "m7-9";
|
|
15254
|
+
const peg$c1671 = peg$literalExpectation("m7-9", false);
|
|
15255
|
+
const peg$c1672 = "-7b9";
|
|
15256
|
+
const peg$c1673 = peg$literalExpectation("-7b9", false);
|
|
15257
|
+
const peg$c1674 = "min9";
|
|
15258
|
+
const peg$c1675 = peg$literalExpectation("min9", false);
|
|
15259
|
+
const peg$c1676 = "m9#5";
|
|
15260
|
+
const peg$c1677 = peg$literalExpectation("m9#5", false);
|
|
15261
|
+
const peg$c1678 = "-9#5";
|
|
15262
|
+
const peg$c1679 = peg$literalExpectation("-9#5", false);
|
|
15263
|
+
const peg$c1680 = "m9b5";
|
|
15264
|
+
const peg$c1681 = peg$literalExpectation("m9b5", false);
|
|
15265
|
+
const peg$c1682 = "m9-5";
|
|
15266
|
+
const peg$c1683 = peg$literalExpectation("m9-5", false);
|
|
15267
|
+
const peg$c1684 = "-9b5";
|
|
15268
|
+
const peg$c1685 = peg$literalExpectation("-9b5", false);
|
|
15269
|
+
const peg$c1686 = "m9M7";
|
|
15270
|
+
const peg$c1687 = peg$literalExpectation("m9M7", false);
|
|
15271
|
+
const peg$c1688 = "maj9";
|
|
15272
|
+
const peg$c1689 = peg$literalExpectation("maj9", false);
|
|
15273
|
+
const peg$c1690 = "ma11";
|
|
15274
|
+
const peg$c1691 = peg$literalExpectation("ma11", false);
|
|
15275
|
+
const peg$c1692 = "11#7";
|
|
15276
|
+
const peg$c1693 = peg$literalExpectation("11#7", false);
|
|
15277
|
+
const peg$c1694 = "11+7";
|
|
15278
|
+
const peg$c1695 = peg$literalExpectation("11+7", false);
|
|
15279
|
+
const peg$c1696 = "ma13";
|
|
15280
|
+
const peg$c1697 = peg$literalExpectation("ma13", false);
|
|
15281
|
+
const peg$c1698 = "ma69";
|
|
15282
|
+
const peg$c1699 = peg$literalExpectation("ma69", false);
|
|
15283
|
+
const peg$c1700 = "Maj7";
|
|
15284
|
+
const peg$c1701 = peg$literalExpectation("Maj7", false);
|
|
15285
|
+
const peg$c1702 = "maj7";
|
|
15286
|
+
const peg$c1703 = peg$literalExpectation("maj7", false);
|
|
15287
|
+
const peg$c1704 = "+7#5";
|
|
15288
|
+
const peg$c1705 = peg$literalExpectation("+7#5", false);
|
|
15289
|
+
const peg$c1706 = "M7+5";
|
|
15290
|
+
const peg$c1707 = peg$literalExpectation("M7+5", false);
|
|
15291
|
+
const peg$c1708 = "+7#9";
|
|
15292
|
+
const peg$c1709 = peg$literalExpectation("+7#9", false);
|
|
15293
|
+
const peg$c1710 = "M7+9";
|
|
15294
|
+
const peg$c1711 = peg$literalExpectation("M7+9", false);
|
|
15295
|
+
const peg$c1712 = "+7b5";
|
|
15296
|
+
const peg$c1713 = peg$literalExpectation("+7b5", false);
|
|
15297
|
+
const peg$c1714 = "M7-5";
|
|
15298
|
+
const peg$c1715 = peg$literalExpectation("M7-5", false);
|
|
15299
|
+
const peg$c1716 = "+7b9";
|
|
15300
|
+
const peg$c1717 = peg$literalExpectation("+7b9", false);
|
|
15301
|
+
const peg$c1718 = "M7-9";
|
|
15302
|
+
const peg$c1719 = peg$literalExpectation("M7-9", false);
|
|
15303
|
+
const peg$c1720 = "+9#5";
|
|
15304
|
+
const peg$c1721 = peg$literalExpectation("+9#5", false);
|
|
15305
|
+
const peg$c1722 = "M9+5";
|
|
15306
|
+
const peg$c1723 = peg$literalExpectation("M9+5", false);
|
|
15307
|
+
const peg$c1724 = "+9b5";
|
|
15308
|
+
const peg$c1725 = peg$literalExpectation("+9b5", false);
|
|
15309
|
+
const peg$c1726 = "M9-5";
|
|
15310
|
+
const peg$c1727 = peg$literalExpectation("M9-5", false);
|
|
15311
|
+
const peg$c1728 = "sus4";
|
|
15312
|
+
const peg$c1729 = peg$literalExpectation("sus4", false);
|
|
15313
|
+
const peg$c1730 = "(2)";
|
|
15314
|
+
const peg$c1731 = peg$literalExpectation("(2)", false);
|
|
15315
|
+
const peg$c1732 = "(4)";
|
|
15316
|
+
const peg$c1733 = peg$literalExpectation("(4)", false);
|
|
15317
|
+
const peg$c1734 = "(6)";
|
|
15318
|
+
const peg$c1735 = peg$literalExpectation("(6)", false);
|
|
15319
|
+
const peg$c1736 = "(7)";
|
|
15320
|
+
const peg$c1737 = peg$literalExpectation("(7)", false);
|
|
15321
|
+
const peg$c1738 = "(9)";
|
|
15322
|
+
const peg$c1739 = peg$literalExpectation("(9)", false);
|
|
15323
|
+
const peg$c1740 = "maj";
|
|
15324
|
+
const peg$c1741 = peg$literalExpectation("maj", false);
|
|
15325
|
+
const peg$c1742 = "aug";
|
|
15326
|
+
const peg$c1743 = peg$literalExpectation("aug", false);
|
|
15327
|
+
const peg$c1744 = "2+4";
|
|
15328
|
+
const peg$c1745 = peg$literalExpectation("2+4", false);
|
|
15329
|
+
const peg$c1746 = "2#4";
|
|
15330
|
+
const peg$c1747 = peg$literalExpectation("2#4", false);
|
|
15331
|
+
const peg$c1748 = "no3";
|
|
15332
|
+
const peg$c1749 = peg$literalExpectation("no3", false);
|
|
15333
|
+
const peg$c1750 = "7#5";
|
|
15334
|
+
const peg$c1751 = peg$literalExpectation("7#5", false);
|
|
15335
|
+
const peg$c1752 = "7+5";
|
|
15336
|
+
const peg$c1753 = peg$literalExpectation("7+5", false);
|
|
15337
|
+
const peg$c1754 = "7#9";
|
|
15338
|
+
const peg$c1755 = peg$literalExpectation("7#9", false);
|
|
15339
|
+
const peg$c1756 = "7+9";
|
|
15340
|
+
const peg$c1757 = peg$literalExpectation("7+9", false);
|
|
15341
|
+
const peg$c1758 = "7b5";
|
|
15342
|
+
const peg$c1759 = peg$literalExpectation("7b5", false);
|
|
15343
|
+
const peg$c1760 = "7-5";
|
|
15344
|
+
const peg$c1761 = peg$literalExpectation("7-5", false);
|
|
15345
|
+
const peg$c1762 = "7b9";
|
|
15346
|
+
const peg$c1763 = peg$literalExpectation("7b9", false);
|
|
15347
|
+
const peg$c1764 = "7-9";
|
|
15348
|
+
const peg$c1765 = peg$literalExpectation("7-9", false);
|
|
15349
|
+
const peg$c1766 = "9#5";
|
|
15350
|
+
const peg$c1767 = peg$literalExpectation("9#5", false);
|
|
15351
|
+
const peg$c1768 = "9+5";
|
|
15352
|
+
const peg$c1769 = peg$literalExpectation("9+5", false);
|
|
15353
|
+
const peg$c1770 = "9b5";
|
|
15354
|
+
const peg$c1771 = peg$literalExpectation("9b5", false);
|
|
15355
|
+
const peg$c1772 = "9-5";
|
|
15356
|
+
const peg$c1773 = peg$literalExpectation("9-5", false);
|
|
15357
|
+
const peg$c1774 = "dim";
|
|
15358
|
+
const peg$c1775 = peg$literalExpectation("dim", false);
|
|
15359
|
+
const peg$c1776 = "mb5";
|
|
15360
|
+
const peg$c1777 = peg$literalExpectation("mb5", false);
|
|
15361
|
+
const peg$c1778 = "m-5";
|
|
15362
|
+
const peg$c1779 = peg$literalExpectation("m-5", false);
|
|
15363
|
+
const peg$c1780 = "-b5";
|
|
15364
|
+
const peg$c1781 = peg$literalExpectation("-b5", false);
|
|
15365
|
+
const peg$c1782 = "min";
|
|
15366
|
+
const peg$c1783 = peg$literalExpectation("min", false);
|
|
15367
|
+
const peg$c1784 = "mM7";
|
|
15368
|
+
const peg$c1785 = peg$literalExpectation("mM7", false);
|
|
15369
|
+
const peg$c1786 = "m+7";
|
|
15370
|
+
const peg$c1787 = peg$literalExpectation("m+7", false);
|
|
15371
|
+
const peg$c1788 = "mM9";
|
|
15372
|
+
const peg$c1789 = peg$literalExpectation("mM9", false);
|
|
15373
|
+
const peg$c1790 = "m+9";
|
|
15374
|
+
const peg$c1791 = peg$literalExpectation("m+9", false);
|
|
15375
|
+
const peg$c1792 = "m11";
|
|
15376
|
+
const peg$c1793 = peg$literalExpectation("m11", false);
|
|
15377
|
+
const peg$c1794 = "-11";
|
|
15378
|
+
const peg$c1795 = peg$literalExpectation("-11", false);
|
|
15379
|
+
const peg$c1796 = "m13";
|
|
15380
|
+
const peg$c1797 = peg$literalExpectation("m13", false);
|
|
15381
|
+
const peg$c1798 = "-13";
|
|
15382
|
+
const peg$c1799 = peg$literalExpectation("-13", false);
|
|
15383
|
+
const peg$c1800 = "mi2";
|
|
15384
|
+
const peg$c1801 = peg$literalExpectation("mi2", false);
|
|
15385
|
+
const peg$c1802 = "mi6";
|
|
15386
|
+
const peg$c1803 = peg$literalExpectation("mi6", false);
|
|
15387
|
+
const peg$c1804 = "m69";
|
|
15388
|
+
const peg$c1805 = peg$literalExpectation("m69", false);
|
|
15389
|
+
const peg$c1806 = "mi7";
|
|
15390
|
+
const peg$c1807 = peg$literalExpectation("mi7", false);
|
|
15391
|
+
const peg$c1808 = "m74";
|
|
15392
|
+
const peg$c1809 = peg$literalExpectation("m74", false);
|
|
15393
|
+
const peg$c1810 = "mi9";
|
|
15394
|
+
const peg$c1811 = peg$literalExpectation("mi9", false);
|
|
15395
|
+
const peg$c1812 = "ma9";
|
|
15396
|
+
const peg$c1813 = peg$literalExpectation("ma9", false);
|
|
15397
|
+
const peg$c1814 = "+11";
|
|
15398
|
+
const peg$c1815 = peg$literalExpectation("+11", false);
|
|
15399
|
+
const peg$c1816 = "M11";
|
|
15400
|
+
const peg$c1817 = peg$literalExpectation("M11", false);
|
|
15401
|
+
const peg$c1818 = "+13";
|
|
15402
|
+
const peg$c1819 = peg$literalExpectation("+13", false);
|
|
15403
|
+
const peg$c1820 = "M13";
|
|
15404
|
+
const peg$c1821 = peg$literalExpectation("M13", false);
|
|
15405
|
+
const peg$c1822 = "ma6";
|
|
15406
|
+
const peg$c1823 = peg$literalExpectation("ma6", false);
|
|
15407
|
+
const peg$c1824 = "ma7";
|
|
15408
|
+
const peg$c1825 = peg$literalExpectation("ma7", false);
|
|
15409
|
+
const peg$c1826 = "sus";
|
|
15410
|
+
const peg$c1827 = peg$literalExpectation("sus", false);
|
|
15411
|
+
const peg$c1828 = "#4";
|
|
15412
|
+
const peg$c1829 = peg$literalExpectation("#4", false);
|
|
15413
|
+
const peg$c1830 = "+4";
|
|
15414
|
+
const peg$c1831 = peg$literalExpectation("+4", false);
|
|
15415
|
+
const peg$c1832 = "-5";
|
|
15416
|
+
const peg$c1833 = peg$literalExpectation("-5", false);
|
|
15417
|
+
const peg$c1834 = "b5";
|
|
15418
|
+
const peg$c1835 = peg$literalExpectation("b5", false);
|
|
15419
|
+
const peg$c1836 = "ma";
|
|
15420
|
+
const peg$c1837 = peg$literalExpectation("ma", false);
|
|
15421
|
+
const peg$c1838 = "Ma";
|
|
15422
|
+
const peg$c1839 = peg$literalExpectation("Ma", false);
|
|
15423
|
+
const peg$c1840 = "#5";
|
|
15424
|
+
const peg$c1841 = peg$literalExpectation("#5", false);
|
|
15425
|
+
const peg$c1842 = "+5";
|
|
15426
|
+
const peg$c1843 = peg$literalExpectation("+5", false);
|
|
15427
|
+
const peg$c1844 = "11";
|
|
15428
|
+
const peg$c1845 = peg$literalExpectation("11", false);
|
|
15429
|
+
const peg$c1846 = "13";
|
|
15430
|
+
const peg$c1847 = peg$literalExpectation("13", false);
|
|
15431
|
+
const peg$c1848 = "42";
|
|
15432
|
+
const peg$c1849 = peg$literalExpectation("42", false);
|
|
15433
|
+
const peg$c1850 = "69";
|
|
15434
|
+
const peg$c1851 = peg$literalExpectation("69", false);
|
|
15435
|
+
const peg$c1852 = "x7";
|
|
15436
|
+
const peg$c1853 = peg$literalExpectation("x7", false);
|
|
15437
|
+
const peg$c1854 = "x9";
|
|
15438
|
+
const peg$c1855 = peg$literalExpectation("x9", false);
|
|
15439
|
+
const peg$c1856 = "o7";
|
|
15440
|
+
const peg$c1857 = peg$literalExpectation("o7", false);
|
|
15441
|
+
const peg$c1858 = peg$literalExpectation("mi", false);
|
|
15442
|
+
const peg$c1859 = "m2";
|
|
15443
|
+
const peg$c1860 = peg$literalExpectation("m2", false);
|
|
15444
|
+
const peg$c1861 = "m4";
|
|
15445
|
+
const peg$c1862 = peg$literalExpectation("m4", false);
|
|
15446
|
+
const peg$c1863 = "m6";
|
|
15447
|
+
const peg$c1864 = peg$literalExpectation("m6", false);
|
|
15448
|
+
const peg$c1865 = "-6";
|
|
15449
|
+
const peg$c1866 = peg$literalExpectation("-6", false);
|
|
15450
|
+
const peg$c1867 = "m7";
|
|
15451
|
+
const peg$c1868 = peg$literalExpectation("m7", false);
|
|
15452
|
+
const peg$c1869 = "-7";
|
|
15453
|
+
const peg$c1870 = peg$literalExpectation("-7", false);
|
|
15454
|
+
const peg$c1871 = "m9";
|
|
15455
|
+
const peg$c1872 = peg$literalExpectation("m9", false);
|
|
15456
|
+
const peg$c1873 = "-9";
|
|
15457
|
+
const peg$c1874 = peg$literalExpectation("-9", false);
|
|
15458
|
+
const peg$c1875 = "+7";
|
|
15459
|
+
const peg$c1876 = peg$literalExpectation("+7", false);
|
|
15460
|
+
const peg$c1877 = "#7";
|
|
15461
|
+
const peg$c1878 = peg$literalExpectation("#7", false);
|
|
15462
|
+
const peg$c1879 = "M7";
|
|
15463
|
+
const peg$c1880 = peg$literalExpectation("M7", false);
|
|
15464
|
+
const peg$c1881 = "+9";
|
|
15465
|
+
const peg$c1882 = peg$literalExpectation("+9", false);
|
|
15466
|
+
const peg$c1883 = "M9";
|
|
15467
|
+
const peg$c1884 = peg$literalExpectation("M9", false);
|
|
15468
|
+
const peg$c1885 = /^[+\-24-79Mmx]/;
|
|
15469
|
+
const peg$c1886 = peg$classExpectation([
|
|
15464
15470
|
"+",
|
|
15465
15471
|
"-",
|
|
15466
15472
|
"2",
|
|
@@ -15473,15 +15479,15 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
15473
15479
|
"m",
|
|
15474
15480
|
"x"
|
|
15475
15481
|
], false, false);
|
|
15476
|
-
const peg$
|
|
15477
|
-
const peg$
|
|
15482
|
+
const peg$c1887 = /^[\n\r]/;
|
|
15483
|
+
const peg$c1888 = peg$classExpectation([
|
|
15478
15484
|
"\n",
|
|
15479
15485
|
"\r"
|
|
15480
15486
|
], false, false);
|
|
15481
|
-
const peg$
|
|
15482
|
-
const peg$
|
|
15483
|
-
const peg$
|
|
15484
|
-
const peg$
|
|
15487
|
+
const peg$c1889 = "\n";
|
|
15488
|
+
const peg$c1890 = peg$literalExpectation("\n", false);
|
|
15489
|
+
const peg$c1891 = "\r";
|
|
15490
|
+
const peg$c1892 = peg$literalExpectation("\r", false);
|
|
15485
15491
|
let peg$currPos = 0;
|
|
15486
15492
|
let peg$savedPos = 0;
|
|
15487
15493
|
const peg$posDetailsCache = [
|
|
@@ -23404,17 +23410,17 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
23404
23410
|
if (peg$silentFails === 0) peg$fail(peg$c1515);
|
|
23405
23411
|
}
|
|
23406
23412
|
if (s0 === peg$FAILED) {
|
|
23407
|
-
if (input.substr(peg$currPos,
|
|
23413
|
+
if (input.substr(peg$currPos, 5) === peg$c1516) {
|
|
23408
23414
|
s0 = peg$c1516;
|
|
23409
|
-
peg$currPos +=
|
|
23415
|
+
peg$currPos += 5;
|
|
23410
23416
|
} else {
|
|
23411
23417
|
s0 = peg$FAILED;
|
|
23412
23418
|
if (peg$silentFails === 0) peg$fail(peg$c1517);
|
|
23413
23419
|
}
|
|
23414
23420
|
if (s0 === peg$FAILED) {
|
|
23415
|
-
if (input.substr(peg$currPos,
|
|
23421
|
+
if (input.substr(peg$currPos, 5) === peg$c1518) {
|
|
23416
23422
|
s0 = peg$c1518;
|
|
23417
|
-
peg$currPos +=
|
|
23423
|
+
peg$currPos += 5;
|
|
23418
23424
|
} else {
|
|
23419
23425
|
s0 = peg$FAILED;
|
|
23420
23426
|
if (peg$silentFails === 0) peg$fail(peg$c1519);
|
|
@@ -23948,28 +23954,28 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
23948
23954
|
if (peg$silentFails === 0) peg$fail(peg$c1651);
|
|
23949
23955
|
}
|
|
23950
23956
|
if (s0 === peg$FAILED) {
|
|
23951
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
23952
|
-
s0 = peg$
|
|
23957
|
+
if (input.substr(peg$currPos, 4) === peg$c1652) {
|
|
23958
|
+
s0 = peg$c1652;
|
|
23953
23959
|
peg$currPos += 4;
|
|
23954
23960
|
} else {
|
|
23955
23961
|
s0 = peg$FAILED;
|
|
23956
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
23962
|
+
if (peg$silentFails === 0) peg$fail(peg$c1653);
|
|
23957
23963
|
}
|
|
23958
23964
|
if (s0 === peg$FAILED) {
|
|
23959
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
23960
|
-
s0 = peg$
|
|
23965
|
+
if (input.substr(peg$currPos, 4) === peg$c1654) {
|
|
23966
|
+
s0 = peg$c1654;
|
|
23961
23967
|
peg$currPos += 4;
|
|
23962
23968
|
} else {
|
|
23963
23969
|
s0 = peg$FAILED;
|
|
23964
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
23970
|
+
if (peg$silentFails === 0) peg$fail(peg$c1655);
|
|
23965
23971
|
}
|
|
23966
23972
|
if (s0 === peg$FAILED) {
|
|
23967
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
23968
|
-
s0 = peg$
|
|
23973
|
+
if (input.substr(peg$currPos, 4) === peg$c1652) {
|
|
23974
|
+
s0 = peg$c1652;
|
|
23969
23975
|
peg$currPos += 4;
|
|
23970
23976
|
} else {
|
|
23971
23977
|
s0 = peg$FAILED;
|
|
23972
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
23978
|
+
if (peg$silentFails === 0) peg$fail(peg$c1653);
|
|
23973
23979
|
}
|
|
23974
23980
|
if (s0 === peg$FAILED) {
|
|
23975
23981
|
if (input.substr(peg$currPos, 4) === peg$c1656) {
|
|
@@ -23980,28 +23986,28 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
23980
23986
|
if (peg$silentFails === 0) peg$fail(peg$c1657);
|
|
23981
23987
|
}
|
|
23982
23988
|
if (s0 === peg$FAILED) {
|
|
23983
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
23984
|
-
s0 = peg$
|
|
23989
|
+
if (input.substr(peg$currPos, 4) === peg$c1658) {
|
|
23990
|
+
s0 = peg$c1658;
|
|
23985
23991
|
peg$currPos += 4;
|
|
23986
23992
|
} else {
|
|
23987
23993
|
s0 = peg$FAILED;
|
|
23988
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
23994
|
+
if (peg$silentFails === 0) peg$fail(peg$c1659);
|
|
23989
23995
|
}
|
|
23990
23996
|
if (s0 === peg$FAILED) {
|
|
23991
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
23992
|
-
s0 = peg$
|
|
23997
|
+
if (input.substr(peg$currPos, 4) === peg$c1660) {
|
|
23998
|
+
s0 = peg$c1660;
|
|
23993
23999
|
peg$currPos += 4;
|
|
23994
24000
|
} else {
|
|
23995
24001
|
s0 = peg$FAILED;
|
|
23996
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24002
|
+
if (peg$silentFails === 0) peg$fail(peg$c1661);
|
|
23997
24003
|
}
|
|
23998
24004
|
if (s0 === peg$FAILED) {
|
|
23999
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24000
|
-
s0 = peg$
|
|
24005
|
+
if (input.substr(peg$currPos, 4) === peg$c1658) {
|
|
24006
|
+
s0 = peg$c1658;
|
|
24001
24007
|
peg$currPos += 4;
|
|
24002
24008
|
} else {
|
|
24003
24009
|
s0 = peg$FAILED;
|
|
24004
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24010
|
+
if (peg$silentFails === 0) peg$fail(peg$c1659);
|
|
24005
24011
|
}
|
|
24006
24012
|
if (s0 === peg$FAILED) {
|
|
24007
24013
|
if (input.substr(peg$currPos, 4) === peg$c1662) {
|
|
@@ -24012,28 +24018,28 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24012
24018
|
if (peg$silentFails === 0) peg$fail(peg$c1663);
|
|
24013
24019
|
}
|
|
24014
24020
|
if (s0 === peg$FAILED) {
|
|
24015
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24016
|
-
s0 = peg$
|
|
24021
|
+
if (input.substr(peg$currPos, 4) === peg$c1664) {
|
|
24022
|
+
s0 = peg$c1664;
|
|
24017
24023
|
peg$currPos += 4;
|
|
24018
24024
|
} else {
|
|
24019
24025
|
s0 = peg$FAILED;
|
|
24020
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24026
|
+
if (peg$silentFails === 0) peg$fail(peg$c1665);
|
|
24021
24027
|
}
|
|
24022
24028
|
if (s0 === peg$FAILED) {
|
|
24023
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24024
|
-
s0 = peg$
|
|
24029
|
+
if (input.substr(peg$currPos, 4) === peg$c1666) {
|
|
24030
|
+
s0 = peg$c1666;
|
|
24025
24031
|
peg$currPos += 4;
|
|
24026
24032
|
} else {
|
|
24027
24033
|
s0 = peg$FAILED;
|
|
24028
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24034
|
+
if (peg$silentFails === 0) peg$fail(peg$c1667);
|
|
24029
24035
|
}
|
|
24030
24036
|
if (s0 === peg$FAILED) {
|
|
24031
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24032
|
-
s0 = peg$
|
|
24037
|
+
if (input.substr(peg$currPos, 4) === peg$c1664) {
|
|
24038
|
+
s0 = peg$c1664;
|
|
24033
24039
|
peg$currPos += 4;
|
|
24034
24040
|
} else {
|
|
24035
24041
|
s0 = peg$FAILED;
|
|
24036
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24042
|
+
if (peg$silentFails === 0) peg$fail(peg$c1665);
|
|
24037
24043
|
}
|
|
24038
24044
|
if (s0 === peg$FAILED) {
|
|
24039
24045
|
if (input.substr(peg$currPos, 4) === peg$c1668) {
|
|
@@ -24044,44 +24050,44 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24044
24050
|
if (peg$silentFails === 0) peg$fail(peg$c1669);
|
|
24045
24051
|
}
|
|
24046
24052
|
if (s0 === peg$FAILED) {
|
|
24047
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24048
|
-
s0 = peg$
|
|
24053
|
+
if (input.substr(peg$currPos, 4) === peg$c1670) {
|
|
24054
|
+
s0 = peg$c1670;
|
|
24049
24055
|
peg$currPos += 4;
|
|
24050
24056
|
} else {
|
|
24051
24057
|
s0 = peg$FAILED;
|
|
24052
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24058
|
+
if (peg$silentFails === 0) peg$fail(peg$c1671);
|
|
24053
24059
|
}
|
|
24054
24060
|
if (s0 === peg$FAILED) {
|
|
24055
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24056
|
-
s0 = peg$
|
|
24061
|
+
if (input.substr(peg$currPos, 4) === peg$c1672) {
|
|
24062
|
+
s0 = peg$c1672;
|
|
24057
24063
|
peg$currPos += 4;
|
|
24058
24064
|
} else {
|
|
24059
24065
|
s0 = peg$FAILED;
|
|
24060
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24066
|
+
if (peg$silentFails === 0) peg$fail(peg$c1673);
|
|
24061
24067
|
}
|
|
24062
24068
|
if (s0 === peg$FAILED) {
|
|
24063
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24064
|
-
s0 = peg$
|
|
24069
|
+
if (input.substr(peg$currPos, 4) === peg$c1670) {
|
|
24070
|
+
s0 = peg$c1670;
|
|
24065
24071
|
peg$currPos += 4;
|
|
24066
24072
|
} else {
|
|
24067
24073
|
s0 = peg$FAILED;
|
|
24068
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24074
|
+
if (peg$silentFails === 0) peg$fail(peg$c1671);
|
|
24069
24075
|
}
|
|
24070
24076
|
if (s0 === peg$FAILED) {
|
|
24071
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24072
|
-
s0 = peg$
|
|
24077
|
+
if (input.substr(peg$currPos, 4) === peg$c1674) {
|
|
24078
|
+
s0 = peg$c1674;
|
|
24073
24079
|
peg$currPos += 4;
|
|
24074
24080
|
} else {
|
|
24075
24081
|
s0 = peg$FAILED;
|
|
24076
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24082
|
+
if (peg$silentFails === 0) peg$fail(peg$c1675);
|
|
24077
24083
|
}
|
|
24078
24084
|
if (s0 === peg$FAILED) {
|
|
24079
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24080
|
-
s0 = peg$
|
|
24085
|
+
if (input.substr(peg$currPos, 4) === peg$c1676) {
|
|
24086
|
+
s0 = peg$c1676;
|
|
24081
24087
|
peg$currPos += 4;
|
|
24082
24088
|
} else {
|
|
24083
24089
|
s0 = peg$FAILED;
|
|
24084
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24090
|
+
if (peg$silentFails === 0) peg$fail(peg$c1677);
|
|
24085
24091
|
}
|
|
24086
24092
|
}
|
|
24087
24093
|
}
|
|
@@ -24186,28 +24192,28 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24186
24192
|
}
|
|
24187
24193
|
function peg$parseChordSuffix8() {
|
|
24188
24194
|
let s0;
|
|
24189
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24190
|
-
s0 = peg$
|
|
24195
|
+
if (input.substr(peg$currPos, 4) === peg$c1634) {
|
|
24196
|
+
s0 = peg$c1634;
|
|
24191
24197
|
peg$currPos += 4;
|
|
24192
24198
|
} else {
|
|
24193
24199
|
s0 = peg$FAILED;
|
|
24194
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24200
|
+
if (peg$silentFails === 0) peg$fail(peg$c1635);
|
|
24195
24201
|
}
|
|
24196
24202
|
if (s0 === peg$FAILED) {
|
|
24197
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24198
|
-
s0 = peg$
|
|
24203
|
+
if (input.substr(peg$currPos, 4) === peg$c1678) {
|
|
24204
|
+
s0 = peg$c1678;
|
|
24199
24205
|
peg$currPos += 4;
|
|
24200
24206
|
} else {
|
|
24201
24207
|
s0 = peg$FAILED;
|
|
24202
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24208
|
+
if (peg$silentFails === 0) peg$fail(peg$c1679);
|
|
24203
24209
|
}
|
|
24204
24210
|
if (s0 === peg$FAILED) {
|
|
24205
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24206
|
-
s0 = peg$
|
|
24211
|
+
if (input.substr(peg$currPos, 4) === peg$c1634) {
|
|
24212
|
+
s0 = peg$c1634;
|
|
24207
24213
|
peg$currPos += 4;
|
|
24208
24214
|
} else {
|
|
24209
24215
|
s0 = peg$FAILED;
|
|
24210
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24216
|
+
if (peg$silentFails === 0) peg$fail(peg$c1635);
|
|
24211
24217
|
}
|
|
24212
24218
|
if (s0 === peg$FAILED) {
|
|
24213
24219
|
if (input.substr(peg$currPos, 4) === peg$c1680) {
|
|
@@ -24218,28 +24224,28 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24218
24224
|
if (peg$silentFails === 0) peg$fail(peg$c1681);
|
|
24219
24225
|
}
|
|
24220
24226
|
if (s0 === peg$FAILED) {
|
|
24221
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24222
|
-
s0 = peg$
|
|
24227
|
+
if (input.substr(peg$currPos, 4) === peg$c1682) {
|
|
24228
|
+
s0 = peg$c1682;
|
|
24223
24229
|
peg$currPos += 4;
|
|
24224
24230
|
} else {
|
|
24225
24231
|
s0 = peg$FAILED;
|
|
24226
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24232
|
+
if (peg$silentFails === 0) peg$fail(peg$c1683);
|
|
24227
24233
|
}
|
|
24228
24234
|
if (s0 === peg$FAILED) {
|
|
24229
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24230
|
-
s0 = peg$
|
|
24235
|
+
if (input.substr(peg$currPos, 4) === peg$c1684) {
|
|
24236
|
+
s0 = peg$c1684;
|
|
24231
24237
|
peg$currPos += 4;
|
|
24232
24238
|
} else {
|
|
24233
24239
|
s0 = peg$FAILED;
|
|
24234
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24240
|
+
if (peg$silentFails === 0) peg$fail(peg$c1685);
|
|
24235
24241
|
}
|
|
24236
24242
|
if (s0 === peg$FAILED) {
|
|
24237
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24238
|
-
s0 = peg$
|
|
24243
|
+
if (input.substr(peg$currPos, 4) === peg$c1636) {
|
|
24244
|
+
s0 = peg$c1636;
|
|
24239
24245
|
peg$currPos += 4;
|
|
24240
24246
|
} else {
|
|
24241
24247
|
s0 = peg$FAILED;
|
|
24242
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24248
|
+
if (peg$silentFails === 0) peg$fail(peg$c1637);
|
|
24243
24249
|
}
|
|
24244
24250
|
if (s0 === peg$FAILED) {
|
|
24245
24251
|
if (input.substr(peg$currPos, 4) === peg$c1686) {
|
|
@@ -24266,36 +24272,36 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24266
24272
|
if (peg$silentFails === 0) peg$fail(peg$c1691);
|
|
24267
24273
|
}
|
|
24268
24274
|
if (s0 === peg$FAILED) {
|
|
24269
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24270
|
-
s0 = peg$
|
|
24275
|
+
if (input.substr(peg$currPos, 4) === peg$c1692) {
|
|
24276
|
+
s0 = peg$c1692;
|
|
24271
24277
|
peg$currPos += 4;
|
|
24272
24278
|
} else {
|
|
24273
24279
|
s0 = peg$FAILED;
|
|
24274
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24280
|
+
if (peg$silentFails === 0) peg$fail(peg$c1693);
|
|
24275
24281
|
}
|
|
24276
24282
|
if (s0 === peg$FAILED) {
|
|
24277
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24278
|
-
s0 = peg$
|
|
24283
|
+
if (input.substr(peg$currPos, 4) === peg$c1694) {
|
|
24284
|
+
s0 = peg$c1694;
|
|
24279
24285
|
peg$currPos += 4;
|
|
24280
24286
|
} else {
|
|
24281
24287
|
s0 = peg$FAILED;
|
|
24282
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24288
|
+
if (peg$silentFails === 0) peg$fail(peg$c1695);
|
|
24283
24289
|
}
|
|
24284
24290
|
if (s0 === peg$FAILED) {
|
|
24285
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24286
|
-
s0 = peg$
|
|
24291
|
+
if (input.substr(peg$currPos, 4) === peg$c1690) {
|
|
24292
|
+
s0 = peg$c1690;
|
|
24287
24293
|
peg$currPos += 4;
|
|
24288
24294
|
} else {
|
|
24289
24295
|
s0 = peg$FAILED;
|
|
24290
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24296
|
+
if (peg$silentFails === 0) peg$fail(peg$c1691);
|
|
24291
24297
|
}
|
|
24292
24298
|
if (s0 === peg$FAILED) {
|
|
24293
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24294
|
-
s0 = peg$
|
|
24299
|
+
if (input.substr(peg$currPos, 4) === peg$c1696) {
|
|
24300
|
+
s0 = peg$c1696;
|
|
24295
24301
|
peg$currPos += 4;
|
|
24296
24302
|
} else {
|
|
24297
24303
|
s0 = peg$FAILED;
|
|
24298
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24304
|
+
if (peg$silentFails === 0) peg$fail(peg$c1697);
|
|
24299
24305
|
}
|
|
24300
24306
|
if (s0 === peg$FAILED) {
|
|
24301
24307
|
if (input.substr(peg$currPos, 4) === peg$c1696) {
|
|
@@ -24378,28 +24384,28 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24378
24384
|
if (peg$silentFails === 0) peg$fail(peg$c1715);
|
|
24379
24385
|
}
|
|
24380
24386
|
if (s0 === peg$FAILED) {
|
|
24381
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24382
|
-
s0 = peg$
|
|
24387
|
+
if (input.substr(peg$currPos, 4) === peg$c1716) {
|
|
24388
|
+
s0 = peg$c1716;
|
|
24383
24389
|
peg$currPos += 4;
|
|
24384
24390
|
} else {
|
|
24385
24391
|
s0 = peg$FAILED;
|
|
24386
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24392
|
+
if (peg$silentFails === 0) peg$fail(peg$c1717);
|
|
24387
24393
|
}
|
|
24388
24394
|
if (s0 === peg$FAILED) {
|
|
24389
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24390
|
-
s0 = peg$
|
|
24395
|
+
if (input.substr(peg$currPos, 4) === peg$c1718) {
|
|
24396
|
+
s0 = peg$c1718;
|
|
24391
24397
|
peg$currPos += 4;
|
|
24392
24398
|
} else {
|
|
24393
24399
|
s0 = peg$FAILED;
|
|
24394
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24400
|
+
if (peg$silentFails === 0) peg$fail(peg$c1719);
|
|
24395
24401
|
}
|
|
24396
24402
|
if (s0 === peg$FAILED) {
|
|
24397
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
24398
|
-
s0 = peg$
|
|
24403
|
+
if (input.substr(peg$currPos, 4) === peg$c1688) {
|
|
24404
|
+
s0 = peg$c1688;
|
|
24399
24405
|
peg$currPos += 4;
|
|
24400
24406
|
} else {
|
|
24401
24407
|
s0 = peg$FAILED;
|
|
24402
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24408
|
+
if (peg$silentFails === 0) peg$fail(peg$c1689);
|
|
24403
24409
|
}
|
|
24404
24410
|
if (s0 === peg$FAILED) {
|
|
24405
24411
|
if (input.substr(peg$currPos, 4) === peg$c1720) {
|
|
@@ -24426,17 +24432,17 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24426
24432
|
if (peg$silentFails === 0) peg$fail(peg$c1725);
|
|
24427
24433
|
}
|
|
24428
24434
|
if (s0 === peg$FAILED) {
|
|
24429
|
-
if (input.substr(peg$currPos,
|
|
24435
|
+
if (input.substr(peg$currPos, 4) === peg$c1726) {
|
|
24430
24436
|
s0 = peg$c1726;
|
|
24431
|
-
peg$currPos +=
|
|
24437
|
+
peg$currPos += 4;
|
|
24432
24438
|
} else {
|
|
24433
24439
|
s0 = peg$FAILED;
|
|
24434
24440
|
if (peg$silentFails === 0) peg$fail(peg$c1727);
|
|
24435
24441
|
}
|
|
24436
24442
|
if (s0 === peg$FAILED) {
|
|
24437
|
-
if (input.substr(peg$currPos,
|
|
24443
|
+
if (input.substr(peg$currPos, 4) === peg$c1728) {
|
|
24438
24444
|
s0 = peg$c1728;
|
|
24439
|
-
peg$currPos +=
|
|
24445
|
+
peg$currPos += 4;
|
|
24440
24446
|
} else {
|
|
24441
24447
|
s0 = peg$FAILED;
|
|
24442
24448
|
if (peg$silentFails === 0) peg$fail(peg$c1729);
|
|
@@ -24810,41 +24816,41 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24810
24816
|
if (peg$silentFails === 0) peg$fail(peg$c1821);
|
|
24811
24817
|
}
|
|
24812
24818
|
if (s0 === peg$FAILED) {
|
|
24813
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
24814
|
-
s0 = peg$
|
|
24819
|
+
if (input.substr(peg$currPos, 3) === peg$c1822) {
|
|
24820
|
+
s0 = peg$c1822;
|
|
24815
24821
|
peg$currPos += 3;
|
|
24816
24822
|
} else {
|
|
24817
24823
|
s0 = peg$FAILED;
|
|
24818
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24824
|
+
if (peg$silentFails === 0) peg$fail(peg$c1823);
|
|
24819
24825
|
}
|
|
24820
24826
|
if (s0 === peg$FAILED) {
|
|
24821
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
24822
|
-
s0 = peg$
|
|
24827
|
+
if (input.substr(peg$currPos, 3) === peg$c1824) {
|
|
24828
|
+
s0 = peg$c1824;
|
|
24823
24829
|
peg$currPos += 3;
|
|
24824
24830
|
} else {
|
|
24825
24831
|
s0 = peg$FAILED;
|
|
24826
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24832
|
+
if (peg$silentFails === 0) peg$fail(peg$c1825);
|
|
24827
24833
|
}
|
|
24828
24834
|
if (s0 === peg$FAILED) {
|
|
24829
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
24830
|
-
s0 = peg$
|
|
24835
|
+
if (input.substr(peg$currPos, 3) === peg$c1812) {
|
|
24836
|
+
s0 = peg$c1812;
|
|
24831
24837
|
peg$currPos += 3;
|
|
24832
24838
|
} else {
|
|
24833
24839
|
s0 = peg$FAILED;
|
|
24834
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24840
|
+
if (peg$silentFails === 0) peg$fail(peg$c1813);
|
|
24835
24841
|
}
|
|
24836
24842
|
if (s0 === peg$FAILED) {
|
|
24837
|
-
if (input.substr(peg$currPos,
|
|
24838
|
-
s0 = peg$
|
|
24839
|
-
peg$currPos +=
|
|
24843
|
+
if (input.substr(peg$currPos, 3) === peg$c1812) {
|
|
24844
|
+
s0 = peg$c1812;
|
|
24845
|
+
peg$currPos += 3;
|
|
24840
24846
|
} else {
|
|
24841
24847
|
s0 = peg$FAILED;
|
|
24842
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24848
|
+
if (peg$silentFails === 0) peg$fail(peg$c1813);
|
|
24843
24849
|
}
|
|
24844
24850
|
if (s0 === peg$FAILED) {
|
|
24845
|
-
if (input.substr(peg$currPos,
|
|
24851
|
+
if (input.substr(peg$currPos, 3) === peg$c1826) {
|
|
24846
24852
|
s0 = peg$c1826;
|
|
24847
|
-
peg$currPos +=
|
|
24853
|
+
peg$currPos += 3;
|
|
24848
24854
|
} else {
|
|
24849
24855
|
s0 = peg$FAILED;
|
|
24850
24856
|
if (peg$silentFails === 0) peg$fail(peg$c1827);
|
|
@@ -24914,20 +24920,20 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24914
24920
|
if (peg$silentFails === 0) peg$fail(peg$c1843);
|
|
24915
24921
|
}
|
|
24916
24922
|
if (s0 === peg$FAILED) {
|
|
24917
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
24918
|
-
s0 = peg$
|
|
24923
|
+
if (input.substr(peg$currPos, 2) === peg$c1844) {
|
|
24924
|
+
s0 = peg$c1844;
|
|
24919
24925
|
peg$currPos += 2;
|
|
24920
24926
|
} else {
|
|
24921
24927
|
s0 = peg$FAILED;
|
|
24922
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24928
|
+
if (peg$silentFails === 0) peg$fail(peg$c1845);
|
|
24923
24929
|
}
|
|
24924
24930
|
if (s0 === peg$FAILED) {
|
|
24925
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
24926
|
-
s0 = peg$
|
|
24931
|
+
if (input.substr(peg$currPos, 2) === peg$c1846) {
|
|
24932
|
+
s0 = peg$c1846;
|
|
24927
24933
|
peg$currPos += 2;
|
|
24928
24934
|
} else {
|
|
24929
24935
|
s0 = peg$FAILED;
|
|
24930
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24936
|
+
if (peg$silentFails === 0) peg$fail(peg$c1847);
|
|
24931
24937
|
}
|
|
24932
24938
|
if (s0 === peg$FAILED) {
|
|
24933
24939
|
if (input.substr(peg$currPos, 2) === peg$c1846) {
|
|
@@ -24962,24 +24968,24 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
24962
24968
|
if (peg$silentFails === 0) peg$fail(peg$c1853);
|
|
24963
24969
|
}
|
|
24964
24970
|
if (s0 === peg$FAILED) {
|
|
24965
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
24966
|
-
s0 = peg$
|
|
24971
|
+
if (input.substr(peg$currPos, 2) === peg$c1854) {
|
|
24972
|
+
s0 = peg$c1854;
|
|
24967
24973
|
peg$currPos += 2;
|
|
24968
24974
|
} else {
|
|
24969
24975
|
s0 = peg$FAILED;
|
|
24970
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24976
|
+
if (peg$silentFails === 0) peg$fail(peg$c1855);
|
|
24971
24977
|
}
|
|
24972
24978
|
if (s0 === peg$FAILED) {
|
|
24973
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
24974
|
-
s0 = peg$
|
|
24979
|
+
if (input.substr(peg$currPos, 2) === peg$c1856) {
|
|
24980
|
+
s0 = peg$c1856;
|
|
24975
24981
|
peg$currPos += 2;
|
|
24976
24982
|
} else {
|
|
24977
24983
|
s0 = peg$FAILED;
|
|
24978
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
24984
|
+
if (peg$silentFails === 0) peg$fail(peg$c1857);
|
|
24979
24985
|
}
|
|
24980
24986
|
if (s0 === peg$FAILED) {
|
|
24981
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
24982
|
-
s0 = peg$
|
|
24987
|
+
if (input.substr(peg$currPos, 2) === peg$c71) {
|
|
24988
|
+
s0 = peg$c71;
|
|
24983
24989
|
peg$currPos += 2;
|
|
24984
24990
|
} else {
|
|
24985
24991
|
s0 = peg$FAILED;
|
|
@@ -25176,13 +25182,31 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
25176
25182
|
if (peg$silentFails === 0) peg$fail(peg$c1880);
|
|
25177
25183
|
}
|
|
25178
25184
|
if (s0 === peg$FAILED) {
|
|
25179
|
-
if (
|
|
25180
|
-
s0 =
|
|
25181
|
-
peg$currPos
|
|
25185
|
+
if (input.substr(peg$currPos, 2) === peg$c1881) {
|
|
25186
|
+
s0 = peg$c1881;
|
|
25187
|
+
peg$currPos += 2;
|
|
25182
25188
|
} else {
|
|
25183
25189
|
s0 = peg$FAILED;
|
|
25184
25190
|
if (peg$silentFails === 0) peg$fail(peg$c1882);
|
|
25185
25191
|
}
|
|
25192
|
+
if (s0 === peg$FAILED) {
|
|
25193
|
+
if (input.substr(peg$currPos, 2) === peg$c1883) {
|
|
25194
|
+
s0 = peg$c1883;
|
|
25195
|
+
peg$currPos += 2;
|
|
25196
|
+
} else {
|
|
25197
|
+
s0 = peg$FAILED;
|
|
25198
|
+
if (peg$silentFails === 0) peg$fail(peg$c1884);
|
|
25199
|
+
}
|
|
25200
|
+
if (s0 === peg$FAILED) {
|
|
25201
|
+
if (peg$c1885.test(input.charAt(peg$currPos))) {
|
|
25202
|
+
s0 = input.charAt(peg$currPos);
|
|
25203
|
+
peg$currPos++;
|
|
25204
|
+
} else {
|
|
25205
|
+
s0 = peg$FAILED;
|
|
25206
|
+
if (peg$silentFails === 0) peg$fail(peg$c1886);
|
|
25207
|
+
}
|
|
25208
|
+
}
|
|
25209
|
+
}
|
|
25186
25210
|
}
|
|
25187
25211
|
}
|
|
25188
25212
|
}
|
|
@@ -25198,12 +25222,12 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
25198
25222
|
}
|
|
25199
25223
|
function peg$parseNewLine() {
|
|
25200
25224
|
let s0;
|
|
25201
|
-
if (peg$
|
|
25225
|
+
if (peg$c1887.test(input.charAt(peg$currPos))) {
|
|
25202
25226
|
s0 = input.charAt(peg$currPos);
|
|
25203
25227
|
peg$currPos++;
|
|
25204
25228
|
} else {
|
|
25205
25229
|
s0 = peg$FAILED;
|
|
25206
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
25230
|
+
if (peg$silentFails === 0) peg$fail(peg$c1888);
|
|
25207
25231
|
}
|
|
25208
25232
|
if (s0 === peg$FAILED) s0 = peg$parseCarriageReturnLineFeed();
|
|
25209
25233
|
return s0;
|
|
@@ -25233,22 +25257,22 @@ function $6e190c231198785f$var$peg$parse(input, options) {
|
|
|
25233
25257
|
function peg$parseLineFeed() {
|
|
25234
25258
|
let s0;
|
|
25235
25259
|
if (input.charCodeAt(peg$currPos) === 10) {
|
|
25236
|
-
s0 = peg$
|
|
25260
|
+
s0 = peg$c1889;
|
|
25237
25261
|
peg$currPos++;
|
|
25238
25262
|
} else {
|
|
25239
25263
|
s0 = peg$FAILED;
|
|
25240
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
25264
|
+
if (peg$silentFails === 0) peg$fail(peg$c1890);
|
|
25241
25265
|
}
|
|
25242
25266
|
return s0;
|
|
25243
25267
|
}
|
|
25244
25268
|
function peg$parseCarriageReturn() {
|
|
25245
25269
|
let s0;
|
|
25246
25270
|
if (input.charCodeAt(peg$currPos) === 13) {
|
|
25247
|
-
s0 = peg$
|
|
25271
|
+
s0 = peg$c1891;
|
|
25248
25272
|
peg$currPos++;
|
|
25249
25273
|
} else {
|
|
25250
25274
|
s0 = peg$FAILED;
|
|
25251
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
25275
|
+
if (peg$silentFails === 0) peg$fail(peg$c1892);
|
|
25252
25276
|
}
|
|
25253
25277
|
return s0;
|
|
25254
25278
|
}
|
|
@@ -36517,7 +36541,7 @@ const $a5a21ced491ea51f$var$endSectionTags = {
|
|
|
36517
36541
|
var $a5a21ced491ea51f$export$2e2bcd8739ae039 = $a5a21ced491ea51f$var$UltimateGuitarParser;
|
|
36518
36542
|
|
|
36519
36543
|
|
|
36520
|
-
var $ae92e002ce14f11a$export$2e2bcd8739ae039 = '13.2.
|
|
36544
|
+
var $ae92e002ce14f11a$export$2e2bcd8739ae039 = '13.2.2';
|
|
36521
36545
|
|
|
36522
36546
|
|
|
36523
36547
|
|