Xilp001 Script Parser
src.xil_pipeline.XILP001_script_parser
Parse markdown production scripts into structured JSON.
Converts podcast scripts from markdown format into sequence-numbered entries suitable for voice generation.
Module Attributes
KNOWN_SPEAKERS: Ordered list of speaker names (longest-first for matching). SPEAKER_KEYS: Mapping from display names to normalized keys. SECTION_MAP: Mapping from section header text to URL-safe slugs. DIRECTION_TYPES: Recognized direction subtypes for stage directions.
SECTION_MAP
module-attribute
SECTION_MAP = {'COLD OPEN': 'cold-open', 'OPENING CREDITS': 'opening-credits', 'CHAPTER ONE': 'chapter1', 'CHAPTER 1': 'chapter1', 'CHAPTER TWO': 'chapter2', 'CHAPTER 2': 'chapter2', 'CHAPTER THREE': 'chapter3', 'CHAPTER 3': 'chapter3', 'ACT ONE': 'act1', 'ACT 1': 'act1', 'ACT TWO': 'act2', 'ACT 2': 'act2', 'ACT THREE': 'act3', 'ACT 3': 'act3', 'ACT FOUR': 'act4', 'ACT 4': 'act4', 'ACT FIVE': 'act5', 'ACT 5': 'act5', 'ACT SIX': 'act6', 'ACT 6': 'act6', 'MID-EPISODE BREAK': 'mid-break', 'CLOSING': 'closing', 'CLOSING — RADIO STATION': 'closing', "CLOSING — ADAM'S SIGN-OFF": 'closing', 'CLOSING — ADAM’S SIGN-OFF': 'closing', 'POST-INTERVIEW': 'post-interview', 'POST-INTERVIEW: ADAM & TINA': 'post-interview', 'POST-CREDITS SCENE': 'post-credits', "DEZ'S CLOSING NARRATION": 'dez-closing', 'DEZ’S CLOSING NARRATION': 'dez-closing', 'PRODUCTION NOTES': 'production-notes', 'EPISODE THEME': 'preamble', 'PRE-SHOW MUSIC': 'preamble', 'CLOSING TAG': 'postamble', 'PREAMBLE': 'preamble', 'POSTAMBLE': 'postamble'}
PODCAST_SECTIONS
module-attribute
PODCAST_SECTIONS: dict[str, str] = {'COLD OPEN': 'cold-open', 'OPENING CREDITS': 'opening-credits', 'ACT ONE': 'act1', 'ACT 1': 'act1', 'ACT TWO': 'act2', 'ACT 2': 'act2', 'ACT THREE': 'act3', 'ACT 3': 'act3', 'ACT FOUR': 'act4', 'ACT 4': 'act4', 'ACT FIVE': 'act5', 'ACT 5': 'act5', 'ACT SIX': 'act6', 'ACT 6': 'act6', 'MID-EPISODE BREAK': 'mid-break', 'CLOSING': 'closing', 'POST-CREDITS SCENE': 'post-credits', 'INTRO': 'intro', 'OUTRO': 'outro', 'PREAMBLE': 'preamble', 'POSTAMBLE': 'postamble'}
AUDIOBOOK_SECTIONS
module-attribute
AUDIOBOOK_SECTIONS: dict[str, str] = {'PROLOGUE': 'prologue', 'EPILOGUE': 'epilogue', "AUTHOR'S NOTE": 'authors-note', 'AUTHOR’S NOTE': 'authors-note', **_AUDIOBOOK_CHAPTERS}
DRAMA_SECTIONS
module-attribute
DRAMA_SECTIONS: dict[str, str] = {'PROLOGUE': 'prologue', 'EPILOGUE': 'epilogue', 'INTERMISSION': 'intermission', 'ACT ONE': 'act1', 'ACT 1': 'act1', 'ACT TWO': 'act2', 'ACT 2': 'act2', 'ACT THREE': 'act3', 'ACT 3': 'act3', 'ACT FOUR': 'act4', 'ACT 4': 'act4', 'ACT FIVE': 'act5', 'ACT 5': 'act5', 'ACT SIX': 'act6', 'ACT 6': 'act6', 'COLD OPEN': 'cold-open', 'CLOSING': 'closing', 'POST-CREDITS SCENE': 'post-credits'}
SPECIAL_SECTIONS
module-attribute
SPECIAL_SECTIONS: dict[str, str] = {**PODCAST_SECTIONS, **AUDIOBOOK_SECTIONS, **DRAMA_SECTIONS, **{f'SEGMENT {n}': f'segment{n}' for n in range(1, 16)}}
DIRECTION_TYPES
module-attribute
DIRECTION_TYPES = ['SFX', 'MUSIC', 'AMBIENCE', 'BEAT', 'VINTAGE FILTER', 'FILM AUDIO', 'SPEAKERPHONE', 'PHONE FILTER']
HINT_ATTRS
module-attribute
HINT_ATTR_RANGES
module-attribute
extract_cast_from_script
Extract cast members from the CAST: block in a script header.
Parses bullet-point entries of the form::
CAST:
* ADAM — Host/Narrator
* MR. PATTERSON — Recurring Caller
* DETECTIVE NORA WALSH — New this episode
Each entry is converted to {"display": str, "key": str}. Role
descriptions after —, –, -, or ( are stripped.
Parameters:
Returns:
-
list[dict]–List of
{"display": str, "key": str}dicts, empty when no CAST: -
list[dict]–block is present.
Source code in src/xil_pipeline/XILP001_script_parser.py
load_speakers
load_speakers(path: str | None = None, cast_entries: list[dict] | None = None) -> tuple[list[str], dict[str, str]]
Load speaker definitions, merging CAST-block entries with speakers.json.
Resolution order:
cast_entries— speakers declared in the script's CAST: block (see :func:extract_cast_from_script); auto-derived keys are used unless overridden by speakers.json- Speakers from
path/configs/{slug}/speakers.json/ CWDspeakers.json; JSON keys always win over auto-derived keys and new JSON entries are appended - Built-in
_BUILTIN_KNOWN_SPEAKERS/_BUILTIN_SPEAKER_KEYSonly when neithercast_entriesnor a JSON file are available
The JSON file is an array of objects with display and key fields::
[
{"display": "ADAM", "key": "adam"},
{"display": "MR. PATTERSON", "key": "mr_patterson"}
]
The returned list is automatically sorted longest-first so compound names match before short ones.
Parameters:
-
path(str | None, default:None) –Explicit path to a speakers JSON file.
Nonetriggers auto-detection. -
cast_entries(list[dict] | None, default:None) –Speaker dicts extracted from the script's CAST: block via :func:
extract_cast_from_script.Noneor[]means no CAST block was found.
Returns:
Source code in src/xil_pipeline/XILP001_script_parser.py
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 | |
load_speakers_registry
Load the full speaker registry from speakers.json, keyed by speaker key.
Returns the raw entry dicts, which may include optional per-character
attributes (voice_id, pan, filter, role, etc.) in addition
to the required display/key fields. Used by
:func:generate_cast_config to pre-populate cast skeletons.
Returns an empty dict when no speakers file is found (built-in defaults have no registry data).
Parameters:
-
path(str | None, default:None) –Explicit path to a speakers JSON file.
Nonetriggers auto-detection (same resolution order as :func:load_speakers).
Returns:
Source code in src/xil_pipeline/XILP001_script_parser.py
get_section_map
Return the section-header-to-slug map for the given content type.
Falls back to the legacy :data:SECTION_MAP entries not covered by the
type-specific map so that existing show-specific section names continue
to parse correctly.
Parameters:
-
project_type(str, default:'podcast') –One of
"podcast","audiobook","drama","special". Unknown values fall back to the full legacy map.
Returns:
Source code in src/xil_pipeline/XILP001_script_parser.py
strip_markdown_escapes
Remove markdown backslash escapes from the script.
Parameters:
-
text(str) –Raw text possibly containing backslash-escaped markdown characters.
Returns:
-
str–Text with all backslash escapes removed.
Source code in src/xil_pipeline/XILP001_script_parser.py
strip_markdown_formatting
Remove markdown formatting syntax (bold, headings, trailing breaks).
Intended to run AFTER strip_markdown_escapes() so that backslash
escapes are already resolved. Operates per-line to correctly strip
# heading prefixes while leaving other content intact.
Parameters:
-
text(str) –Text with markdown formatting (
**,##, etc.).
Returns:
Source code in src/xil_pipeline/XILP001_script_parser.py
classify_direction
Classify a stage direction into a sound category.
Parameters:
-
text(str) –Bracket-interior text (e.g.,
"SFX: DOOR OPENS").
Returns:
-
str | None–One of
"SFX","MUSIC","AMBIENCE","BEAT", orNone -
str | None–if the direction doesn't match a known category.
Source code in src/xil_pipeline/XILP001_script_parser.py
try_match_speaker
try_match_speaker(line: str, known_speakers: list[str] | None = None, speaker_keys: dict[str, str] | None = None) -> tuple[str, str | None, str] | None
Match a known speaker name at the start of a line.
Parameters:
-
line(str) –A stripped line from the script.
-
known_speakers(list[str] | None, default:None) –Ordered list of speaker display names (longest-first). Defaults to the module-level
KNOWN_SPEAKERS. -
speaker_keys(dict[str, str] | None, default:None) –Mapping from display names to normalized keys. Defaults to the module-level
SPEAKER_KEYS.
Returns:
-
tuple[str, str | None, str] | None–A tuple of
(speaker_key, direction, spoken_text)if a known -
tuple[str, str | None, str] | None–speaker is found, or
Noneif no speaker matches.
Source code in src/xil_pipeline/XILP001_script_parser.py
is_stage_direction
format_hint_attr
Render an override back into script-hint form ('play_volume_pct=20%').
Inverse of the :data:HINT_ATTRS lookup, used by the script regenerator so a
parse → regenerate round-trip is lossless. Whole numbers lose the trailing
.0 so regenerated scripts read the way a writer would type them.
Source code in src/xil_pipeline/XILP001_script_parser.py
filter_sfx_overrides
filter_sfx_overrides(key_text: str, entry: dict, overrides: dict[str, float], warn: bool = False) -> dict[str, float]
Narrow attribute pipe-hints to the ones this cue can actually use.
Two hints are not universally meaningful:
- silence cues (
BEAT, stop markers) take no attribute hints at all — there is no audio to set a level or a length on - looped layers (see :data:
LOOPED_CUE_PREFIXES) dropplay_duration, becausemix_commononly honours it for MUSIC / SFX / BEAT; a volume hint on the same cue still applies
Used by both the write path (:func:_apply_sfx_overrides) and xil
sfx-hydrate's report, so what the report promises is what gets written.
Parameters:
-
key_text(str) –The cue key (the direction text), used to spot looped layers.
-
entry(dict) –The SFX config entry the hints would land on.
-
overrides(dict[str, float]) –Config-field-keyed hints from :func:
_parse_direction_hint. -
warn(bool, default:False) –Log a warning for each dropped hint. Callers that would otherwise warn twice for the same cue leave this
False.
Returns:
Source code in src/xil_pipeline/XILP001_script_parser.py
is_section_header
Check if a line matches a known section header.
Parameters:
-
line(str) –A stripped line from the script.
-
section_map(dict[str, str] | None, default:None) –Section map to check against. Defaults to :data:
SECTION_MAP.
Returns:
-
bool–Trueif the line matches a key in the section map.
Source code in src/xil_pipeline/XILP001_script_parser.py
is_scene_header
Check if a line is a scene header (SCENE N: ...).
Parameters:
-
line(str) –A stripped line from the script.
Returns:
-
bool–Trueif the line matches theSCENE \d+[A-Za-z]*:pattern -
bool–(supports suffixed scene numbers such as
SCENE 5A:).
Source code in src/xil_pipeline/XILP001_script_parser.py
is_divider
is_metadata_section
Check if a line begins a post-script metadata section.
Parameters:
-
line(str) –A stripped line from the script.
Returns:
Source code in src/xil_pipeline/XILP001_script_parser.py
parse_scene_header
Extract scene number and name from a scene header line.
Parameters:
-
line(str) –A line matching the
SCENE N: ...pattern.
Returns:
-
str | None–A tuple of
(scene_number, scene_name), or(None, None) -
str | None–if the line doesn't match.
scene_numberis a string to -
tuple[str | None, str | None]–support suffixed numbers such as
"5A".
Source code in src/xil_pipeline/XILP001_script_parser.py
write_debug_csv
write_debug_csv(output_path: str, debug_line_map: list[tuple[int, str, int]], entries: list[dict]) -> None
Write a diagnostic CSV mapping markdown source lines to parsed entries.
Each row represents one parsed entry, showing the originating markdown line alongside all fields from the parsed JSON output. Text fields are truncated at 200 characters to prevent unpredictable CSV cell sizes.
Parameters:
-
output_path(str) –Filesystem path for the output CSV file.
-
debug_line_map(list[tuple[int, str, int]]) –List of
(1-based line number, raw line text, entry index)tuples collected during parsing. -
entries(list[dict]) –The fully-parsed entries list (after all continuation merges).
Source code in src/xil_pipeline/XILP001_script_parser.py
parse_script_header
Extract show, season, episode, title, and season_title from the script header line.
Parses the first line of a production script, which follows the format::
SHOW [Season N:] Episode N: "Episode Title" [Arc: "Arc Title"] ...
Season is optional — scripts without a season declaration return None for
the season element. Title is the first double-quoted string after
Episode N:. Arc title (season title) is the quoted string after Arc:;
it is None when no Arc: declaration is present. Falls back to bare
text after Episode N: when no quoted strings are present.
Parameters:
-
line(str) –The first non-empty line of the production script, after markdown escapes have been removed.
Returns:
-
tuple[str, int | None, int, str, str | None] | None–A tuple of
(show, season, episode, title, season_title)where -
tuple[str, int | None, int, str, str | None] | None–seasonandseason_titleareNonewhen not declared, or -
tuple[str, int | None, int, str, str | None] | None–Noneif the line does not match the expected header format.
Source code in src/xil_pipeline/XILP001_script_parser.py
parse_script
parse_script(filepath: str, debug_output: str | None = None, speakers_path: str | None = None, project_type: str | None = None) -> dict
Parse a markdown production script into structured entries.
Reads a markdown file and extracts dialogue lines, stage directions, section headers, and scene headers into a sequence-numbered list of entries.
Parameters:
-
filepath(str) –Path to the markdown production script file.
-
debug_output(str | None, default:None) –If provided, write a diagnostic CSV to this path mapping each markdown source line to its parsed entry. Text fields are truncated at 200 characters. Defaults to
None(no CSV written). -
speakers_path(str | None, default:None) –Path to a
speakers.jsonfile.Noneuses the default resolution order (see :func:load_speakers). -
project_type(str | None, default:None) –Content type from
project.json("podcast","audiobook","drama","special").Nonereads fromproject.jsonin the current directory, defaulting to"podcast"when the file is absent.
Returns:
-
dict–Dictionary with keys
show,season,episode,title, -
dict–source_file,entries(list of entry dicts), and -
dict–stats(aggregate statistics dict). Validates against -
dict–the
ParsedScriptmodel.
Raises:
-
FileNotFoundError–If the script file does not exist.
Source code in src/xil_pipeline/XILP001_script_parser.py
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 | |
compute_speaker_stats
Compute per-speaker dialogue distribution.
Parameters:
-
parsed(dict) –Output dictionary from
parse_script().
Returns:
-
list[dict]–List of dicts sorted by lines descending, each with keys:
-
list[dict]–speaker,lines,words,chars,pct_lines, -
list[dict]–pct_words,pct_chars.
Source code in src/xil_pipeline/XILP001_script_parser.py
print_speaker_stats
Print per-speaker dialogue distribution table.
Shows lines, words, characters, and percentage share for each speaker, sorted by number of lines descending.
Parameters:
-
parsed(dict) –Output dictionary from
parse_script().
Source code in src/xil_pipeline/XILP001_script_parser.py
print_summary
Print a human-readable summary of the parsed script.
Displays show metadata, entry counts, TTS character budget, and a per-speaker breakdown of lines, words, and characters.
Parameters:
-
parsed(dict) –Output dictionary from
parse_script().
Source code in src/xil_pipeline/XILP001_script_parser.py
print_dialogue_preview
Print dialogue lines for review.
Parameters:
-
parsed(dict) –Output dictionary from
parse_script(). -
limit(int | None, default:None) –Maximum number of dialogue lines to display.
Noneshows all lines.
Source code in src/xil_pipeline/XILP001_script_parser.py
generate_cast_config
generate_cast_config(parsed: dict, cast_path: str, tag_override: str | None = None, speakers_registry: dict[str, dict] | None = None) -> None
Generate a skeleton cast config JSON from parsed script data.
Creates a cast config with all speakers found in the parsed script.
When speakers_registry is provided (loaded via
:func:load_speakers_registry), any per-character attributes stored
in speakers.json (voice_id, pan, filter, role,
stability, similarity_boost, style, use_speaker_boost,
language_code) are pre-populated from the registry instead of
defaulting to TBD.
Parameters:
-
parsed(dict) –Parsed script dict from :func:
parse_script. -
cast_path(str) –Output path for the cast config JSON.
-
tag_override(str | None, default:None) –Raw non-episodic tag (e.g.
"V01C03"); when set,season/episodeare written asnullandtag_overrideis added to the config. -
speakers_registry(dict[str, dict] | None, default:None) –Optional dict mapping speaker key → full speakers.json entry dict (from :func:
load_speakers_registry).
Source code in src/xil_pipeline/XILP001_script_parser.py
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 | |
generate_sfx_config
Generate a skeleton SFX config JSON from parsed script data.
Creates an SFX config with entries for each unique direction found in the parsed script. Defaults are based on direction type:
BEAT/LONG BEAT→ silence (no API call)SFX:→ 5s effectMUSIC:→ 15s effectAMBIENCE:→ 30s looping effect- Other → 5s effect
The user should review and refine prompts before running generation.
Parameters:
-
parsed(dict) –Parsed script dict from :func:
parse_script. -
sfx_path(str) –Output path for the SFX config JSON.
Source code in src/xil_pipeline/XILP001_script_parser.py
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 | |
backfill_sfx_sources
Add missing source fields to an existing SFX config from parsed hints.
When a script is re-parsed and the SFX config already exists, any direction
entries that carry an sfx_source hint are used to update the sfx config
in three ways:
- Clean key already exists, no source — adds
sourcefield, removes stubpromptif it matched the key text. - Stale piped key exists (
"KEY | file.mp3"from a pre-fix parse) — renames it to the clean key and addssource. - Key absent entirely — adds a new entry with
sourceand sensible defaults (loop: Truefor AMBIENCE, appropriateduration_seconds).
Entries that already have a source keep it unless force is set — a hint
never replaces one by default. Attribute hints (sfx_overrides, e.g.
play_volume_pct) behave the other way round: the script is the source of
truth, so they overwrite whatever the config holds, and a cue carrying only
an attribute hint (no filename) is still updated.
With force, a differing source is replaced — but only when the hint's
file actually resolves on disk (see :func:_hint_target_exists). This is what
reaches cues whose source is a "NEW STEM NEEDED: …" placeholder or a stale
path, which the default pass can never correct.
Every source that is set or replaced is written to the edit journal, so the
assignment survives a later rebuild from a fresh script .md.
Parameters:
-
parsed(dict) –Parsed script dict (after hint stripping).
-
sfx_path(str) –Path to the existing SFX config JSON to update in-place.
-
force(bool, default:False) –Replace a differing
sourceinstead of only filling missing ones.
Source code in src/xil_pipeline/XILP001_script_parser.py
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 | |
get_parser
Return the argument parser for xil-parse.
Source code in src/xil_pipeline/XILP001_script_parser.py
main
CLI entry point for script parsing.
Source code in src/xil_pipeline/XILP001_script_parser.py
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 | |