diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index d95f3521..dba45fee 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -9,16 +9,10 @@ on: branches: - main - develop - workflow_dispatch: - inputs: - branch: - description: "Branch to run the workflow on" - required: true - default: "develop" jobs: test-and-codecov: name: "🤙 Call SDK test workflow" - uses: clamsproject/.github/.github/workflows/sdk-codecov.yml@main + uses: clamsproject/.github/.github/workflows/sdk-codecov-pyproj.yml@main secrets: CC_REPO_UPLOAD_TOKEN: ${{ secrets.CODECOV_UPLOAD_TOKEN_MMIF_PYTHON }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 567129d7..e4d7b948 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: name: "📦 Build and upload to PyPI" needs: check-pypi if: needs.check-pypi.outputs.exists == 'false' - uses: clamsproject/.github/.github/workflows/sdk-publish.yml@main + uses: clamsproject/.github/.github/workflows/sdk-publish-pyproj.yml@main secrets: inherit publish-docs: diff --git a/.gitignore b/.gitignore index 7588b933..aac88e97 100644 --- a/.gitignore +++ b/.gitignore @@ -70,19 +70,20 @@ docs/**/_site/** tags .tags -# auto-generated files -mmif/ver -mmif/res -mmif/vocabulary +# build artifacts +mmif_python-*/ ./VERSION* .hypothesis # Documentation build artifacts documentation/cli_help.rst documentation/whatsnew.md +documentation/examples.rst +documentation/examples/ documentation/autodoc docs-test # environments .venv* venv* +_issues diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d9d7fa7c..1153e9af 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,31 +50,74 @@ To ensure a consistent user experience and avoid resource leaks, all CLI subcomm ### How CLI Discovery Works -The CLI system automatically discovers subcommands at runtime. The entry point is configured in the build script (currently `setup.py`) as follows: +The CLI system automatically discovers subcommands at runtime. The entry point is configured in `pyproject.toml`: -```python -entry_points={ - 'console_scripts': [ - 'mmif = mmif.__init__:cli', - ], -}, +```toml +[project.scripts] +mmif = "mmif:cli" ``` The `cli()` function in `mmif/__init__.py` handles discovery and delegation. It uses `pkgutil.walk_packages` to find all modules within the top-level of the `mmif.utils.cli` package. For the discovery logic to work, a "cli module" should implement the requirements outlined above. -This means adding a properly structured module within the CLI package is all that's needed—the module name will automatically be registered as a subcommand. No modifications to `setup.py` or other configuration files are required. +This means adding a properly structured module within the CLI package is all that's needed—the module name will automatically be registered as a subcommand. No modifications to `pyproject.toml` or other configuration files are required. > [!NOTE] -> Any "client" code (not shell CLI) wants to use a module in `cli` package should be able to directrly `from mmif.utils.cli import a_module`. However, for historical reasons, some CLI modules are manually imported in `mmif/__init__.py` (e.g., `source.py`) for backward compatibility for clients predateing the discovery system. +> Any "client" code (not shell CLI) wants to use a module in `cli` package should be able to directly `from mmif.utils.cli import a_module`. However, for historical reasons, some CLI modules are manually imported in `mmif/__init__.py` (e.g., `source.py`) for backward compatibility for clients predating the discovery system. + +## Setup + +```bash +pip install -e ".[dev]" +``` + +An editable install (`pip install -e .`) is required before running tests or building docs. The package uses `importlib.metadata` for version resolution at runtime, which only works when the package is registered in the environment. You can no longer run `pytest` or `pytype` directly against the source tree without installing first. If you want to avoid pulling in all dependencies, `pip install -e . --no-deps` is sufficient to register the package metadata. + +## Local Development + +All build tasks are handled by scripts in `build-tools/`. Each script is self-contained and installs its own dependencies as needed. + +| Task | Command | +|------|---------| +| Build (sdist + wheel) | `python build-tools/build.py` | +| Run tests | `python build-tools/test.py` | +| Build docs | `python build-tools/docs.py` | +| Clean artifacts | `python build-tools/clean.py` | +| Publish | `python build-tools/publish.py` | + +All scripts support `--help` for full usage details. + +### Versioning + +#### SDK version + +Versions are derived automatically from git tags via `setuptools-scm`. There is no `VERSION` file to manage. At runtime, the version is accessed through `importlib.metadata`: + +```python +from mmif.ver import __version__ +``` + +For a dev install without a matching tag, `setuptools-scm` generates a version like `1.3.1.dev11+gb83b63ff5.d20260413`. + +The MMIF spec version (`__specver__`) is derived at runtime from the `mmif-spec` URL in `pyproject.toml`'s `[project.urls]` section. For example, `mmif-spec = "https://mmif.clams.ai/1.1.0"` produces `__specver__ = "1.1.0"`. Do NOT hardcode this value in Python source — update the URL in `pyproject.toml` instead. + +#### MMIF specification version + +`mmif/res/mmif.json` is the MMIF JSON Schema, committed as static package data. When the MMIF spec releases a new version: + +1. Update the `mmif-spec` URL in `pyproject.toml` `[project.urls]` +1. Re-fetch the schema, using something like: + ```bash + curl -sL "https://raw.githubusercontent.com/clamsproject/mmif/main/schema/mmif.json" \ + -o mmif/res/mmif.json + ``` +1. Run tests — `tests/test_specver.py` will fail if either value is stale ## Documentation -The documentation for `mmif-python` is built using Sphinx and published to the [CLAMS documentation hub](https://github.com/clamsproject/website-test). +The documentation for `mmif-python` is built using Sphinx and published to the [CLAMS documentation hub](https://clams.ai). ### Building Documentation Locally -To build the documentation for the current checkout: - ```bash python3 build-tools/docs.py ``` @@ -82,15 +125,10 @@ python3 build-tools/docs.py The output will be in `docs-test`. For more options, run `python build-tools/docs.py --help`. > [!NOTE] -> Since the documentation build process is relying on the working `mmif` package, one must "build" the package first before building the documentation. This can be done by running -> ```bash -> rm VERSION* # remove existing VERSION file if exists -> make devversion # creates a dummy VERSION file -> pip install -r requirements.dev # install dev dependencies -> python setup.py sdist # build the package (will download auto-generate subpackges like `mmif.res` and `mmif.ver`) +> In CI, documentation is built and published automatically by the `publish.yml` workflow via the shared `sdk-docs.yml`. The CI calls `docs.py --build-ver --output-dir _docs`. All CLAMS SDK repos use the same `docs.py` CLI interface (`--build-ver`, `--output-dir`). > [!NOTE] -> running `build-tools/docs.py` in "local testing" mode will overwrite any existing VERSION file with a dummy version. +> Since the documentation build process is relying on the working `mmif` package, one must "build" the package first (e.g., `python -m pip install -e .`) before building the documentation. ### API Documentation (autodoc) @@ -114,8 +152,6 @@ As of 2026 (since the next version of 1.2.1), API documentation is **automatical To build documentation for a specific historical version (e.g., `v1.0.0`): ```bash -make doc-version -# OR python3 build-tools/docs.py --build-ver v1.0.0 ``` @@ -126,18 +162,33 @@ This runs the build in a sandboxed temporary directory. The output will be in `d ### Troubleshooting Old Version Builds -**Important:** The build script (`build-tools/docs.py`) uses a "Modern Environment, Legacy Source" strategy. It checks out the old source code but installs **modern** build dependencies (Sphinx 7.x, Furo) to ensure the build works on current systems (including Python 3.13). - -If an old version fails to build because a dependency is missing (e.g., it was removed from `requirements.txt` in later versions but the old `setup.py` needs it), **do not try to fix the old `setup.py`**. +The build script (`build-tools/docs.py`) uses a "Modern Environment, Legacy Source" strategy. It checks out the old source code but installs modern build dependencies (Sphinx 7.x, Furo) to ensure the build works on up-to-date systems (including Python 3.12+). -Instead, manually add the missing dependency to the `run_pip` call in `build-tools/docs.py`: +If an old version fails to build because a dependency is missing, manually add it to the `run_pip` call in `build-tools/docs.py`: ```python -# In build-tools/docs.py def build_versioned_docs(...): # ... - # Add the missing dependency here - env.run_pip("install", "jsonschema", "requests", "pyyaml", "deepdiff<7", "YOUR_MISSING_DEP", cwd=source_path) + env.run_pip("install", ..., "YOUR_MISSING_DEP", cwd=source_path) ``` This "overlay" strategy ensures we can build old docs without modifying historical git tags. + +### Example MMIF Documents + +Example MMIF documents live in `tests/mmif-examples/` and serve two roles: test fixtures (loaded by `tests/mmif_examples.py`) and documentation source (rendered by the `_mmif_example_builder` Sphinx extension at docs build time). See `tests/mmif-examples/README.md` for details. + +## Migration from Makefile + +The old `Makefile`, `setup.py`, and `requirements*.txt` files have been +removed. If you are accustomed to the old workflow, here is a mapping: + +| Old command | New equivalent | +|-------------|----------------| +| `make package` / `python setup.py sdist` | `python build-tools/build.py` | +| `make develop` / `python setup.py develop` | `pip install -e ".[dev]"` | +| `make test` | `python build-tools/test.py` | +| `make doc` / `make doc-version` | `python build-tools/docs.py` | +| `make version` / `make devversion` | Automatic via `setuptools-scm` (tag-based) | +| `make clean` | `python build-tools/clean.py` | +| `make publish` | `python build-tools/publish.py` | diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 8e355132..00000000 --- a/MANIFEST.in +++ /dev/null @@ -1,6 +0,0 @@ -# only copied in sdist and be used when building -include ./VERSION -include ./requirements.txt -include ./requirements.cv -include ./requirements.seq - diff --git a/Makefile b/Makefile deleted file mode 100644 index bac1919e..00000000 --- a/Makefile +++ /dev/null @@ -1,110 +0,0 @@ -# check for dependencies -SHELL := /bin/bash -deps = curl jq git python3 -check_deps := $(foreach dep,$(deps), $(if $(shell which $(dep)),some string,$(error "No $(dep) in PATH!"))) - -# constants -packagename = mmif -generatedcode = $(packagename)/ver $(packagename)/res $(packagename)/vocabulary -sdistname = $(packagename)-python -bdistname = $(packagename)_python -artifact = build/lib/$(packagename) -buildcaches = build/bdist* $(bdistname).egg-info __pycache__ -testcaches = .hypothesis .pytest_cache .pytype coverage.xml htmlcov .coverage - -.PHONY: all -.PHONY: clean -.PHONY: test -.PHONY: develop -.PHONY: publish -.PHONY: docs -.PHONY: doc -.PHONY: package -.PHONY: devversion - -all: version test build - -develop: devversion package test - python3 setup.py develop --uninstall - python3 setup.py develop - -publish: distclean version package test - test `git branch --show-current` = "master" - @git tag `cat VERSION` - @git push origin `cat VERSION` - -$(generatedcode): dist/$(sdistname)*.tar.gz - -docs: - @echo "The 'docs' target is deprecated and will be removed." - @echo "Documentation is now managed by 'build-tools/docs.py'." - @echo "Please run 'python3 build-tools/docs.py --help' for usage." - -doc: docs -doc-version: docs - -package: VERSION dist/$(sdistname)*.tar.gz - -dist/$(sdistname)*.tar.gz: - pip install --upgrade -r requirements.dev - python3 setup.py sdist - -build: $(artifact) -$(artifact): - python3 setup.py build - -# invoking `test` without a VERSION file will generated a dev version - this ensures `make test` runs unmanned -test: devversion $(generatedcode) - pip install --upgrade -r requirements.dev - pip install -r requirements.txt - pip install -r requirements.cv - pytype $(packagename) - python3 -m pytest --doctest-modules --cov=$(packagename) --cov-report=xml - -# helper functions -e := -space := $(e) $(e) -## handling version numbers -macro = $(word 1,$(subst .,$(space),$(1))) -micro = $(word 2,$(subst .,$(space),$(1))) -patch = $(word 3,$(subst .,$(space),$(1))) -increase_patch = $(call macro,$(1)).$(call micro,$(1)).$$(($(call patch,$(1))+1)) -## handling versioning for dev version -add_dev = $(call macro,$(1)).$(call micro,$(1)).$(call patch,$(1)).dev1 -split_dev = $(word 2,$(subst .dev,$(space),$(1))) -increase_dev = $(call macro,$(1)).$(call micro,$(1)).$(call patch,$(1)).dev$$(($(call split_dev,$(1))+1)) - -devversion: VERSION.dev VERSION; cat VERSION -version: VERSION; cat VERSION - -# since the GH api will return tags in chronological order, we can just grab the last one without sorting -AUTH_ARG := $(if $(GITHUB_TOKEN),-H "Authorization: token $(GITHUB_TOKEN)") - -VERSION.dev: devver := $(shell curl --silent $(AUTH_ARG) "https://api.github.com/repos/clamsproject/mmif-python/git/refs/tags" | grep '"ref":' | sed -E 's/.+refs\/tags\/([0-9.]+)",/\1/g' | sort -V | tail -n 1) -VERSION.dev: specver := $(shell curl --silent $(AUTH_ARG) "https://api.github.com/repos/clamsproject/mmif/git/refs/tags" | grep '"ref":' | grep -v 'py-' | sed -E 's/.+refs\/tags\/(spec-)?([0-9.]+)",/\2/g' | sort -V | tail -n 1) -VERSION.dev: - @echo DEVVER: $(devver) - @echo SPECVER: $(specver) - @if [ $(call macro,$(devver)) = $(call macro,$(specver)) ] && [ $(call micro,$(devver)) = $(call micro,$(specver)) ] ; \ - then \ - if [[ $(devver) == *.dev* ]]; then echo $(call increase_dev,$(devver)) ; else echo $(call add_dev,$(call increase_patch, $(devver))); fi \ - else if [[ $(devver) == *.dev* ]]; then echo $(call increase_dev,$(devver)) ; else echo $(call add_dev,$(call increase_patch, $(devver))); fi ; fi \ - > VERSION.dev - -VERSION: version := $(shell git tag | sort -t. -k 1,1nr -k 2,2nr -k 3,3nr -k 4,4nr | head -n 1) -VERSION: - @if [ -e VERSION.dev ] ; \ - then cp VERSION.dev VERSION; \ - else (read -p "Current version is ${version}, please enter a new version (default: increase *patch* level by 1): " new_ver; \ - [ -z $$new_ver ] && echo $(call increase_patch,$(version)) || echo $$new_ver) > VERSION; \ - fi - -distclean: - @rm -rf dist $(artifact) build/bdist* -clean: distclean - @rm -rf VERSION VERSION.dev $(testcaches) $(buildcaches) $(generatedcode) - @rm -rf docs - @rm -rf .*cache - @rm -rf .hypothesis tests/.hypothesis - @git checkout -- documentation/target-versions.csv - diff --git a/build-tools/build.py b/build-tools/build.py new file mode 100644 index 00000000..b46cb1b0 --- /dev/null +++ b/build-tools/build.py @@ -0,0 +1,54 @@ +""" +Build the mmif-python package. + +Installs dependencies and runs `python -m build` to produce sdist + wheel. +""" +import argparse +import subprocess +import sys +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent + + +def run_command(command, cwd=None, check=True): + """Helper to run a shell command.""" + print(f"Running: {' '.join(str(c) for c in command)}") + result = subprocess.run(command, cwd=cwd) + if check and result.returncode != 0: + print( + f"Error: Command failed with exit code " + f"{result.returncode}" + ) + sys.exit(result.returncode) + return result + + +def main(): + parser = argparse.ArgumentParser( + description="Build the mmif-python package." + ) + parser.parse_args() + + project_root = SCRIPT_DIR.parent + + # Install dev + build dependencies + print("--- Installing dependencies ---") + run_command( + [sys.executable, "-m", "pip", + "install", "-e", ".[dev]", "build"], + cwd=project_root, + ) + + # Build sdist + wheel + print("\n--- Building sdist + wheel ---") + run_command( + [sys.executable, "-m", "build"], + cwd=project_root, + ) + + print("\nBuild complete. Output in: dist/") + + +if __name__ == "__main__": + main() diff --git a/build-tools/clean.py b/build-tools/clean.py new file mode 100644 index 00000000..9a35c493 --- /dev/null +++ b/build-tools/clean.py @@ -0,0 +1,70 @@ +""" +Clean build artifacts, caches, and generated files. + +Replaces ``make clean`` / ``make distclean`` from the old Makefile. +""" +import argparse +import shutil +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent +PROJECT_ROOT = SCRIPT_DIR.parent + +# Directories to remove +CLEAN_DIRS = [ + "build", "dist", "*.egg-info", "mmif_python-*", + ".pytest_cache", ".pytype", ".hypothesis", + "tests/.hypothesis", "htmlcov", + "docs-test", +] + +# Files to remove +CLEAN_FILES = [ + "coverage.xml", ".coverage", +] + +# Glob patterns for recursive removal +CLEAN_GLOBS = [ + "**/__pycache__", +] + + +def clean(root: Path): + removed = [] + + for pattern in CLEAN_DIRS: + for p in root.glob(pattern): + if p.is_dir(): + shutil.rmtree(p) + removed.append(str(p.relative_to(root))) + + for name in CLEAN_FILES: + p = root / name + if p.exists(): + p.unlink() + removed.append(str(p.relative_to(root))) + + for pattern in CLEAN_GLOBS: + for p in root.glob(pattern): + if p.is_dir(): + shutil.rmtree(p) + removed.append(str(p.relative_to(root))) + + if removed: + print(f"Removed {len(removed)} items:") + for item in sorted(removed): + print(f" {item}") + else: + print("Nothing to clean.") + + +def main(): + parser = argparse.ArgumentParser( + description="Clean build artifacts and caches." + ) + parser.parse_args() + clean(PROJECT_ROOT) + + +if __name__ == "__main__": + main() diff --git a/build-tools/docs.py b/build-tools/docs.py index eaea47e3..80a5f59d 100644 --- a/build-tools/docs.py +++ b/build-tools/docs.py @@ -60,45 +60,21 @@ def build_docs_local(source_dir: Path, output_dir: Path): """ print("--- Running in Local Build Mode ---") - # Warning for user as VERSION file is critical - if sys.stdin.isatty(): - import select - print("\nWARNING: The 'VERSION' file will be overwritten with a dummy version for this local build.") - print("Pausing for 3 seconds (press Enter to continue immediately)...") - select.select([sys.stdin], [], [], 3) - - # Overwrite VERSION file with dummy version for local builds - version = get_dummy_version() - print(f"Generating dummy VERSION for local build: {version}") - (source_dir / "VERSION").write_text(version) - - # 1. Generate source code and install in editable mode. - print("\n--- Step 1: Generating source code and installing in editable mode ---") + # Install package with docs dependencies in editable mode. + print("\n--- Step 1: Installing package with docs dependencies ---") try: - run_command([sys.executable, "-m", "pip", "install", "-e", "."], cwd=source_dir) + run_command( + [sys.executable, "-m", "pip", "install", "-e", ".[docs]"], + cwd=source_dir, + ) except SystemExit: - print("Warning: 'pip install -e .' failed. This might be due to an externally managed environment.") - print("Attempting to proceed with documentation build assuming dependencies are met...") - - - # 2. Install documentation-specific dependencies. - print("\n--- Step 2: Installing documentation dependencies ---") - doc_reqs = Path.cwd() / "build-tools" / "requirements.docs.txt" - if not doc_reqs.exists(): - print(f"Error: Documentation requirements not found at {doc_reqs}") - sys.exit(1) - try: - run_command([sys.executable, "-m", "pip", "install", "-r", str(doc_reqs)]) - except SystemExit: - print("Warning: Failed to install documentation dependencies.") - # Check if sphinx-build is available + print("Warning: 'pip install -e .[docs]' failed.") if shutil.which("sphinx-build") is None: print("Error: 'sphinx-build' not found and installation failed.") - print("Please install dependencies manually or run this script inside a virtual environment.") sys.exit(1) print("Assuming dependencies are already installed...") - # 3. Build the documentation using Sphinx. + # Build the documentation using Sphinx. print("\n--- Step 3: Building Sphinx documentation ---") docs_source_dir = source_dir / "documentation" docs_build_dir = output_dir / "develop" diff --git a/build-tools/publish.py b/build-tools/publish.py new file mode 100644 index 00000000..580f644e --- /dev/null +++ b/build-tools/publish.py @@ -0,0 +1,202 @@ +""" +Publish the mmif-python package. + +This script is equivalent to `make publish` in the old Makefile build: + 1. Generate CHANGELOG.md from merged release PRs (requires `gh` CLI) + 2. Upload dist/ to PyPI via twine (requires TWINE_PASSWORD env var) + +Credentials are passed via environment variables (twine reads them +natively): + TWINE_USERNAME — defaults to __token__ for API tokens + TWINE_PASSWORD — the PyPI/TestPyPI API token + TWINE_REPOSITORY_URL — override for TestPyPI (or use --testpypi) +""" +import argparse +import json +import os +import subprocess +import sys +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent +TESTPYPI_URL = "https://test.pypi.org/legacy/" + + +def run_command(command, cwd=None, capture=False, check=False): + """Helper to run a shell command.""" + print(f"Running: {' '.join(str(c) for c in command)}") + result = subprocess.run( + command, + cwd=cwd, + capture_output=capture, + text=capture, + ) + if check and result.returncode != 0: + print( + f"Error: Command failed with exit code " + f"{result.returncode}" + ) + sys.exit(result.returncode) + return result + + +def check_gh_available(): + """Check if gh CLI is installed and authenticated.""" + result = run_command( + ["gh", "auth", "status"], + capture=True, + ) + return result.returncode == 0 + + +def generate_changelog(repo=None): + """ + Generate CHANGELOG.md from merged release PRs. + + :param repo: GitHub repo in owner/name format. + If None, uses the repo from the current git remote. + """ + project_root = SCRIPT_DIR.parent + + repo_args = ["--repo", repo] if repo else [] + + # Query merged PRs with "releas" in title + result = run_command( + ["gh", "pr", "list", + "-L", "1000", + "-s", "merged", + "--json", "number,title,body,mergedAt"] + + repo_args, + cwd=project_root, + capture=True, + ) + if result.returncode != 0: + print(f"Error querying PRs: {result.stderr}") + return False + + prs = json.loads(result.stdout) + # Filter to release PRs + release_prs = [ + pr for pr in prs + if pr["title"].lower().startswith("releas") + ] + + if not release_prs: + print("No release PRs found.") + return False + + # Sort by merge date (newest first) + release_prs.sort( + key=lambda pr: pr["mergedAt"], reverse=True + ) + + # Format changelog + lines = [] + for pr in release_prs: + merged_date = pr["mergedAt"][:10] # YYYY-MM-DD + lines.append(f"\n## {pr['title']} ({merged_date})") + if pr["body"]: + lines.append(pr["body"]) + lines.append("") + + changelog_path = project_root / "CHANGELOG.md" + changelog_path.write_text("\n".join(lines)) + print( + f"CHANGELOG.md written with {len(release_prs)} entries." + ) + return True + + +def upload_to_pypi(testpypi=False): + """ + Upload dist/ to PyPI via twine. + + Auth via env vars: TWINE_USERNAME (default: __token__), + TWINE_PASSWORD (required). + """ + project_root = SCRIPT_DIR.parent + dist_dir = project_root / "dist" + + tarballs = list(dist_dir.glob("*.tar.gz")) + if not tarballs: + print("No tarball found in dist/. Run build.py first.") + sys.exit(1) + + if not os.environ.get("TWINE_PASSWORD"): + print( + "Warning: TWINE_PASSWORD not set. " + "Skipping PyPI upload." + ) + print( + "Set TWINE_PASSWORD to your PyPI API token " + "to enable upload." + ) + return + + # Set default username for token auth + if not os.environ.get("TWINE_USERNAME"): + os.environ["TWINE_USERNAME"] = "__token__" + + # Install twine + run_command( + [sys.executable, "-m", "pip", "install", "twine"], + cwd=project_root, + ) + + # Build upload command + cmd = [sys.executable, "-m", "twine", "upload"] + if testpypi: + cmd.extend(["--repository-url", TESTPYPI_URL]) + cmd.extend(str(t) for t in tarballs) + + run_command(cmd, cwd=project_root, check=True) + + +def main(): + parser = argparse.ArgumentParser( + description="Publish: generate CHANGELOG and upload to PyPI." + ) + parser.add_argument( + "--repo", + default=None, + help="GitHub repo in owner/name format " + "(default: infer from git remote)." + ) + parser.add_argument( + "--skip-changelog", + action="store_true", + help="Skip changelog generation." + ) + parser.add_argument( + "--skip-upload", + action="store_true", + help="Skip PyPI upload (changelog only)." + ) + parser.add_argument( + "--testpypi", + action="store_true", + help="Upload to TestPyPI instead of PyPI." + ) + args = parser.parse_args() + + # Changelog + if args.skip_changelog: + print("Skipping changelog generation.") + elif not check_gh_available(): + print( + "Warning: gh CLI not available or not authenticated. " + "Skipping changelog generation." + ) + else: + if not generate_changelog(repo=args.repo): + sys.exit(1) + + # Upload + if args.skip_upload: + print("Skipping PyPI upload.") + else: + upload_to_pypi(testpypi=args.testpypi) + + +if __name__ == "__main__": + main() diff --git a/build-tools/requirements.docs.txt b/build-tools/requirements.docs.txt deleted file mode 100644 index db2d03d8..00000000 --- a/build-tools/requirements.docs.txt +++ /dev/null @@ -1,4 +0,0 @@ -sphinx -furo -m2r2 -autodoc-pydantic diff --git a/build-tools/test.py b/build-tools/test.py new file mode 100644 index 00000000..fe5455e4 --- /dev/null +++ b/build-tools/test.py @@ -0,0 +1,74 @@ +""" +Run tests for the mmif-python package. + +This script is equivalent to:: + + pip install -e ".[test]" + pytype mmif + python -m pytest --cov=mmif --cov-report=xml -m "not slow" +""" +import argparse +import subprocess +import sys +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent + + +def run_command(command, cwd=None, check=True): + """Helper to run a shell command.""" + print(f"Running: {' '.join(str(c) for c in command)}") + result = subprocess.run(command, cwd=cwd) + if check and result.returncode != 0: + print( + f"Error: Command failed with exit code " + f"{result.returncode}" + ) + sys.exit(result.returncode) + return result + + +def main(): + parser = argparse.ArgumentParser( + description="Run tests for the mmif-python package." + ) + parser.add_argument( + "--skip-install", + action="store_true", + help="Skip pip install step " + "(useful if already installed)." + ) + args = parser.parse_args() + + project_root = SCRIPT_DIR.parent + + # Install package with test dependencies + if not args.skip_install: + print("--- Installing package with test dependencies ---") + run_command( + [sys.executable, "-m", "pip", + "install", "-e", ".[test]"], + cwd=project_root, + ) + + # Run pytype static analysis + print("\n--- Running pytype ---") + run_command( + ["pytype", "mmif"], + cwd=project_root, + ) + + # Run pytest with coverage + print("\n--- Running pytest ---") + run_command( + [sys.executable, "-m", "pytest", + "--cov=mmif", "--cov-report=xml", + "-m", "not slow"], + cwd=project_root, + ) + + print("\nAll tests passed.") + + +if __name__ == "__main__": + main() diff --git a/documentation/_mmif_example_builder/__init__.py b/documentation/_mmif_example_builder/__init__.py new file mode 100644 index 00000000..2785cf7e --- /dev/null +++ b/documentation/_mmif_example_builder/__init__.py @@ -0,0 +1,160 @@ +""" +Sphinx extension: render example MMIF documents from test fixtures. + +At ``builder-inited`` time this extension reads the metadata file at +``tests/mmif-examples/examples.json``, renders each listed example +by substituting ``$TypeName_VER`` / ``$VERSION`` template variables in +the corresponding ``raw.json`` against the installed +``clams-vocabulary`` type versions, and writes: + +- ``documentation/examples.rst`` — landing page with a toctree + linking to the individual example pages (gitignored). +- ``documentation/examples/.rst`` — one page per example + with title, description, and rendered JSON (gitignored). + +All generated files are referenced from ``index.rst`` via the +``examples`` toctree entry. + +Falls back to writing an empty ``examples.rst`` if ``clams-vocabulary`` +cannot be imported (e.g., when building docs for a historical +mmif-python version that predates the vocabulary migration). +""" +import itertools +import json +import textwrap +from pathlib import Path +from string import Template + +from sphinx.util import logging + +logger = logging.getLogger(__name__) + +_DOCS_DIR = Path(__file__).resolve().parent.parent +_PROJ_ROOT = _DOCS_DIR.parent +_EXAMPLES_DIR = _PROJ_ROOT / 'tests' / 'mmif-examples' +_META_FILE = _EXAMPLES_DIR / 'examples.json' +_OUTPUT_DIR = _DOCS_DIR / 'examples' +_INDEX_PATH = _DOCS_DIR / 'examples.rst' + + +def _build_attypevers(): + """ + Build the ``{TypeName_VER: vN, VERSION: X.Y.Z}`` substitution dict + from the installed ``clams-vocabulary`` and the current MMIF spec + version. + + :raises ImportError: if ``mmif`` or ``clams-vocabulary`` is + unavailable. + :returns: substitution dict suitable for ``Template.safe_substitute`` + :rtype: dict + """ + import mmif + from mmif.vocabulary import AnnotationTypes, DocumentTypes + out = { + f'{k}_VER': v + for k, v in itertools.chain.from_iterable( + m._typevers.items() + for m in [AnnotationTypes, DocumentTypes] + ) + } + out['VERSION'] = mmif.__specver__ + return out + + +def _render_example_page(entry, attypevers): + """ + Render a single example as a standalone RST page. + + :param entry: one element of ``examples.json`` + :type entry: dict + :param attypevers: substitution dict from :func:`_build_attypevers` + :type attypevers: dict + :returns: RST source for the page, or ``None`` if the fixture is + missing + :rtype: str or None + """ + raw_path = _EXAMPLES_DIR / entry['dir'] / 'raw.json' + if not raw_path.is_file(): + logger.warning( + f"Example fixture not found: {raw_path}. Skipping." + ) + return None + raw = Template(raw_path.read_text()).safe_substitute(**attypevers) + title = entry['title'] + underline = '=' * len(title) + indent = textwrap.indent(raw, ' ') + return ( + f"{title}\n{underline}\n\n" + f"{entry['description']}\n\n" + f".. code-block:: json\n\n{indent}\n" + ) + + +def _generate_examples(app): + """ + Sphinx ``builder-inited`` handler. Writes an index page at + ``documentation/examples.rst`` and one subpage per example under + ``documentation/examples/``. + """ + try: + attypevers = _build_attypevers() + except ImportError as e: + logger.warning( + f"clams-vocabulary or mmif not importable ({e}). " + f"Writing empty examples.rst." + ) + _INDEX_PATH.write_text("") + return + + if not _META_FILE.is_file(): + logger.warning( + f"Examples metadata not found at {_META_FILE}. " + f"Writing empty examples.rst." + ) + _INDEX_PATH.write_text("") + return + + entries = json.loads(_META_FILE.read_text()) + _OUTPUT_DIR.mkdir(exist_ok=True) + + # Render individual example pages + toctree_entries = [] + rendered = 0 + for entry in entries: + page_rst = _render_example_page(entry, attypevers) + if page_rst is None: + continue + page_path = _OUTPUT_DIR / f"{entry['dir']}.rst" + page_path.write_text(page_rst) + toctree_entries.append(f" examples/{entry['dir']}") + rendered += 1 + + # Render index page with toctree + page_title = "Example MMIF documents" + index_rst = ( + f"{page_title}\n{'=' * len(page_title)}\n\n" + ".. toctree::\n" + " :maxdepth: 1\n\n" + + '\n'.join(toctree_entries) + + '\n' + ) + _INDEX_PATH.write_text(index_rst) + logger.info( + f"Generated examples ({rendered}/{len(entries)} pages)" + ) + + +def setup(app): + """ + Sphinx extension entry point. + + :param app: Sphinx application object + :returns: extension metadata + :rtype: dict + """ + app.connect('builder-inited', _generate_examples) + return { + 'version': '0.1', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/documentation/conf.py b/documentation/conf.py index 5c0fe38c..8313b1ca 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -19,6 +19,9 @@ # Add project root to sys.path so that autodoc can find the mmif package. proj_root_dir = Path(__file__).parent.parent sys.path.insert(0, str(proj_root_dir.absolute())) +# Add the local Sphinx extensions directory so '_mmif_example_builder' +# can be imported by name from the ``extensions`` list below. +sys.path.insert(0, str(Path(__file__).parent.absolute())) # At this point, `pip install -e .` should have been run, so mmif is importable import mmif @@ -46,9 +49,10 @@ author = 'Brandeis LLC' copyright = f'{datetime.date.today().year}, {author}' try: - version = open(proj_root_dir / 'VERSION').read().strip() -except FileNotFoundError: - logger.warning("VERSION file not found, using 'dev' as version.") + from importlib.metadata import version as _get_version + version = _get_version('mmif-python') +except Exception: + logger.warning("Could not read package version, using 'dev'.") version = 'dev' # -- General configuration --------------------------------------------------- @@ -59,6 +63,7 @@ 'sphinx.ext.linkcode', 'm2r2', 'sphinxcontrib.autodoc_pydantic', + '_mmif_example_builder', ] autodoc_pydantic_model_show_json = True diff --git a/documentation/index.rst b/documentation/index.rst index 05d93a48..734528d4 100644 --- a/documentation/index.rst +++ b/documentation/index.rst @@ -17,6 +17,7 @@ This is the documentation for the mmif-python package, a Python implementation f cli summarizer plugins + examples target-versions .. toctree:: diff --git a/documentation/target-versions.csv b/documentation/target-versions.csv index 60155e73..933e4bf3 100644 --- a/documentation/target-versions.csv +++ b/documentation/target-versions.csv @@ -1,4 +1,5 @@ "``mmif-python`` version","Target MMIF Specification" +1.3.0,"1.1.0" 1.2.0,"1.1.0" 1.1.2,"1.1.0" 1.1.1,"1.1.0" diff --git a/mmif/res/__init__.py b/mmif/res/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mmif/res/mmif.json b/mmif/res/mmif.json new file mode 100644 index 00000000..1a61808c --- /dev/null +++ b/mmif/res/mmif.json @@ -0,0 +1,194 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "title": "Multi-Media Interchange Format", + "description": "The JSON-LD objects exchanged by CLAMS services.", + "type": "object", + "additionalProperties": false, + "properties": { + "metadata": { + "$ref": "#/definitions/mmifMetadata" + }, + "documents": { + "type": "array", + "items": { + "$ref": "#/definitions/annotation" + }, + "minLength": 1 + }, + "views": { + "type": "array", + "items": { + "$ref": "#/definitions/view" + } + } + }, + "required": [ + "metadata", + "documents", + "views" + ], + "definitions": { + "strStrMap": { + "type": "object", + "patternProperties": { + ".+": { + "anyOf": [ + {"type": "string"}, + {"type": "array", "items": { "type": "string" }} + ] + } + } + }, + "mmifMetadata": { + "type": "object", + "properties": { + "mmif": { + "type": "string", + "format": "uri", + "minLength": 7 + } + }, + "required": [ + "mmif" + ] + }, + "viewMetadata": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "format": "date-time" + }, + "app": { + "type": "string", + "format": "uri", + "minLength": 7 + }, + "contains": { + "type": "object", + "additionalProperties": false, + "patternProperties": { + "^https?:\/\/": { + "type": "object" + } + } + }, + "error": { + "type": "object", + "properties": { + "message": { + "type": "string", + "minLength": 1 + }, + "stackTrace": { + "type": "string" + } + }, + "required": ["message"] + }, + "warnings": { + "type": "array", + "items": { + "type": "string" + }, + "minLength": 1 + }, + "parameters": { + "$ref": "#/definitions/strStrMap" + }, + "appConfiguration": { + "type": "object" + } + }, + "oneOf": [ + { + "required": [ + "app", + "contains" + ] + }, + { + "required": [ + "app", + "warnings" + ] + }, + { + "required": [ + "app", + "error" + ] + } + ] + }, + "text": { + "type": "object", + "properties": { + "@value": { + "type": "string" + }, + "@language": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "@value" + ] + }, + "view": { + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "metadata": { + "$ref": "#/definitions/viewMetadata" + }, + "annotations": { + "type": "array", + "items": { + "$ref": "#/definitions/annotation" + } + } + }, + "additionalProperties": false, + "required": [ + "id", + "metadata", + "annotations" + ] + }, + "annotation": { + "type": "object", + "properties": { + "@type": { + "type": "string", + "minLength": 1 + }, + "properties": { + "$ref": "#/definitions/annotationProperties" + } + }, + "required": [ + "@type", + "properties" + ], + "additionalProperties": false + }, + "annotationProperties": { + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + } + }, + "required": [ + "id" + ] + } + } +} + diff --git a/mmif/serialize/annotation.py b/mmif/serialize/annotation.py index b7f002cd..e910fd68 100644 --- a/mmif/serialize/annotation.py +++ b/mmif/serialize/annotation.py @@ -147,6 +147,17 @@ def at_type(self) -> ThingTypesBase: def at_type(self, at_type: Union[str, ThingTypesBase]) -> None: if isinstance(at_type, str): self._type = ThingTypesBase.from_str(at_type) + elif isinstance(at_type, type) and issubclass(at_type, ThingTypesBase): + # Vocab migration (MMIF spec >= 1.1.1): vocabulary types + # are now Pydantic classes (not instances). When callers pass the + # class (e.g., ``AnnotationTypes.TimeFrame``), coerce it to an + # instance so downstream ``isinstance`` checks still work. + # Use ``model_construct()`` to skip Pydantic field validation — + # direct ``__init__`` rejects types with required fields + # (e.g., ``Alignment`` requires ``source``/``target``). + instance = at_type.model_construct() + instance.initialized_from = at_type.uri + self._type = instance else: self._type = at_type @@ -454,9 +465,11 @@ def get(self, prop_name, default=None): return self.location elif prop_name in self._props_pending: return self._props_pending[prop_name] - elif prop_name in self._props_ephemeral: - return self._props_ephemeral[prop_name] else: + # Delegates to Annotation.__getitem__(), which checks + # self.properties (_props_original) before _props_ephemeral. + # This gives annotation-level properties precedence over + # view-level contains defaults (MMIF spec >= 1.1.1). return super().get(prop_name, default) get_property = get diff --git a/mmif/serialize/model.py b/mmif/serialize/model.py index 95fdc28c..0f1130e8 100644 --- a/mmif/serialize/model.py +++ b/mmif/serialize/model.py @@ -399,7 +399,19 @@ def default(self, obj: 'MmifObject'): """ Overrides default encoding behavior to prioritize :func:`MmifObject.serialize()`. """ - if hasattr(obj, '_serialize'): + # Vocab migration (MMIF spec >= 1.1.1): vocabulary types are + # Pydantic BaseModel subclasses with a ``@classmethod _serialize()`` + # that returns ``repr(cls)`` — correct for CLAMS type classes but + # broken for generic ``TypesBase`` instances (non-CLAMS URIs like + # ``http://vocab.lappsgrid.org/SemanticTag``), where ``cls`` is the + # plain ``TypesBase`` class and ``repr(cls)`` yields + # ````. Handle ``TypesBase`` + # instances explicitly via ``str(obj)`` before the ``_serialize`` + # fallback. + from mmif.vocabulary.base_types import TypesBase + if isinstance(obj, TypesBase): + return str(obj) + elif hasattr(obj, '_serialize'): return obj._serialize() elif hasattr(obj, 'isoformat'): # for datetime objects s = obj.isoformat() diff --git a/mmif/serialize/view.py b/mmif/serialize/view.py index 1c3d8e39..f0f057bf 100644 --- a/mmif/serialize/view.py +++ b/mmif/serialize/view.py @@ -605,16 +605,16 @@ def get(self, key: Union[str, ThingTypesBase], default=None): def __contains__(self, item: Union[str, ThingTypesBase]): if isinstance(item, str): # in general, when querying with a string, do not use fuzzy equality - if 'vocab.lappsgrid.org' in item and item.split('/')[-1] in ThingTypesBase.old_lapps_type_shortnames: + if 'vocab.lappsgrid.org' in item and item.split('/')[-1] in ThingTypesBase._old_lapps_type_shortnames: # first, some quirks for legacy LAPPSgrid types shortname = item.split('/')[-1] - item = AnnotationTypesBase(f'http://mmif.clams.ai/vocabulary/{shortname}/v1') + item = ThingTypesBase.from_str(f'{AnnotationTypes.Annotation.base_uri}/{shortname}/v1') for key in self._items.keys(): if item._eq_internal(key, fuzzy=False): return True return False else: - # otherwise just string match + # otherwise just string match string_keys = [str(k) for k in self._items.keys()] return item in string_keys else: diff --git a/mmif/ver/__init__.py b/mmif/ver/__init__.py new file mode 100644 index 00000000..bddd3a5c --- /dev/null +++ b/mmif/ver/__init__.py @@ -0,0 +1,15 @@ +from importlib.metadata import metadata, version + +__version__ = version("mmif-python") + +# Derived from the ``mmif-spec`` URL in pyproject.toml [project.urls]. +# e.g., "https://mmif.clams.ai/1.1.0" → "1.1.0" +# To change the targeted spec version, update the URL in pyproject.toml, +# NOT this file. +_urls = { + k: v for k, v in ( + u.split(", ", 1) + for u in metadata("mmif-python").get_all("Project-URL") + ) +} +__specver__ = _urls["mmif-spec"].rstrip("/").rsplit("/", 1)[-1] diff --git a/mmif/vocabulary/__init__.py b/mmif/vocabulary/__init__.py new file mode 100644 index 00000000..4700b887 --- /dev/null +++ b/mmif/vocabulary/__init__.py @@ -0,0 +1,17 @@ +# Shim: re-export vocabulary types from clams-vocabulary package. +# This preserves all existing `from mmif.vocabulary import ...` patterns. + +from clams_vocabulary.base import ( + ThingTypesBase, + ClamsTypesBase, + AnnotationTypesBase, + DocumentTypesBase, +) +from clams_vocabulary import AnnotationTypes, DocumentTypes, ThingType + +# Merged _typevers (consumed by mmif/__init__.py via star import) +_typevers = { + **ThingType._typevers, + **AnnotationTypes._typevers, + **DocumentTypes._typevers, +} diff --git a/mmif/vocabulary/annotation_types.py b/mmif/vocabulary/annotation_types.py new file mode 100644 index 00000000..49f59eb8 --- /dev/null +++ b/mmif/vocabulary/annotation_types.py @@ -0,0 +1,2 @@ +# Shim: re-export from clams-vocabulary package. +from clams_vocabulary import AnnotationTypes diff --git a/mmif/vocabulary/base_types.py b/mmif/vocabulary/base_types.py new file mode 100644 index 00000000..205fb1f9 --- /dev/null +++ b/mmif/vocabulary/base_types.py @@ -0,0 +1,8 @@ +# Shim: re-export base classes from clams-vocabulary package. +from clams_vocabulary.base import ( + TypesBase, + ThingTypesBase, + ClamsTypesBase, + AnnotationTypesBase, + DocumentTypesBase, +) diff --git a/mmif/vocabulary/document_types.py b/mmif/vocabulary/document_types.py new file mode 100644 index 00000000..51ae91bf --- /dev/null +++ b/mmif/vocabulary/document_types.py @@ -0,0 +1,2 @@ +# Shim: re-export from clams-vocabulary package. +from clams_vocabulary import DocumentTypes diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..26eb7748 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,67 @@ +[build-system] +requires = ["setuptools>=61.0", "setuptools-scm>=8.0"] +build-backend = "setuptools.build_meta" + +[tool.setuptools_scm] + +[project] +name = "mmif-python" +dynamic = ["version"] +description = "Python implementation of MultiMedia Interchange Format specification. (https://mmif.clams.ai)" +readme = "README.md" +license = "Apache-2.0" +requires-python = ">=3.10" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Programming Language :: Python :: 3 :: Only", +] +dependencies = [ + "clams-vocabulary>=1.2.0", + "orderly-set==5.3.*", + "jsonschema", + "pydantic>=2.0", +] + +[project.scripts] +mmif = "mmif:cli" + +[project.urls] +homepage = "https://mmif.clams.ai" +source = "https://github.com/clamsproject/mmif-python" +# The MMIF spec version this SDK targets. The version number is +# extracted from the URL path at runtime (e.g., ".../1.1.0" → "1.1.0") +# and exposed as ``mmif.__specver__``. When the MMIF spec releases a +# new version, update this URL AND re-fetch the schema: +# curl -sL https://raw.githubusercontent.com/clamsproject/mmif/main/schema/mmif.json \ +# -o mmif/res/mmif.json +# tests/test_specver.py will fail CI if this value is stale. +mmif-spec = "https://mmif.clams.ai/1.1.1" + +[project.optional-dependencies] +dev = [ + "pytype", "pytest", "pytest-cov", + "hypothesis", "hypothesis-jsonschema", + "pyyaml", "bs4", "lxml", + "setuptools", +] +docs = ["sphinx>=7.0,<8.0", "furo", "m2r2", "autodoc-pydantic"] +test = [ + "pytype", "pytest", "pytest-cov", + "hypothesis", "hypothesis-jsonschema", + "pyyaml", "bs4", "lxml", + "pillow", "opencv-python", "ffmpeg-python", "wurlitzer", +] +cv = ["pillow", "opencv-python", "ffmpeg-python", "wurlitzer"] +seq = ["numpy"] + +[tool.setuptools.packages.find] +where = ["."] +include = ["mmif*"] + +[tool.setuptools.package-data] +mmif = ["res/*"] + +[tool.pytest.ini_options] +testpaths = ["mmif", "tests"] +addopts = "--cov=mmif --cov-report=xml" diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index 07055628..00000000 --- a/pytest.ini +++ /dev/null @@ -1,3 +0,0 @@ -[pytest] -testpaths = mmif tests -python_files = test_*.py *_test.py diff --git a/requirements.cv b/requirements.cv deleted file mode 100644 index a2c1cfb9..00000000 --- a/requirements.cv +++ /dev/null @@ -1,4 +0,0 @@ -pillow -opencv-python -ffmpeg-python -wurlitzer diff --git a/requirements.dev b/requirements.dev deleted file mode 100644 index caeb31ca..00000000 --- a/requirements.dev +++ /dev/null @@ -1,10 +0,0 @@ -hypothesis -hypothesis-jsonschema -pytest>=6 -pytest-cov -pytype -pyyaml -bs4 -lxml -twine -setuptools>=70 # arbitrarily recent version \ No newline at end of file diff --git a/requirements.seq b/requirements.seq deleted file mode 100644 index 296d6545..00000000 --- a/requirements.seq +++ /dev/null @@ -1 +0,0 @@ -numpy \ No newline at end of file diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index c3e9d722..00000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ - -orderly-set==5.3.* # 5.4 drops py38 support -jsonschema -pydantic>=2.0 diff --git a/setup.py b/setup.py deleted file mode 100644 index 92eefff9..00000000 --- a/setup.py +++ /dev/null @@ -1,287 +0,0 @@ -#! /usr/bin/env python3 -import io -import json -import os -import re -import shutil -import string -import subprocess -from os.path import join as pjoin -from typing import Union -from urllib import request - -import setuptools.command.build_py -from setuptools.command.sdist import sdist -from setuptools.command.develop import develop - -name = "mmif-python" -version_fname = "VERSION" -vocabulary_templates_path = 'templates/python/vocabulary' -cmdclass = {} -LOCALMMIF = None -if 'LOCALMMIF' in os.environ: - LOCALMMIF = os.environ['LOCALMMIF'] - print(f"==== using local MMIF files at '{LOCALMMIF}' ====") - -# Used to have `import mmif` that imported `mmif` directory as a sibling, not `mmif` site-package, -# but that created a circular dependency (importing `mmif` requires packages in "requirements.txt") -# so we copy or move relevant package level variables used in the pre-build stage to here -mmif_name = "mmif" -mmif_res_pkg = 'res' -mmif_ver_pkg = 'ver' -mmif_vocabulary_pkg = 'vocabulary' -mmif_schema_res_oriname = 'schema/mmif.json' -mmif_schema_res_name = 'mmif.json' -mmif_vocab_res_oriname = 'vocabulary/clams.vocabulary.yaml' -mmif_vocab_attypevers_res_oriname = 'docs/{version}/vocabulary/attypeversions.json' -mmif_vocab_res_name = 'clams.vocabulary.yaml' - - -def do_not_edit_warning(dirname): - with open(pjoin(dirname, 'do-not-edit.txt'), 'w') as warning: - warning.write("Contents of this directory is automatically generated and should not be manually edited.\n") - warning.write("Any manual changes will be wiped at next build time.\n") - - -def generate_subpack(parpack_name, subpack_name, init_contents=""): - subpack_dir = pjoin(parpack_name, subpack_name) - shutil.rmtree(subpack_dir, ignore_errors=True) - os.makedirs(subpack_dir, exist_ok=True) - do_not_edit_warning(subpack_dir) - init_mod = open(pjoin(subpack_dir, '__init__.py'), 'w') - init_mod.write(init_contents) - init_mod.close() - return subpack_dir - - -def generate_vocab_enum(spec_version, clams_types_vers, mod_name) -> str: - - template_file = os.path.join(vocabulary_templates_path, mod_name + '.txt') - if mod_name.startswith('annotation'): - base_class_name = 'AnnotationTypesBase' - elif mod_name.startswith('document'): - base_class_name = 'DocumentTypesBase' - else: - base_class_name = 'ClamsTypesBase' - - file_out = io.StringIO() - with open(template_file, 'r') as file_in: - file_out.write(string.Template(file_in.read()).safe_substitute(VERSION=spec_version)) - for type_name, type_ver in clams_types_vers: - vocab_url = f'http://mmif.clams.ai/vocabulary/{type_name}/{type_ver}' - file_out.write(f" {type_name} = {base_class_name}('{vocab_url}')\n") - file_out.write(f" _typevers = {dict(clams_types_vers)}\n") - - string_out = file_out.getvalue() - file_out.close() - return string_out - - -def generate_vocabulary(spec_version, clams_types_vers): - """ - :param spec_version: - :param clams_types_vers: list of (name, version) tuples of annotation types in CLAMS vocab - :param template_path: the directory of source txt files - :return: - """ - types = { - 'base_types': ['ThingTypesBase', 'ThingType', 'ClamsTypesBase', 'AnnotationTypesBase', 'DocumentTypesBase'], - 'annotation_types': ['AnnotationTypes'], - 'document_types': ['DocumentTypes'] - } - vocabulary_dir = generate_subpack( - mmif_name, mmif_vocabulary_pkg, - '\n'.join( - f"from .{mod_name} import {class_name}" - for mod_name, classes in types.items() - for class_name in classes - ) + '\n\n' + "_typevers = {**ThingType._typevers, **AnnotationTypes._typevers, **DocumentTypes._typevers}" + '\n' - ) - document_types = [] - annotation_types = [] - base_types = [] - - for n, v in clams_types_vers.items(): - if n == 'Thing': - base_types.append((n, v)) - elif 'Document' in n: - document_types.append((n, v)) - else: - annotation_types.append((n, v)) - - type_lists = { - 'document_types': document_types, - 'annotation_types': annotation_types, - 'base_types': base_types - } - - for mod_name, type_ver_list in type_lists.items(): - enum_contents = generate_vocab_enum(spec_version, type_ver_list, mod_name) - write_res_file(vocabulary_dir, mod_name+'.py', enum_contents) - - return vocabulary_dir - - -def get_latest_mmif_gittag(): - if LOCALMMIF is not None: - tags = subprocess.run(f'git --git-dir {LOCALMMIF}/.git --no-pager tag'.split(), - capture_output=True).stdout.decode('utf-8').split('\n') - else: - cur_p = 1 - body = [None] - tags = [] - while len(body) > 0: - # for when we have more than 30 (default pagination size) tags - res = request.urlopen(f'https://api.github.com/repos/clamsproject/mmif/tags?per_page=100&page={cur_p}') - body = json.loads(res.read()) - tags.extend([tag['name'] for tag in body]) - cur_p += 1 - # sort and return highest version - print(tags) - mmif_ver_format = lambda x: re.match(r'\d+\.\d+\.\d$', x) - return sorted([tag for tag in tags if mmif_ver_format(tag)])[-1] - - -def get_spec_file_at_gitref(tag, filepath: str) -> bytes: - filepath = filepath.format(version=tag) - if LOCALMMIF is not None: - return subprocess.run(f'git --git-dir {LOCALMMIF}/.git --no-pager show {tag}:{filepath}'.split(), capture_output=True).stdout - file_url = f"https://raw.githubusercontent.com/clamsproject/mmif/{tag}/{filepath}" - return request.urlopen(file_url).read() - - -def write_res_file(res_dir: str, res_name: str, res_data: Union[bytes, str]): - open_ops = 'wb' if type(res_data) == bytes else 'w' - res_file = open(pjoin(res_dir, res_name), open_ops) - res_file.write(res_data) - res_file.close() - - -# note that `VERSION` file will not included in s/bdist - s/bdist should already have `mmif_ver_pkg` properly generated -if os.path.exists(version_fname): - with open(version_fname, 'r') as version_f: - version = version_f.read().strip() -else: - raise ValueError(f"Cannot find {version_fname} file. Use `make version` to generate one.") - - -def prep_ext_files(setuptools_cmd): - ori_run = setuptools_cmd.run - - def mod_run(self): - # will infer the `spec_ver` from the latest git tag available either on GH or local `mmif` repository. - # NOTE that when `make develop`, it will use specification files from upstream "develop" branch of `mmif` repo - latest_mmif_gittag = get_latest_mmif_gittag() - spec_file_gitref = latest_mmif_gittag if '.dev' not in version else 'develop' - # legacy version tags were formatted as xx-a.b.c (e.g., vocab-0.0.1) - spec_version = latest_mmif_gittag.split('-')[-1].strip() - # making resources into a python package so that `pkg_resources` can access resource files - res_dir = generate_subpack(mmif_name, mmif_res_pkg) - - # the following will generate a new version value based on VERSION file - generate_subpack(mmif_name, mmif_ver_pkg, f'__version__ = "{version}"\n__specver__ = "{spec_version}"') - - - # and write resource files - for res_name, res_oriname in [(mmif_schema_res_name, mmif_schema_res_oriname), (mmif_vocab_res_name, mmif_vocab_res_oriname)]: - if LOCALMMIF: - res_content = open(pjoin(LOCALMMIF, res_oriname)).read() - else: - res_content = get_spec_file_at_gitref(spec_file_gitref, res_oriname) - write_res_file(res_dir, res_name, res_content) - - # write vocabulary enum - import yaml - attypevers = json.load(io.BytesIO(get_spec_file_at_gitref(latest_mmif_gittag, mmif_vocab_attypevers_res_oriname))) - if '.dev' not in version: - vocab_yaml_file = io.BytesIO(get_spec_file_at_gitref(latest_mmif_gittag, mmif_vocab_res_oriname)) - clams_types_vers = {t['name']: attypevers[t['name']] for t in list(yaml.safe_load_all(vocab_yaml_file.read()))} - else: - last_clams_types = {t['name']: t for t in yaml.safe_load_all(get_spec_file_at_gitref(latest_mmif_gittag, mmif_vocab_res_oriname))} - if LOCALMMIF: - new_clams_types = {t['name']: t for t in yaml.safe_load_all(open(pjoin(LOCALMMIF, mmif_vocab_res_oriname)))} - else: - new_clams_types = {t['name']: t for t in yaml.safe_load_all(get_spec_file_at_gitref(spec_file_gitref, mmif_vocab_res_oriname))} - clams_types_vers = {n: attypevers[n] for n, t in last_clams_types.items()} - for tname in new_clams_types: - if tname not in last_clams_types: - clams_types_vers[tname] = 'v1' - elif last_clams_types[tname] != new_clams_types[tname]: - clams_types_vers[tname] = f'v{int(clams_types_vers[tname][1:])+1}' - generate_vocabulary(spec_version, clams_types_vers) - ori_run(self) - - setuptools_cmd.run = mod_run - return setuptools_cmd - - -# Modernize cmdclass to ensure compatibility with setuptools >=80 -@prep_ext_files -class SdistCommand(sdist): - def initialize_options(self): - super().initialize_options() - # Add any additional initialization logic here if needed - -@prep_ext_files -class DevelopCommand(develop): - def initialize_options(self): - super().initialize_options() - # Add any additional initialization logic here if needed - -cmdclass['sdist'] = SdistCommand -cmdclass['develop'] = DevelopCommand - -with open('README.md') as readme: - long_desc = readme.read() - -with open('requirements.txt') as requirements: - requires = requirements.readlines() - -with open('requirements.cv') as requirements: - cv_requires = requirements.readlines() - -with open('requirements.seq') as requirements: - seq_requires = requirements.readlines() - -extras_require = { - 'seq': seq_requires, - 'cv': cv_requires, - 'dev': [ - 'pytest', - 'pytest-pep8', - 'pytest-cov', - 'pytype', - ] -} - -setuptools.setup( - name=name, - version=version, - author="Brandeis Lab for Linguistics and Computation", - author_email="admin@clams.ai", - description="Python implementation of MultiMedia Interchange Format specification. (https://mmif.clams.ai)", - long_description=long_desc, - long_description_content_type="text/markdown", - url="https://mmif.clams.ai", - entry_points={ - 'console_scripts': [ - 'mmif = mmif.__init__:cli', - ], - }, - packages=setuptools.find_packages(), - cmdclass=cmdclass, - # this is for *building*, building (build, bdist_*) doesn't get along with MANIFEST.in - # so using this param explicitly is much safer implementation - package_data={ - 'mmif': [f'{mmif_res_pkg}/*', f'{mmif_ver_pkg}/*', f'{mmif_vocabulary_pkg}/*'], - }, - install_requires=requires, - extras_require=extras_require, - python_requires='>=3.10', - licenses='Apache-2.0', - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'Programming Language :: Python :: 3 :: Only', - ] -) diff --git a/templates/python/vocabulary/annotation_types.txt b/templates/python/vocabulary/annotation_types.txt deleted file mode 100644 index 6dc4e550..00000000 --- a/templates/python/vocabulary/annotation_types.txt +++ /dev/null @@ -1,37 +0,0 @@ -# Spec version $VERSION -# This file is auto-generated by setup.py - -from .base_types import AnnotationTypesBase - - -class AnnotationTypes(AnnotationTypesBase): - """ - This class contains the CLAMS annotation types - defined in the spec version $VERSION as class variables. - """ - - # prpoerty aliases, first added in MMIF 1.0.2 - # map from type short name to a dictionary of property aliases - # where nested dictionary maps from representative name to its aliases - _prop_aliases = { - 'TimeFrame': {'label': {'frameType', 'label'}, - 'classification': {'classifications', 'classification'}}, - 'BoundingBox': {'label': {'boxType', 'label'}, - 'classification': {'classifications', 'classification'}}, - 'Annotation': {'classification': {'classifications', 'classification'}}, - 'Region': {'classification': {'classifications', 'classification'}}, - 'Interval': {'classification': {'classifications', 'classification'}}, - 'Span': {'classification': {'classifications', 'classification'}}, - 'Chapter': {'classification': {'classifications', 'classification'}}, - 'Polygon': {'classification': {'classifications', 'classification'}}, - 'VideoObject': {'classification': {'classifications', 'classification'}}, - 'Relation': {'classification': {'classifications', 'classification'}}, - 'Span': {'text': {'word', 'text'}}, - 'Token': {'text': {'word', 'text'}}, - 'Sentence': {'text': {'word', 'text'}}, - 'Paragraph': {'text': {'word', 'text'}}, - 'NamedEntity': {'text': {'word', 'text'}}, - 'NounChunk': {'text': {'word', 'text'}}, - 'VerbChunk': {'text': {'word', 'text'}}, - } - diff --git a/templates/python/vocabulary/base_types.txt b/templates/python/vocabulary/base_types.txt deleted file mode 100644 index dbff5e1d..00000000 --- a/templates/python/vocabulary/base_types.txt +++ /dev/null @@ -1,222 +0,0 @@ -# This file is auto-generated by setup.py -import warnings -from typing import ClassVar - - -class TypesBase(object): - """ - Base class for arbitrary vocabulary type. - This class provides bisic initializer, comparators, - and (de-)serialization methods. - """ - _prefixes = {} - base_uri: str - shortname: str - fuzzy_eq: bool - # these names are migrated from the old LAPPSgrid vocab - old_lapps_type_shortnames = {'Token', 'Sentence', 'Paragraph', 'Markable', 'NamedEntity', 'NounChunk', 'VerbChunk'} - - def __init__(self, type_uri: str): - """ - Initialize a vocabulary type. - - :param type_uri: full URI or short name of the vocabulary type - """ - self.fuzzy_eq = False - self.parse_names(type_uri) - if self.__repr__() not in self.__class__._prefixes: - # prepare auto-inferred prefix for Annotations.[].id field - self.__class__._prefixes[self.__repr__()] \ - = self.__class__._create_prefix(self.shortname, - self.__class__._prefixes.values() - ) - - def parse_names(self, type_uri: str): - if '/' in type_uri: - self.base_uri, self.shortname = type_uri.rsplit('/', 1) - else: - self.base_uri = "" - self.shortname = type_uri - - @classmethod - def _create_prefix(cls, shortname, existing_prefixes): - - def extract_chars(string, indices): - return "".join(string[i].lower() for i in sorted(set(indices)) if i < len(string)) - - if shortname.isalnum(): - - cap_letters = [i for i, c in enumerate(shortname) if c.isupper()] + [len(shortname)] - if len(cap_letters) > 1: - max_diff = max(cap_letters[i] - cap_letters[i-1] for i in range(1, len(cap_letters))) - else: - max_diff = len(shortname) - more_letters = [] - prefix = extract_chars(shortname, cap_letters) - if prefix in existing_prefixes: - for i in range(1, max_diff): - for j in cap_letters: - more_letters.append(j + i) - prefix = extract_chars(shortname, cap_letters + more_letters) - if prefix not in existing_prefixes: - break - else: - continue - break - else: - prefix = None - return prefix - - @staticmethod - def attype_iri_isdocument(iri): - return 'Document/' in iri or iri.endswith('Document') - - @classmethod - def from_str(cls, string: str): - if 'mmif.clams.ai' in string: - if cls.attype_iri_isdocument(string): - return DocumentTypesBase(string) - else: - return AnnotationTypesBase(string) - # quirks for legacy LAPPSgrid types - elif 'vocab.lappsgrid.org' in string and string.split('/')[-1] in cls.old_lapps_type_shortnames: - # legacy LAPPSgrid types - shortname = string.split('/')[-1] - # when migrated, their version was set to 'v1' - return AnnotationTypesBase(f'http://mmif.clams.ai/vocabulary/{shortname}/v1') - else: - return cls(string) - - def __hash__(self): - return hash(str(self)) - - def __eq__(self, other): - if isinstance(other, str): - other = self.from_str(other) - return isinstance(other, TypesBase) and self.base_uri == other.base_uri and self.shortname == other.shortname - - def __repr__(self): - if self.base_uri: - return f'{self.base_uri}/{self.shortname}' - else: - return self.shortname - - # aliases - def __str__(self): - return self.__repr__() - - def _serialize(self): - return self.__repr__() - - def get_prefix(self): - return self.__class__._prefixes[self.__repr__()] - - def set_prefix(self, prefix): - self.__class__._prefixes[self.__repr__()] = prefix - -ThingTypesBase = TypesBase - - -class ClamsTypesBase(TypesBase): - """ - Base class for CLAMS vocabulary types. Main - This class adds handling of MMIF specification versions - in initializer and comparators. - """ - version: str - dev_version: ClassVar[str] = 'develop' - - def __init__(self, type_uri, fuzzymode=True): - """ - Initialize a CLAMS vocabulary type. - - :param type_uri: full URI or short name of the CLAMS vocabulary type - :param fuzzymode: if True, enables fuzzy equality comparison that ignores version differences - """ - super().__init__(type_uri) - self.fuzzy_eq = fuzzymode - - def parse_names(self, type_uri:str): - if not type_uri: - self.base_uri, self.shortname, self.version = "", "", "" - elif 'mmif.clams.ai' not in type_uri: - raise ValueError(f'Cannot process "{type_uri}"!: not a CLAMS vocabulary URI') - elif type_uri[-1].isdigit(): # new versioning - self.base_uri, _, self.shortname, self.version = type_uri.rsplit('/', 3) - else: # legacy versioning - self.base_uri, self.version, _, self.shortname = type_uri.rsplit('/', 3) - self._check_legacy_version(self.version) - - def _check_legacy_version(self, legacy_ver): - if legacy_ver < '0.4.0': - raise ValueError(f'Cannot process "{self}"!: CLAMS annotation types from old MMIF (older than 0.4.0) are no ' - f'longer supported with this app.') - if legacy_ver > '0.4.2': - raise ValueError(f'Cannot process "{self}"!: Invalid CLAMS vocabulary type URI.') - return True - - def __hash__(self): - return hash(f'{self.base_uri}::{self.shortname}') - - def normalize_attype_vers(self): - if '.' in self.version and self._check_legacy_version(self.version): - # legacy mapping: see https://github.com/clamsproject/mmif/issues/14#issuecomment-1504439497 - if self.version == '0.4.2' and self.shortname == 'Annotation': - return 'v2' - elif self.version.startswith('0.4.'): - return 'v1' - else: - return self.version - - def _eq_internal(self, other, fuzzy): - if isinstance(other, ClamsTypesBase): - if fuzzy: - vers = [x.normalize_attype_vers() for x in (self, other)] - if self.base_uri == other.base_uri and self.shortname == other.shortname: - if vers[0] != vers[1]: - warnings.warn(f'version difference detected: {self.version}&{other.version}@{self.shortname}') - return True - return False - else: - return self.base_uri == other.base_uri \ - and self.shortname == other.shortname \ - and self.version == other.version - else: - # quirks for legacy LAPPSgrid types - if self.shortname in self.old_lapps_type_shortnames and str(other) == f'http://vocab.lappsgrid.org/{self.shortname}': - return True - return False - - def __eq__(self, other): - if isinstance(other, str): - other = ThingTypesBase.from_str(other) - return self._eq_internal(other, self.fuzzy_eq and other.fuzzy_eq) - - def __repr__(self): - if self.version[0] == 'v': - return f'{self.base_uri}/vocabulary/{self.shortname}/{self.version}' - else: - return f'{self.base_uri}/{self.version}/vocabulary/{self.shortname}' - - -class AnnotationTypesBase(ClamsTypesBase): - """ - Inherit from this class to build your own custom annotation - vocabularies. - """ - ... - - -class DocumentTypesBase(ClamsTypesBase): - """ - Inherit from this class to build your own custom document - vocabularies. - """ - ... - - -class ThingType(ThingTypesBase): - """ - This class contains the topmost CLAMS thing type - defined in the spec version $VERSION as a class variable. - """ diff --git a/templates/python/vocabulary/document_types.txt b/templates/python/vocabulary/document_types.txt deleted file mode 100644 index 67d39e0f..00000000 --- a/templates/python/vocabulary/document_types.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Spec version $VERSION -# This file is auto-generated by setup.py - -from .base_types import DocumentTypesBase - - -class DocumentTypes(DocumentTypesBase): - """ - This class contains the CLAMS document types - defined in the spec version $VERSION as class variables. - """ diff --git a/tests/mmif-examples/1.0.5-old-shortid.json b/tests/mmif-examples/1.0.5-old-shortid.json new file mode 100644 index 00000000..75d0cd0c --- /dev/null +++ b/tests/mmif-examples/1.0.5-old-shortid.json @@ -0,0 +1,1563 @@ +{ + + "metadata": { + "mmif": "http://mmif.clams.ai/1.0.5" + }, + + "documents": [ + { + "@type": "http://mmif.clams.ai/vocabulary/VideoDocument/v1", + "properties": { + "id": "m1", + "mime": "video/mpeg", + "location": "file:///var/archive/video-002.mp4" } + } + ], + + "views": [ + + { + "id": "v1", + "metadata": { + "app": "http://apps.clams.ai/bars-and-tones/1.0.5", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://mmif.clams.ai/vocabulary/TimeFrame/v5": { + "document": "m1", + "timeUnit": "milliseconds" } + } + }, + "annotations": [ + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "s1", + "start": 0, + "end": 2600, + "frameType": "bars-and-tones" } + } + ] + }, + + { + "id": "v2", + "metadata": { + "app": "http://apps.clams.ai/slates/1.0.3", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://mmif.clams.ai/vocabulary/TimeFrame/v5": { + "document": "m1", + "timeUnit": "milliseconds" } + } + }, + "annotations": [ + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "s1", + "start": 2700, + "end": 5300, + "frameType": "slate" } + } + ] + }, + + { + "id": "v3", + "metadata": { + "app": "http://mmif.clams.ai/apps/audio-segmenter/0.2.1", + "contains": { + "http://mmif.clams.ai/vocabulary/TimeFrame/v5": { + "timeUnit": "milliseconds", + "document": "m1" } + } + }, + "annotations": [ + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "frameType": "non-speech", + "id": "tf1", + "start": 0, + "end": 5500 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf2", + "frameType": "speech", + "start": 5500, + "end": 22000 } + } + ] + }, + + { + "id": "v4", + "metadata": { + "app": "http://mmif.clams.ai/apps/kaldi/0.2.1", + "contains": { + "http://mmif.clams.ai/vocabulary/TextDocument/v1": {}, + "http://vocab.lappsgrid.org/Token": { + "document": "td1" }, + "http://mmif.clams.ai/vocabulary/TimeFrame/v5": { + "timeUnit": "milliseconds", + "document": "m1" }, + "http://mmif.clams.ai/vocabulary/Alignment/v1": {} + } + }, + "annotations": [ + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td1", + "mime": "text/plain", + "location": "file:///var/archive/transcript-002.txt" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a1", + "source": "v3:tf1", + "target": "td1" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t1", + "start": 0, + "end": 5, + "word": "Hello" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf1", + "start": 5500, + "end": 6085 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a2", + "source": "tf1", + "target": "t1" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t2", + "start": 5, + "end": 6, + "word": "," } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf2", + "start": 6085, + "end": 6202 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a3", + "source": "tf2", + "target": "t2" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t3", + "start": 7, + "end": 11, + "word": "this" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf3", + "start": 6319, + "end": 6787 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a4", + "source": "tf3", + "target": "t3" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t4", + "start": 12, + "end": 14, + "word": "is" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf4", + "start": 6904, + "end": 7138 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a5", + "source": "tf4", + "target": "t4" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t5", + "start": 15, + "end": 18, + "word": "Jim" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf5", + "start": 7255, + "end": 7606 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a6", + "source": "tf5", + "target": "t5" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t6", + "start": 19, + "end": 25, + "word": "Lehrer" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf6", + "start": 7723, + "end": 8425 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a7", + "source": "tf6", + "target": "t6" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t7", + "start": 26, + "end": 30, + "word": "with" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf7", + "start": 8542, + "end": 9010 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a8", + "source": "tf7", + "target": "t7" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t8", + "start": 31, + "end": 34, + "word": "the" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf8", + "start": 9127, + "end": 9478 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a9", + "source": "tf8", + "target": "t8" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t9", + "start": 35, + "end": 43, + "word": "NewsHour" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf9", + "start": 9595, + "end": 10531 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a10", + "source": "tf9", + "target": "t9" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t10", + "start": 44, + "end": 46, + "word": "on" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf10", + "start": 10648, + "end": 10882 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a11", + "source": "tf10", + "target": "t10" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t11", + "start": 47, + "end": 50, + "word": "PBS" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf11", + "start": 10999, + "end": 11350 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a12", + "source": "tf11", + "target": "t11" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t12", + "start": 50, + "end": 51, + "word": "." } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf12", + "start": 11350, + "end": 11467 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a13", + "source": "tf12", + "target": "t12" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t13", + "start": 52, + "end": 54, + "word": "In" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf13", + "start": 11584, + "end": 11818 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a14", + "source": "tf13", + "target": "t13" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t14", + "start": 55, + "end": 58, + "word": "the" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf14", + "start": 11935, + "end": 12286 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a15", + "source": "tf14", + "target": "t14" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t15", + "start": 59, + "end": 67, + "word": "nineteen" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf15", + "start": 12403, + "end": 13339 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a16", + "source": "tf15", + "target": "t15" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t16", + "start": 68, + "end": 76, + "word": "eighties" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf16", + "start": 13456, + "end": 14392 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a17", + "source": "tf16", + "target": "t16" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t17", + "start": 76, + "end": 77, + "word": "," } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf17", + "start": 14392, + "end": 14509 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a18", + "source": "tf17", + "target": "t17" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t18", + "start": 78, + "end": 85, + "word": "barking" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf18", + "start": 14626, + "end": 15445 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a19", + "source": "tf18", + "target": "t18" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t19", + "start": 86, + "end": 90, + "word": "dogs" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf19", + "start": 15562, + "end": 16030 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a20", + "source": "tf19", + "target": "t19" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t20", + "start": 91, + "end": 95, + "word": "have" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf20", + "start": 16147, + "end": 16615 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a21", + "source": "tf20", + "target": "t20" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t21", + "start": 96, + "end": 108, + "word": "increasingly" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf21", + "start": 16732, + "end": 18136 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a22", + "source": "tf21", + "target": "t21" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t22", + "start": 109, + "end": 115, + "word": "become" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf22", + "start": 18253, + "end": 18955 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a23", + "source": "tf22", + "target": "t22" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t23", + "start": 116, + "end": 117, + "word": "a" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf23", + "start": 19072, + "end": 19189 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a24", + "source": "tf23", + "target": "t23" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t24", + "start": 118, + "end": 125, + "word": "problem" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf24", + "start": 19306, + "end": 20125 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a25", + "source": "tf24", + "target": "t24" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t25", + "start": 126, + "end": 128, + "word": "in" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf25", + "start": 20242, + "end": 20476 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a26", + "source": "tf25", + "target": "t25" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t26", + "start": 129, + "end": 134, + "word": "urban" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf26", + "start": 20593, + "end": 21178 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a27", + "source": "tf26", + "target": "t26" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t27", + "start": 135, + "end": 140, + "word": "areas" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf27", + "start": 21295, + "end": 21880 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a28", + "source": "tf27", + "target": "t27" } + }, + { + "@type": "http://vocab.lappsgrid.org/Token", + "properties": { + "id": "t28", + "start": 140, + "end": 141, + "word": "." } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v5", + "properties": { + "id": "tf28", + "start": 21880, + "end": 21997 } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a29", + "source": "tf28", + "target": "t28" } + } + ] + }, + + { + "id": "v5", + "metadata": { + "app": "http://mmif.clams.ai/apps/east/0.2.1", + "contains": { + "http://mmif.clams.ai/vocabulary/BoundingBox/v4": { + "document": "m1" } + } + }, + "annotations": [ + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb1", + "timePoint": 3000, + "coordinates": [[180, 110], [460, 110], [180, 170], [460, 170]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb2", + "timePoint": 3000, + "coordinates": [[660, 110], [1250, 110], [660, 170], [1250, 170]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb3", + "timePoint": 3000, + "coordinates": [[180, 320], [460, 320], [180, 380], [460, 380]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb4", + "timePoint": 3000, + "coordinates": [[660, 320], [1210, 320], [660, 380], [1210, 380]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb5", + "timePoint": 3000, + "coordinates": [[180, 520], [460, 520], [180, 580], [460, 580]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb6", + "timePoint": 3000, + "coordinates": [[660, 520], [1200, 520], [660, 580], [1200, 580]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb7", + "timePoint": 3000, + "coordinates": [[180, 750], [470, 750], [180, 810], [470, 810]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb8", + "timePoint": 3000, + "coordinates": [[660, 750], [1180, 750], [660, 810], [1180, 810]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb9", + "timePoint": 4000, + "coordinates": [[180, 110], [460, 110], [180, 170], [460, 170]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb10", + "timePoint": 4000, + "coordinates": [[660, 110], [1250, 110], [660, 170], [1250, 170]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb11", + "timePoint": 4000, + "coordinates": [[180, 320], [460, 320], [180, 380], [460, 380]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb12", + "timePoint": 4000, + "coordinates": [[660, 320], [1210, 320], [660, 380], [1210, 380]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb13", + "timePoint": 4000, + "coordinates": [[180, 520], [460, 520], [180, 580], [460, 580]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb14", + "timePoint": 4000, + "coordinates": [[660, 520], [1200, 520], [660, 580], [1200, 580]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb15", + "timePoint": 4000, + "coordinates": [[180, 750], [470, 750], [180, 810], [470, 810]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb16", + "timePoint": 4000, + "coordinates": [[660, 750], [1180, 750], [660, 810], [1180, 810]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb17", + "timePoint": 5000, + "coordinates": [[180, 110], [460, 110], [180, 170], [460, 170]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb18", + "timePoint": 5000, + "coordinates": [[660, 110], [1250, 110], [660, 170], [1250, 170]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb19", + "timePoint": 5000, + "coordinates": [[180, 320], [460, 320], [180, 380], [460, 380]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb20", + "timePoint": 5000, + "coordinates": [[660, 320], [1210, 320], [660, 380], [1210, 380]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb21", + "timePoint": 5000, + "coordinates": [[180, 520], [460, 520], [180, 580], [460, 580]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb22", + "timePoint": 5000, + "coordinates": [[660, 520], [1200, 520], [660, 580], [1200, 580]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb23", + "timePoint": 5000, + "coordinates": [[180, 750], [470, 750], [180, 810], [470, 810]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb24", + "timePoint": 5000, + "coordinates": [[660, 750], [1180, 750], [660, 810], [1180, 810]], + "label": "text" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v4", + "properties": { + "id": "bb25", + "timePoint": 21000, + "coordinates": [[150, 810], [1120, 810], [150, 870], [1120, 870]], + "label": "text" } + } + ] + }, + + { + "id": "v6", + "metadata": { + "app": "http://mmif.clams.ai/apps/tesseract/0.2.1", + "contains": { + "http://mmif.clams.ai/vocabulary/TextDocument/v1": {}, + "http://mmif.clams.ai/vocabulary/Alignment/v1": { + "sourceType": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "targetType": "http://mmif.clams.ai/vocabulary/BoundingBox/v4" + } + } + }, + "annotations": [ + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td1", + "text": { "@value": "DATE" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a1", + "source": "v5:bb1", + "target": "td1" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td2", + "text": { "@value": "1982-05-12" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a2", + "source": "v5:bb2", + "target": "td2" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td3", + "text": { "@value": "TITLE" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a3", + "source": "v5:bb3", + "target": "td3" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td4", + "text": { "@value": "Loud Dogs" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a4", + "source": "v5:bb4", + "target": "td4" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td5", + "text": { "@value": "HOST" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a5", + "source": "v5:bb5", + "target": "td5" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td6", + "text": { "@value": "Jim Lehrer" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a6", + "source": "v5:bb6", + "target": "td6" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td7", + "text": { "@value": "PROD" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a7", + "source": "v5:bb7", + "target": "td7" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td8", + "text": { "@value": "Sara Just" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a8", + "source": "v5:bb8", + "target": "td8" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td9", + "text": { "@value": "DATE" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a9", + "source": "v5:bb9", + "target": "td9" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td10", + "text": { "@value": "1982-05-12" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a10", + "source": "v5:bb10", + "target": "td10" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td11", + "text": { "@value": "TITLE" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a11", + "source": "v5:bb11", + "target": "td11" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td12", + "text": { "@value": "Loud Dogs" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a12", + "source": "v5:bb12", + "target": "td12" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td13", + "text": { "@value": "HOST" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a13", + "source": "v5:bb13", + "target": "td13" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td14", + "text": { "@value": "Jim Lehrer" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a14", + "source": "v5:bb14", + "target": "td14" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td15", + "text": { "@value": "PROD" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a15", + "source": "v5:bb15", + "target": "td15" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td16", + "text": { "@value": "Sara Just" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a16", + "source": "v5:bb16", + "target": "td16" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td17", + "text": { "@value": "DATE" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a17", + "source": "v5:bb17", + "target": "td17" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td18", + "text": { "@value": "1982-05-12" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a18", + "source": "v5:bb18", + "target": "td18" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td19", + "text": { "@value": "TITLE" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a19", + "source": "v5:bb19", + "target": "td19" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td20", + "text": { "@value": "Loud Dogs" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a20", + "source": "v5:bb20", + "target": "td20" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td21", + "text": { "@value": "HOST" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a21", + "source": "v5:bb21", + "target": "td21" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td22", + "text": { "@value": "Jim Lehrer" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a22", + "source": "v5:bb22", + "target": "td22" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td23", + "text": { "@value": "PROD" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a23", + "source": "v5:bb23", + "target": "td23" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td24", + "text": { "@value": "Sara Just" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a24", + "source": "v5:bb24", + "target": "td24" } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1", + "properties": { + "id": "td25", + "text": { "@value": "Dog in New York" } } + }, + { + "@type": "http://mmif.clams.ai/vocabulary/Alignment/v1", + "properties": { + "id": "a25", + "source": "v5:bb25", + "target": "td25" } + } + ] + }, + + { + "id": "v7", + "metadata": { + "app": "http://apps.clams.ai/spacy-ner/0.2.1", + "contains": { + "http://vocab.lappsgrid.org/NamedEntity": {} + } + }, + "annotations": [ + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne1", + "document": "v6:td2", + "start": 0, + "end": 10, + "category": "Date", + "word": "1982-05-12" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne2", + "document": "v6:td6", + "start": 0, + "end": 10, + "category": "Person", + "word": "Jim Lehrer" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne3", + "document": "v6:td8", + "start": 0, + "end": 9, + "category": "Person", + "word": "Sara Just" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne4", + "document": "v6:td10", + "start": 0, + "end": 10, + "category": "Date", + "word": "1982-05-12" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne5", + "document": "v6:td14", + "start": 0, + "end": 10, + "category": "Person", + "word": "Jim Lehrer" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne6", + "document": "v6:td16", + "start": 0, + "end": 9, + "category": "Person", + "word": "Sara Just" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne7", + "document": "v6:td18", + "start": 0, + "end": 10, + "category": "Date", + "word": "1982-05-12" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne8", + "document": "v6:td22", + "start": 0, + "end": 10, + "category": "Person", + "word": "Jim Lehrer" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne9", + "document": "v6:td24", + "start": 0, + "end": 9, + "category": "Person", + "word": "Sara Just" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne10", + "document": "v6:td25", + "start": 7, + "end": 15, + "category": "Location", + "word": "New York" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne11", + "document": "v4:td1", + "start": 15, + "end": 25, + "category": "Person", + "word": "Jim Lehrer" } + }, + { + "@type": "http://vocab.lappsgrid.org/NamedEntity", + "properties": { + "id": "ne12", + "document": "v4:td1", + "start": 47, + "end": 50, + "category": "Organization", + "word": "PBS" } + } + ] + }, + + { + "id": "v8", + "metadata": { + "app": "http://apps.clams.ai/slate-parser/1.0.2", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://vocab.lappsgrid.org/SemanticTag": {} + } + }, + "annotations": [ + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st1", + "document": "v6:td2", + "start": 0, + "end": 10, + "tagName": "Date", + "word": "1982-05-12" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st2", + "document": "v6:td4", + "start": 0, + "end": 9, + "tagName": "Title", + "word": "Loud Dogs" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st3", + "document": "v6:td6", + "start": 0, + "end": 10, + "tagName": "Host", + "word": "Jim Lehrer" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st4", + "document": "v6:td8", + "start": 0, + "end": 9, + "tagName": "Producer", + "word": "Sara Just" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st5", + "document": "v6:td10", + "start": 0, + "end": 10, + "tagName": "Date", + "word": "1982-05-12" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st6", + "document": "v6:td12", + "start": 0, + "end": 9, + "tagName": "Title", + "word": "Loud Dogs" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st7", + "document": "v6:td14", + "start": 0, + "end": 10, + "tagName": "Host", + "word": "Jim Lehrer" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st8", + "document": "v6:td16", + "start": 0, + "end": 9, + "tagName": "Producer", + "word": "Sara Just" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st9", + "document": "v6:td18", + "start": 0, + "end": 10, + "tagName": "Date", + "word": "1982-05-12" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st10", + "document": "v6:td20", + "start": 0, + "end": 9, + "tagName": "Title", + "word": "Loud Dogs" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st11", + "document": "v6:td22", + "start": 0, + "end": 10, + "tagName": "Host", + "word": "Jim Lehrer" } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "st12", + "document": "v6:td24", + "start": 0, + "end": 9, + "tagName": "Producer", + "word": "Sara Just" } + } + ] + } + + ] +} diff --git a/tests/mmif-examples/README.md b/tests/mmif-examples/README.md new file mode 100644 index 00000000..4e168dec --- /dev/null +++ b/tests/mmif-examples/README.md @@ -0,0 +1,38 @@ +# MMIF Examples + +Example MMIF documents used for two purposes: + +1. **Test fixtures** — loaded by `tests/mmif_examples.py` with template + substitution against the currently installed `clams-vocabulary`. +2. **Docs source** — rendered by the `_mmif_example_builder` Sphinx + extension (`documentation/_mmif_example_builder/`) into + `documentation/examples.md` at docs build time, which is then + included into the mmif-python docs site as the canonical example + page. + +## Files + +- `examples.json` — ordered metadata for the docs builder. Each entry + is `{dir, title, description}`. Adding a new example means dropping a + new subdirectory with `raw.json` and appending an entry here. +- `/raw.json` — full MMIF document with `$TypeName_VER` + and `$VERSION` template variables. Substituted at runtime by both + consumers above so the examples automatically reflect whatever + vocabulary versions are currently installed. +- `1.0.5-old-shortid.json` — historical MMIF sample with type URIs + hardcoded at 1.0.5-era versions and the pre-migration + `http://mmif.clams.ai/vocabulary/...` prefix. Used only as a + backward-compat test fixture; **not** rendered in the docs. + `alsoKnownAs` entries in `clams-vocabulary` resolve these URIs at + deserialization time. +- `others/` — legacy prototype-format samples from the earliest MMIF + drafts, kept for historical reference. Not referenced by any current + code. + +## URL convention + +Current-version `raw.json` fixtures use the canonical CLAMS vocabulary +URL prefix: `http://clams.ai/vocabulary/type/TypeName/$TypeName_VER`. +The historical `1.0.5-old-shortid.json` uses the old +`http://mmif.clams.ai/vocabulary/TypeName/vN` format intentionally, +since it's testing backward compatibility with pre-migration documents. diff --git a/tests/mmif-examples/bars-tones-slates/raw.json b/tests/mmif-examples/bars-tones-slates/raw.json new file mode 100644 index 00000000..802afb03 --- /dev/null +++ b/tests/mmif-examples/bars-tones-slates/raw.json @@ -0,0 +1,96 @@ +{ + "metadata": { + "mmif": "http://mmif.clams.ai/$VERSION" + }, + "documents": [ + { + "@type": "http://clams.ai/vocabulary/type/VideoDocument/$VideoDocument_VER", + "properties": { + "id": "m1", + "mime": "video/mp4", + "location": "file:///var/archive/video-0012.mp4" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "m2", + "mime": "text/plain", + "location": "file:///var/archive/video-0012-transcript.txt" + } + } + ], + "views": [ + { + "id": "v1", + "metadata": { + "app": "http://apps.clams.ai/bars-and-tones/1.0.5", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "document": "m1", + "timeUnit": "seconds" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v1:s1", + "start": 0, + "end": 5, + "frameType": "bars-and-tones" + } + } + ] + }, + { + "id": "v2", + "metadata": { + "app": "http://apps.clams.ai/slates/1.0.3", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "document": "m1", + "timeUnit": "seconds" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v2:s1", + "start": 25, + "end": 38, + "frameType": "slate" + } + } + ] + }, + { + "id": "v3", + "metadata": { + "app": "http://apps.clams.ai/spacy/1.3.0", + "timestamp": "2020-05-27T12:25:15", + "contains": { + "http://clams.ai/vocabulary/type/Token/$Token_VER": { + "document": "m2" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v3:s1", + "start": 0, + "end": 3, + "text": "The" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/mmif-examples/east-tesseract-typing/raw.json b/tests/mmif-examples/east-tesseract-typing/raw.json new file mode 100644 index 00000000..4f692a56 --- /dev/null +++ b/tests/mmif-examples/east-tesseract-typing/raw.json @@ -0,0 +1,124 @@ +{ + "metadata": { + "mmif": "http://mmif.clams.ai/$VERSION" + }, + "documents": [ + { + "@type": "http://clams.ai/vocabulary/type/ImageDocument/$ImageDocument_VER", + "properties": { + "id": "m1", + "mime": "image/jpeg", + "location": "file:///var/archive/image-fido-barks.jpg" + } + } + ], + "views": [ + { + "id": "v1", + "metadata": { + "app": "http://mmif.clams.ai/apps/east/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER": { + "timeUnit": "pixels", + "document": "m1" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v1:bb1", + "coordinates": [ [10, 20], [40, 20], [10, 30], [40, 30] ], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v1:bb2", + "coordinates": [ [210, 220], [240, 220], [210, 230], [240, 230] ], + "label": "text" + } + } + ] + }, + { + "id": "v2", + "metadata": { + "app": "http://mmif.clams.ai/apps/tesseract/0.2.1", + "contains": { + "http://mmif.clams.ai/0.1.0/TextDocument": {}, + "http://mmif.clams.ai/0.1.0/Alignment": {} + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v2:td1", + "text": { + "@value": "Arf" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a1", + "source": "v1:bb1", + "target": "v2:td1" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v2:td2", + "text": { + "@value": "yelp" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a2", + "source": "v1:bb2", + "target": "v2:td2" + } + } + ] + }, + { + "id": "v3", + "metadata": { + "app": "http://mmif.clams.ai/apps/semantic-typer/0.2.4", + "contains": { + "http://vocab.lappsgrid.org/SemanticTag": {} + } + }, + "annotations": [ + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v3:st1", + "category": "dog-sound", + "document": "V2:td1", + "start": 0, + "end": 4 + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v3:st2", + "category": "dog-sound", + "document": "V2:td2", + "start": 0, + "end": 4 + } + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/mmif-examples/everything/raw.json b/tests/mmif-examples/everything/raw.json new file mode 100644 index 00000000..7708bacc --- /dev/null +++ b/tests/mmif-examples/everything/raw.json @@ -0,0 +1,1797 @@ +{ + "metadata": { + "mmif": "http://mmif.clams.ai/$VERSION" + }, + "documents": [ + { + "@type": "http://clams.ai/vocabulary/type/VideoDocument/$VideoDocument_VER", + "properties": { + "id": "m1", + "mime": "video/mpeg", + "location": "file:///var/archive/video-002.mp4" + } + } + ], + "views": [ + { + "id": "v1", + "metadata": { + "app": "http://apps.clams.ai/bars-and-tones/1.0.5", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "document": "m1", + "timeUnit": "milliseconds" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v1:s1", + "start": 0, + "end": 2600, + "frameType": "bars-and-tones" + } + } + ] + }, + { + "id": "v2", + "metadata": { + "app": "http://apps.clams.ai/slates/1.0.3", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "document": "m1", + "timeUnit": "milliseconds" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v2:s1", + "start": 2700, + "end": 5300, + "frameType": "slate" + } + } + ] + }, + { + "id": "v3", + "metadata": { + "app": "http://mmif.clams.ai/apps/audio-segmenter/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "timeUnit": "milliseconds", + "document": "m1" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "frameType": "non-speech", + "id": "v3:tf1", + "start": 0, + "end": 5500 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v3:tf2", + "frameType": "speech", + "start": 5500, + "end": 22000 + } + } + ] + }, + { + "id": "v4", + "metadata": { + "app": "http://mmif.clams.ai/apps/kaldi/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER": {}, + "http://clams.ai/vocabulary/type/Token/$Token_VER": { + "document": "v4:td1" + }, + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "timeUnit": "milliseconds", + "document": "m1" + }, + "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER": {} + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v4:td1", + "mime": "text/plain", + "location": "file:///var/archive/transcript-002.txt" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a1", + "source": "v3:tf1", + "target": "v4:td1" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t1", + "start": 0, + "end": 5, + "text": "Hello" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf1", + "start": 5500, + "end": 6085 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a2", + "source": "v4:tf1", + "target": "v4:t1" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t2", + "start": 5, + "end": 6, + "text": "," + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf2", + "start": 6085, + "end": 6202 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a3", + "source": "v4:tf2", + "target": "v4:t2" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t3", + "start": 7, + "end": 11, + "text": "this" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf3", + "start": 6319, + "end": 6787 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a4", + "source": "v4:tf3", + "target": "v4:t3" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t4", + "start": 12, + "end": 14, + "text": "is" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf4", + "start": 6904, + "end": 7138 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a5", + "source": "v4:tf4", + "target": "v4:t4" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t5", + "start": 15, + "end": 18, + "text": "Jim" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf5", + "start": 7255, + "end": 7606 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a6", + "source": "v4:tf5", + "target": "v4:t5" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t6", + "start": 19, + "end": 25, + "text": "Lehrer" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf6", + "start": 7723, + "end": 8425 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a7", + "source": "v4:tf6", + "target": "v4:t6" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t7", + "start": 26, + "end": 30, + "text": "with" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf7", + "start": 8542, + "end": 9010 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a8", + "source": "v4:tf7", + "target": "v4:t7" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t8", + "start": 31, + "end": 34, + "text": "the" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf8", + "start": 9127, + "end": 9478 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a9", + "source": "v4:tf8", + "target": "v4:t8" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t9", + "start": 35, + "end": 43, + "text": "NewsHour" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf9", + "start": 9595, + "end": 10531 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a10", + "source": "v4:tf9", + "target": "v4:t9" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t10", + "start": 44, + "end": 46, + "text": "on" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf10", + "start": 10648, + "end": 10882 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a11", + "source": "v4:tf10", + "target": "v4:t10" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t11", + "start": 47, + "end": 50, + "text": "PBS" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf11", + "start": 10999, + "end": 11350 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a12", + "source": "v4:tf11", + "target": "v4:t11" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t12", + "start": 50, + "end": 51, + "text": "." + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf12", + "start": 11350, + "end": 11467 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a13", + "source": "v4:tf12", + "target": "v4:t12" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t13", + "start": 52, + "end": 54, + "text": "In" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf13", + "start": 11584, + "end": 11818 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a14", + "source": "v4:tf13", + "target": "v4:t13" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t14", + "start": 55, + "end": 58, + "text": "the" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf14", + "start": 11935, + "end": 12286 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a15", + "source": "v4:tf14", + "target": "v4:t14" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t15", + "start": 59, + "end": 67, + "text": "nineteen" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf15", + "start": 12403, + "end": 13339 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a16", + "source": "v4:tf15", + "target": "v4:t15" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t16", + "start": 68, + "end": 76, + "text": "eighties" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf16", + "start": 13456, + "end": 14392 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a17", + "source": "v4:tf16", + "target": "v4:t16" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t17", + "start": 76, + "end": 77, + "text": "," + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf17", + "start": 14392, + "end": 14509 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a18", + "source": "v4:tf17", + "target": "v4:t17" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t18", + "start": 78, + "end": 85, + "text": "barking" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf18", + "start": 14626, + "end": 15445 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a19", + "source": "v4:tf18", + "target": "v4:t18" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t19", + "start": 86, + "end": 90, + "text": "dogs" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf19", + "start": 15562, + "end": 16030 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a20", + "source": "v4:tf19", + "target": "v4:t19" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t20", + "start": 91, + "end": 95, + "text": "have" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf20", + "start": 16147, + "end": 16615 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a21", + "source": "v4:tf20", + "target": "v4:t20" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t21", + "start": 96, + "end": 108, + "text": "increasingly" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf21", + "start": 16732, + "end": 18136 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a22", + "source": "v4:tf21", + "target": "v4:t21" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t22", + "start": 109, + "end": 115, + "text": "become" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf22", + "start": 18253, + "end": 18955 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a23", + "source": "v4:tf22", + "target": "v4:t22" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t23", + "start": 116, + "end": 117, + "text": "a" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf23", + "start": 19072, + "end": 19189 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a24", + "source": "v4:tf23", + "target": "v4:t23" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t24", + "start": 118, + "end": 125, + "text": "problem" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf24", + "start": 19306, + "end": 20125 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a25", + "source": "v4:tf24", + "target": "v4:t24" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t25", + "start": 126, + "end": 128, + "text": "in" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf25", + "start": 20242, + "end": 20476 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a26", + "source": "v4:tf25", + "target": "v4:t25" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t26", + "start": 129, + "end": 134, + "text": "urban" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf26", + "start": 20593, + "end": 21178 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a27", + "source": "v4:tf26", + "target": "v4:t26" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t27", + "start": 135, + "end": 140, + "text": "areas" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf27", + "start": 21295, + "end": 21880 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a28", + "source": "v4:tf27", + "target": "v4:t27" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v4:t28", + "start": 140, + "end": 141, + "text": "." + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v4:tf28", + "start": 21880, + "end": 21997 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v4:a29", + "source": "v4:tf28", + "target": "v4:t28" + } + } + ] + }, + { + "id": "v5", + "metadata": { + "app": "http://mmif.clams.ai/apps/east/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER": { + "document": "m1" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb1", + "timePoint": 3000, + "coordinates": [[180, 110], [460, 110], [180, 170], [460, 170]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb2", + "timePoint": 3000, + "coordinates": [[660, 110], [1250, 110], [660, 170], [1250, 170]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb3", + "timePoint": 3000, + "coordinates": [[180, 320], [460, 320], [180, 380], [460, 380]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb4", + "timePoint": 3000, + "coordinates": [[660, 320], [1210, 320], [660, 380], [1210, 380]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb5", + "timePoint": 3000, + "coordinates": [[180, 520], [460, 520], [180, 580], [460, 580]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb6", + "timePoint": 3000, + "coordinates": [[660, 520], [1200, 520], [660, 580], [1200, 580]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb7", + "timePoint": 3000, + "coordinates": [[180, 750], [470, 750], [180, 810], [470, 810]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb8", + "timePoint": 3000, + "coordinates": [[660, 750], [1180, 750], [660, 810], [1180, 810]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb9", + "timePoint": 4000, + "coordinates": [[180, 110], [460, 110], [180, 170], [460, 170]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb10", + "timePoint": 4000, + "coordinates": [[660, 110], [1250, 110], [660, 170], [1250, 170]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb11", + "timePoint": 4000, + "coordinates": [[180, 320], [460, 320], [180, 380], [460, 380]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb12", + "timePoint": 4000, + "coordinates": [[660, 320], [1210, 320], [660, 380], [1210, 380]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb13", + "timePoint": 4000, + "coordinates": [[180, 520], [460, 520], [180, 580], [460, 580]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb14", + "timePoint": 4000, + "coordinates": [[660, 520], [1200, 520], [660, 580], [1200, 580]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb15", + "timePoint": 4000, + "coordinates": [[180, 750], [470, 750], [180, 810], [470, 810]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb16", + "timePoint": 4000, + "coordinates": [[660, 750], [1180, 750], [660, 810], [1180, 810]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb17", + "timePoint": 5000, + "coordinates": [[180, 110], [460, 110], [180, 170], [460, 170]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb18", + "timePoint": 5000, + "coordinates": [[660, 110], [1250, 110], [660, 170], [1250, 170]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb19", + "timePoint": 5000, + "coordinates": [[180, 320], [460, 320], [180, 380], [460, 380]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb20", + "timePoint": 5000, + "coordinates": [[660, 320], [1210, 320], [660, 380], [1210, 380]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb21", + "timePoint": 5000, + "coordinates": [[180, 520], [460, 520], [180, 580], [460, 580]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb22", + "timePoint": 5000, + "coordinates": [[660, 520], [1200, 520], [660, 580], [1200, 580]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb23", + "timePoint": 5000, + "coordinates": [[180, 750], [470, 750], [180, 810], [470, 810]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb24", + "timePoint": 5000, + "coordinates": [[660, 750], [1180, 750], [660, 810], [1180, 810]], + "label": "text" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER", + "properties": { + "id": "v5:bb25", + "timePoint": 21000, + "coordinates": [[150, 810], [1120, 810], [150, 870], [1120, 870]], + "label": "text" + } + } + ] + }, + { + "id": "v6", + "metadata": { + "app": "http://mmif.clams.ai/apps/tesseract/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER": {}, + "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER": { + "sourceType": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "targetType": "http://clams.ai/vocabulary/type/BoundingBox/$BoundingBox_VER" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td1", + "text": { + "@value": "DATE" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a1", + "source": "v5:bb1", + "target": "v6:td1" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td2", + "text": { + "@value": "1982-05-12" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a2", + "source": "v5:bb2", + "target": "v6:td2" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td3", + "text": { + "@value": "TITLE" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a3", + "source": "v5:bb3", + "target": "v6:td3" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td4", + "text": { + "@value": "Loud Dogs" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a4", + "source": "v5:bb4", + "target": "v6:td4" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td5", + "text": { + "@value": "HOST" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a5", + "source": "v5:bb5", + "target": "v6:td5" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td6", + "text": { + "@value": "Jim Lehrer" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a6", + "source": "v5:bb6", + "target": "v6:td6" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td7", + "text": { + "@value": "PROD" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a7", + "source": "v5:bb7", + "target": "v6:td7" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td8", + "text": { + "@value": "Sara Just" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a8", + "source": "v5:bb8", + "target": "v6:td8" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td9", + "text": { + "@value": "DATE" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a9", + "source": "v5:bb9", + "target": "v6:td9" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td10", + "text": { + "@value": "1982-05-12" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a10", + "source": "v5:bb10", + "target": "v6:td10" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td11", + "text": { + "@value": "TITLE" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a11", + "source": "v5:bb11", + "target": "v6:td11" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td12", + "text": { + "@value": "Loud Dogs" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a12", + "source": "v5:bb12", + "target": "v6:td12" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td13", + "text": { + "@value": "HOST" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a13", + "source": "v5:bb13", + "target": "v6:td13" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td14", + "text": { + "@value": "Jim Lehrer" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a14", + "source": "v5:bb14", + "target": "v6:td14" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td15", + "text": { + "@value": "PROD" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a15", + "source": "v5:bb15", + "target": "v6:td15" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td16", + "text": { + "@value": "Sara Just" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a16", + "source": "v5:bb16", + "target": "v6:td16" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td17", + "text": { + "@value": "DATE" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a17", + "source": "v5:bb17", + "target": "v6:td17" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td18", + "text": { + "@value": "1982-05-12" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a18", + "source": "v5:bb18", + "target": "v6:td18" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td19", + "text": { + "@value": "TITLE" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a19", + "source": "v5:bb19", + "target": "v6:td19" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td20", + "text": { + "@value": "Loud Dogs" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a20", + "source": "v5:bb20", + "target": "v6:td20" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td21", + "text": { + "@value": "HOST" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a21", + "source": "v5:bb21", + "target": "v6:td21" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td22", + "text": { + "@value": "Jim Lehrer" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a22", + "source": "v5:bb22", + "target": "v6:td22" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td23", + "text": { + "@value": "PROD" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a23", + "source": "v5:bb23", + "target": "v6:td23" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td24", + "text": { + "@value": "Sara Just" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a24", + "source": "v5:bb24", + "target": "v6:td24" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v6:td25", + "text": { + "@value": "Dog in New York" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v6:a25", + "source": "v5:bb25", + "target": "v6:td25" + } + } + ] + }, + { + "id": "v7", + "metadata": { + "app": "http://apps.clams.ai/spacy-ner/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER": {} + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne1", + "document": "v6:td2", + "start": 0, + "end": 10, + "category": "Date", + "text": "1982-05-12" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne2", + "document": "v6:td6", + "start": 0, + "end": 10, + "category": "Person", + "text": "Jim Lehrer" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne3", + "document": "v6:td8", + "start": 0, + "end": 9, + "category": "Person", + "text": "Sara Just" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne4", + "document": "v6:td10", + "start": 0, + "end": 10, + "category": "Date", + "text": "1982-05-12" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne5", + "document": "v6:td14", + "start": 0, + "end": 10, + "category": "Person", + "text": "Jim Lehrer" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne6", + "document": "v6:td16", + "start": 0, + "end": 9, + "category": "Person", + "text": "Sara Just" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne7", + "document": "v6:td18", + "start": 0, + "end": 10, + "category": "Date", + "text": "1982-05-12" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne8", + "document": "v6:td22", + "start": 0, + "end": 10, + "category": "Person", + "text": "Jim Lehrer" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne9", + "document": "v6:td24", + "start": 0, + "end": 9, + "category": "Person", + "text": "Sara Just" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne10", + "document": "v6:td25", + "start": 7, + "end": 15, + "category": "Location", + "text": "New York" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne11", + "document": "v4:td1", + "start": 15, + "end": 25, + "category": "Person", + "text": "Jim Lehrer" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v7:ne12", + "document": "v4:td1", + "start": 47, + "end": 50, + "category": "Organization", + "text": "PBS" + } + } + ] + }, + { + "id": "v8", + "metadata": { + "app": "http://apps.clams.ai/slate-parser/1.0.2", + "timestamp": "2020-05-27T12:23:45", + "contains": { + "http://vocab.lappsgrid.org/SemanticTag": {} + } + }, + "annotations": [ + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st1", + "document": "v6:td2", + "start": 0, + "end": 10, + "tagName": "Date", + "text": "1982-05-12" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st2", + "document": "v6:td4", + "start": 0, + "end": 9, + "tagName": "Title", + "text": "Loud Dogs" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st3", + "document": "v6:td6", + "start": 0, + "end": 10, + "tagName": "Host", + "text": "Jim Lehrer" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st4", + "document": "v6:td8", + "start": 0, + "end": 9, + "tagName": "Producer", + "text": "Sara Just" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st5", + "document": "v6:td10", + "start": 0, + "end": 10, + "tagName": "Date", + "text": "1982-05-12" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st6", + "document": "v6:td12", + "start": 0, + "end": 9, + "tagName": "Title", + "text": "Loud Dogs" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st7", + "document": "v6:td14", + "start": 0, + "end": 10, + "tagName": "Host", + "text": "Jim Lehrer" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st8", + "document": "v6:td16", + "start": 0, + "end": 9, + "tagName": "Producer", + "text": "Sara Just" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st9", + "document": "v6:td18", + "start": 0, + "end": 10, + "tagName": "Date", + "text": "1982-05-12" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st10", + "document": "v6:td20", + "start": 0, + "end": 9, + "tagName": "Title", + "text": "Loud Dogs" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st11", + "document": "v6:td22", + "start": 0, + "end": 10, + "tagName": "Host", + "text": "Jim Lehrer" + } + }, + { + "@type": "http://vocab.lappsgrid.org/SemanticTag", + "properties": { + "id": "v8:st12", + "document": "v6:td24", + "start": 0, + "end": 9, + "tagName": "Producer", + "text": "Sara Just" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/mmif-examples/examples.json b/tests/mmif-examples/examples.json new file mode 100644 index 00000000..ff775feb --- /dev/null +++ b/tests/mmif-examples/examples.json @@ -0,0 +1,22 @@ +[ + { + "dir": "bars-tones-slates", + "title": "Minimal: bars-and-tones and slate", + "description": "A minimal MMIF with two documents (video and transcript) and three views (bars-and-tones, slate, and tokenizer output). Demonstrates the smallest shape that exercises every required top-level field." + }, + { + "dir": "segmenter-kaldi-ner", + "title": "Audio: segmenter → Kaldi → NER", + "description": "An audio document processed through a chain of three tools: audio segmentation, Kaldi speech recognition producing a text document with tokens and alignments, and named entity recognition over the transcript. Shows how text documents are emitted mid-pipeline and consumed by downstream NLP views." + }, + { + "dir": "east-tesseract-typing", + "title": "Visual: EAST → Tesseract → semantic typing", + "description": "An image document processed through text-box detection (EAST), OCR (Tesseract), and semantic typing of the OCR output. Shows how bounding boxes, text documents, and alignments chain together across views." + }, + { + "dir": "everything", + "title": "Everything: audiovisual pipeline end-to-end", + "description": "A comprehensive example combining bars-and-tones and slate extraction, audio segmentation, Kaldi speech recognition, EAST text-box detection, Tesseract OCR, named entity recognition, and slate parsing over a short synthetic video. Exercises the full range of view chaining and cross-view annotation references." + } +] diff --git a/tests/mmif-examples/others/README.md b/tests/mmif-examples/others/README.md new file mode 100644 index 00000000..a13283e9 --- /dev/null +++ b/tests/mmif-examples/others/README.md @@ -0,0 +1 @@ +This directory contains legacy MMIF sample files preserved for historical reference. These files are outdated and do not conform to the current format specification. \ No newline at end of file diff --git a/tests/mmif-examples/others/image-box-ocr-timex.json b/tests/mmif-examples/others/image-box-ocr-timex.json new file mode 100644 index 00000000..052048fb --- /dev/null +++ b/tests/mmif-examples/others/image-box-ocr-timex.json @@ -0,0 +1,263 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.png", + "metadata": { + "resolutionX": 640, + "resolutionY": 480 + } + } + ], + "contains": { + "object-box": "v_0", + "ocr": "v_1", + "timex-extraction": "v_2" + }, + "views": [ + { + "id": "v_0", + "contains": { + "obejct-box": { + "producer": "EAST-wrapper", + "gen_time": "2018-10-08T04:05:59.343212" + } + }, + "annotations": [ + { + "topleft": [124,28], + "bottomright": [200,70], + "id": 0, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [207,32], + "bottomright": [292,64], + "id": 1, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [298,26], + "bottomright": [289,70], + "id": 2, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [76,108], + "bottomright": [206,150], + "id": 3, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [53,148], + "bottomright": [401,190], + "id": 4, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [58,194], + "bottomright": [191,237], + "id": 5, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [57,242], + "bottomright": [207,280], + "id": 6, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [208,238], + "bottomright": [337,283], + "id": 7, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [310,245], + "bottomright": [396,280], + "id": 8, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [61,292], + "bottomright": [243,330], + "id": 9, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [232,289], + "bottomright": [383,330], + "id": 10, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [60,336], + "bottomright": [246,372], + "id": 11, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [248,330], + "bottomright": [458,372], + "id": 12, + "attype": "object-box", + "feaure": {} + } + ] + }, + { + "id": "v_1", + "contains": { + "obejct-box": { + "producer": "tesseract-wrapper", + "gen_time": "2018-10-08T04:39:12.125128" + } + }, + "annotations": [ + { + "target": "v_0:0", + "id": 0, + "attype": "ocr", + "feaure": { + "characters": "ON" + } + }, + { + "target": "v_0:1", + "id": 1, + "attype": "ocr", + "feaure": { + "characters": "THE" + } + }, + { + "target": "v_0:2", + "id": 2, + "attype": "ocr", + "feaure": { + "characters": " RECORD" + } + }, + { + "target": "v_0:3", + "id": 3, + "attype": "ocr", + "feaure": { + "characters": "P OOO" + } + }, + { + "target": "v_0:4", + "id": 4, + "attype": "ocr", + "feaure": { + "characters": "Record: 11/13/92" + } + }, + { + "target": "v_0:5", + "id": 5, + "attype": "ocr", + "feaure": { + "characters": "Air i 1k" + } + }, + { + "target": "v_0:6", + "id": 6, + "attype": "ocr", + "feaure": { + "characters": "Reoeat:" + } + }, + { + "target": "v_0:7", + "id": 7, + "attype": "ocr", + "feaure": { + "characters": "11/16" + } + }, + { + "target": "v_0:8", + "id": 8, + "attype": "ocr", + "feaure": { + "characters": "i/92" + } + }, + { + "target": "v_0:9", + "id": 9, + "attype": "ocr", + "feaure": { + "characters": "Director: " + } + }, + { + "target": "v_0:10", + "id": 10, + "attype": "ocr", + "feaure": { + "characters": "UNGER" + } + }, + { + "target": "v_0:11", + "id": 11, + "attype": "ocr", + "feaure": { + "characters": "Producer:" + } + }, + { + "target": "v_0:12", + "id": 12, + "attype": "ocr", + "feaure": { + "characters": " DOUGLAS" + } + } + ] + }, + { + "id": "v_2", + "contains": { + "timex-extraction": { + "producer": "CLAMS-heideltime-wrapper", + "gen_time": "2018-10-08T06:34:29.511315", + "items": 1 + } + }, + "annotations": [ + { + "id": "timex_0", + "target": "v_1:4", + "start": 8, + "end": 15, + "attype": "timex-extraction", + "feature": { + "text": "11/13/92", + "value": "1992-11-13", + "type": "TIME" + } + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/image-box-ocr.json b/tests/mmif-examples/others/image-box-ocr.json new file mode 100644 index 00000000..1f7ef439 --- /dev/null +++ b/tests/mmif-examples/others/image-box-ocr.json @@ -0,0 +1,238 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.png", + "metadata": { + "resolutionX": 640, + "resolutionY": 480 + } + } + ], + "contains": { + "object-box": "v_0", + "ocr": "v_1" + }, + "views": [ + { + "id": "v_0", + "contains": { + "obejct-box": { + "producer": "EAST-wrapper", + "gen_time": "2018-10-08T04:05:59.343212" + } + }, + "annotations": [ + { + "topleft": [124,28], + "bottomright": [200,70], + "id": 0, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [207,32], + "bottomright": [292,64], + "id": 1, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [298,26], + "bottomright": [289,70], + "id": 2, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [76,108], + "bottomright": [206,150], + "id": 3, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [53,148], + "bottomright": [401,190], + "id": 4, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [58,194], + "bottomright": [191,237], + "id": 5, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [57,242], + "bottomright": [207,280], + "id": 6, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [208,238], + "bottomright": [337,283], + "id": 7, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [310,245], + "bottomright": [396,280], + "id": 8, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [61,292], + "bottomright": [243,330], + "id": 9, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [232,289], + "bottomright": [383,330], + "id": 10, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [60,336], + "bottomright": [246,372], + "id": 11, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [248,330], + "bottomright": [458,372], + "id": 12, + "attype": "object-box", + "feaure": {} + } + ] + }, + { + "id": "v_1", + "contains": { + "obejct-box": { + "producer": "tesseract-wrapper", + "gen_time": "2018-10-08T04:39:12.125128" + } + }, + "annotations": [ + { + "target": "v_0:0", + "id": 0, + "attype": "ocr", + "feaure": { + "characters": "ON" + } + }, + { + "target": "v_0:1", + "id": 1, + "attype": "ocr", + "feaure": { + "characters": "THE" + } + }, + { + "target": "v_0:2", + "id": 2, + "attype": "ocr", + "feaure": { + "characters": " RECORD" + } + }, + { + "target": "v_0:3", + "id": 3, + "attype": "ocr", + "feaure": { + "characters": "P OOO" + } + }, + { + "target": "v_0:4", + "id": 4, + "attype": "ocr", + "feaure": { + "characters": "Record: 11/13/92" + } + }, + { + "target": "v_0:5", + "id": 5, + "attype": "ocr", + "feaure": { + "characters": "Air i 1k" + } + }, + { + "target": "v_0:6", + "id": 6, + "attype": "ocr", + "feaure": { + "characters": "Reoeat:" + } + }, + { + "target": "v_0:7", + "id": 7, + "attype": "ocr", + "feaure": { + "characters": "11/16" + } + }, + { + "target": "v_0:8", + "id": 8, + "attype": "ocr", + "feaure": { + "characters": "i/92" + } + }, + { + "target": "v_0:9", + "id": 9, + "attype": "ocr", + "feaure": { + "characters": "Director: " + } + }, + { + "target": "v_0:10", + "id": 10, + "attype": "ocr", + "feaure": { + "characters": "UNGER" + } + }, + { + "target": "v_0:11", + "id": 11, + "attype": "ocr", + "feaure": { + "characters": "Producer:" + } + }, + { + "target": "v_0:12", + "id": 12, + "attype": "ocr", + "feaure": { + "characters": " DOUGLAS" + } + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/image-box.json b/tests/mmif-examples/others/image-box.json new file mode 100644 index 00000000..bb2d3c79 --- /dev/null +++ b/tests/mmif-examples/others/image-box.json @@ -0,0 +1,122 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.png", + "metadata": { + "resolutionX": 640, + "resolutionY": 480 + } + } + ], + "contains": { + "object-box": "v_0" + }, + "views": [ + { + "id": "v_0", + "contains": { + "obejct-box": { + "producer": "EAST-wrapper", + "gen_time": "2018-10-08T04:05:59.343212" + } + }, + "annotations": [ + { + "topleft": [124,28], + "bottomright": [200,70], + "id": 0, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [207,32], + "bottomright": [292,64], + "id": 1, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [298,26], + "bottomright": [289,70], + "id": 2, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [76,108], + "bottomright": [206,150], + "id": 3, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [53,148], + "bottomright": [401,190], + "id": 4, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [58,194], + "bottomright": [191,237], + "id": 5, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [57,242], + "bottomright": [207,280], + "id": 6, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [208,238], + "bottomright": [337,283], + "id": 7, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [310,245], + "bottomright": [396,280], + "id": 8, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [61,292], + "bottomright": [243,330], + "id": 9, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [232,289], + "bottomright": [383,330], + "id": 10, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [60,336], + "bottomright": [246,372], + "id": 11, + "attype": "object-box", + "feaure": {} + }, + { + "topleft": [248,330], + "bottomright": [458,372], + "id": 12, + "attype": "object-box", + "feaure": {} + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/image.json b/tests/mmif-examples/others/image.json new file mode 100644 index 00000000..9e93aca2 --- /dev/null +++ b/tests/mmif-examples/others/image.json @@ -0,0 +1,17 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.png", + "metadata": { + "resolutionX": 640, + "resolutionY": 480 + } + } + ], + "contains": {}, + "views": [] +} diff --git a/tests/mmif-examples/others/slate-detect.json b/tests/mmif-examples/others/slate-detect.json new file mode 100644 index 00000000..b8923b32 --- /dev/null +++ b/tests/mmif-examples/others/slate-detect.json @@ -0,0 +1,38 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": { + + }, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///Users/kelleylynch/data/wgbh/data/cpb-aacip-507-zw18k75v1r.mp4", + "location_tested": "/Users/kelleylynch/data/wgbh/data/cpb-aacip-507-ns0ks6jw2f.mp4", + "metadata": {} + } + ], + "contains": { + "slate-detection": "v_0" + }, + "views": [ + { + "id": "v_0", + "contains": { + "slate-detection": { + "producer": "", + "gen_time": "" + } + }, + "annotations": [ + { + "start": "90", + "end": "2460", + "feature": {}, + "id": 0, + "attype": "slate-detection" + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/slate-reco.json b/tests/mmif-examples/others/slate-reco.json new file mode 100644 index 00000000..2bbf4b9c --- /dev/null +++ b/tests/mmif-examples/others/slate-reco.json @@ -0,0 +1,61 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {} + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///Users/kelleylynch/data/wgbh/data/cpb-aacip-507-zw18k75v1r.mp4", + "location_tested": "/Users/kelleylynch/data/wgbh/data/cpb-aacip-507-ns0ks6jw2f.mp4", + "metadata": { + + } + } + ], + "contains": { + "slate-detection": "v_0", + "raw-ocr-output": "v_1" + }, + "views": [ + { + "id": "v_0", + "contains": { + "slate-detection": { + "producer": "", + "gen_time": "" + } + }, + "annotations": [ + { + "start": "90", + "end": "2460", + "feature": {} + "id": 0, + "attype": "slate-detection" + } + ] + }, + { + "id": "v_1", + "contains": { + "raw-ocr-output": { + "producer": "", + "gen_time": null + } + }, + "annotations": [ + { + "start": 0, + "end": 0, + "feature": {} + "id": 0, + "attype": "raw-ocr-output", + "target": "v_0: 0", + "features": { + "characters": "The NewsHour with Jim Lehrer\nDATE: 5/2/00\nDIRECTOR: DAVID DEUTSCH\n\nTRT: 56:46" + } + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/video-demux.json b/tests/mmif-examples/others/video-demux.json new file mode 100644 index 00000000..2fdfb371 --- /dev/null +++ b/tests/mmif-examples/others/video-demux.json @@ -0,0 +1,20 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.mp4", + "metadata": {} + }, + { + "id": "1", + "type": "audio-only", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.wav", + "metadata": {} + } + ], + "contains": {} + "views": [] +} diff --git a/tests/mmif-examples/others/video-transcript-demux-fa.json b/tests/mmif-examples/others/video-transcript-demux-fa.json new file mode 100644 index 00000000..6ab5140c --- /dev/null +++ b/tests/mmif-examples/others/video-transcript-demux-fa.json @@ -0,0 +1,78844 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.mp4", + "metadata": {} + }, + { + "id": "1", + "type": "text", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.lab", + "metadata": {} + }, + { + "id": "2", + "type": "audio-only", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.wav", + "metadata": {} + } + ], + "contains": { + "vanilla-forced-alignment": "v_0" + }, + "views": [ + { + "id": "v_0", + "contains": { + "vanilla-forced-alignment": { + "producer": "", + "gen_time": "2018-10-08T06:05:33.183134" + } + }, + "annotations": [ + { + "start": "0.00000", + "end": "0.15000", + "feature": { + "word": "intro" + }, + "id": 0, + "attype": "vanilla-forced-alignment" + }, + { + "start": "0.15000", + "end": "0.24000", + "feature": { + "word": "good" + }, + "id": 1, + "attype": "vanilla-forced-alignment" + }, + { + "start": "0.24000", + "end": "0.39000", + "feature": { + "word": "evening" + }, + "id": 2, + "attype": "vanilla-forced-alignment" + }, + { + "start": "0.39000", + "end": "0.54000", + "feature": { + "word": "leading" + }, + "id": 3, + "attype": "vanilla-forced-alignment" + }, + { + "start": "0.54000", + "end": "36.49000", + "feature": { + "word": "the" + }, + "id": 4, + "attype": "vanilla-forced-alignment" + }, + { + "start": "52.44000", + "end": "53.02000", + "feature": { + "word": "news" + }, + "id": 6, + "attype": "vanilla-forced-alignment" + }, + { + "start": "54.42000", + "end": "54.97000", + "feature": { + "word": "this" + }, + "id": 8, + "attype": "vanilla-forced-alignment" + }, + { + "start": "55.43000", + "end": "56.05000", + "feature": { + "word": "thursday" + }, + "id": 10, + "attype": "vanilla-forced-alignment" + }, + { + "start": "57.43000", + "end": "57.96000", + "feature": { + "word": "three" + }, + "id": 12, + "attype": "vanilla-forced-alignment" + }, + { + "start": "86.69000", + "end": "89.67000", + "feature": { + "word": "private" + }, + "id": 14, + "attype": "vanilla-forced-alignment" + }, + { + "start": "89.67000", + "end": "90.40000", + "feature": { + "word": "contributors" + }, + "id": 15, + "attype": "vanilla-forced-alignment" + }, + { + "start": "90.40000", + "end": "90.53000", + "feature": { + "word": "of" + }, + "id": 16, + "attype": "vanilla-forced-alignment" + }, + { + "start": "90.53000", + "end": "90.94000", + "feature": { + "word": "contra" + }, + "id": 17, + "attype": "vanilla-forced-alignment" + }, + { + "start": "90.94000", + "end": "91.32000", + "feature": { + "word": "money" + }, + "id": 18, + "attype": "vanilla-forced-alignment" + }, + { + "start": "91.32000", + "end": "91.59000", + "feature": { + "word": "told" + }, + "id": 19, + "attype": "vanilla-forced-alignment" + }, + { + "start": "91.59000", + "end": "91.79000", + "feature": { + "word": "their" + }, + "id": 20, + "attype": "vanilla-forced-alignment" + }, + { + "start": "91.79000", + "end": "92.27000", + "feature": { + "word": "stories" + }, + "id": 21, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.27000", + "end": "92.41000", + "feature": { + "word": "to" + }, + "id": 22, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.41000", + "end": "92.59000", + "feature": { + "word": "the" + }, + "id": 23, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.59000", + "end": "92.92000", + "feature": { + "word": "iran" + }, + "id": 24, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.92000", + "end": "93.33000", + "feature": { + "word": "contra" + }, + "id": 25, + "attype": "vanilla-forced-alignment" + }, + { + "start": "93.33000", + "end": "93.73000", + "feature": { + "word": "hearing" + }, + "id": 26, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.26000", + "end": "94.38000", + "feature": { + "word": "a" + }, + "id": 28, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.38000", + "end": "94.73000", + "feature": { + "word": "navy" + }, + "id": 29, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.73000", + "end": "94.95000", + "feature": { + "word": "board" + }, + "id": 30, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.95000", + "end": "95.05000", + "feature": { + "word": "of" + }, + "id": 31, + "attype": "vanilla-forced-alignment" + }, + { + "start": "95.05000", + "end": "95.64000", + "feature": { + "word": "inquiry" + }, + "id": 32, + "attype": "vanilla-forced-alignment" + }, + { + "start": "95.64000", + "end": "96.06000", + "feature": { + "word": "began" + }, + "id": 33, + "attype": "vanilla-forced-alignment" + }, + { + "start": "96.06000", + "end": "96.23000", + "feature": { + "word": "its" + }, + "id": 34, + "attype": "vanilla-forced-alignment" + }, + { + "start": "96.23000", + "end": "97.05000", + "feature": { + "word": "investigation" + }, + "id": 35, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.05000", + "end": "97.14000", + "feature": { + "word": "of" + }, + "id": 36, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.14000", + "end": "97.21000", + "feature": { + "word": "the" + }, + "id": 37, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.21000", + "end": "97.39000", + "feature": { + "word": "u" + }, + "id": 38, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.39000", + "end": "97.59000", + "feature": { + "word": "s" + }, + "id": 39, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.59000", + "end": "97.73000", + "feature": { + "word": "s" + }, + "id": 40, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.73000", + "end": "98.12000", + "feature": { + "word": "stark" + }, + "id": 41, + "attype": "vanilla-forced-alignment" + }, + { + "start": "98.12000", + "end": "98.73000", + "feature": { + "word": "tragedy" + }, + "id": 42, + "attype": "vanilla-forced-alignment" + }, + { + "start": "98.95000", + "end": "99.34000", + "feature": { + "word": "and" + }, + "id": 44, + "attype": "vanilla-forced-alignment" + }, + { + "start": "99.34000", + "end": "99.76000", + "feature": { + "word": "president" + }, + "id": 45, + "attype": "vanilla-forced-alignment" + }, + { + "start": "99.76000", + "end": "100.17000", + "feature": { + "word": "reagan" + }, + "id": 46, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.17000", + "end": "100.42000", + "feature": { + "word": "vowed" + }, + "id": 47, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.42000", + "end": "100.49000", + "feature": { + "word": "to" + }, + "id": 48, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.49000", + "end": "100.71000", + "feature": { + "word": "keep" + }, + "id": 49, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.71000", + "end": "100.99000", + "feature": { + "word": "open" + }, + "id": 50, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.99000", + "end": "101.07000", + "feature": { + "word": "the" + }, + "id": 51, + "attype": "vanilla-forced-alignment" + }, + { + "start": "101.07000", + "end": "101.50000", + "feature": { + "word": "persian" + }, + "id": 52, + "attype": "vanilla-forced-alignment" + }, + { + "start": "101.50000", + "end": "101.76000", + "feature": { + "word": "gulf" + }, + "id": 53, + "attype": "vanilla-forced-alignment" + }, + { + "start": "101.76000", + "end": "102.19000", + "feature": { + "word": "shipping" + }, + "id": 54, + "attype": "vanilla-forced-alignment" + }, + { + "start": "102.19000", + "end": "102.67000", + "feature": { + "word": "lanes" + }, + "id": 55, + "attype": "vanilla-forced-alignment" + }, + { + "start": "102.88000", + "end": "103.01000", + "feature": { + "word": "we" + }, + "id": 57, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.01000", + "end": "103.05000", + "feature": { + "word": "" + }, + "id": 58, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.05000", + "end": "103.20000", + "feature": { + "word": "have" + }, + "id": 59, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.20000", + "end": "103.29000", + "feature": { + "word": "the" + }, + "id": 60, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.29000", + "end": "103.79000", + "feature": { + "word": "details" + }, + "id": 61, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.79000", + "end": "103.86000", + "feature": { + "word": "in" + }, + "id": 62, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.86000", + "end": "103.98000", + "feature": { + "word": "our" + }, + "id": 63, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.98000", + "end": "104.20000", + "feature": { + "word": "news" + }, + "id": 64, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.20000", + "end": "104.54000", + "feature": { + "word": "summary" + }, + "id": 65, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.54000", + "end": "104.61000", + "feature": { + "word": "in" + }, + "id": 66, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.61000", + "end": "104.66000", + "feature": { + "word": "a" + }, + "id": 67, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.66000", + "end": "105.02000", + "feature": { + "word": "moment" + }, + "id": 68, + "attype": "vanilla-forced-alignment" + }, + { + "start": "105.21000", + "end": "105.54000", + "feature": { + "word": "robin" + }, + "id": 70, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.24000", + "end": "106.58000", + "feature": { + "word": "after" + }, + "id": 72, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.58000", + "end": "106.67000", + "feature": { + "word": "the" + }, + "id": 73, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.67000", + "end": "106.88000", + "feature": { + "word": "news" + }, + "id": 74, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.88000", + "end": "107.18000", + "feature": { + "word": "summary" + }, + "id": 75, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.18000", + "end": "107.33000", + "feature": { + "word": "we" + }, + "id": 76, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.33000", + "end": "107.79000", + "feature": { + "word": "continue" + }, + "id": 77, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.79000", + "end": "107.97000", + "feature": { + "word": "our" + }, + "id": 78, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.97000", + "end": "108.41000", + "feature": { + "word": "special" + }, + "id": 79, + "attype": "vanilla-forced-alignment" + }, + { + "start": "108.41000", + "end": "108.87000", + "feature": { + "word": "coverage" + }, + "id": 80, + "attype": "vanilla-forced-alignment" + }, + { + "start": "108.87000", + "end": "108.97000", + "feature": { + "word": "of" + }, + "id": 81, + "attype": "vanilla-forced-alignment" + }, + { + "start": "108.97000", + "end": "109.09000", + "feature": { + "word": "the" + }, + "id": 82, + "attype": "vanilla-forced-alignment" + }, + { + "start": "109.09000", + "end": "109.45000", + "feature": { + "word": "iran" + }, + "id": 83, + "attype": "vanilla-forced-alignment" + }, + { + "start": "109.45000", + "end": "109.84000", + "feature": { + "word": "contra" + }, + "id": 84, + "attype": "vanilla-forced-alignment" + }, + { + "start": "109.84000", + "end": "110.29000", + "feature": { + "word": "hearings" + }, + "id": 85, + "attype": "vanilla-forced-alignment" + }, + { + "start": "110.29000", + "end": "110.44000", + "feature": { + "word": "with" + }, + "id": 86, + "attype": "vanilla-forced-alignment" + }, + { + "start": "110.44000", + "end": "110.96000", + "feature": { + "word": "extended" + }, + "id": 87, + "attype": "vanilla-forced-alignment" + }, + { + "start": "110.96000", + "end": "111.49000", + "feature": { + "word": "excerpts" + }, + "id": 88, + "attype": "vanilla-forced-alignment" + }, + { + "start": "111.49000", + "end": "111.71000", + "feature": { + "word": "from" + }, + "id": 89, + "attype": "vanilla-forced-alignment" + }, + { + "start": "111.71000", + "end": "111.97000", + "feature": { + "word": "today" + }, + "id": 90, + "attype": "vanilla-forced-alignment" + }, + { + "start": "111.97000", + "end": "112.09000", + "feature": { + "word": "s" + }, + "id": 91, + "attype": "vanilla-forced-alignment" + }, + { + "start": "112.09000", + "end": "112.67000", + "feature": { + "word": "testimony" + }, + "id": 92, + "attype": "vanilla-forced-alignment" + }, + { + "start": "112.67000", + "end": "113.03000", + "feature": { + "word": "followed" + }, + "id": 93, + "attype": "vanilla-forced-alignment" + }, + { + "start": "113.03000", + "end": "113.25000", + "feature": { + "word": "by" + }, + "id": 94, + "attype": "vanilla-forced-alignment" + }, + { + "start": "113.25000", + "end": "113.89000", + "feature": { + "word": "analysis" + }, + "id": 95, + "attype": "vanilla-forced-alignment" + }, + { + "start": "113.89000", + "end": "114.09000", + "feature": { + "word": "by" + }, + "id": 96, + "attype": "vanilla-forced-alignment" + }, + { + "start": "114.09000", + "end": "114.46000", + "feature": { + "word": "two" + }, + "id": 97, + "attype": "vanilla-forced-alignment" + }, + { + "start": "114.46000", + "end": "114.86000", + "feature": { + "word": "committee" + }, + "id": 98, + "attype": "vanilla-forced-alignment" + }, + { + "start": "114.86000", + "end": "115.39000", + "feature": { + "word": "members" + }, + "id": 99, + "attype": "vanilla-forced-alignment" + }, + { + "start": "115.87000", + "end": "116.25000", + "feature": { + "word": "next" + }, + "id": 101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "116.25000", + "end": "116.36000", + "feature": { + "word": "a" + }, + "id": 102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "116.36000", + "end": "116.64000", + "feature": { + "word": "news" + }, + "id": 103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "116.64000", + "end": "117.01000", + "feature": { + "word": "maker" + }, + "id": 104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.01000", + "end": "117.43000", + "feature": { + "word": "interview" + }, + "id": 105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.43000", + "end": "117.65000", + "feature": { + "word": "with" + }, + "id": 106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.65000", + "end": "117.78000", + "feature": { + "word": "the" + }, + "id": 107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.78000", + "end": "118.36000", + "feature": { + "word": "austrian" + }, + "id": 108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "118.36000", + "end": "118.92000", + "feature": { + "word": "chancellor" + }, + "id": 109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "118.92000", + "end": "119.31000", + "feature": { + "word": "franz" + }, + "id": 110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "119.31000", + "end": "119.94000", + "feature": { + "word": "" + }, + "id": 111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.10000", + "end": "120.33000", + "feature": { + "word": "on" + }, + "id": 113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.33000", + "end": "120.39000", + "feature": { + "word": "the" + }, + "id": 114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.39000", + "end": "120.95000", + "feature": { + "word": "waldheim" + }, + "id": 115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.95000", + "end": "121.59000", + "feature": { + "word": "controversy" + }, + "id": 116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.02000", + "end": "122.45000", + "feature": { + "word": "finally" + }, + "id": 118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.45000", + "end": "122.57000", + "feature": { + "word": "a" + }, + "id": 119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.57000", + "end": "122.96000", + "feature": { + "word": "roger" + }, + "id": 120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.96000", + "end": "123.25000", + "feature": { + "word": "mudd" + }, + "id": 121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.25000", + "end": "123.76000", + "feature": { + "word": "essay" + }, + "id": 122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.76000", + "end": "123.86000", + "feature": { + "word": "on" + }, + "id": 123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.86000", + "end": "123.93000", + "feature": { + "word": "the" + }, + "id": 124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.93000", + "end": "124.45000", + "feature": { + "word": "powers" + }, + "id": 125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "124.45000", + "end": "124.55000", + "feature": { + "word": "of" + }, + "id": 126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "124.55000", + "end": "124.63000", + "feature": { + "word": "the" + }, + "id": 127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "124.63000", + "end": "125.27000", + "feature": { + "word": "presidency" + }, + "id": 128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "125.27000", + "end": "125.36000", + "feature": { + "word": "news" + }, + "id": 129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "127.23000", + "end": "127.60000", + "feature": { + "word": "summary" + }, + "id": 131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "127.60000", + "end": "127.85000", + "feature": { + "word": "wealthy" + }, + "id": 132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "127.85000", + "end": "128.25000", + "feature": { + "word": "americans" + }, + "id": 133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.25000", + "end": "128.55000", + "feature": { + "word": "testified" + }, + "id": 134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.55000", + "end": "128.67000", + "feature": { + "word": "today" + }, + "id": 135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.67000", + "end": "128.76000", + "feature": { + "word": "that" + }, + "id": 136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.76000", + "end": "128.82000", + "feature": { + "word": "they" + }, + "id": 137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.82000", + "end": "129.02000", + "feature": { + "word": "gave" + }, + "id": 138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.02000", + "end": "129.44000", + "feature": { + "word": "large" + }, + "id": 139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.58000", + "end": "129.71000", + "feature": { + "word": "sums" + }, + "id": 141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.71000", + "end": "129.77000", + "feature": { + "word": "to" + }, + "id": 142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.77000", + "end": "129.83000", + "feature": { + "word": "the" + }, + "id": 143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.83000", + "end": "130.24000", + "feature": { + "word": "nicaraguan" + }, + "id": 144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "130.24000", + "end": "130.71000", + "feature": { + "word": "contras" + }, + "id": 145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "130.71000", + "end": "130.83000", + "feature": { + "word": "after" + }, + "id": 146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "130.83000", + "end": "131.14000", + "feature": { + "word": "briefings" + }, + "id": 147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "131.14000", + "end": "131.21000", + "feature": { + "word": "by" + }, + "id": 148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "131.21000", + "end": "131.90000", + "feature": { + "word": "administration" + }, + "id": 149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "131.97000", + "end": "132.21000", + "feature": { + "word": "officials" + }, + "id": 151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "132.21000", + "end": "132.37000", + "feature": { + "word": "like" + }, + "id": 152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "132.37000", + "end": "150.96000", + "feature": { + "word": "" + }, + "id": 153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "153.69000", + "end": "162.22000", + "feature": { + "word": "" + }, + "id": 155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "162.22000", + "end": "162.59000", + "feature": { + "word": "oliver" + }, + "id": 156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "162.59000", + "end": "163.05000", + "feature": { + "word": "north" + }, + "id": 157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "163.35000", + "end": "163.82000", + "feature": { + "word": "one" + }, + "id": 159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "163.82000", + "end": "164.28000", + "feature": { + "word": "witness" + }, + "id": 160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "164.28000", + "end": "164.74000", + "feature": { + "word": "brewery" + }, + "id": 161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "164.74000", + "end": "165.27000", + "feature": { + "word": "executive" + }, + "id": 162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "165.27000", + "end": "165.72000", + "feature": { + "word": "joseph" + }, + "id": 163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "165.72000", + "end": "166.19000", + "feature": { + "word": "coors" + }, + "id": 164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.19000", + "end": "166.42000", + "feature": { + "word": "said" + }, + "id": 165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.42000", + "end": "166.57000", + "feature": { + "word": "he" + }, + "id": 166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.57000", + "end": "166.78000", + "feature": { + "word": "was" + }, + "id": 167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.78000", + "end": "167.05000", + "feature": { + "word": "sent" + }, + "id": 168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.05000", + "end": "167.15000", + "feature": { + "word": "to" + }, + "id": 169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.15000", + "end": "167.56000", + "feature": { + "word": "north" + }, + "id": 170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.56000", + "end": "167.76000", + "feature": { + "word": "by" + }, + "id": 171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.76000", + "end": "168.09000", + "feature": { + "word": "then" + }, + "id": 172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "168.09000", + "end": "168.66000", + "feature": { + "word": "cia" + }, + "id": 173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "168.66000", + "end": "169.16000", + "feature": { + "word": "director" + }, + "id": 174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "169.16000", + "end": "169.47000", + "feature": { + "word": "william" + }, + "id": 175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "169.47000", + "end": "169.91000", + "feature": { + "word": "casey" + }, + "id": 176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "170.60000", + "end": "170.76000", + "feature": { + "word": "did" + }, + "id": 178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "170.76000", + "end": "171.13000", + "feature": { + "word": "you" + }, + "id": 179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "171.69000", + "end": "171.96000", + "feature": { + "word": "tell" + }, + "id": 181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "171.96000", + "end": "172.39000", + "feature": { + "word": "casey" + }, + "id": 182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.39000", + "end": "172.52000", + "feature": { + "word": "that" + }, + "id": 183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.52000", + "end": "172.66000", + "feature": { + "word": "you" + }, + "id": 184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.66000", + "end": "172.79000", + "feature": { + "word": "were" + }, + "id": 185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.79000", + "end": "173.28000", + "feature": { + "word": "interested" + }, + "id": 186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "173.28000", + "end": "173.40000", + "feature": { + "word": "in" + }, + "id": 187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "173.40000", + "end": "173.89000", + "feature": { + "word": "providing" + }, + "id": 188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "173.89000", + "end": "174.52000", + "feature": { + "word": "monetary" + }, + "id": 189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "174.52000", + "end": "175.04000", + "feature": { + "word": "support" + }, + "id": 190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.04000", + "end": "175.23000", + "feature": { + "word": "for" + }, + "id": 191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.23000", + "end": "175.31000", + "feature": { + "word": "the" + }, + "id": 192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.31000", + "end": "175.63000", + "feature": { + "word": "freedom" + }, + "id": 193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.63000", + "end": "176.07000", + "feature": { + "word": "fighters" + }, + "id": 194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "176.21000", + "end": "176.53000", + "feature": { + "word": "yes" + }, + "id": 196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "176.53000", + "end": "176.61000", + "feature": { + "word": "i" + }, + "id": 197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "176.61000", + "end": "176.96000", + "feature": { + "word": "did" + }, + "id": 198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.00000", + "end": "177.20000", + "feature": { + "word": "mr" + }, + "id": 200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.20000", + "end": "177.40000", + "feature": { + "word": "and" + }, + "id": 201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.43000", + "end": "177.63000", + "feature": { + "word": "what" + }, + "id": 203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.63000", + "end": "177.81000", + "feature": { + "word": "was" + }, + "id": 204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.81000", + "end": "178.04000", + "feature": { + "word": "his" + }, + "id": 205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.04000", + "end": "178.61000", + "feature": { + "word": "response" + }, + "id": 206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.61000", + "end": "178.73000", + "feature": { + "word": "to" + }, + "id": 207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.73000", + "end": "178.97000", + "feature": { + "word": "your" + }, + "id": 208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.97000", + "end": "179.48000", + "feature": { + "word": "expressed" + }, + "id": 209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "179.48000", + "end": "179.95000", + "feature": { + "word": "interest" + }, + "id": 210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "179.95000", + "end": "180.10000", + "feature": { + "word": "mr" + }, + "id": 211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.10000", + "end": "180.21000", + "feature": { + "word": "well" + }, + "id": 212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.21000", + "end": "180.45000", + "feature": { + "word": "his" + }, + "id": 213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.45000", + "end": "180.99000", + "feature": { + "word": "response" + }, + "id": 214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.99000", + "end": "181.18000", + "feature": { + "word": "was" + }, + "id": 215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "181.18000", + "end": "181.29000", + "feature": { + "word": "that" + }, + "id": 216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "181.29000", + "end": "181.95000", + "feature": { + "word": "he" + }, + "id": 217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "182.72000", + "end": "183.51000", + "feature": { + "word": "couldn't" + }, + "id": 219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "183.51000", + "end": "183.72000", + "feature": { + "word": "do" + }, + "id": 220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "183.72000", + "end": "184.08000", + "feature": { + "word": "anything" + }, + "id": 221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.08000", + "end": "184.37000", + "feature": { + "word": "for" + }, + "id": 222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.37000", + "end": "184.46000", + "feature": { + "word": "me" + }, + "id": 223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.46000", + "end": "184.87000", + "feature": { + "word": "along" + }, + "id": 224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.87000", + "end": "185.12000", + "feature": { + "word": "those" + }, + "id": 225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "185.12000", + "end": "186.01000", + "feature": { + "word": "lines" + }, + "id": 226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "186.06000", + "end": "186.63000", + "feature": { + "word": "but" + }, + "id": 228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "186.63000", + "end": "186.91000", + "feature": { + "word": "that" + }, + "id": 229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "186.96000", + "end": "187.10000", + "feature": { + "word": "he" + }, + "id": 231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "187.10000", + "end": "187.73000", + "feature": { + "word": "knew" + }, + "id": 232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "188.27000", + "end": "188.47000", + "feature": { + "word": "of" + }, + "id": 234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "188.53000", + "end": "188.72000", + "feature": { + "word": "a" + }, + "id": 236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "188.72000", + "end": "189.20000", + "feature": { + "word": "person" + }, + "id": 237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "189.20000", + "end": "189.93000", + "feature": { + "word": "" + }, + "id": 238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "189.93000", + "end": "190.00000", + "feature": { + "word": "a" + }, + "id": 239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "190.00000", + "end": "190.56000", + "feature": { + "word": "mutual" + }, + "id": 240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "190.56000", + "end": "190.96000", + "feature": { + "word": "person" + }, + "id": 241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "190.96000", + "end": "191.09000", + "feature": { + "word": "that" + }, + "id": 242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "191.09000", + "end": "191.22000", + "feature": { + "word": "we" + }, + "id": 243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "191.22000", + "end": "192.12000", + "feature": { + "word": "knew" + }, + "id": 244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "192.19000", + "end": "192.41000", + "feature": { + "word": "that" + }, + "id": 246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "192.41000", + "end": "192.66000", + "feature": { + "word": "could" + }, + "id": 247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "193.30000", + "end": "193.56000", + "feature": { + "word": "help" + }, + "id": 249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "193.56000", + "end": "193.84000", + "feature": { + "word": "me" + }, + "id": 250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.18000", + "end": "194.32000", + "feature": { + "word": "and" + }, + "id": 252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.32000", + "end": "194.50000", + "feature": { + "word": "that" + }, + "id": 253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.50000", + "end": "194.69000", + "feature": { + "word": "was" + }, + "id": 254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.69000", + "end": "195.05000", + "feature": { + "word": "" + }, + "id": 255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "195.05000", + "end": "195.35000", + "feature": { + "word": "oliver" + }, + "id": 256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "195.35000", + "end": "196.08000", + "feature": { + "word": "north" + }, + "id": 257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "196.40000", + "end": "196.74000", + "feature": { + "word": "mr" + }, + "id": 259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "196.90000", + "end": "197.12000", + "feature": { + "word": "did" + }, + "id": 261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.12000", + "end": "197.33000", + "feature": { + "word": "he" + }, + "id": 262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.33000", + "end": "197.60000", + "feature": { + "word": "tell" + }, + "id": 263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.60000", + "end": "197.79000", + "feature": { + "word": "you" + }, + "id": 264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.79000", + "end": "198.15000", + "feature": { + "word": "why" + }, + "id": 265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "198.15000", + "end": "198.49000", + "feature": { + "word": "he" + }, + "id": 266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "198.49000", + "end": "198.83000", + "feature": { + "word": "couldn't" + }, + "id": 267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "198.83000", + "end": "199.01000", + "feature": { + "word": "do" + }, + "id": 268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "199.01000", + "end": "199.43000", + "feature": { + "word": "anything" + }, + "id": 269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "199.43000", + "end": "199.74000", + "feature": { + "word": "along" + }, + "id": 270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "199.74000", + "end": "200.01000", + "feature": { + "word": "those" + }, + "id": 271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.01000", + "end": "200.13000", + "feature": { + "word": "lines" + }, + "id": 272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.13000", + "end": "200.31000", + "feature": { + "word": "" + }, + "id": 273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.31000", + "end": "200.53000", + "feature": { + "word": "that" + }, + "id": 274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.53000", + "end": "200.68000", + "feature": { + "word": "is" + }, + "id": 275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.68000", + "end": "200.98000", + "feature": { + "word": "mr" + }, + "id": 276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.98000", + "end": "201.10000", + "feature": { + "word": "casey" + }, + "id": 277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.10000", + "end": "201.35000", + "feature": { + "word": "mr" + }, + "id": 278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.35000", + "end": "201.41000", + "feature": { + "word": "no" + }, + "id": 279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.41000", + "end": "201.53000", + "feature": { + "word": "he" + }, + "id": 280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.53000", + "end": "201.80000", + "feature": { + "word": "didn't" + }, + "id": 281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.80000", + "end": "201.92000", + "feature": { + "word": "he" + }, + "id": 282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.95000", + "end": "202.29000", + "feature": { + "word": "just" + }, + "id": 284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "202.41000", + "end": "202.61000", + "feature": { + "word": "made" + }, + "id": 286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "202.61000", + "end": "202.93000", + "feature": { + "word": "point" + }, + "id": 287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "202.93000", + "end": "203.24000", + "feature": { + "word": "blank" + }, + "id": 288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "203.24000", + "end": "203.33000", + "feature": { + "word": "he" + }, + "id": 289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "203.37000", + "end": "203.67000", + "feature": { + "word": "said" + }, + "id": 291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "203.67000", + "end": "204.89000", + "feature": { + "word": "" + }, + "id": 292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "204.89000", + "end": "205.21000", + "feature": { + "word": "north" + }, + "id": 293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.21000", + "end": "205.24000", + "feature": { + "word": "s" + }, + "id": 294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.24000", + "end": "205.31000", + "feature": { + "word": "the" + }, + "id": 295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.31000", + "end": "205.51000", + "feature": { + "word": "guy" + }, + "id": 296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.51000", + "end": "205.62000", + "feature": { + "word": "to" + }, + "id": 297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.62000", + "end": "205.97000", + "feature": { + "word": "see" + }, + "id": 298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "206.04000", + "end": "206.08000", + "feature": { + "word": "" + }, + "id": 300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "207.11000", + "end": "207.79000", + "feature": { + "word": "independent" + }, + "id": 302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "207.79000", + "end": "208.18000", + "feature": { + "word": "counsel" + }, + "id": 303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "208.18000", + "end": "208.56000", + "feature": { + "word": "lawrence" + }, + "id": 304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "208.56000", + "end": "208.94000", + "feature": { + "word": "walsh" + }, + "id": 305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "208.94000", + "end": "209.02000", + "feature": { + "word": "who" + }, + "id": 306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.02000", + "end": "209.12000", + "feature": { + "word": "is" + }, + "id": 307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.12000", + "end": "209.66000", + "feature": { + "word": "conducting" + }, + "id": 308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.66000", + "end": "209.77000", + "feature": { + "word": "a" + }, + "id": 309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.77000", + "end": "210.15000", + "feature": { + "word": "criminal" + }, + "id": 310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "210.15000", + "end": "210.98000", + "feature": { + "word": "investigation" + }, + "id": 311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "211.17000", + "end": "211.54000", + "feature": { + "word": "issued" + }, + "id": 313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "211.54000", + "end": "211.62000", + "feature": { + "word": "a" + }, + "id": 314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "211.62000", + "end": "212.21000", + "feature": { + "word": "subpoena" + }, + "id": 315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "212.21000", + "end": "212.38000", + "feature": { + "word": "to" + }, + "id": 316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "212.38000", + "end": "212.74000", + "feature": { + "word": "david" + }, + "id": 317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "212.74000", + "end": "213.22000", + "feature": { + "word": "kimche" + }, + "id": 318, + "attype": "vanilla-forced-alignment" + }, + { + "start": "213.22000", + "end": "213.59000", + "feature": { + "word": "former" + }, + "id": 319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "213.59000", + "end": "214.11000", + "feature": { + "word": "director" + }, + "id": 320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.11000", + "end": "214.18000", + "feature": { + "word": "of" + }, + "id": 321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.18000", + "end": "214.36000", + "feature": { + "word": "the" + }, + "id": 322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.36000", + "end": "214.75000", + "feature": { + "word": "israeli" + }, + "id": 323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.75000", + "end": "215.05000", + "feature": { + "word": "foreign" + }, + "id": 324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.05000", + "end": "215.55000", + "feature": { + "word": "ministry" + }, + "id": 325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.55000", + "end": "215.67000", + "feature": { + "word": "who" + }, + "id": 326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.67000", + "end": "215.88000", + "feature": { + "word": "was" + }, + "id": 327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.88000", + "end": "216.31000", + "feature": { + "word": "involved" + }, + "id": 328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "216.31000", + "end": "216.42000", + "feature": { + "word": "in" + }, + "id": 329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "216.42000", + "end": "216.71000", + "feature": { + "word": "arms" + }, + "id": 330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "216.71000", + "end": "217.13000", + "feature": { + "word": "shipments" + }, + "id": 331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "217.13000", + "end": "217.30000", + "feature": { + "word": "to" + }, + "id": 332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "217.30000", + "end": "217.76000", + "feature": { + "word": "iran" + }, + "id": 333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "218.37000", + "end": "218.67000", + "feature": { + "word": "and" + }, + "id": 335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "218.67000", + "end": "218.94000", + "feature": { + "word": "house" + }, + "id": 336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "218.94000", + "end": "219.31000", + "feature": { + "word": "speaker" + }, + "id": 337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "219.31000", + "end": "219.60000", + "feature": { + "word": "jim" + }, + "id": 338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "219.60000", + "end": "219.92000", + "feature": { + "word": "wright" + }, + "id": 339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "219.92000", + "end": "220.15000", + "feature": { + "word": "said" + }, + "id": 340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "220.15000", + "end": "220.48000", + "feature": { + "word": "today" + }, + "id": 341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "220.77000", + "end": "220.92000", + "feature": { + "word": "it" + }, + "id": 343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "220.92000", + "end": "221.07000", + "feature": { + "word": "is" + }, + "id": 344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "221.07000", + "end": "221.74000", + "feature": { + "word": "increasingly" + }, + "id": 345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "221.74000", + "end": "222.13000", + "feature": { + "word": "evident" + }, + "id": 346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "222.13000", + "end": "222.28000", + "feature": { + "word": "that" + }, + "id": 347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "222.28000", + "end": "222.78000", + "feature": { + "word": "laws" + }, + "id": 348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "222.78000", + "end": "223.29000", + "feature": { + "word": "banning" + }, + "id": 349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "223.29000", + "end": "223.48000", + "feature": { + "word": "u" + }, + "id": 350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "223.48000", + "end": "223.66000", + "feature": { + "word": "s" + }, + "id": 351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "223.66000", + "end": "224.26000", + "feature": { + "word": "military" + }, + "id": 352, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.26000", + "end": "224.48000", + "feature": { + "word": "aid" + }, + "id": 353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.48000", + "end": "224.58000", + "feature": { + "word": "to" + }, + "id": 354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.58000", + "end": "224.71000", + "feature": { + "word": "the" + }, + "id": 355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.71000", + "end": "225.25000", + "feature": { + "word": "contras" + }, + "id": 356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "225.25000", + "end": "225.42000", + "feature": { + "word": "were" + }, + "id": 357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "225.42000", + "end": "226.22000", + "feature": { + "word": "systematically" + }, + "id": 358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "226.22000", + "end": "226.83000", + "feature": { + "word": "violated" + }, + "id": 359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "226.83000", + "end": "226.97000", + "feature": { + "word": "by" + }, + "id": 360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "226.97000", + "end": "227.38000", + "feature": { + "word": "members" + }, + "id": 361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "227.38000", + "end": "227.51000", + "feature": { + "word": "of" + }, + "id": 362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "227.51000", + "end": "227.62000", + "feature": { + "word": "the" + }, + "id": 363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "227.62000", + "end": "228.12000", + "feature": { + "word": "executive" + }, + "id": 364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.12000", + "end": "228.41000", + "feature": { + "word": "branch" + }, + "id": 365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.41000", + "end": "228.51000", + "feature": { + "word": "of" + }, + "id": 366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.51000", + "end": "228.95000", + "feature": { + "word": "government" + }, + "id": 367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.95000", + "end": "228.98000", + "feature": { + "word": "" + }, + "id": 368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "229.40000", + "end": "229.69000", + "feature": { + "word": "mr" + }, + "id": 370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "229.69000", + "end": "229.97000", + "feature": { + "word": "reagan" + }, + "id": 371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "229.97000", + "end": "230.14000", + "feature": { + "word": "has" + }, + "id": 372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "230.14000", + "end": "230.60000", + "feature": { + "word": "recently" + }, + "id": 373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "230.60000", + "end": "230.89000", + "feature": { + "word": "said" + }, + "id": 374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "230.89000", + "end": "231.01000", + "feature": { + "word": "that" + }, + "id": 375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.01000", + "end": "231.09000", + "feature": { + "word": "the" + }, + "id": 376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.09000", + "end": "231.44000", + "feature": { + "word": "laws" + }, + "id": 377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.44000", + "end": "231.95000", + "feature": { + "word": "prohibiting" + }, + "id": 378, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.95000", + "end": "232.09000", + "feature": { + "word": "the" + }, + "id": 379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.09000", + "end": "232.34000", + "feature": { + "word": "aid" + }, + "id": 380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.34000", + "end": "232.50000", + "feature": { + "word": "did" + }, + "id": 381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.50000", + "end": "232.69000", + "feature": { + "word": "not" + }, + "id": 382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.69000", + "end": "233.03000", + "feature": { + "word": "apply" + }, + "id": 383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "233.03000", + "end": "233.14000", + "feature": { + "word": "to" + }, + "id": 384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "233.14000", + "end": "233.51000", + "feature": { + "word": "him" + }, + "id": 385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "233.93000", + "end": "234.38000", + "feature": { + "word": "speaker" + }, + "id": 387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "234.38000", + "end": "234.72000", + "feature": { + "word": "wright" + }, + "id": 388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "234.72000", + "end": "234.97000", + "feature": { + "word": "said" + }, + "id": 389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "234.97000", + "end": "235.09000", + "feature": { + "word": "in" + }, + "id": 390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "235.09000", + "end": "235.15000", + "feature": { + "word": "a" + }, + "id": 391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "235.15000", + "end": "235.64000", + "feature": { + "word": "statement" + }, + "id": 392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "235.88000", + "end": "236.04000", + "feature": { + "word": "if" + }, + "id": 394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.04000", + "end": "236.27000", + "feature": { + "word": "any" + }, + "id": 395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.27000", + "end": "236.75000", + "feature": { + "word": "president" + }, + "id": 396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.75000", + "end": "236.90000", + "feature": { + "word": "were" + }, + "id": 397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.90000", + "end": "237.11000", + "feature": { + "word": "free" + }, + "id": 398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.11000", + "end": "237.25000", + "feature": { + "word": "to" + }, + "id": 399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.25000", + "end": "237.53000", + "feature": { + "word": "pick" + }, + "id": 400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.53000", + "end": "237.68000", + "feature": { + "word": "and" + }, + "id": 401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.68000", + "end": "238.13000", + "feature": { + "word": "choose" + }, + "id": 402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.13000", + "end": "238.39000", + "feature": { + "word": "which" + }, + "id": 403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.39000", + "end": "238.75000", + "feature": { + "word": "laws" + }, + "id": 404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.75000", + "end": "238.87000", + "feature": { + "word": "he" + }, + "id": 405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.87000", + "end": "239.08000", + "feature": { + "word": "would" + }, + "id": 406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "239.08000", + "end": "239.58000", + "feature": { + "word": "faithfully" + }, + "id": 407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "239.58000", + "end": "240.15000", + "feature": { + "word": "execute" + }, + "id": 408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.15000", + "end": "240.29000", + "feature": { + "word": "and" + }, + "id": 409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.29000", + "end": "240.47000", + "feature": { + "word": "which" + }, + "id": 410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.47000", + "end": "240.58000", + "feature": { + "word": "he" + }, + "id": 411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.58000", + "end": "240.81000", + "feature": { + "word": "would" + }, + "id": 412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.81000", + "end": "241.21000", + "feature": { + "word": "not" + }, + "id": 413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "241.26000", + "end": "241.66000", + "feature": { + "word": "ours" + }, + "id": 415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "241.66000", + "end": "241.83000", + "feature": { + "word": "would" + }, + "id": 416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "241.83000", + "end": "242.09000", + "feature": { + "word": "cease" + }, + "id": 417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.09000", + "end": "242.21000", + "feature": { + "word": "to" + }, + "id": 418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.21000", + "end": "242.42000", + "feature": { + "word": "be" + }, + "id": 419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.42000", + "end": "242.51000", + "feature": { + "word": "a" + }, + "id": 420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.51000", + "end": "242.90000", + "feature": { + "word": "government" + }, + "id": 421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.90000", + "end": "242.99000", + "feature": { + "word": "of" + }, + "id": 422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.99000", + "end": "243.36000", + "feature": { + "word": "law" + }, + "id": 423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "243.65000", + "end": "243.68000", + "feature": { + "word": "" + }, + "id": 425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "243.68000", + "end": "243.94000", + "feature": { + "word": "jim" + }, + "id": 426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "244.79000", + "end": "244.92000", + "feature": { + "word": "the" + }, + "id": 428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "244.92000", + "end": "245.27000", + "feature": { + "word": "search" + }, + "id": 429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "245.27000", + "end": "245.44000", + "feature": { + "word": "for" + }, + "id": 430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "245.44000", + "end": "245.92000", + "feature": { + "word": "answers" + }, + "id": 431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "245.92000", + "end": "246.32000", + "feature": { + "word": "began" + }, + "id": 432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "246.32000", + "end": "246.43000", + "feature": { + "word": "in" + }, + "id": 433, + "attype": "vanilla-forced-alignment" + }, + { + "start": "246.43000", + "end": "246.81000", + "feature": { + "word": "earnest" + }, + "id": 434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "246.81000", + "end": "247.24000", + "feature": { + "word": "today" + }, + "id": 435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "247.24000", + "end": "247.36000", + "feature": { + "word": "for" + }, + "id": 436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "247.36000", + "end": "247.60000", + "feature": { + "word": "what" + }, + "id": 437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "247.60000", + "end": "248.07000", + "feature": { + "word": "happened" + }, + "id": 438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.07000", + "end": "248.17000", + "feature": { + "word": "to" + }, + "id": 439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.17000", + "end": "248.24000", + "feature": { + "word": "the" + }, + "id": 440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.24000", + "end": "248.48000", + "feature": { + "word": "u" + }, + "id": 441, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.48000", + "end": "248.70000", + "feature": { + "word": "s" + }, + "id": 442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.70000", + "end": "248.91000", + "feature": { + "word": "s" + }, + "id": 443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.91000", + "end": "249.49000", + "feature": { + "word": "stark" + }, + "id": 444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "249.78000", + "end": "249.90000", + "feature": { + "word": "a" + }, + "id": 446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "249.90000", + "end": "250.10000", + "feature": { + "word": "u" + }, + "id": 447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.10000", + "end": "250.27000", + "feature": { + "word": "s" + }, + "id": 448, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.27000", + "end": "250.57000", + "feature": { + "word": "navy" + }, + "id": 449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.57000", + "end": "250.82000", + "feature": { + "word": "board" + }, + "id": 450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.82000", + "end": "250.93000", + "feature": { + "word": "of" + }, + "id": 451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.93000", + "end": "251.55000", + "feature": { + "word": "inquiry" + }, + "id": 452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "251.55000", + "end": "251.97000", + "feature": { + "word": "started" + }, + "id": 453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "251.97000", + "end": "252.13000", + "feature": { + "word": "its" + }, + "id": 454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.13000", + "end": "252.39000", + "feature": { + "word": "work" + }, + "id": 455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.39000", + "end": "252.53000", + "feature": { + "word": "on" + }, + "id": 456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.53000", + "end": "252.63000", + "feature": { + "word": "the" + }, + "id": 457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.63000", + "end": "252.98000", + "feature": { + "word": "ground" + }, + "id": 458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.98000", + "end": "253.16000", + "feature": { + "word": "in" + }, + "id": 459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.16000", + "end": "253.71000", + "feature": { + "word": "bahrain" + }, + "id": 460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.71000", + "end": "253.83000", + "feature": { + "word": "with" + }, + "id": 461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.83000", + "end": "253.91000", + "feature": { + "word": "the" + }, + "id": 462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.91000", + "end": "254.57000", + "feature": { + "word": "surviving" + }, + "id": 463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "254.57000", + "end": "254.89000", + "feature": { + "word": "crew" + }, + "id": 464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "254.89000", + "end": "254.99000", + "feature": { + "word": "of" + }, + "id": 465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "254.99000", + "end": "255.07000", + "feature": { + "word": "the" + }, + "id": 466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "255.07000", + "end": "255.56000", + "feature": { + "word": "stark" + }, + "id": 467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "255.69000", + "end": "256.09000", + "feature": { + "word": "thirty" + }, + "id": 469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "256.09000", + "end": "256.43000", + "feature": { + "word": "seven" + }, + "id": 470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "256.43000", + "end": "256.91000", + "feature": { + "word": "american" + }, + "id": 471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "256.91000", + "end": "257.33000", + "feature": { + "word": "sailors" + }, + "id": 472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "257.33000", + "end": "257.69000", + "feature": { + "word": "died" + }, + "id": 473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "257.69000", + "end": "258.16000", + "feature": { + "word": "sunday" + }, + "id": 474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "258.26000", + "end": "258.48000", + "feature": { + "word": "when" + }, + "id": 476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "258.48000", + "end": "258.59000", + "feature": { + "word": "an" + }, + "id": 477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "258.59000", + "end": "259.04000", + "feature": { + "word": "iraqi" + }, + "id": 478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.04000", + "end": "259.43000", + "feature": { + "word": "missile" + }, + "id": 479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.43000", + "end": "259.67000", + "feature": { + "word": "hit" + }, + "id": 480, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.67000", + "end": "259.78000", + "feature": { + "word": "the" + }, + "id": 481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.78000", + "end": "260.25000", + "feature": { + "word": "ship" + }, + "id": 482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "260.50000", + "end": "260.68000", + "feature": { + "word": "in" + }, + "id": 484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "260.68000", + "end": "261.20000", + "feature": { + "word": "washington" + }, + "id": 485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "261.20000", + "end": "261.55000", + "feature": { + "word": "defense" + }, + "id": 486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "261.55000", + "end": "262.04000", + "feature": { + "word": "secretary" + }, + "id": 487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.04000", + "end": "262.67000", + "feature": { + "word": "weinberger" + }, + "id": 488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.67000", + "end": "262.79000", + "feature": { + "word": "and" + }, + "id": 489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.79000", + "end": "262.91000", + "feature": { + "word": "some" + }, + "id": 490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.91000", + "end": "263.26000", + "feature": { + "word": "members" + }, + "id": 491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "263.26000", + "end": "263.39000", + "feature": { + "word": "of" + }, + "id": 492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "263.39000", + "end": "263.89000", + "feature": { + "word": "congress" + }, + "id": 493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "263.89000", + "end": "264.44000", + "feature": { + "word": "demanded" + }, + "id": 494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "264.44000", + "end": "264.56000", + "feature": { + "word": "that" + }, + "id": 495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "264.56000", + "end": "265.05000", + "feature": { + "word": "iraq" + }, + "id": 496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.05000", + "end": "265.25000", + "feature": { + "word": "let" + }, + "id": 497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.25000", + "end": "265.40000", + "feature": { + "word": "u" + }, + "id": 498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.40000", + "end": "265.56000", + "feature": { + "word": "s" + }, + "id": 499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.56000", + "end": "266.43000", + "feature": { + "word": "investigators" + }, + "id": 500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "266.72000", + "end": "267.18000", + "feature": { + "word": "question" + }, + "id": 502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "267.18000", + "end": "267.30000", + "feature": { + "word": "the" + }, + "id": 503, + "attype": "vanilla-forced-alignment" + }, + { + "start": "267.30000", + "end": "267.72000", + "feature": { + "word": "iraqi" + }, + "id": 504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "267.72000", + "end": "268.11000", + "feature": { + "word": "pilot" + }, + "id": 505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.11000", + "end": "268.24000", + "feature": { + "word": "who" + }, + "id": 506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.24000", + "end": "268.56000", + "feature": { + "word": "fired" + }, + "id": 507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.56000", + "end": "268.62000", + "feature": { + "word": "the" + }, + "id": 508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.62000", + "end": "269.13000", + "feature": { + "word": "missiles" + }, + "id": 509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "269.47000", + "end": "269.96000", + "feature": { + "word": "meanwhile" + }, + "id": 511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "269.96000", + "end": "270.36000", + "feature": { + "word": "president" + }, + "id": 512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "270.36000", + "end": "270.76000", + "feature": { + "word": "reagan" + }, + "id": 513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "270.76000", + "end": "270.99000", + "feature": { + "word": "told" + }, + "id": 514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "270.99000", + "end": "271.05000", + "feature": { + "word": "a" + }, + "id": 515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.05000", + "end": "271.29000", + "feature": { + "word": "group" + }, + "id": 516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.29000", + "end": "271.40000", + "feature": { + "word": "of" + }, + "id": 517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.40000", + "end": "271.73000", + "feature": { + "word": "energy" + }, + "id": 518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.73000", + "end": "272.43000", + "feature": { + "word": "executives" + }, + "id": 519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "272.52000", + "end": "272.83000", + "feature": { + "word": "he" + }, + "id": 521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "272.83000", + "end": "272.99000", + "feature": { + "word": "did" + }, + "id": 522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "272.99000", + "end": "273.25000", + "feature": { + "word": "not" + }, + "id": 523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "273.25000", + "end": "273.69000", + "feature": { + "word": "intend" + }, + "id": 524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "273.69000", + "end": "273.85000", + "feature": { + "word": "to" + }, + "id": 525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "273.85000", + "end": "274.34000", + "feature": { + "word": "abandon" + }, + "id": 526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.34000", + "end": "274.43000", + "feature": { + "word": "the" + }, + "id": 527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.43000", + "end": "274.64000", + "feature": { + "word": "u" + }, + "id": 528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.64000", + "end": "274.79000", + "feature": { + "word": "s" + }, + "id": 529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.79000", + "end": "275.35000", + "feature": { + "word": "military" + }, + "id": 530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.35000", + "end": "275.75000", + "feature": { + "word": "mission" + }, + "id": 531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.75000", + "end": "275.87000", + "feature": { + "word": "in" + }, + "id": 532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.87000", + "end": "275.98000", + "feature": { + "word": "the" + }, + "id": 533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.98000", + "end": "276.31000", + "feature": { + "word": "gulf" + }, + "id": 534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.22000", + "end": "277.48000", + "feature": { + "word": "let" + }, + "id": 536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.48000", + "end": "277.59000", + "feature": { + "word": "no" + }, + "id": 537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.59000", + "end": "277.87000", + "feature": { + "word": "one" + }, + "id": 538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.87000", + "end": "278.16000", + "feature": { + "word": "doubt" + }, + "id": 539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.16000", + "end": "278.30000", + "feature": { + "word": "our" + }, + "id": 540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.30000", + "end": "278.82000", + "feature": { + "word": "resolve" + }, + "id": 541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.82000", + "end": "278.93000", + "feature": { + "word": "to" + }, + "id": 542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.93000", + "end": "279.45000", + "feature": { + "word": "protect" + }, + "id": 543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "279.45000", + "end": "279.59000", + "feature": { + "word": "our" + }, + "id": 544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "279.59000", + "end": "279.96000", + "feature": { + "word": "vital" + }, + "id": 545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "279.96000", + "end": "280.48000", + "feature": { + "word": "interests" + }, + "id": 546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "280.70000", + "end": "280.82000", + "feature": { + "word": "in" + }, + "id": 548, + "attype": "vanilla-forced-alignment" + }, + { + "start": "280.82000", + "end": "280.91000", + "feature": { + "word": "the" + }, + "id": 549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "280.91000", + "end": "281.36000", + "feature": { + "word": "persian" + }, + "id": 550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "281.36000", + "end": "281.75000", + "feature": { + "word": "gulf" + }, + "id": 551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "281.75000", + "end": "281.93000", + "feature": { + "word": "or" + }, + "id": 552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "281.97000", + "end": "282.40000", + "feature": { + "word": "anywhere" + }, + "id": 554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "282.40000", + "end": "282.83000", + "feature": { + "word": "else" + }, + "id": 555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "283.98000", + "end": "284.12000", + "feature": { + "word": "the" + }, + "id": 557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.12000", + "end": "284.44000", + "feature": { + "word": "gulf" + }, + "id": 558, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.44000", + "end": "284.55000", + "feature": { + "word": "is" + }, + "id": 559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.55000", + "end": "284.65000", + "feature": { + "word": "a" + }, + "id": 560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.65000", + "end": "285.26000", + "feature": { + "word": "particularly" + }, + "id": 561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "285.26000", + "end": "285.81000", + "feature": { + "word": "volatile" + }, + "id": 562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "285.81000", + "end": "286.27000", + "feature": { + "word": "area" + }, + "id": 563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "287.83000", + "end": "287.96000", + "feature": { + "word": "but" + }, + "id": 565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "287.96000", + "end": "288.08000", + "feature": { + "word": "an" + }, + "id": 566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.08000", + "end": "288.32000", + "feature": { + "word": "area" + }, + "id": 567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.32000", + "end": "288.43000", + "feature": { + "word": "of" + }, + "id": 568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.43000", + "end": "288.84000", + "feature": { + "word": "utmost" + }, + "id": 569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.84000", + "end": "289.35000", + "feature": { + "word": "importance" + }, + "id": 570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.35000", + "end": "289.55000", + "feature": { + "word": "to" + }, + "id": 571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.55000", + "end": "289.76000", + "feature": { + "word": "us" + }, + "id": 572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.76000", + "end": "289.82000", + "feature": { + "word": "and" + }, + "id": 573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.82000", + "end": "289.88000", + "feature": { + "word": "to" + }, + "id": 574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.88000", + "end": "289.98000", + "feature": { + "word": "the" + }, + "id": 575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.98000", + "end": "290.23000", + "feature": { + "word": "free" + }, + "id": 576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "290.23000", + "end": "290.62000", + "feature": { + "word": "world" + }, + "id": 577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "291.64000", + "end": "291.80000", + "feature": { + "word": "our" + }, + "id": 579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "291.80000", + "end": "292.08000", + "feature": { + "word": "fleet" + }, + "id": 580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.08000", + "end": "292.25000", + "feature": { + "word": "has" + }, + "id": 581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.25000", + "end": "292.43000", + "feature": { + "word": "been" + }, + "id": 582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.43000", + "end": "292.63000", + "feature": { + "word": "there" + }, + "id": 583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.63000", + "end": "292.79000", + "feature": { + "word": "for" + }, + "id": 584, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.79000", + "end": "293.14000", + "feature": { + "word": "almost" + }, + "id": 585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "293.14000", + "end": "293.42000", + "feature": { + "word": "" + }, + "id": 586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "293.42000", + "end": "294.09000", + "feature": { + "word": "years" + }, + "id": 587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "294.67000", + "end": "295.02000", + "feature": { + "word": "helping" + }, + "id": 589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.02000", + "end": "295.15000", + "feature": { + "word": "to" + }, + "id": 590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.15000", + "end": "295.50000", + "feature": { + "word": "ensure" + }, + "id": 591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.50000", + "end": "295.87000", + "feature": { + "word": "freedom" + }, + "id": 592, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.87000", + "end": "296.00000", + "feature": { + "word": "of" + }, + "id": 593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "296.00000", + "end": "296.66000", + "feature": { + "word": "navigation" + }, + "id": 594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "296.66000", + "end": "296.82000", + "feature": { + "word": "and" + }, + "id": 595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "296.82000", + "end": "297.23000", + "feature": { + "word": "protect" + }, + "id": 596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "297.23000", + "end": "297.83000", + "feature": { + "word": "commerce" + }, + "id": 597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "298.73000", + "end": "299.26000", + "feature": { + "word": "achieving" + }, + "id": 599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "299.26000", + "end": "299.51000", + "feature": { + "word": "this" + }, + "id": 600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "299.51000", + "end": "300.01000", + "feature": { + "word": "requires" + }, + "id": 601, + "attype": "vanilla-forced-alignment" + }, + { + "start": "300.01000", + "end": "300.72000", + "feature": { + "word": "american" + }, + "id": 602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "300.72000", + "end": "301.37000", + "feature": { + "word": "military" + }, + "id": 603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "301.37000", + "end": "301.55000", + "feature": { + "word": "and" + }, + "id": 604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "301.55000", + "end": "301.93000", + "feature": { + "word": "political" + }, + "id": 605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "301.93000", + "end": "302.44000", + "feature": { + "word": "strength" + }, + "id": 606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "303.21000", + "end": "303.32000", + "feature": { + "word": "the" + }, + "id": 608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "303.32000", + "end": "304.05000", + "feature": { + "word": "cooperation" + }, + "id": 609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "304.05000", + "end": "304.17000", + "feature": { + "word": "of" + }, + "id": 610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "304.17000", + "end": "304.34000", + "feature": { + "word": "our" + }, + "id": 611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "304.34000", + "end": "305.02000", + "feature": { + "word": "allies" + }, + "id": 612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "305.74000", + "end": "306.02000", + "feature": { + "word": "as" + }, + "id": 614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.02000", + "end": "306.25000", + "feature": { + "word": "well" + }, + "id": 615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.25000", + "end": "306.38000", + "feature": { + "word": "as" + }, + "id": 616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.38000", + "end": "306.89000", + "feature": { + "word": "economic" + }, + "id": 617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.89000", + "end": "307.29000", + "feature": { + "word": "strength" + }, + "id": 618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "307.29000", + "end": "307.39000", + "feature": { + "word": "and" + }, + "id": 619, + "attype": "vanilla-forced-alignment" + }, + { + "start": "307.39000", + "end": "308.01000", + "feature": { + "word": "independence" + }, + "id": 620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "308.01000", + "end": "308.64000", + "feature": { + "word": "especially" + }, + "id": 621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "308.64000", + "end": "308.86000", + "feature": { + "word": "on" + }, + "id": 622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "309.13000", + "end": "309.55000", + "feature": { + "word": "matters" + }, + "id": 624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "309.55000", + "end": "310.06000", + "feature": { + "word": "concerning" + }, + "id": 625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "310.06000", + "end": "310.50000", + "feature": { + "word": "energy" + }, + "id": 626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "311.07000", + "end": "311.49000", + "feature": { + "word": "one" + }, + "id": 628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "311.49000", + "end": "312.02000", + "feature": { + "word": "political" + }, + "id": 629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.02000", + "end": "312.45000", + "feature": { + "word": "victim" + }, + "id": 630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.45000", + "end": "312.56000", + "feature": { + "word": "of" + }, + "id": 631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.56000", + "end": "312.64000", + "feature": { + "word": "the" + }, + "id": 632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.64000", + "end": "313.03000", + "feature": { + "word": "stark" + }, + "id": 633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.03000", + "end": "313.50000", + "feature": { + "word": "attack" + }, + "id": 634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.50000", + "end": "313.69000", + "feature": { + "word": "may" + }, + "id": 635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.69000", + "end": "313.88000", + "feature": { + "word": "be" + }, + "id": 636, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.88000", + "end": "314.19000", + "feature": { + "word": "a" + }, + "id": 637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "314.19000", + "end": "314.71000", + "feature": { + "word": "planned" + }, + "id": 638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "314.71000", + "end": "315.22000", + "feature": { + "word": "sale" + }, + "id": 639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "315.22000", + "end": "315.33000", + "feature": { + "word": "of" + }, + "id": 640, + "attype": "vanilla-forced-alignment" + }, + { + "start": "315.36000", + "end": "315.92000", + "feature": { + "word": "" + }, + "id": 642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "315.92000", + "end": "316.12000", + "feature": { + "word": "f" + }, + "id": 643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "316.15000", + "end": "316.62000", + "feature": { + "word": "" + }, + "id": 645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "316.62000", + "end": "317.14000", + "feature": { + "word": "fighters" + }, + "id": 646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "317.14000", + "end": "317.27000", + "feature": { + "word": "to" + }, + "id": 647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "317.27000", + "end": "317.61000", + "feature": { + "word": "saudi" + }, + "id": 648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "317.61000", + "end": "318.11000", + "feature": { + "word": "arabia" + }, + "id": 649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "318.39000", + "end": "318.68000", + "feature": { + "word": "white" + }, + "id": 651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "318.68000", + "end": "318.87000", + "feature": { + "word": "house" + }, + "id": 652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "318.87000", + "end": "319.31000", + "feature": { + "word": "spokesman" + }, + "id": 653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "319.31000", + "end": "319.65000", + "feature": { + "word": "marlon" + }, + "id": 654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "319.65000", + "end": "320.28000", + "feature": { + "word": "fitzwater" + }, + "id": 655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "320.28000", + "end": "320.47000", + "feature": { + "word": "said" + }, + "id": 656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "320.47000", + "end": "320.56000", + "feature": { + "word": "the" + }, + "id": 657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "320.56000", + "end": "321.34000", + "feature": { + "word": "administration" + }, + "id": 658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "321.34000", + "end": "321.52000", + "feature": { + "word": "would" + }, + "id": 659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "321.52000", + "end": "321.75000", + "feature": { + "word": "now" + }, + "id": 660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "321.75000", + "end": "322.13000", + "feature": { + "word": "delay" + }, + "id": 661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.13000", + "end": "322.51000", + "feature": { + "word": "sending" + }, + "id": 662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.51000", + "end": "322.60000", + "feature": { + "word": "the" + }, + "id": 663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.60000", + "end": "322.91000", + "feature": { + "word": "sale" + }, + "id": 664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.91000", + "end": "323.33000", + "feature": { + "word": "request" + }, + "id": 665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "323.33000", + "end": "323.41000", + "feature": { + "word": "to" + }, + "id": 666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "323.41000", + "end": "323.98000", + "feature": { + "word": "congress" + }, + "id": 667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "324.01000", + "end": "324.97000", + "feature": { + "word": "indefinitely" + }, + "id": 669, + "attype": "vanilla-forced-alignment" + }, + { + "start": "325.30000", + "end": "325.42000", + "feature": { + "word": "the" + }, + "id": 671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "325.42000", + "end": "325.86000", + "feature": { + "word": "saudis" + }, + "id": 672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "325.86000", + "end": "326.27000", + "feature": { + "word": "declined" + }, + "id": 673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.27000", + "end": "326.40000", + "feature": { + "word": "to" + }, + "id": 674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.40000", + "end": "326.89000", + "feature": { + "word": "intercept" + }, + "id": 675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.89000", + "end": "326.96000", + "feature": { + "word": "the" + }, + "id": 676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.96000", + "end": "327.37000", + "feature": { + "word": "iraqi" + }, + "id": 677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "327.37000", + "end": "327.70000", + "feature": { + "word": "plane" + }, + "id": 678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "327.70000", + "end": "328.03000", + "feature": { + "word": "sunday" + }, + "id": 679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "328.03000", + "end": "328.37000", + "feature": { + "word": "night" + }, + "id": 680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "328.59000", + "end": "328.93000", + "feature": { + "word": "after" + }, + "id": 682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "328.93000", + "end": "329.04000", + "feature": { + "word": "the" + }, + "id": 683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "329.04000", + "end": "329.43000", + "feature": { + "word": "stark" + }, + "id": 684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "329.43000", + "end": "330.02000", + "feature": { + "word": "attack" + }, + "id": 685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "330.35000", + "end": "330.85000", + "feature": { + "word": "also" + }, + "id": 687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "330.85000", + "end": "331.23000", + "feature": { + "word": "today" + }, + "id": 688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "331.23000", + "end": "331.68000", + "feature": { + "word": "assistant" + }, + "id": 689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "331.68000", + "end": "332.21000", + "feature": { + "word": "secretary" + }, + "id": 690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "332.21000", + "end": "332.33000", + "feature": { + "word": "of" + }, + "id": 691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "332.33000", + "end": "332.74000", + "feature": { + "word": "state" + }, + "id": 692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "332.74000", + "end": "333.11000", + "feature": { + "word": "richard" + }, + "id": 693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "333.11000", + "end": "333.53000", + "feature": { + "word": "murphy" + }, + "id": 694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "333.53000", + "end": "334.28000", + "feature": { + "word": "briefed" + }, + "id": 695, + "attype": "vanilla-forced-alignment" + }, + { + "start": "334.28000", + "end": "334.89000", + "feature": { + "word": "reporters" + }, + "id": 696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "334.89000", + "end": "335.07000", + "feature": { + "word": "on" + }, + "id": 697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.07000", + "end": "335.19000", + "feature": { + "word": "the" + }, + "id": 698, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.19000", + "end": "335.58000", + "feature": { + "word": "risk" + }, + "id": 699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.58000", + "end": "335.81000", + "feature": { + "word": "to" + }, + "id": 700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.81000", + "end": "336.04000", + "feature": { + "word": "u" + }, + "id": 701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.04000", + "end": "336.15000", + "feature": { + "word": "s" + }, + "id": 702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.15000", + "end": "336.60000", + "feature": { + "word": "forces" + }, + "id": 703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.60000", + "end": "336.71000", + "feature": { + "word": "in" + }, + "id": 704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.71000", + "end": "336.78000", + "feature": { + "word": "the" + }, + "id": 705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.78000", + "end": "337.20000", + "feature": { + "word": "persian" + }, + "id": 706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "337.20000", + "end": "337.77000", + "feature": { + "word": "gulf" + }, + "id": 707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "337.86000", + "end": "337.99000", + "feature": { + "word": "he" + }, + "id": 709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "337.99000", + "end": "338.22000", + "feature": { + "word": "said" + }, + "id": 710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "338.22000", + "end": "338.31000", + "feature": { + "word": "the" + }, + "id": 711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "338.31000", + "end": "338.66000", + "feature": { + "word": "main" + }, + "id": 712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "338.66000", + "end": "339.06000", + "feature": { + "word": "threat" + }, + "id": 713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "339.06000", + "end": "339.30000", + "feature": { + "word": "came" + }, + "id": 714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "339.30000", + "end": "339.46000", + "feature": { + "word": "from" + }, + "id": 715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "339.46000", + "end": "339.95000", + "feature": { + "word": "iran" + }, + "id": 716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.20000", + "end": "340.33000", + "feature": { + "word": "but" + }, + "id": 718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.33000", + "end": "340.45000", + "feature": { + "word": "he" + }, + "id": 719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.45000", + "end": "340.66000", + "feature": { + "word": "did" + }, + "id": 720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.66000", + "end": "340.96000", + "feature": { + "word": "not" + }, + "id": 721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.96000", + "end": "341.23000", + "feature": { + "word": "think" + }, + "id": 722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "341.23000", + "end": "341.34000", + "feature": { + "word": "they" + }, + "id": 723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "341.34000", + "end": "341.53000", + "feature": { + "word": "would" + }, + "id": 724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "341.53000", + "end": "342.01000", + "feature": { + "word": "attack" + }, + "id": 725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "342.01000", + "end": "342.21000", + "feature": { + "word": "u" + }, + "id": 726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "342.21000", + "end": "342.32000", + "feature": { + "word": "s" + }, + "id": 727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "342.32000", + "end": "342.87000", + "feature": { + "word": "ships" + }, + "id": 728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "343.33000", + "end": "343.49000", + "feature": { + "word": "we" + }, + "id": 730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "343.49000", + "end": "343.88000", + "feature": { + "word": "cannot" + }, + "id": 731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "343.88000", + "end": "344.00000", + "feature": { + "word": "be" + }, + "id": 732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "344.00000", + "end": "344.39000", + "feature": { + "word": "totally" + }, + "id": 733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "344.39000", + "end": "344.84000", + "feature": { + "word": "sure" + }, + "id": 734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "346.34000", + "end": "346.48000", + "feature": { + "word": "of" + }, + "id": 736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "346.48000", + "end": "346.86000", + "feature": { + "word": "anything" + }, + "id": 737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "346.86000", + "end": "347.00000", + "feature": { + "word": "where" + }, + "id": 738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "347.00000", + "end": "347.40000", + "feature": { + "word": "iran" + }, + "id": 739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "347.40000", + "end": "347.52000", + "feature": { + "word": "is" + }, + "id": 740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "347.52000", + "end": "348.18000", + "feature": { + "word": "concerned" + }, + "id": 741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "348.37000", + "end": "349.07000", + "feature": { + "word": "iran" + }, + "id": 743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "349.34000", + "end": "349.68000", + "feature": { + "word": "first" + }, + "id": 745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "349.68000", + "end": "349.78000", + "feature": { + "word": "of" + }, + "id": 746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "349.78000", + "end": "350.01000", + "feature": { + "word": "all" + }, + "id": 747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "350.01000", + "end": "350.24000", + "feature": { + "word": "has" + }, + "id": 748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "350.24000", + "end": "350.69000", + "feature": { + "word": "not" + }, + "id": 749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "352.41000", + "end": "352.91000", + "feature": { + "word": "previously" + }, + "id": 751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "352.91000", + "end": "353.54000", + "feature": { + "word": "attacked" + }, + "id": 752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "353.54000", + "end": "354.04000", + "feature": { + "word": "american" + }, + "id": 753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.04000", + "end": "354.48000", + "feature": { + "word": "military" + }, + "id": 754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.48000", + "end": "354.79000", + "feature": { + "word": "vessel" + }, + "id": 755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.86000", + "end": "354.96000", + "feature": { + "word": "in" + }, + "id": 757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.96000", + "end": "355.05000", + "feature": { + "word": "the" + }, + "id": 758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "355.05000", + "end": "355.54000", + "feature": { + "word": "gulf" + }, + "id": 759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "355.76000", + "end": "356.64000", + "feature": { + "word": "additionally" + }, + "id": 761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "356.64000", + "end": "356.79000", + "feature": { + "word": "there" + }, + "id": 762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "356.79000", + "end": "356.89000", + "feature": { + "word": "have" + }, + "id": 763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "356.89000", + "end": "357.04000", + "feature": { + "word": "been" + }, + "id": 764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.04000", + "end": "357.11000", + "feature": { + "word": "a" + }, + "id": 765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.11000", + "end": "357.60000", + "feature": { + "word": "series" + }, + "id": 766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.60000", + "end": "357.72000", + "feature": { + "word": "of" + }, + "id": 767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.72000", + "end": "358.10000", + "feature": { + "word": "official" + }, + "id": 768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "358.10000", + "end": "358.61000", + "feature": { + "word": "statements" + }, + "id": 769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "358.61000", + "end": "358.76000", + "feature": { + "word": "by" + }, + "id": 770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "358.76000", + "end": "359.27000", + "feature": { + "word": "iranian" + }, + "id": 771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "359.27000", + "end": "359.96000", + "feature": { + "word": "officials" + }, + "id": 772, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.44000", + "end": "361.62000", + "feature": { + "word": "that" + }, + "id": 774, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.62000", + "end": "361.74000", + "feature": { + "word": "they" + }, + "id": 775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.74000", + "end": "361.89000", + "feature": { + "word": "will" + }, + "id": 776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.89000", + "end": "362.12000", + "feature": { + "word": "not" + }, + "id": 777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "362.12000", + "end": "362.67000", + "feature": { + "word": "attack" + }, + "id": 778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "362.67000", + "end": "363.00000", + "feature": { + "word": "unless" + }, + "id": 779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "363.00000", + "end": "363.77000", + "feature": { + "word": "provoked" + }, + "id": 780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "364.00000", + "end": "364.06000", + "feature": { + "word": "the" + }, + "id": 782, + "attype": "vanilla-forced-alignment" + }, + { + "start": "364.39000", + "end": "364.82000", + "feature": { + "word": "united" + }, + "id": 784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "364.82000", + "end": "365.25000", + "feature": { + "word": "states" + }, + "id": 785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "365.25000", + "end": "365.66000", + "feature": { + "word": "has" + }, + "id": 786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "365.66000", + "end": "365.95000", + "feature": { + "word": "no" + }, + "id": 787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "365.95000", + "end": "366.43000", + "feature": { + "word": "interest" + }, + "id": 788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "366.43000", + "end": "366.61000", + "feature": { + "word": "in" + }, + "id": 789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "366.61000", + "end": "367.40000", + "feature": { + "word": "provoking" + }, + "id": 790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "367.43000", + "end": "368.01000", + "feature": { + "word": "iran" + }, + "id": 792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "368.18000", + "end": "368.33000", + "feature": { + "word": "we" + }, + "id": 794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "368.33000", + "end": "368.61000", + "feature": { + "word": "have" + }, + "id": 795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "368.61000", + "end": "369.22000", + "feature": { + "word": "interests" + }, + "id": 796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.43000", + "end": "369.54000", + "feature": { + "word": "and" + }, + "id": 798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.54000", + "end": "369.57000", + "feature": { + "word": "a" + }, + "id": 799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.57000", + "end": "369.78000", + "feature": { + "word": "very" + }, + "id": 800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.78000", + "end": "370.45000", + "feature": { + "word": "strong" + }, + "id": 801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "370.45000", + "end": "370.87000", + "feature": { + "word": "very" + }, + "id": 802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "371.24000", + "end": "371.95000", + "feature": { + "word": "longstanding" + }, + "id": 804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "371.95000", + "end": "372.52000", + "feature": { + "word": "historic" + }, + "id": 805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "372.52000", + "end": "372.95000", + "feature": { + "word": "interest" + }, + "id": 806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "372.95000", + "end": "373.08000", + "feature": { + "word": "in" + }, + "id": 807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "373.08000", + "end": "373.42000", + "feature": { + "word": "freedom" + }, + "id": 808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "373.42000", + "end": "373.49000", + "feature": { + "word": "of" + }, + "id": 809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "373.49000", + "end": "374.22000", + "feature": { + "word": "navigation" + }, + "id": 810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "374.71000", + "end": "374.86000", + "feature": { + "word": "and" + }, + "id": 812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "374.86000", + "end": "375.56000", + "feature": { + "word": "access" + }, + "id": 813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "375.96000", + "end": "376.29000", + "feature": { + "word": "for" + }, + "id": 815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "376.29000", + "end": "376.87000", + "feature": { + "word": "free" + }, + "id": 816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "376.87000", + "end": "377.09000", + "feature": { + "word": "flow" + }, + "id": 817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.09000", + "end": "377.17000", + "feature": { + "word": "of" + }, + "id": 818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.17000", + "end": "377.43000", + "feature": { + "word": "oil" + }, + "id": 819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.43000", + "end": "377.66000", + "feature": { + "word": "through" + }, + "id": 820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.66000", + "end": "377.78000", + "feature": { + "word": "the" + }, + "id": 821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.78000", + "end": "378.04000", + "feature": { + "word": "strait" + }, + "id": 822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "378.04000", + "end": "378.14000", + "feature": { + "word": "of" + }, + "id": 823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "378.14000", + "end": "378.50000", + "feature": { + "word": "hormuz" + }, + "id": 824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "379.57000", + "end": "379.68000", + "feature": { + "word": "the" + }, + "id": 826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "379.68000", + "end": "380.11000", + "feature": { + "word": "senate" + }, + "id": 827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.11000", + "end": "380.44000", + "feature": { + "word": "passed" + }, + "id": 828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.44000", + "end": "380.52000", + "feature": { + "word": "an" + }, + "id": 829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.52000", + "end": "380.99000", + "feature": { + "word": "amendment" + }, + "id": 830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.99000", + "end": "381.42000", + "feature": { + "word": "today" + }, + "id": 831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "381.42000", + "end": "381.59000", + "feature": { + "word": "that" + }, + "id": 832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "381.59000", + "end": "381.77000", + "feature": { + "word": "would" + }, + "id": 833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "381.77000", + "end": "382.56000", + "feature": { + "word": "temporarily" + }, + "id": 834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "382.56000", + "end": "383.11000", + "feature": { + "word": "halt" + }, + "id": 835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.11000", + "end": "383.45000", + "feature": { + "word": "putting" + }, + "id": 836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.45000", + "end": "383.66000", + "feature": { + "word": "u" + }, + "id": 837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.66000", + "end": "383.84000", + "feature": { + "word": "s" + }, + "id": 838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.84000", + "end": "384.33000", + "feature": { + "word": "flags" + }, + "id": 839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "384.33000", + "end": "384.53000", + "feature": { + "word": "on" + }, + "id": 840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "384.53000", + "end": "385.03000", + "feature": { + "word": "kuwaiti" + }, + "id": 841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.03000", + "end": "385.33000", + "feature": { + "word": "oil" + }, + "id": 842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.33000", + "end": "385.78000", + "feature": { + "word": "tankers" + }, + "id": 843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.78000", + "end": "385.93000", + "feature": { + "word": "in" + }, + "id": 844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.93000", + "end": "386.05000", + "feature": { + "word": "the" + }, + "id": 845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "386.05000", + "end": "386.72000", + "feature": { + "word": "gulf" + }, + "id": 846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "386.76000", + "end": "386.85000", + "feature": { + "word": "the" + }, + "id": 848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "386.85000", + "end": "387.58000", + "feature": { + "word": "administration" + }, + "id": 849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "387.58000", + "end": "388.07000", + "feature": { + "word": "recently" + }, + "id": 850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "388.07000", + "end": "388.52000", + "feature": { + "word": "announced" + }, + "id": 851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "388.52000", + "end": "388.59000", + "feature": { + "word": "the" + }, + "id": 852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "388.59000", + "end": "389.04000", + "feature": { + "word": "plan" + }, + "id": 853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.04000", + "end": "389.12000", + "feature": { + "word": "to" + }, + "id": 854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.12000", + "end": "389.56000", + "feature": { + "word": "protect" + }, + "id": 855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.56000", + "end": "389.65000", + "feature": { + "word": "the" + }, + "id": 856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.65000", + "end": "389.98000", + "feature": { + "word": "ships" + }, + "id": 857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.98000", + "end": "390.17000", + "feature": { + "word": "from" + }, + "id": 858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "390.17000", + "end": "390.59000", + "feature": { + "word": "attack" + }, + "id": 859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "390.59000", + "end": "390.70000", + "feature": { + "word": "by" + }, + "id": 860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "390.70000", + "end": "391.33000", + "feature": { + "word": "iran" + }, + "id": 861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "391.70000", + "end": "392.03000", + "feature": { + "word": "today" + }, + "id": 863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.03000", + "end": "392.10000", + "feature": { + "word": "s" + }, + "id": 864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.10000", + "end": "392.36000", + "feature": { + "word": "senate" + }, + "id": 865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.36000", + "end": "392.70000", + "feature": { + "word": "action" + }, + "id": 866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.70000", + "end": "393.24000", + "feature": { + "word": "requires" + }, + "id": 867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "393.24000", + "end": "393.34000", + "feature": { + "word": "the" + }, + "id": 868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "393.34000", + "end": "393.93000", + "feature": { + "word": "president" + }, + "id": 869, + "attype": "vanilla-forced-alignment" + }, + { + "start": "393.93000", + "end": "394.03000", + "feature": { + "word": "to" + }, + "id": 870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.03000", + "end": "394.33000", + "feature": { + "word": "send" + }, + "id": 871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.33000", + "end": "394.85000", + "feature": { + "word": "congress" + }, + "id": 872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.85000", + "end": "394.95000", + "feature": { + "word": "a" + }, + "id": 873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.95000", + "end": "395.53000", + "feature": { + "word": "security" + }, + "id": 874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "395.53000", + "end": "395.93000", + "feature": { + "word": "plan" + }, + "id": 875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "395.93000", + "end": "396.13000", + "feature": { + "word": "for" + }, + "id": 876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.13000", + "end": "396.38000", + "feature": { + "word": "u" + }, + "id": 877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.38000", + "end": "396.56000", + "feature": { + "word": "s" + }, + "id": 878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.56000", + "end": "396.65000", + "feature": { + "word": "and" + }, + "id": 879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.65000", + "end": "397.04000", + "feature": { + "word": "allied" + }, + "id": 880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.04000", + "end": "397.45000", + "feature": { + "word": "forces" + }, + "id": 881, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.45000", + "end": "397.60000", + "feature": { + "word": "in" + }, + "id": 882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.60000", + "end": "397.71000", + "feature": { + "word": "the" + }, + "id": 883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.71000", + "end": "398.31000", + "feature": { + "word": "gulf" + }, + "id": 884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "398.37000", + "end": "398.92000", + "feature": { + "word": "before" + }, + "id": 886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "398.92000", + "end": "399.68000", + "feature": { + "word": "reflagging" + }, + "id": 887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "399.68000", + "end": "399.78000", + "feature": { + "word": "the" + }, + "id": 888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "399.78000", + "end": "400.23000", + "feature": { + "word": "kuwaiti" + }, + "id": 889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "400.23000", + "end": "400.79000", + "feature": { + "word": "ships" + }, + "id": 890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "401.14000", + "end": "401.64000", + "feature": { + "word": "meanwhile" + }, + "id": 892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "401.64000", + "end": "402.07000", + "feature": { + "word": "senator" + }, + "id": 893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "402.07000", + "end": "402.44000", + "feature": { + "word": "sam" + }, + "id": 894, + "attype": "vanilla-forced-alignment" + }, + { + "start": "402.44000", + "end": "402.79000", + "feature": { + "word": "nunn" + }, + "id": 895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "402.79000", + "end": "403.18000", + "feature": { + "word": "chairman" + }, + "id": 896, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.18000", + "end": "403.25000", + "feature": { + "word": "of" + }, + "id": 897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.25000", + "end": "403.32000", + "feature": { + "word": "the" + }, + "id": 898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.32000", + "end": "403.65000", + "feature": { + "word": "senate" + }, + "id": 899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.65000", + "end": "403.89000", + "feature": { + "word": "arms" + }, + "id": 900, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.89000", + "end": "404.37000", + "feature": { + "word": "services" + }, + "id": 901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "404.37000", + "end": "404.83000", + "feature": { + "word": "committee" + }, + "id": 902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.02000", + "end": "405.29000", + "feature": { + "word": "said" + }, + "id": 904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.29000", + "end": "405.39000", + "feature": { + "word": "the" + }, + "id": 905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.39000", + "end": "405.76000", + "feature": { + "word": "threat" + }, + "id": 906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.76000", + "end": "405.85000", + "feature": { + "word": "to" + }, + "id": 907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.85000", + "end": "406.13000", + "feature": { + "word": "u" + }, + "id": 908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "406.13000", + "end": "406.24000", + "feature": { + "word": "s" + }, + "id": 909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "406.24000", + "end": "406.60000", + "feature": { + "word": "ships" + }, + "id": 910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "406.60000", + "end": "407.10000", + "feature": { + "word": "described" + }, + "id": 911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "407.10000", + "end": "407.27000", + "feature": { + "word": "by" + }, + "id": 912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "407.27000", + "end": "407.82000", + "feature": { + "word": "secretary" + }, + "id": 913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "407.82000", + "end": "408.30000", + "feature": { + "word": "murphy" + }, + "id": 914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "408.45000", + "end": "408.62000", + "feature": { + "word": "is" + }, + "id": 916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "408.62000", + "end": "409.11000", + "feature": { + "word": "serious" + }, + "id": 917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "409.11000", + "end": "409.42000", + "feature": { + "word": "enough" + }, + "id": 918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "409.42000", + "end": "409.59000", + "feature": { + "word": "to" + }, + "id": 919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "409.59000", + "end": "410.07000", + "feature": { + "word": "invoke" + }, + "id": 920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "410.11000", + "end": "410.29000", + "feature": { + "word": "the" + }, + "id": 922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "410.29000", + "end": "410.57000", + "feature": { + "word": "war" + }, + "id": 923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "410.57000", + "end": "411.07000", + "feature": { + "word": "powers" + }, + "id": 924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.07000", + "end": "411.47000", + "feature": { + "word": "act" + }, + "id": 925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.63000", + "end": "411.71000", + "feature": { + "word": "it" + }, + "id": 927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.71000", + "end": "411.92000", + "feature": { + "word": "seems" + }, + "id": 928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.92000", + "end": "411.98000", + "feature": { + "word": "to" + }, + "id": 929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.98000", + "end": "412.18000", + "feature": { + "word": "me" + }, + "id": 930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.18000", + "end": "412.30000", + "feature": { + "word": "if" + }, + "id": 931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.30000", + "end": "412.63000", + "feature": { + "word": "indeed" + }, + "id": 932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.63000", + "end": "412.72000", + "feature": { + "word": "top" + }, + "id": 933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.72000", + "end": "413.62000", + "feature": { + "word": "officials" + }, + "id": 934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "413.62000", + "end": "413.96000", + "feature": { + "word": "in" + }, + "id": 935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "413.96000", + "end": "414.81000", + "feature": { + "word": "the" + }, + "id": 936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "414.84000", + "end": "415.03000", + "feature": { + "word": "state" + }, + "id": 938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.03000", + "end": "415.61000", + "feature": { + "word": "department" + }, + "id": 939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.61000", + "end": "415.69000", + "feature": { + "word": "are" + }, + "id": 940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.69000", + "end": "415.84000", + "feature": { + "word": "talking" + }, + "id": 941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.84000", + "end": "416.06000", + "feature": { + "word": "about" + }, + "id": 942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.06000", + "end": "416.12000", + "feature": { + "word": "the" + }, + "id": 943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.12000", + "end": "416.41000", + "feature": { + "word": "united" + }, + "id": 944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.41000", + "end": "416.80000", + "feature": { + "word": "states" + }, + "id": 945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.80000", + "end": "417.29000", + "feature": { + "word": "and" + }, + "id": 946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "417.29000", + "end": "417.87000", + "feature": { + "word": "iran" + }, + "id": 947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "417.87000", + "end": "418.11000", + "feature": { + "word": "getting" + }, + "id": 948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.11000", + "end": "418.31000", + "feature": { + "word": "into" + }, + "id": 949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.31000", + "end": "418.37000", + "feature": { + "word": "a" + }, + "id": 950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.37000", + "end": "418.71000", + "feature": { + "word": "war" + }, + "id": 951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.71000", + "end": "419.05000", + "feature": { + "word": "based" + }, + "id": 952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "419.05000", + "end": "419.21000", + "feature": { + "word": "on" + }, + "id": 953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "419.21000", + "end": "419.80000", + "feature": { + "word": "our" + }, + "id": 954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "419.83000", + "end": "420.30000", + "feature": { + "word": "latest" + }, + "id": 956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "420.30000", + "end": "421.62000", + "feature": { + "word": "plan" + }, + "id": 957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "421.65000", + "end": "422.68000", + "feature": { + "word": "to" + }, + "id": 959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "422.71000", + "end": "422.91000", + "feature": { + "word": "help" + }, + "id": 961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "422.91000", + "end": "423.48000", + "feature": { + "word": "transport" + }, + "id": 962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "423.48000", + "end": "423.94000", + "feature": { + "word": "and" + }, + "id": 963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "423.94000", + "end": "424.27000", + "feature": { + "word": "protect" + }, + "id": 964, + "attype": "vanilla-forced-alignment" + }, + { + "start": "424.27000", + "end": "424.43000", + "feature": { + "word": "those" + }, + "id": 965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "424.43000", + "end": "424.86000", + "feature": { + "word": "kuwaiti" + }, + "id": 966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "424.86000", + "end": "425.77000", + "feature": { + "word": "vessels" + }, + "id": 967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "425.77000", + "end": "425.84000", + "feature": { + "word": "it" + }, + "id": 968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "425.84000", + "end": "426.06000", + "feature": { + "word": "seems" + }, + "id": 969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.06000", + "end": "426.13000", + "feature": { + "word": "to" + }, + "id": 970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.13000", + "end": "426.27000", + "feature": { + "word": "me" + }, + "id": 971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.27000", + "end": "426.48000", + "feature": { + "word": "that" + }, + "id": 972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.48000", + "end": "426.60000", + "feature": { + "word": "in" + }, + "id": 973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.60000", + "end": "427.20000", + "feature": { + "word": "itself" + }, + "id": 974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.20000", + "end": "427.52000", + "feature": { + "word": "should" + }, + "id": 975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.52000", + "end": "427.89000", + "feature": { + "word": "trigger" + }, + "id": 976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.89000", + "end": "427.95000", + "feature": { + "word": "the" + }, + "id": 977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.95000", + "end": "429.09000", + "feature": { + "word": "white" + }, + "id": 978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "429.09000", + "end": "429.75000", + "feature": { + "word": "house" + }, + "id": 979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "429.75000", + "end": "430.05000", + "feature": { + "word": "sending" + }, + "id": 980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "430.05000", + "end": "430.23000", + "feature": { + "word": "us" + }, + "id": 981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "430.23000", + "end": "430.42000", + "feature": { + "word": "some" + }, + "id": 982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "430.42000", + "end": "430.83000", + "feature": { + "word": "notice" + }, + "id": 983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.44000", + "end": "431.65000", + "feature": { + "word": "under" + }, + "id": 985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.65000", + "end": "431.71000", + "feature": { + "word": "the" + }, + "id": 986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.71000", + "end": "431.94000", + "feature": { + "word": "war" + }, + "id": 987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.94000", + "end": "432.35000", + "feature": { + "word": "powers" + }, + "id": 988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "432.35000", + "end": "432.74000", + "feature": { + "word": "act" + }, + "id": 989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "432.74000", + "end": "433.23000", + "feature": { + "word": "or" + }, + "id": 990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "433.23000", + "end": "433.31000", + "feature": { + "word": "at" + }, + "id": 991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "433.31000", + "end": "433.61000", + "feature": { + "word": "least" + }, + "id": 992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "433.61000", + "end": "434.29000", + "feature": { + "word": "very" + }, + "id": 993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "434.29000", + "end": "434.77000", + "feature": { + "word": "intensive" + }, + "id": 994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "434.77000", + "end": "435.36000", + "feature": { + "word": "consultation" + }, + "id": 995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "435.36000", + "end": "435.49000", + "feature": { + "word": "with" + }, + "id": 996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "435.49000", + "end": "435.88000", + "feature": { + "word": "congress" + }, + "id": 997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "435.88000", + "end": "436.03000", + "feature": { + "word": "it" + }, + "id": 998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.03000", + "end": "436.25000", + "feature": { + "word": "seems" + }, + "id": 999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.25000", + "end": "436.31000", + "feature": { + "word": "to" + }, + "id": 1000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.31000", + "end": "436.48000", + "feature": { + "word": "me" + }, + "id": 1001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.48000", + "end": "436.70000", + "feature": { + "word": "that" + }, + "id": 1002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.70000", + "end": "436.77000", + "feature": { + "word": "the" + }, + "id": 1003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.77000", + "end": "437.21000", + "feature": { + "word": "spirit" + }, + "id": 1004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.21000", + "end": "437.28000", + "feature": { + "word": "of" + }, + "id": 1005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.28000", + "end": "437.34000", + "feature": { + "word": "the" + }, + "id": 1006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.34000", + "end": "437.57000", + "feature": { + "word": "war" + }, + "id": 1007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.57000", + "end": "437.95000", + "feature": { + "word": "powers" + }, + "id": 1008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.95000", + "end": "438.21000", + "feature": { + "word": "act" + }, + "id": 1009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "438.21000", + "end": "439.53000", + "feature": { + "word": "whether" + }, + "id": 1010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "439.53000", + "end": "439.70000", + "feature": { + "word": "its" + }, + "id": 1011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "439.70000", + "end": "439.99000", + "feature": { + "word": "been" + }, + "id": 1012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "439.99000", + "end": "440.68000", + "feature": { + "word": "technically" + }, + "id": 1013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "440.68000", + "end": "441.53000", + "feature": { + "word": "reached" + }, + "id": 1014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "441.53000", + "end": "441.59000", + "feature": { + "word": "it" + }, + "id": 1015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "441.59000", + "end": "442.04000", + "feature": { + "word": "seems" + }, + "id": 1016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.04000", + "end": "442.42000", + "feature": { + "word": "the" + }, + "id": 1017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.45000", + "end": "442.74000", + "feature": { + "word": "spirit" + }, + "id": 1019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.74000", + "end": "442.94000", + "feature": { + "word": "of" + }, + "id": 1020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.94000", + "end": "443.00000", + "feature": { + "word": "it" + }, + "id": 1021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.00000", + "end": "443.14000", + "feature": { + "word": "is" + }, + "id": 1022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.14000", + "end": "443.21000", + "feature": { + "word": "at" + }, + "id": 1023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.21000", + "end": "443.50000", + "feature": { + "word": "least" + }, + "id": 1024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.50000", + "end": "443.79000", + "feature": { + "word": "in" + }, + "id": 1025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.79000", + "end": "444.52000", + "feature": { + "word": "question" + }, + "id": 1026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "444.97000", + "end": "445.24000", + "feature": { + "word": "in" + }, + "id": 1028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "445.24000", + "end": "445.83000", + "feature": { + "word": "washington" + }, + "id": 1029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "445.83000", + "end": "446.32000", + "feature": { + "word": "austrian" + }, + "id": 1030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "446.32000", + "end": "446.87000", + "feature": { + "word": "chancellor" + }, + "id": 1031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "446.87000", + "end": "447.24000", + "feature": { + "word": "franz" + }, + "id": 1032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "447.24000", + "end": "447.98000", + "feature": { + "word": "" + }, + "id": 1033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "447.98000", + "end": "448.33000", + "feature": { + "word": "appealed" + }, + "id": 1034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "448.33000", + "end": "448.43000", + "feature": { + "word": "to" + }, + "id": 1035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "448.43000", + "end": "448.88000", + "feature": { + "word": "president" + }, + "id": 1036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "448.88000", + "end": "449.38000", + "feature": { + "word": "reagan" + }, + "id": 1037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "449.38000", + "end": "449.60000", + "feature": { + "word": "to" + }, + "id": 1038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "449.60000", + "end": "450.15000", + "feature": { + "word": "rescind" + }, + "id": 1039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "450.15000", + "end": "450.24000", + "feature": { + "word": "an" + }, + "id": 1040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "450.24000", + "end": "450.61000", + "feature": { + "word": "order" + }, + "id": 1041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "450.61000", + "end": "451.12000", + "feature": { + "word": "barring" + }, + "id": 1042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "451.12000", + "end": "451.41000", + "feature": { + "word": "kurt" + }, + "id": 1043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "451.41000", + "end": "452.05000", + "feature": { + "word": "waldheim" + }, + "id": 1044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "452.05000", + "end": "452.25000", + "feature": { + "word": "from" + }, + "id": 1045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "452.25000", + "end": "452.42000", + "feature": { + "word": "this" + }, + "id": 1046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "452.42000", + "end": "452.86000", + "feature": { + "word": "country" + }, + "id": 1047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "453.31000", + "end": "453.43000", + "feature": { + "word": "the" + }, + "id": 1049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "453.43000", + "end": "453.72000", + "feature": { + "word": "reagan" + }, + "id": 1050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "453.72000", + "end": "454.46000", + "feature": { + "word": "administration" + }, + "id": 1051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "454.46000", + "end": "454.71000", + "feature": { + "word": "made" + }, + "id": 1052, + "attype": "vanilla-forced-alignment" + }, + { + "start": "454.71000", + "end": "454.84000", + "feature": { + "word": "the" + }, + "id": 1053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "454.84000", + "end": "455.31000", + "feature": { + "word": "austrian" + }, + "id": 1054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "455.31000", + "end": "455.86000", + "feature": { + "word": "president" + }, + "id": 1055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "455.86000", + "end": "456.38000", + "feature": { + "word": "persona" + }, + "id": 1056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "456.38000", + "end": "456.73000", + "feature": { + "word": "non" + }, + "id": 1057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "456.73000", + "end": "457.16000", + "feature": { + "word": "grata" + }, + "id": 1058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "457.16000", + "end": "457.37000", + "feature": { + "word": "for" + }, + "id": 1059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "457.37000", + "end": "457.75000", + "feature": { + "word": "alleged" + }, + "id": 1060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "457.75000", + "end": "458.19000", + "feature": { + "word": "crimes" + }, + "id": 1061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.19000", + "end": "458.48000", + "feature": { + "word": "during" + }, + "id": 1062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.48000", + "end": "458.76000", + "feature": { + "word": "world" + }, + "id": 1063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.76000", + "end": "458.94000", + "feature": { + "word": "war" + }, + "id": 1064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.94000", + "end": "459.33000", + "feature": { + "word": "" + }, + "id": 1065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "459.70000", + "end": "460.05000", + "feature": { + "word": "after" + }, + "id": 1067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "460.05000", + "end": "460.13000", + "feature": { + "word": "the" + }, + "id": 1068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "460.13000", + "end": "460.53000", + "feature": { + "word": "meeting" + }, + "id": 1069, + "attype": "vanilla-forced-alignment" + }, + { + "start": "460.53000", + "end": "461.11000", + "feature": { + "word": "" + }, + "id": 1070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "461.11000", + "end": "461.38000", + "feature": { + "word": "spoke" + }, + "id": 1071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "461.38000", + "end": "461.47000", + "feature": { + "word": "to" + }, + "id": 1072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "461.47000", + "end": "462.14000", + "feature": { + "word": "reporters" + }, + "id": 1073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "462.83000", + "end": "463.30000", + "feature": { + "word": "this" + }, + "id": 1075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "463.30000", + "end": "463.97000", + "feature": { + "word": "decision" + }, + "id": 1076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "464.85000", + "end": "465.78000", + "feature": { + "word": "was" + }, + "id": 1078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "465.78000", + "end": "466.30000", + "feature": { + "word": "a" + }, + "id": 1079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "467.70000", + "end": "468.45000", + "feature": { + "word": "decision" + }, + "id": 1081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "468.45000", + "end": "468.86000", + "feature": { + "word": "which" + }, + "id": 1082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "469.14000", + "end": "469.64000", + "feature": { + "word": "brought" + }, + "id": 1084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "469.64000", + "end": "470.64000", + "feature": { + "word": "dismay" + }, + "id": 1085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "470.64000", + "end": "470.83000", + "feature": { + "word": "and" + }, + "id": 1086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "470.83000", + "end": "471.39000", + "feature": { + "word": "upset" + }, + "id": 1087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "471.39000", + "end": "471.51000", + "feature": { + "word": "to" + }, + "id": 1088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "471.51000", + "end": "471.64000", + "feature": { + "word": "the" + }, + "id": 1089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "471.64000", + "end": "472.73000", + "feature": { + "word": "austrian" + }, + "id": 1090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "473.64000", + "end": "474.15000", + "feature": { + "word": "political" + }, + "id": 1092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "474.15000", + "end": "474.72000", + "feature": { + "word": "system" + }, + "id": 1093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "474.72000", + "end": "474.83000", + "feature": { + "word": "to" + }, + "id": 1094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "474.83000", + "end": "474.97000", + "feature": { + "word": "the" + }, + "id": 1095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "475.00000", + "end": "475.44000", + "feature": { + "word": "people" + }, + "id": 1097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "475.44000", + "end": "475.53000", + "feature": { + "word": "of" + }, + "id": 1098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "475.53000", + "end": "476.03000", + "feature": { + "word": "austria" + }, + "id": 1099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.03000", + "end": "476.16000", + "feature": { + "word": "and" + }, + "id": 1100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.21000", + "end": "476.34000", + "feature": { + "word": "to" + }, + "id": 1102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.34000", + "end": "476.45000", + "feature": { + "word": "the" + }, + "id": 1103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.50000", + "end": "477.01000", + "feature": { + "word": "president" + }, + "id": 1105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "477.01000", + "end": "477.58000", + "feature": { + "word": "himself" + }, + "id": 1106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "477.91000", + "end": "478.31000", + "feature": { + "word": "ahead" + }, + "id": 1108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "478.31000", + "end": "479.04000", + "feature": { + "word": "however" + }, + "id": 1109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "479.81000", + "end": "480.71000", + "feature": { + "word": "the" + }, + "id": 1111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "482.38000", + "end": "482.93000", + "feature": { + "word": "answer" + }, + "id": 1113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "482.93000", + "end": "483.03000", + "feature": { + "word": "and" + }, + "id": 1114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "483.03000", + "end": "483.15000", + "feature": { + "word": "the" + }, + "id": 1115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "483.15000", + "end": "483.63000", + "feature": { + "word": "reaction" + }, + "id": 1116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "483.68000", + "end": "484.16000", + "feature": { + "word": "by" + }, + "id": 1118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "484.32000", + "end": "484.40000", + "feature": { + "word": "the" + }, + "id": 1120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "484.45000", + "end": "485.13000", + "feature": { + "word": "president" + }, + "id": 1122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "485.13000", + "end": "485.34000", + "feature": { + "word": "and" + }, + "id": 1123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "485.37000", + "end": "485.74000", + "feature": { + "word": "by" + }, + "id": 1125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "485.74000", + "end": "486.26000", + "feature": { + "word": "secretary" + }, + "id": 1126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "486.42000", + "end": "486.90000", + "feature": { + "word": "shultz" + }, + "id": 1128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "487.95000", + "end": "488.38000", + "feature": { + "word": "that" + }, + "id": 1130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "488.38000", + "end": "488.94000", + "feature": { + "word": "the" + }, + "id": 1131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "489.39000", + "end": "490.08000", + "feature": { + "word": "american" + }, + "id": 1133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "490.08000", + "end": "491.22000", + "feature": { + "word": "administration" + }, + "id": 1134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "492.42000", + "end": "493.03000", + "feature": { + "word": "could" + }, + "id": 1136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "494.41000", + "end": "495.06000", + "feature": { + "word": "not" + }, + "id": 1138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.18000", + "end": "496.55000", + "feature": { + "word": "act" + }, + "id": 1140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.55000", + "end": "496.64000", + "feature": { + "word": "in" + }, + "id": 1141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.64000", + "end": "496.95000", + "feature": { + "word": "any" + }, + "id": 1142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.95000", + "end": "497.24000", + "feature": { + "word": "other" + }, + "id": 1143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "497.24000", + "end": "497.79000", + "feature": { + "word": "way" + }, + "id": 1144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "497.90000", + "end": "498.22000", + "feature": { + "word": "as" + }, + "id": 1146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "498.22000", + "end": "498.40000", + "feature": { + "word": "they" + }, + "id": 1147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "498.40000", + "end": "498.73000", + "feature": { + "word": "did" + }, + "id": 1148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "499.50000", + "end": "499.64000", + "feature": { + "word": "in" + }, + "id": 1150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "499.64000", + "end": "500.38000", + "feature": { + "word": "following" + }, + "id": 1151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "500.38000", + "end": "500.59000", + "feature": { + "word": "the" + }, + "id": 1152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "500.59000", + "end": "501.04000", + "feature": { + "word": "united" + }, + "id": 1153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "501.04000", + "end": "501.49000", + "feature": { + "word": "states" + }, + "id": 1154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "501.49000", + "end": "501.93000", + "feature": { + "word": "law" + }, + "id": 1155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "503.12000", + "end": "503.37000", + "feature": { + "word": "in" + }, + "id": 1157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "503.37000", + "end": "503.87000", + "feature": { + "word": "vienna" + }, + "id": 1158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "503.87000", + "end": "504.11000", + "feature": { + "word": "two" + }, + "id": 1159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "504.11000", + "end": "505.00000", + "feature": { + "word": "palestinians" + }, + "id": 1160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "505.00000", + "end": "505.46000", + "feature": { + "word": "received" + }, + "id": 1161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "505.46000", + "end": "505.78000", + "feature": { + "word": "life" + }, + "id": 1162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "505.78000", + "end": "506.15000", + "feature": { + "word": "prison" + }, + "id": 1163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "506.15000", + "end": "506.73000", + "feature": { + "word": "sentences" + }, + "id": 1164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "506.73000", + "end": "507.11000", + "feature": { + "word": "today" + }, + "id": 1165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "507.47000", + "end": "507.61000", + "feature": { + "word": "the" + }, + "id": 1167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "507.61000", + "end": "507.83000", + "feature": { + "word": "men" + }, + "id": 1168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "507.83000", + "end": "508.00000", + "feature": { + "word": "who" + }, + "id": 1169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "508.00000", + "end": "508.26000", + "feature": { + "word": "used" + }, + "id": 1170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "508.26000", + "end": "508.39000", + "feature": { + "word": "the" + }, + "id": 1171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "508.39000", + "end": "509.05000", + "feature": { + "word": "aliases" + }, + "id": 1172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "509.08000", + "end": "509.29000", + "feature": { + "word": "" + }, + "id": 1174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "509.33000", + "end": "509.53000", + "feature": { + "word": "ben" + }, + "id": 1176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "509.53000", + "end": "510.33000", + "feature": { + "word": "" + }, + "id": 1177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "510.39000", + "end": "510.67000", + "feature": { + "word": "and" + }, + "id": 1179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "510.67000", + "end": "511.12000", + "feature": { + "word": "" + }, + "id": 1180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "511.12000", + "end": "511.34000", + "feature": { + "word": "ben" + }, + "id": 1181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "511.34000", + "end": "512.06000", + "feature": { + "word": "" + }, + "id": 1182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "512.27000", + "end": "512.51000", + "feature": { + "word": "were" + }, + "id": 1184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "512.51000", + "end": "513.13000", + "feature": { + "word": "convicted" + }, + "id": 1185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "513.13000", + "end": "513.26000", + "feature": { + "word": "for" + }, + "id": 1186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "513.26000", + "end": "513.45000", + "feature": { + "word": "the" + }, + "id": 1187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "513.45000", + "end": "514.45000", + "feature": { + "word": "" + }, + "id": 1188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "514.45000", + "end": "514.99000", + "feature": { + "word": "terrorist" + }, + "id": 1189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "514.99000", + "end": "515.38000", + "feature": { + "word": "attack" + }, + "id": 1190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.38000", + "end": "515.49000", + "feature": { + "word": "at" + }, + "id": 1191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.49000", + "end": "515.57000", + "feature": { + "word": "the" + }, + "id": 1192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.57000", + "end": "515.96000", + "feature": { + "word": "vienna" + }, + "id": 1193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.96000", + "end": "516.45000", + "feature": { + "word": "airport" + }, + "id": 1194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "516.45000", + "end": "517.16000", + "feature": { + "word": "three" + }, + "id": 1195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "517.16000", + "end": "517.63000", + "feature": { + "word": "persons" + }, + "id": 1196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "517.63000", + "end": "517.99000", + "feature": { + "word": "died" + }, + "id": 1197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "517.99000", + "end": "518.14000", + "feature": { + "word": "and" + }, + "id": 1198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "518.14000", + "end": "518.74000", + "feature": { + "word": "" + }, + "id": 1199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "518.74000", + "end": "518.99000", + "feature": { + "word": "others" + }, + "id": 1200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "518.99000", + "end": "519.14000", + "feature": { + "word": "were" + }, + "id": 1201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.14000", + "end": "519.55000", + "feature": { + "word": "injured" + }, + "id": 1202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.55000", + "end": "519.66000", + "feature": { + "word": "in" + }, + "id": 1203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.66000", + "end": "519.72000", + "feature": { + "word": "a" + }, + "id": 1204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.72000", + "end": "520.05000", + "feature": { + "word": "hail" + }, + "id": 1205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.05000", + "end": "520.14000", + "feature": { + "word": "of" + }, + "id": 1206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.21000", + "end": "520.83000", + "feature": { + "word": "gunfire" + }, + "id": 1208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.83000", + "end": "520.98000", + "feature": { + "word": "and" + }, + "id": 1209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.98000", + "end": "521.54000", + "feature": { + "word": "exploding" + }, + "id": 1210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "521.54000", + "end": "521.80000", + "feature": { + "word": "hand" + }, + "id": 1211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "521.80000", + "end": "522.34000", + "feature": { + "word": "grenades" + }, + "id": 1212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "522.79000", + "end": "522.92000", + "feature": { + "word": "a" + }, + "id": 1214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "522.92000", + "end": "523.28000", + "feature": { + "word": "third" + }, + "id": 1215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "523.28000", + "end": "523.71000", + "feature": { + "word": "terrorist" + }, + "id": 1216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "523.71000", + "end": "523.86000", + "feature": { + "word": "was" + }, + "id": 1217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "523.86000", + "end": "524.19000", + "feature": { + "word": "killed" + }, + "id": 1218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "524.19000", + "end": "524.37000", + "feature": { + "word": "by" + }, + "id": 1219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "524.37000", + "end": "524.79000", + "feature": { + "word": "austrian" + }, + "id": 1220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "524.79000", + "end": "525.20000", + "feature": { + "word": "police" + }, + "id": 1221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "525.20000", + "end": "525.55000", + "feature": { + "word": "during" + }, + "id": 1222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "525.55000", + "end": "525.63000", + "feature": { + "word": "the" + }, + "id": 1223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "525.63000", + "end": "526.11000", + "feature": { + "word": "assault" + }, + "id": 1224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.11000", + "end": "526.23000", + "feature": { + "word": "on" + }, + "id": 1225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.23000", + "end": "526.41000", + "feature": { + "word": "the" + }, + "id": 1226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.41000", + "end": "526.63000", + "feature": { + "word": "el" + }, + "id": 1227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.63000", + "end": "526.86000", + "feature": { + "word": "al" + }, + "id": 1228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.86000", + "end": "527.29000", + "feature": { + "word": "airline" + }, + "id": 1229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.29000", + "end": "527.70000", + "feature": { + "word": "counter" + }, + "id": 1230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.70000", + "end": "527.79000", + "feature": { + "word": "at" + }, + "id": 1231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.79000", + "end": "527.95000", + "feature": { + "word": "the" + }, + "id": 1232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.95000", + "end": "528.34000", + "feature": { + "word": "airport" + }, + "id": 1233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "528.34000", + "end": "529.44000", + "feature": { + "word": "authorities" + }, + "id": 1234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "529.44000", + "end": "529.57000", + "feature": { + "word": "say" + }, + "id": 1235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "529.57000", + "end": "529.78000", + "feature": { + "word": "they" + }, + "id": 1236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "529.78000", + "end": "530.10000", + "feature": { + "word": "still" + }, + "id": 1237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.10000", + "end": "530.40000", + "feature": { + "word": "don't" + }, + "id": 1238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.40000", + "end": "530.68000", + "feature": { + "word": "know" + }, + "id": 1239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.68000", + "end": "530.84000", + "feature": { + "word": "the" + }, + "id": 1240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.84000", + "end": "531.11000", + "feature": { + "word": "true" + }, + "id": 1241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.11000", + "end": "531.78000", + "feature": { + "word": "identities" + }, + "id": 1242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.78000", + "end": "531.88000", + "feature": { + "word": "of" + }, + "id": 1243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.88000", + "end": "531.97000", + "feature": { + "word": "the" + }, + "id": 1244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.97000", + "end": "532.16000", + "feature": { + "word": "two" + }, + "id": 1245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "532.16000", + "end": "532.47000", + "feature": { + "word": "men" + }, + "id": 1246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "532.47000", + "end": "532.93000", + "feature": { + "word": "sentenced" + }, + "id": 1247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "532.93000", + "end": "533.26000", + "feature": { + "word": "today" + }, + "id": 1248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "534.33000", + "end": "534.59000", + "feature": { + "word": "two" + }, + "id": 1250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "534.59000", + "end": "535.05000", + "feature": { + "word": "african" + }, + "id": 1251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "535.05000", + "end": "535.61000", + "feature": { + "word": "nations" + }, + "id": 1252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "535.61000", + "end": "536.03000", + "feature": { + "word": "sounded" + }, + "id": 1253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "536.03000", + "end": "536.49000", + "feature": { + "word": "separate" + }, + "id": 1254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "536.49000", + "end": "536.84000", + "feature": { + "word": "cries" + }, + "id": 1255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "536.84000", + "end": "537.13000", + "feature": { + "word": "for" + }, + "id": 1256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "537.13000", + "end": "537.50000", + "feature": { + "word": "help" + }, + "id": 1257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "537.50000", + "end": "538.02000", + "feature": { + "word": "today" + }, + "id": 1258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "538.25000", + "end": "538.40000", + "feature": { + "word": "the" + }, + "id": 1260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "538.40000", + "end": "538.72000", + "feature": { + "word": "prime" + }, + "id": 1261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "538.72000", + "end": "539.15000", + "feature": { + "word": "minister" + }, + "id": 1262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "539.15000", + "end": "539.26000", + "feature": { + "word": "of" + }, + "id": 1263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "539.26000", + "end": "539.94000", + "feature": { + "word": "uganda" + }, + "id": 1264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "539.94000", + "end": "540.19000", + "feature": { + "word": "told" + }, + "id": 1265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "540.19000", + "end": "540.32000", + "feature": { + "word": "an" + }, + "id": 1266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "540.32000", + "end": "540.96000", + "feature": { + "word": "international" + }, + "id": 1267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "540.96000", + "end": "541.48000", + "feature": { + "word": "conference" + }, + "id": 1268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "541.48000", + "end": "541.65000", + "feature": { + "word": "in" + }, + "id": 1269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "541.65000", + "end": "542.32000", + "feature": { + "word": "kampala" + }, + "id": 1270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "542.52000", + "end": "542.76000", + "feature": { + "word": "that" + }, + "id": 1272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "542.76000", + "end": "542.84000", + "feature": { + "word": "the" + }, + "id": 1273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "542.84000", + "end": "543.27000", + "feature": { + "word": "spread" + }, + "id": 1274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "543.27000", + "end": "543.48000", + "feature": { + "word": "of" + }, + "id": 1275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "543.52000", + "end": "543.93000", + "feature": { + "word": "aids" + }, + "id": 1277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "543.93000", + "end": "544.02000", + "feature": { + "word": "in" + }, + "id": 1278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.02000", + "end": "544.25000", + "feature": { + "word": "his" + }, + "id": 1279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.25000", + "end": "544.69000", + "feature": { + "word": "country" + }, + "id": 1280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.69000", + "end": "544.91000", + "feature": { + "word": "had" + }, + "id": 1281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.91000", + "end": "545.30000", + "feature": { + "word": "reached" + }, + "id": 1282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "545.35000", + "end": "545.92000", + "feature": { + "word": "epidemic" + }, + "id": 1284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "545.92000", + "end": "546.68000", + "feature": { + "word": "proportions" + }, + "id": 1285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "546.82000", + "end": "547.13000", + "feature": { + "word": "he" + }, + "id": 1287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.13000", + "end": "547.45000", + "feature": { + "word": "asked" + }, + "id": 1288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.51000", + "end": "547.63000", + "feature": { + "word": "the" + }, + "id": 1290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.63000", + "end": "547.91000", + "feature": { + "word": "rest" + }, + "id": 1291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.91000", + "end": "547.97000", + "feature": { + "word": "of" + }, + "id": 1292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.97000", + "end": "548.06000", + "feature": { + "word": "the" + }, + "id": 1293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.06000", + "end": "548.49000", + "feature": { + "word": "world" + }, + "id": 1294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.49000", + "end": "548.60000", + "feature": { + "word": "to" + }, + "id": 1295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.60000", + "end": "548.95000", + "feature": { + "word": "launch" + }, + "id": 1296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.95000", + "end": "549.06000", + "feature": { + "word": "a" + }, + "id": 1297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "549.06000", + "end": "549.66000", + "feature": { + "word": "rescue" + }, + "id": 1298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "549.66000", + "end": "550.27000", + "feature": { + "word": "operation" + }, + "id": 1299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "550.27000", + "end": "550.96000", + "feature": { + "word": "immediately" + }, + "id": 1300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "551.45000", + "end": "551.62000", + "feature": { + "word": "from" + }, + "id": 1302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "551.62000", + "end": "552.27000", + "feature": { + "word": "ethiopia" + }, + "id": 1303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.27000", + "end": "552.38000", + "feature": { + "word": "the" + }, + "id": 1304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.38000", + "end": "552.67000", + "feature": { + "word": "call" + }, + "id": 1305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.67000", + "end": "552.82000", + "feature": { + "word": "was" + }, + "id": 1306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.82000", + "end": "553.00000", + "feature": { + "word": "for" + }, + "id": 1307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.00000", + "end": "553.42000", + "feature": { + "word": "tanker" + }, + "id": 1308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.42000", + "end": "553.81000", + "feature": { + "word": "trucks" + }, + "id": 1309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.81000", + "end": "553.98000", + "feature": { + "word": "and" + }, + "id": 1310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.98000", + "end": "554.41000", + "feature": { + "word": "food" + }, + "id": 1311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "554.41000", + "end": "554.49000", + "feature": { + "word": "to" + }, + "id": 1312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "554.49000", + "end": "554.87000", + "feature": { + "word": "rescue" + }, + "id": 1313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "554.87000", + "end": "556.16000", + "feature": { + "word": "" + }, + "id": 1314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "556.16000", + "end": "556.58000", + "feature": { + "word": "victims" + }, + "id": 1315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "556.58000", + "end": "556.72000", + "feature": { + "word": "of" + }, + "id": 1316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "556.72000", + "end": "557.17000", + "feature": { + "word": "drought" + }, + "id": 1317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "557.56000", + "end": "557.71000", + "feature": { + "word": "a" + }, + "id": 1319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "557.71000", + "end": "558.11000", + "feature": { + "word": "government" + }, + "id": 1320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.11000", + "end": "558.58000", + "feature": { + "word": "official" + }, + "id": 1321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.58000", + "end": "558.78000", + "feature": { + "word": "said" + }, + "id": 1322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.78000", + "end": "558.86000", + "feature": { + "word": "the" + }, + "id": 1323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.86000", + "end": "559.23000", + "feature": { + "word": "lives" + }, + "id": 1324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.23000", + "end": "559.32000", + "feature": { + "word": "of" + }, + "id": 1325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.32000", + "end": "559.55000", + "feature": { + "word": "those" + }, + "id": 1326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.55000", + "end": "559.90000", + "feature": { + "word": "people" + }, + "id": 1327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.90000", + "end": "560.06000", + "feature": { + "word": "are" + }, + "id": 1328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "560.06000", + "end": "560.18000", + "feature": { + "word": "in" + }, + "id": 1329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "560.18000", + "end": "560.67000", + "feature": { + "word": "jeopardy" + }, + "id": 1330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "560.86000", + "end": "561.27000", + "feature": { + "word": "unless" + }, + "id": 1332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "561.27000", + "end": "561.76000", + "feature": { + "word": "equipment" + }, + "id": 1333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "561.76000", + "end": "561.88000", + "feature": { + "word": "to" + }, + "id": 1334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "561.88000", + "end": "562.49000", + "feature": { + "word": "distribute" + }, + "id": 1335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "562.49000", + "end": "562.92000", + "feature": { + "word": "water" + }, + "id": 1336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "562.92000", + "end": "563.08000", + "feature": { + "word": "and" + }, + "id": 1337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "563.08000", + "end": "563.50000", + "feature": { + "word": "food" + }, + "id": 1338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "563.50000", + "end": "563.79000", + "feature": { + "word": "comes" + }, + "id": 1339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "563.79000", + "end": "564.24000", + "feature": { + "word": "quickly" + }, + "id": 1340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.08000", + "end": "565.20000", + "feature": { + "word": "the" + }, + "id": 1342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.20000", + "end": "565.40000", + "feature": { + "word": "u" + }, + "id": 1343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.40000", + "end": "565.54000", + "feature": { + "word": "s" + }, + "id": 1344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.54000", + "end": "566.01000", + "feature": { + "word": "customs" + }, + "id": 1345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "566.01000", + "end": "566.37000", + "feature": { + "word": "service" + }, + "id": 1346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "566.37000", + "end": "566.58000", + "feature": { + "word": "has" + }, + "id": 1347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "566.58000", + "end": "567.05000", + "feature": { + "word": "charged" + }, + "id": 1348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "567.05000", + "end": "567.53000", + "feature": { + "word": "" + }, + "id": 1349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "567.53000", + "end": "567.94000", + "feature": { + "word": "people" + }, + "id": 1350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "567.94000", + "end": "568.09000", + "feature": { + "word": "in" + }, + "id": 1351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "568.09000", + "end": "568.34000", + "feature": { + "word": "san" + }, + "id": 1352, + "attype": "vanilla-forced-alignment" + }, + { + "start": "568.34000", + "end": "568.90000", + "feature": { + "word": "diego" + }, + "id": 1353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "568.90000", + "end": "569.09000", + "feature": { + "word": "and" + }, + "id": 1354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "569.09000", + "end": "569.53000", + "feature": { + "word": "launched" + }, + "id": 1355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "569.53000", + "end": "569.59000", + "feature": { + "word": "a" + }, + "id": 1356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "569.59000", + "end": "570.34000", + "feature": { + "word": "nationwide" + }, + "id": 1357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "570.34000", + "end": "571.06000", + "feature": { + "word": "crackdown" + }, + "id": 1358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.06000", + "end": "571.30000", + "feature": { + "word": "on" + }, + "id": 1359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.30000", + "end": "571.40000", + "feature": { + "word": "a" + }, + "id": 1360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.40000", + "end": "571.79000", + "feature": { + "word": "ring" + }, + "id": 1361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.79000", + "end": "572.35000", + "feature": { + "word": "allegedly" + }, + "id": 1362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "572.35000", + "end": "572.93000", + "feature": { + "word": "smuggling" + }, + "id": 1363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "572.93000", + "end": "573.31000", + "feature": { + "word": "body" + }, + "id": 1364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "573.31000", + "end": "573.71000", + "feature": { + "word": "building" + }, + "id": 1365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "573.71000", + "end": "574.36000", + "feature": { + "word": "steroid" + }, + "id": 1366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "574.36000", + "end": "574.83000", + "feature": { + "word": "drugs" + }, + "id": 1367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "574.83000", + "end": "575.01000", + "feature": { + "word": "into" + }, + "id": 1368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "575.01000", + "end": "575.11000", + "feature": { + "word": "the" + }, + "id": 1369, + "attype": "vanilla-forced-alignment" + }, + { + "start": "575.11000", + "end": "575.35000", + "feature": { + "word": "u" + }, + "id": 1370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "575.35000", + "end": "575.66000", + "feature": { + "word": "s" + }, + "id": 1371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "576.07000", + "end": "576.55000", + "feature": { + "word": "customs" + }, + "id": 1373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "576.55000", + "end": "577.10000", + "feature": { + "word": "spokesmen" + }, + "id": 1374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.10000", + "end": "577.32000", + "feature": { + "word": "said" + }, + "id": 1375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.32000", + "end": "577.41000", + "feature": { + "word": "the" + }, + "id": 1376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.41000", + "end": "577.67000", + "feature": { + "word": "ring" + }, + "id": 1377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.67000", + "end": "578.07000", + "feature": { + "word": "began" + }, + "id": 1378, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.07000", + "end": "578.17000", + "feature": { + "word": "in" + }, + "id": 1379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.17000", + "end": "578.79000", + "feature": { + "word": "mexico" + }, + "id": 1380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.79000", + "end": "578.93000", + "feature": { + "word": "and" + }, + "id": 1381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.93000", + "end": "579.10000", + "feature": { + "word": "was" + }, + "id": 1382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "579.10000", + "end": "579.64000", + "feature": { + "word": "headquartered" + }, + "id": 1383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "579.64000", + "end": "579.78000", + "feature": { + "word": "in" + }, + "id": 1384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "579.78000", + "end": "580.12000", + "feature": { + "word": "southern" + }, + "id": 1385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "580.12000", + "end": "580.76000", + "feature": { + "word": "california" + }, + "id": 1386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "581.22000", + "end": "581.53000", + "feature": { + "word": "among" + }, + "id": 1388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "581.53000", + "end": "581.74000", + "feature": { + "word": "those" + }, + "id": 1389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "581.74000", + "end": "582.20000", + "feature": { + "word": "charged" + }, + "id": 1390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "582.20000", + "end": "582.33000", + "feature": { + "word": "were" + }, + "id": 1391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "582.33000", + "end": "582.69000", + "feature": { + "word": "pat" + }, + "id": 1392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "582.69000", + "end": "583.21000", + "feature": { + "word": "jacobs" + }, + "id": 1393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "583.21000", + "end": "583.68000", + "feature": { + "word": "assistant" + }, + "id": 1394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "583.68000", + "end": "584.16000", + "feature": { + "word": "football" + }, + "id": 1395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.16000", + "end": "584.50000", + "feature": { + "word": "coach" + }, + "id": 1396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.50000", + "end": "584.59000", + "feature": { + "word": "at" + }, + "id": 1397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.59000", + "end": "584.67000", + "feature": { + "word": "the" + }, + "id": 1398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.67000", + "end": "585.19000", + "feature": { + "word": "university" + }, + "id": 1399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "585.19000", + "end": "585.28000", + "feature": { + "word": "of" + }, + "id": 1400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "585.28000", + "end": "585.77000", + "feature": { + "word": "miami" + }, + "id": 1401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "586.07000", + "end": "586.26000", + "feature": { + "word": "and" + }, + "id": 1403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "586.26000", + "end": "586.60000", + "feature": { + "word": "former" + }, + "id": 1404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "586.60000", + "end": "587.00000", + "feature": { + "word": "british" + }, + "id": 1405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "587.00000", + "end": "587.53000", + "feature": { + "word": "olympic" + }, + "id": 1406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "587.53000", + "end": "588.05000", + "feature": { + "word": "medalist" + }, + "id": 1407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "588.05000", + "end": "588.43000", + "feature": { + "word": "david" + }, + "id": 1408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "588.43000", + "end": "588.96000", + "feature": { + "word": "jenkins" + }, + "id": 1409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "588.96000", + "end": "589.31000", + "feature": { + "word": "now" + }, + "id": 1410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "589.31000", + "end": "589.41000", + "feature": { + "word": "of" + }, + "id": 1411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "589.41000", + "end": "590.04000", + "feature": { + "word": "california" + }, + "id": 1412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "590.84000", + "end": "591.05000", + "feature": { + "word": "that" + }, + "id": 1414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.05000", + "end": "591.11000", + "feature": { + "word": "s" + }, + "id": 1415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.11000", + "end": "591.23000", + "feature": { + "word": "our" + }, + "id": 1416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.23000", + "end": "591.47000", + "feature": { + "word": "news" + }, + "id": 1417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.47000", + "end": "591.87000", + "feature": { + "word": "summary" + }, + "id": 1418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.87000", + "end": "592.19000", + "feature": { + "word": "coming" + }, + "id": 1419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.19000", + "end": "592.38000", + "feature": { + "word": "up" + }, + "id": 1420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.38000", + "end": "592.47000", + "feature": { + "word": "the" + }, + "id": 1421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.47000", + "end": "592.83000", + "feature": { + "word": "iran" + }, + "id": 1422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.83000", + "end": "593.20000", + "feature": { + "word": "contra" + }, + "id": 1423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "593.20000", + "end": "593.75000", + "feature": { + "word": "hearings" + }, + "id": 1424, + "attype": "vanilla-forced-alignment" + }, + { + "start": "593.75000", + "end": "593.89000", + "feature": { + "word": "the" + }, + "id": 1425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "593.89000", + "end": "594.38000", + "feature": { + "word": "chancellor" + }, + "id": 1426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "594.38000", + "end": "594.47000", + "feature": { + "word": "of" + }, + "id": 1427, + "attype": "vanilla-forced-alignment" + }, + { + "start": "594.47000", + "end": "594.98000", + "feature": { + "word": "austria" + }, + "id": 1428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "594.98000", + "end": "595.18000", + "feature": { + "word": "on" + }, + "id": 1429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "595.18000", + "end": "595.25000", + "feature": { + "word": "the" + }, + "id": 1430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "595.25000", + "end": "595.73000", + "feature": { + "word": "waldheim" + }, + "id": 1431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "595.73000", + "end": "596.25000", + "feature": { + "word": "affair" + }, + "id": 1432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "596.41000", + "end": "596.61000", + "feature": { + "word": "and" + }, + "id": 1434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "596.61000", + "end": "596.67000", + "feature": { + "word": "a" + }, + "id": 1435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "596.67000", + "end": "597.00000", + "feature": { + "word": "roger" + }, + "id": 1436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "597.00000", + "end": "597.21000", + "feature": { + "word": "mudd" + }, + "id": 1437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "597.21000", + "end": "597.55000", + "feature": { + "word": "essay" + }, + "id": 1438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "600.09000", + "end": "604.32000", + "feature": { + "word": "the" + }, + "id": 1440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "604.35000", + "end": "604.75000", + "feature": { + "word": "money" + }, + "id": 1442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "605.12000", + "end": "605.93000", + "feature": { + "word": "trail" + }, + "id": 1444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "607.23000", + "end": "607.40000", + "feature": { + "word": "this" + }, + "id": 1446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "607.40000", + "end": "607.57000", + "feature": { + "word": "was" + }, + "id": 1447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "607.68000", + "end": "608.05000", + "feature": { + "word": "private" + }, + "id": 1449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "608.05000", + "end": "608.43000", + "feature": { + "word": "cash" + }, + "id": 1450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "608.43000", + "end": "608.76000", + "feature": { + "word": "day" + }, + "id": 1451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "608.76000", + "end": "609.12000", + "feature": { + "word": "before" + }, + "id": 1452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "609.12000", + "end": "609.29000", + "feature": { + "word": "the" + }, + "id": 1453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "609.29000", + "end": "609.64000", + "feature": { + "word": "iran" + }, + "id": 1454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "609.64000", + "end": "610.04000", + "feature": { + "word": "contra" + }, + "id": 1455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "610.04000", + "end": "610.53000", + "feature": { + "word": "hearings" + }, + "id": 1456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "610.53000", + "end": "610.72000", + "feature": { + "word": "as" + }, + "id": 1457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "610.72000", + "end": "611.06000", + "feature": { + "word": "wealthy" + }, + "id": 1458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "611.06000", + "end": "611.72000", + "feature": { + "word": "americans" + }, + "id": 1459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "611.72000", + "end": "612.01000", + "feature": { + "word": "talked" + }, + "id": 1460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "612.01000", + "end": "612.14000", + "feature": { + "word": "of" + }, + "id": 1461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "612.14000", + "end": "612.84000", + "feature": { + "word": "contributing" + }, + "id": 1462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "612.84000", + "end": "613.15000", + "feature": { + "word": "money" + }, + "id": 1463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.15000", + "end": "613.25000", + "feature": { + "word": "to" + }, + "id": 1464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.25000", + "end": "613.35000", + "feature": { + "word": "the" + }, + "id": 1465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.35000", + "end": "613.85000", + "feature": { + "word": "contras" + }, + "id": 1466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.85000", + "end": "613.96000", + "feature": { + "word": "of" + }, + "id": 1467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.96000", + "end": "614.64000", + "feature": { + "word": "nicaragua" + }, + "id": 1468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "614.99000", + "end": "615.16000", + "feature": { + "word": "our" + }, + "id": 1470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "615.16000", + "end": "615.56000", + "feature": { + "word": "special" + }, + "id": 1471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "615.56000", + "end": "616.02000", + "feature": { + "word": "coverage" + }, + "id": 1472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.02000", + "end": "616.42000", + "feature": { + "word": "remains" + }, + "id": 1473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.42000", + "end": "616.48000", + "feature": { + "word": "in" + }, + "id": 1474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.48000", + "end": "616.55000", + "feature": { + "word": "the" + }, + "id": 1475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.55000", + "end": "616.87000", + "feature": { + "word": "hands" + }, + "id": 1476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.87000", + "end": "616.96000", + "feature": { + "word": "of" + }, + "id": 1477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.96000", + "end": "617.20000", + "feature": { + "word": "judy" + }, + "id": 1478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "617.20000", + "end": "617.56000", + "feature": { + "word": "woodruff" + }, + "id": 1479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "617.76000", + "end": "618.12000", + "feature": { + "word": "judy" + }, + "id": 1481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "618.45000", + "end": "618.60000", + "feature": { + "word": "the" + }, + "id": 1483, + "attype": "vanilla-forced-alignment" + }, + { + "start": "618.60000", + "end": "618.85000", + "feature": { + "word": "three" + }, + "id": 1484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "618.85000", + "end": "619.47000", + "feature": { + "word": "witnesses" + }, + "id": 1485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "619.47000", + "end": "619.61000", + "feature": { + "word": "who" + }, + "id": 1486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "619.61000", + "end": "620.00000", + "feature": { + "word": "appeared" + }, + "id": 1487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "620.00000", + "end": "620.37000", + "feature": { + "word": "before" + }, + "id": 1488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "620.37000", + "end": "620.49000", + "feature": { + "word": "the" + }, + "id": 1489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "620.49000", + "end": "620.87000", + "feature": { + "word": "select" + }, + "id": 1490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "620.87000", + "end": "621.22000", + "feature": { + "word": "committee" + }, + "id": 1491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "621.22000", + "end": "621.58000", + "feature": { + "word": "today" + }, + "id": 1492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "621.58000", + "end": "622.30000", + "feature": { + "word": "contributed" + }, + "id": 1493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "622.30000", + "end": "622.77000", + "feature": { + "word": "tens" + }, + "id": 1494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "622.77000", + "end": "622.95000", + "feature": { + "word": "of" + }, + "id": 1495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "622.95000", + "end": "623.66000", + "feature": { + "word": "thousands" + }, + "id": 1496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "623.66000", + "end": "623.70000", + "feature": { + "word": "" + }, + "id": 1497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "623.70000", + "end": "623.84000", + "feature": { + "word": "and" + }, + "id": 1498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "623.84000", + "end": "623.98000", + "feature": { + "word": "in" + }, + "id": 1499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "623.98000", + "end": "624.23000", + "feature": { + "word": "one" + }, + "id": 1500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "624.23000", + "end": "624.61000", + "feature": { + "word": "case" + }, + "id": 1501, + "attype": "vanilla-forced-alignment" + }, + { + "start": "624.64000", + "end": "625.27000", + "feature": { + "word": "millions" + }, + "id": 1503, + "attype": "vanilla-forced-alignment" + }, + { + "start": "625.27000", + "end": "625.30000", + "feature": { + "word": "" + }, + "id": 1504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "625.30000", + "end": "625.39000", + "feature": { + "word": "of" + }, + "id": 1505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "625.39000", + "end": "625.84000", + "feature": { + "word": "dollars" + }, + "id": 1506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "625.84000", + "end": "625.94000", + "feature": { + "word": "to" + }, + "id": 1507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "625.94000", + "end": "626.04000", + "feature": { + "word": "the" + }, + "id": 1508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "626.04000", + "end": "626.65000", + "feature": { + "word": "contras" + }, + "id": 1509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "626.96000", + "end": "627.30000", + "feature": { + "word": "after" + }, + "id": 1511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "627.30000", + "end": "627.78000", + "feature": { + "word": "meetings" + }, + "id": 1512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "627.78000", + "end": "628.02000", + "feature": { + "word": "with" + }, + "id": 1513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "628.02000", + "end": "628.30000", + "feature": { + "word": "former" + }, + "id": 1514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "628.30000", + "end": "628.73000", + "feature": { + "word": "national" + }, + "id": 1515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "628.73000", + "end": "629.18000", + "feature": { + "word": "security" + }, + "id": 1516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "629.18000", + "end": "629.69000", + "feature": { + "word": "council" + }, + "id": 1517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "629.69000", + "end": "629.86000", + "feature": { + "word": "aide" + }, + "id": 1518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "629.86000", + "end": "630.18000", + "feature": { + "word": "oliver" + }, + "id": 1519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "630.18000", + "end": "630.62000", + "feature": { + "word": "north" + }, + "id": 1520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "631.06000", + "end": "631.55000", + "feature": { + "word": "joseph" + }, + "id": 1522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "631.55000", + "end": "632.05000", + "feature": { + "word": "coors" + }, + "id": 1523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "632.05000", + "end": "632.41000", + "feature": { + "word": "vice" + }, + "id": 1524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "632.41000", + "end": "632.88000", + "feature": { + "word": "chairman" + }, + "id": 1525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "632.88000", + "end": "632.97000", + "feature": { + "word": "of" + }, + "id": 1526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "632.97000", + "end": "633.06000", + "feature": { + "word": "the" + }, + "id": 1527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "633.06000", + "end": "633.44000", + "feature": { + "word": "coors" + }, + "id": 1528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "633.44000", + "end": "633.84000", + "feature": { + "word": "brewing" + }, + "id": 1529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "633.84000", + "end": "634.35000", + "feature": { + "word": "company" + }, + "id": 1530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "634.52000", + "end": "634.66000", + "feature": { + "word": "and" + }, + "id": 1532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "634.66000", + "end": "634.71000", + "feature": { + "word": "a" + }, + "id": 1533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "634.71000", + "end": "634.96000", + "feature": { + "word": "long" + }, + "id": 1534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "634.96000", + "end": "635.28000", + "feature": { + "word": "time" + }, + "id": 1535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "635.28000", + "end": "635.67000", + "feature": { + "word": "friend" + }, + "id": 1536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "635.67000", + "end": "635.80000", + "feature": { + "word": "of" + }, + "id": 1537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "635.80000", + "end": "636.34000", + "feature": { + "word": "president" + }, + "id": 1538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "636.34000", + "end": "636.77000", + "feature": { + "word": "reagan" + }, + "id": 1539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "636.93000", + "end": "637.19000", + "feature": { + "word": "gave" + }, + "id": 1541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "637.19000", + "end": "638.97000", + "feature": { + "word": "" + }, + "id": 1542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "639.22000", + "end": "639.47000", + "feature": { + "word": "new" + }, + "id": 1544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "639.47000", + "end": "639.77000", + "feature": { + "word": "york" + }, + "id": 1545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "639.77000", + "end": "640.03000", + "feature": { + "word": "oil" + }, + "id": 1546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "640.03000", + "end": "640.17000", + "feature": { + "word": "and" + }, + "id": 1547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "640.17000", + "end": "640.47000", + "feature": { + "word": "gas" + }, + "id": 1548, + "attype": "vanilla-forced-alignment" + }, + { + "start": "640.47000", + "end": "641.01000", + "feature": { + "word": "executive" + }, + "id": 1549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "641.01000", + "end": "641.44000", + "feature": { + "word": "william" + }, + "id": 1550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "641.44000", + "end": "642.09000", + "feature": { + "word": "o'boyle" + }, + "id": 1551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "642.09000", + "end": "642.70000", + "feature": { + "word": "contributed" + }, + "id": 1552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "642.70000", + "end": "644.49000", + "feature": { + "word": "" + }, + "id": 1553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "644.77000", + "end": "644.97000", + "feature": { + "word": "and" + }, + "id": 1555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "644.97000", + "end": "645.38000", + "feature": { + "word": "ellen" + }, + "id": 1556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "645.38000", + "end": "645.98000", + "feature": { + "word": "garwood" + }, + "id": 1557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "646.18000", + "end": "646.29000", + "feature": { + "word": "the" + }, + "id": 1559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "646.29000", + "end": "646.67000", + "feature": { + "word": "wife" + }, + "id": 1560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "646.67000", + "end": "646.77000", + "feature": { + "word": "of" + }, + "id": 1561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "646.77000", + "end": "646.88000", + "feature": { + "word": "a" + }, + "id": 1562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "646.88000", + "end": "647.34000", + "feature": { + "word": "texas" + }, + "id": 1563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "647.34000", + "end": "647.75000", + "feature": { + "word": "supreme" + }, + "id": 1564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "647.75000", + "end": "648.08000", + "feature": { + "word": "court" + }, + "id": 1565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "648.08000", + "end": "648.58000", + "feature": { + "word": "justice" + }, + "id": 1566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "648.77000", + "end": "648.92000", + "feature": { + "word": "and" + }, + "id": 1568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "648.92000", + "end": "649.03000", + "feature": { + "word": "the" + }, + "id": 1569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "649.03000", + "end": "649.40000", + "feature": { + "word": "daughter" + }, + "id": 1570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "649.40000", + "end": "649.48000", + "feature": { + "word": "of" + }, + "id": 1571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "649.48000", + "end": "649.56000", + "feature": { + "word": "a" + }, + "id": 1572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "649.56000", + "end": "649.93000", + "feature": { + "word": "former" + }, + "id": 1573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "649.93000", + "end": "650.20000", + "feature": { + "word": "under" + }, + "id": 1574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "650.20000", + "end": "650.77000", + "feature": { + "word": "secretary" + }, + "id": 1575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "650.77000", + "end": "650.89000", + "feature": { + "word": "of" + }, + "id": 1576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "650.89000", + "end": "651.23000", + "feature": { + "word": "state" + }, + "id": 1577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "651.44000", + "end": "651.69000", + "feature": { + "word": "gave" + }, + "id": 1579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "651.69000", + "end": "651.91000", + "feature": { + "word": "more" + }, + "id": 1580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "651.91000", + "end": "652.13000", + "feature": { + "word": "than" + }, + "id": 1581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "652.13000", + "end": "652.86000", + "feature": { + "word": "" + }, + "id": 1582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "652.86000", + "end": "653.31000", + "feature": { + "word": "million" + }, + "id": 1583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "653.66000", + "end": "653.99000", + "feature": { + "word": "both" + }, + "id": 1585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "653.99000", + "end": "654.56000", + "feature": { + "word": "garwood" + }, + "id": 1586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "654.56000", + "end": "654.88000", + "feature": { + "word": "and" + }, + "id": 1587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "654.88000", + "end": "655.40000", + "feature": { + "word": "o'boyle" + }, + "id": 1588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "655.40000", + "end": "655.95000", + "feature": { + "word": "began" + }, + "id": 1589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "655.95000", + "end": "656.10000", + "feature": { + "word": "by" + }, + "id": 1590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "656.10000", + "end": "656.75000", + "feature": { + "word": "describing" + }, + "id": 1591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "656.75000", + "end": "657.16000", + "feature": { + "word": "meetings" + }, + "id": 1592, + "attype": "vanilla-forced-alignment" + }, + { + "start": "657.16000", + "end": "657.37000", + "feature": { + "word": "they" + }, + "id": 1593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "657.37000", + "end": "657.70000", + "feature": { + "word": "had" + }, + "id": 1594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "657.80000", + "end": "658.13000", + "feature": { + "word": "with" + }, + "id": 1596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "658.13000", + "end": "658.55000", + "feature": { + "word": "north" + }, + "id": 1597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "658.73000", + "end": "659.01000", + "feature": { + "word": "and" + }, + "id": 1599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "659.01000", + "end": "659.25000", + "feature": { + "word": "with" + }, + "id": 1600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "659.25000", + "end": "659.83000", + "feature": { + "word": "fundraiser" + }, + "id": 1601, + "attype": "vanilla-forced-alignment" + }, + { + "start": "659.83000", + "end": "660.26000", + "feature": { + "word": "carl" + }, + "id": 1602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "660.26000", + "end": "660.75000", + "feature": { + "word": "channell" + }, + "id": 1603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "660.96000", + "end": "661.09000", + "feature": { + "word": "who" + }, + "id": 1605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "661.12000", + "end": "661.55000", + "feature": { + "word": "recently" + }, + "id": 1607, + "attype": "vanilla-forced-alignment" + }, + { + "start": "661.55000", + "end": "661.87000", + "feature": { + "word": "pled" + }, + "id": 1608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "661.87000", + "end": "662.27000", + "feature": { + "word": "guilty" + }, + "id": 1609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "662.27000", + "end": "662.39000", + "feature": { + "word": "to" + }, + "id": 1610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "662.39000", + "end": "662.88000", + "feature": { + "word": "charges" + }, + "id": 1611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "662.88000", + "end": "663.32000", + "feature": { + "word": "filed" + }, + "id": 1612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "663.32000", + "end": "663.50000", + "feature": { + "word": "by" + }, + "id": 1613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "663.50000", + "end": "663.66000", + "feature": { + "word": "the" + }, + "id": 1614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "663.66000", + "end": "664.20000", + "feature": { + "word": "independent" + }, + "id": 1615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "664.20000", + "end": "664.70000", + "feature": { + "word": "counsel" + }, + "id": 1616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "664.70000", + "end": "665.06000", + "feature": { + "word": "lawrence" + }, + "id": 1617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "665.06000", + "end": "665.61000", + "feature": { + "word": "walsh" + }, + "id": 1618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "666.12000", + "end": "666.38000", + "feature": { + "word": "mr" + }, + "id": 1620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "666.38000", + "end": "666.73000", + "feature": { + "word": "channell" + }, + "id": 1621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "666.73000", + "end": "666.99000", + "feature": { + "word": "said" + }, + "id": 1622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "666.99000", + "end": "667.18000", + "feature": { + "word": "that" + }, + "id": 1623, + "attype": "vanilla-forced-alignment" + }, + { + "start": "667.18000", + "end": "667.35000", + "feature": { + "word": "there" + }, + "id": 1624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "667.35000", + "end": "667.63000", + "feature": { + "word": "was" + }, + "id": 1625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "667.63000", + "end": "668.00000", + "feature": { + "word": "a" + }, + "id": 1626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "668.09000", + "end": "668.90000", + "feature": { + "word": "crisis" + }, + "id": 1628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "668.95000", + "end": "669.07000", + "feature": { + "word": "in" + }, + "id": 1630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "669.07000", + "end": "669.15000", + "feature": { + "word": "the" + }, + "id": 1631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "669.15000", + "end": "669.83000", + "feature": { + "word": "situation" + }, + "id": 1632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "669.83000", + "end": "670.13000", + "feature": { + "word": "of" + }, + "id": 1633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "670.13000", + "end": "670.38000", + "feature": { + "word": "the" + }, + "id": 1634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "671.13000", + "end": "671.47000", + "feature": { + "word": "freedom" + }, + "id": 1636, + "attype": "vanilla-forced-alignment" + }, + { + "start": "671.47000", + "end": "672.02000", + "feature": { + "word": "fighting" + }, + "id": 1637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "672.44000", + "end": "672.97000", + "feature": { + "word": "forces" + }, + "id": 1639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "672.97000", + "end": "673.18000", + "feature": { + "word": "in" + }, + "id": 1640, + "attype": "vanilla-forced-alignment" + }, + { + "start": "673.25000", + "end": "674.04000", + "feature": { + "word": "nicaragua" + }, + "id": 1642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "674.47000", + "end": "674.92000", + "feature": { + "word": "and" + }, + "id": 1644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "674.92000", + "end": "675.30000", + "feature": { + "word": "then" + }, + "id": 1645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "676.05000", + "end": "677.53000", + "feature": { + "word": "" + }, + "id": 1647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "677.53000", + "end": "677.80000", + "feature": { + "word": "north" + }, + "id": 1648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "677.80000", + "end": "678.35000", + "feature": { + "word": "appeared" + }, + "id": 1649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "678.63000", + "end": "678.85000", + "feature": { + "word": "and" + }, + "id": 1651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "678.85000", + "end": "679.37000", + "feature": { + "word": "described" + }, + "id": 1652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "679.52000", + "end": "679.70000", + "feature": { + "word": "this" + }, + "id": 1654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "679.70000", + "end": "680.26000", + "feature": { + "word": "crisis" + }, + "id": 1655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "681.94000", + "end": "682.03000", + "feature": { + "word": "tom" + }, + "id": 1657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "682.03000", + "end": "682.23000", + "feature": { + "word": "fryman" + }, + "id": 1658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "682.23000", + "end": "682.38000", + "feature": { + "word": "house" + }, + "id": 1659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "682.38000", + "end": "682.50000", + "feature": { + "word": "staff" + }, + "id": 1660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "682.50000", + "end": "683.06000", + "feature": { + "word": "" + }, + "id": 1661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "683.06000", + "end": "683.15000", + "feature": { + "word": "was" + }, + "id": 1662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "683.15000", + "end": "683.26000", + "feature": { + "word": "there" + }, + "id": 1663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "683.26000", + "end": "683.35000", + "feature": { + "word": "any" + }, + "id": 1664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "683.39000", + "end": "684.06000", + "feature": { + "word": "discussion" + }, + "id": 1666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "684.06000", + "end": "684.19000", + "feature": { + "word": "of" + }, + "id": 1667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "684.19000", + "end": "684.40000", + "feature": { + "word": "any" + }, + "id": 1668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "684.40000", + "end": "685.11000", + "feature": { + "word": "particular" + }, + "id": 1669, + "attype": "vanilla-forced-alignment" + }, + { + "start": "685.11000", + "end": "685.79000", + "feature": { + "word": "needs" + }, + "id": 1670, + "attype": "vanilla-forced-alignment" + }, + { + "start": "685.79000", + "end": "685.96000", + "feature": { + "word": "of" + }, + "id": 1671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "685.96000", + "end": "686.16000", + "feature": { + "word": "the" + }, + "id": 1672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "686.16000", + "end": "686.78000", + "feature": { + "word": "resistance" + }, + "id": 1673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "686.78000", + "end": "687.31000", + "feature": { + "word": "forces" + }, + "id": 1674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "687.31000", + "end": "687.39000", + "feature": { + "word": "in" + }, + "id": 1675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "687.39000", + "end": "688.02000", + "feature": { + "word": "nicaragua" + }, + "id": 1676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "688.47000", + "end": "688.68000", + "feature": { + "word": "ms" + }, + "id": 1678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "688.68000", + "end": "688.74000", + "feature": { + "word": "he" + }, + "id": 1679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "688.74000", + "end": "688.98000", + "feature": { + "word": "said" + }, + "id": 1680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "688.98000", + "end": "689.19000", + "feature": { + "word": "that" + }, + "id": 1681, + "attype": "vanilla-forced-alignment" + }, + { + "start": "689.19000", + "end": "689.38000", + "feature": { + "word": "they" + }, + "id": 1682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "689.38000", + "end": "689.67000", + "feature": { + "word": "were" + }, + "id": 1683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "689.67000", + "end": "690.00000", + "feature": { + "word": "in" + }, + "id": 1684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "691.08000", + "end": "691.57000", + "feature": { + "word": "" + }, + "id": 1686, + "attype": "vanilla-forced-alignment" + }, + { + "start": "691.57000", + "end": "692.19000", + "feature": { + "word": "condition" + }, + "id": 1687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "692.74000", + "end": "693.44000", + "feature": { + "word": "that" + }, + "id": 1689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "693.44000", + "end": "693.57000", + "feature": { + "word": "they" + }, + "id": 1690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "693.57000", + "end": "693.66000", + "feature": { + "word": "were" + }, + "id": 1691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "693.66000", + "end": "693.93000", + "feature": { + "word": "out" + }, + "id": 1692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "693.93000", + "end": "694.02000", + "feature": { + "word": "of" + }, + "id": 1693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "694.02000", + "end": "694.66000", + "feature": { + "word": "food" + }, + "id": 1694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "694.96000", + "end": "695.21000", + "feature": { + "word": "they" + }, + "id": 1696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "695.21000", + "end": "696.40000", + "feature": { + "word": "were" + }, + "id": 1697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "697.32000", + "end": "697.45000", + "feature": { + "word": "out" + }, + "id": 1699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "697.69000", + "end": "697.87000", + "feature": { + "word": "of" + }, + "id": 1701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "698.12000", + "end": "698.79000", + "feature": { + "word": "clothes" + }, + "id": 1703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "698.79000", + "end": "699.42000", + "feature": { + "word": "and" + }, + "id": 1704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "699.42000", + "end": "700.01000", + "feature": { + "word": "medicine" + }, + "id": 1705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "700.22000", + "end": "700.84000", + "feature": { + "word": "" + }, + "id": 1707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "700.94000", + "end": "701.18000", + "feature": { + "word": "other" + }, + "id": 1709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "701.18000", + "end": "702.05000", + "feature": { + "word": "necessities" + }, + "id": 1710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "702.51000", + "end": "702.55000", + "feature": { + "word": "" + }, + "id": 1712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "702.55000", + "end": "702.96000", + "feature": { + "word": "and" + }, + "id": 1713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "702.96000", + "end": "703.95000", + "feature": { + "word": "also" + }, + "id": 1714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "704.11000", + "end": "704.62000", + "feature": { + "word": "practically" + }, + "id": 1716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "704.62000", + "end": "704.74000", + "feature": { + "word": "out" + }, + "id": 1717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "704.74000", + "end": "704.80000", + "feature": { + "word": "of" + }, + "id": 1718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "704.80000", + "end": "705.34000", + "feature": { + "word": "weapons" + }, + "id": 1719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "705.92000", + "end": "706.07000", + "feature": { + "word": "mr" + }, + "id": 1721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "706.07000", + "end": "706.41000", + "feature": { + "word": "what" + }, + "id": 1722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "706.41000", + "end": "706.62000", + "feature": { + "word": "was" + }, + "id": 1723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "706.62000", + "end": "707.51000", + "feature": { + "word": "said" + }, + "id": 1724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "707.51000", + "end": "707.67000", + "feature": { + "word": "in" + }, + "id": 1725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "707.67000", + "end": "707.89000", + "feature": { + "word": "that" + }, + "id": 1726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "707.89000", + "end": "708.34000", + "feature": { + "word": "meeting" + }, + "id": 1727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "708.34000", + "end": "709.13000", + "feature": { + "word": "between" + }, + "id": 1728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "709.29000", + "end": "709.60000", + "feature": { + "word": "mr" + }, + "id": 1730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "709.60000", + "end": "710.06000", + "feature": { + "word": "channell" + }, + "id": 1731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "710.06000", + "end": "710.18000", + "feature": { + "word": "and" + }, + "id": 1732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "710.18000", + "end": "710.47000", + "feature": { + "word": "" + }, + "id": 1733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "710.47000", + "end": "710.85000", + "feature": { + "word": "north" + }, + "id": 1734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "710.85000", + "end": "711.11000", + "feature": { + "word": "about" + }, + "id": 1735, + "attype": "vanilla-forced-alignment" + }, + { + "start": "711.14000", + "end": "711.65000", + "feature": { + "word": "weapons" + }, + "id": 1737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "713.06000", + "end": "713.64000", + "feature": { + "word": "ms" + }, + "id": 1739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "713.64000", + "end": "714.20000", + "feature": { + "word": "" + }, + "id": 1740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "714.20000", + "end": "714.46000", + "feature": { + "word": "north" + }, + "id": 1741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "714.46000", + "end": "714.65000", + "feature": { + "word": "had" + }, + "id": 1742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "714.65000", + "end": "715.03000", + "feature": { + "word": "said" + }, + "id": 1743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "715.03000", + "end": "715.72000", + "feature": { + "word": "also" + }, + "id": 1744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "715.79000", + "end": "716.66000", + "feature": { + "word": "that" + }, + "id": 1746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "716.66000", + "end": "716.82000", + "feature": { + "word": "they" + }, + "id": 1747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "716.82000", + "end": "717.11000", + "feature": { + "word": "might" + }, + "id": 1748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "717.11000", + "end": "717.36000", + "feature": { + "word": "cease" + }, + "id": 1749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "717.36000", + "end": "717.46000", + "feature": { + "word": "to" + }, + "id": 1750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "717.46000", + "end": "718.13000", + "feature": { + "word": "exist" + }, + "id": 1751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "718.32000", + "end": "718.52000", + "feature": { + "word": "if" + }, + "id": 1753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "718.52000", + "end": "718.85000", + "feature": { + "word": "something" + }, + "id": 1754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "718.85000", + "end": "719.09000", + "feature": { + "word": "weren't" + }, + "id": 1755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "719.09000", + "end": "719.30000", + "feature": { + "word": "done" + }, + "id": 1756, + "attype": "vanilla-forced-alignment" + }, + { + "start": "719.30000", + "end": "719.57000", + "feature": { + "word": "about" + }, + "id": 1757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "719.57000", + "end": "719.76000", + "feature": { + "word": "these" + }, + "id": 1758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "719.76000", + "end": "720.20000", + "feature": { + "word": "various" + }, + "id": 1759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "720.25000", + "end": "720.84000", + "feature": { + "word": "needs" + }, + "id": 1761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "721.40000", + "end": "722.07000", + "feature": { + "word": "and" + }, + "id": 1763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "722.36000", + "end": "723.00000", + "feature": { + "word": "then" + }, + "id": 1765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "723.04000", + "end": "723.47000", + "feature": { + "word": "mr" + }, + "id": 1767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "723.47000", + "end": "723.86000", + "feature": { + "word": "channell" + }, + "id": 1768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "723.86000", + "end": "724.03000", + "feature": { + "word": "and" + }, + "id": 1769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "724.03000", + "end": "724.31000", + "feature": { + "word": "" + }, + "id": 1770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "724.31000", + "end": "724.65000", + "feature": { + "word": "north" + }, + "id": 1771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "724.98000", + "end": "726.00000", + "feature": { + "word": "spoke" + }, + "id": 1773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "726.21000", + "end": "726.68000", + "feature": { + "word": "in" + }, + "id": 1775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "726.68000", + "end": "726.88000", + "feature": { + "word": "low" + }, + "id": 1776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "726.88000", + "end": "727.30000", + "feature": { + "word": "tones" + }, + "id": 1777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "727.30000", + "end": "727.40000", + "feature": { + "word": "to" + }, + "id": 1778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "727.40000", + "end": "727.59000", + "feature": { + "word": "each" + }, + "id": 1779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "727.59000", + "end": "727.89000", + "feature": { + "word": "other" + }, + "id": 1780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "727.89000", + "end": "728.42000", + "feature": { + "word": "and" + }, + "id": 1781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "729.10000", + "end": "729.65000", + "feature": { + "word": "after" + }, + "id": 1783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "729.72000", + "end": "729.90000", + "feature": { + "word": "they" + }, + "id": 1785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "729.90000", + "end": "730.05000", + "feature": { + "word": "had" + }, + "id": 1786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "730.05000", + "end": "730.63000", + "feature": { + "word": "finished" + }, + "id": 1787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "732.50000", + "end": "732.80000", + "feature": { + "word": "mr" + }, + "id": 1789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "732.80000", + "end": "733.25000", + "feature": { + "word": "channell" + }, + "id": 1790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "733.47000", + "end": "733.87000", + "feature": { + "word": "produced" + }, + "id": 1792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "733.87000", + "end": "733.96000", + "feature": { + "word": "a" + }, + "id": 1793, + "attype": "vanilla-forced-alignment" + }, + { + "start": "733.96000", + "end": "734.57000", + "feature": { + "word": "list" + }, + "id": 1794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "734.66000", + "end": "735.41000", + "feature": { + "word": "of" + }, + "id": 1796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "735.46000", + "end": "736.02000", + "feature": { + "word": "weapons" + }, + "id": 1798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "736.07000", + "end": "736.20000", + "feature": { + "word": "that" + }, + "id": 1800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "736.20000", + "end": "736.32000", + "feature": { + "word": "they" + }, + "id": 1801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "736.32000", + "end": "736.73000", + "feature": { + "word": "needed" + }, + "id": 1802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "737.63000", + "end": "737.80000", + "feature": { + "word": "mr" + }, + "id": 1804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "737.80000", + "end": "738.11000", + "feature": { + "word": "could" + }, + "id": 1805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "738.11000", + "end": "738.22000", + "feature": { + "word": "you" + }, + "id": 1806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "738.22000", + "end": "738.61000", + "feature": { + "word": "tell" + }, + "id": 1807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "738.61000", + "end": "738.79000", + "feature": { + "word": "that" + }, + "id": 1808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "738.79000", + "end": "739.09000", + "feature": { + "word": "mr" + }, + "id": 1809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "739.09000", + "end": "739.60000", + "feature": { + "word": "channell" + }, + "id": 1810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "739.60000", + "end": "739.79000", + "feature": { + "word": "and" + }, + "id": 1811, + "attype": "vanilla-forced-alignment" + }, + { + "start": "739.79000", + "end": "740.09000", + "feature": { + "word": "" + }, + "id": 1812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "740.09000", + "end": "740.48000", + "feature": { + "word": "north" + }, + "id": 1813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "740.48000", + "end": "740.67000", + "feature": { + "word": "were" + }, + "id": 1814, + "attype": "vanilla-forced-alignment" + }, + { + "start": "740.67000", + "end": "741.38000", + "feature": { + "word": "discussing" + }, + "id": 1815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "741.38000", + "end": "742.07000", + "feature": { + "word": "weapons" + }, + "id": 1816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "742.35000", + "end": "742.60000", + "feature": { + "word": "in" + }, + "id": 1818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "742.60000", + "end": "742.85000", + "feature": { + "word": "this" + }, + "id": 1819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "742.85000", + "end": "743.19000", + "feature": { + "word": "lowered" + }, + "id": 1820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "743.19000", + "end": "743.65000", + "feature": { + "word": "voice" + }, + "id": 1821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "744.13000", + "end": "744.37000", + "feature": { + "word": "ms" + }, + "id": 1823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "744.76000", + "end": "745.05000", + "feature": { + "word": "it" + }, + "id": 1825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "745.05000", + "end": "745.50000", + "feature": { + "word": "only" + }, + "id": 1826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "745.80000", + "end": "746.40000", + "feature": { + "word": "seemed" + }, + "id": 1828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "746.48000", + "end": "747.16000", + "feature": { + "word": "that" + }, + "id": 1830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "747.16000", + "end": "747.29000", + "feature": { + "word": "they" + }, + "id": 1831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "747.29000", + "end": "747.75000", + "feature": { + "word": "were" + }, + "id": 1832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "747.75000", + "end": "748.39000", + "feature": { + "word": "after" + }, + "id": 1833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "748.39000", + "end": "748.69000", + "feature": { + "word": "this" + }, + "id": 1834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "748.83000", + "end": "749.12000", + "feature": { + "word": "list" + }, + "id": 1836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "749.12000", + "end": "749.49000", + "feature": { + "word": "appeared" + }, + "id": 1837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "750.06000", + "end": "750.34000", + "feature": { + "word": "mr" + }, + "id": 1839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "750.34000", + "end": "750.62000", + "feature": { + "word": "and" + }, + "id": 1840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "750.62000", + "end": "750.81000", + "feature": { + "word": "did" + }, + "id": 1841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "750.81000", + "end": "751.11000", + "feature": { + "word": "mr" + }, + "id": 1842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "751.11000", + "end": "751.51000", + "feature": { + "word": "channell" + }, + "id": 1843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "751.51000", + "end": "751.73000", + "feature": { + "word": "give" + }, + "id": 1844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "751.73000", + "end": "751.86000", + "feature": { + "word": "you" + }, + "id": 1845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "751.86000", + "end": "752.11000", + "feature": { + "word": "this" + }, + "id": 1846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "752.11000", + "end": "752.54000", + "feature": { + "word": "list" + }, + "id": 1847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "752.71000", + "end": "752.82000", + "feature": { + "word": "ms" + }, + "id": 1849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "753.02000", + "end": "753.26000", + "feature": { + "word": "yes" + }, + "id": 1851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "753.26000", + "end": "753.36000", + "feature": { + "word": "he" + }, + "id": 1852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "753.36000", + "end": "753.77000", + "feature": { + "word": "did" + }, + "id": 1853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "754.03000", + "end": "754.20000", + "feature": { + "word": "mr" + }, + "id": 1855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "754.20000", + "end": "754.62000", + "feature": { + "word": "and" + }, + "id": 1856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "754.62000", + "end": "754.84000", + "feature": { + "word": "could" + }, + "id": 1857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "754.84000", + "end": "754.94000", + "feature": { + "word": "you" + }, + "id": 1858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "754.94000", + "end": "755.47000", + "feature": { + "word": "describe" + }, + "id": 1859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "755.47000", + "end": "755.59000", + "feature": { + "word": "the" + }, + "id": 1860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "755.59000", + "end": "755.94000", + "feature": { + "word": "list" + }, + "id": 1861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "755.94000", + "end": "756.63000", + "feature": { + "word": "what" + }, + "id": 1862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "756.63000", + "end": "756.80000", + "feature": { + "word": "sort" + }, + "id": 1863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "756.80000", + "end": "756.90000", + "feature": { + "word": "of" + }, + "id": 1864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "756.90000", + "end": "757.57000", + "feature": { + "word": "information" + }, + "id": 1865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "757.57000", + "end": "757.75000", + "feature": { + "word": "was" + }, + "id": 1866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "757.75000", + "end": "757.92000", + "feature": { + "word": "on" + }, + "id": 1867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "757.92000", + "end": "758.04000", + "feature": { + "word": "it" + }, + "id": 1868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "758.04000", + "end": "758.13000", + "feature": { + "word": "ms" + }, + "id": 1869, + "attype": "vanilla-forced-alignment" + }, + { + "start": "758.13000", + "end": "758.29000", + "feature": { + "word": "the" + }, + "id": 1870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "758.29000", + "end": "758.73000", + "feature": { + "word": "list" + }, + "id": 1871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "758.73000", + "end": "759.18000", + "feature": { + "word": "had" + }, + "id": 1872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "759.24000", + "end": "759.63000", + "feature": { + "word": "different" + }, + "id": 1874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "759.63000", + "end": "760.23000", + "feature": { + "word": "categories" + }, + "id": 1875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "760.23000", + "end": "760.38000", + "feature": { + "word": "of" + }, + "id": 1876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "760.38000", + "end": "761.00000", + "feature": { + "word": "weapons" + }, + "id": 1877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "761.21000", + "end": "761.93000", + "feature": { + "word": "had" + }, + "id": 1879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "761.96000", + "end": "762.59000", + "feature": { + "word": "hand" + }, + "id": 1881, + "attype": "vanilla-forced-alignment" + }, + { + "start": "762.59000", + "end": "763.10000", + "feature": { + "word": "grenades" + }, + "id": 1882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "763.10000", + "end": "763.28000", + "feature": { + "word": "i" + }, + "id": 1883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "763.28000", + "end": "764.53000", + "feature": { + "word": "remember" + }, + "id": 1884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "765.43000", + "end": "765.82000", + "feature": { + "word": "and" + }, + "id": 1886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "766.77000", + "end": "767.52000", + "feature": { + "word": "bullets" + }, + "id": 1888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "767.85000", + "end": "768.38000", + "feature": { + "word": "cartridge" + }, + "id": 1890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "768.38000", + "end": "768.91000", + "feature": { + "word": "belts" + }, + "id": 1891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "769.04000", + "end": "769.88000", + "feature": { + "word": "possibly" + }, + "id": 1893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "769.91000", + "end": "770.90000", + "feature": { + "word": "surface" + }, + "id": 1895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "770.90000", + "end": "771.00000", + "feature": { + "word": "to" + }, + "id": 1896, + "attype": "vanilla-forced-alignment" + }, + { + "start": "771.00000", + "end": "771.41000", + "feature": { + "word": "air" + }, + "id": 1897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "771.48000", + "end": "772.16000", + "feature": { + "word": "missiles" + }, + "id": 1899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "773.13000", + "end": "773.67000", + "feature": { + "word": "and" + }, + "id": 1901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "773.67000", + "end": "773.90000", + "feature": { + "word": "they" + }, + "id": 1902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "773.90000", + "end": "774.76000", + "feature": { + "word": "were" + }, + "id": 1903, + "attype": "vanilla-forced-alignment" + }, + { + "start": "775.39000", + "end": "776.59000", + "feature": { + "word": "quantities" + }, + "id": 1905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "776.65000", + "end": "777.22000", + "feature": { + "word": "opposite" + }, + "id": 1907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "777.22000", + "end": "777.54000", + "feature": { + "word": "each" + }, + "id": 1908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "777.54000", + "end": "778.27000", + "feature": { + "word": "category" + }, + "id": 1909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "778.27000", + "end": "778.63000", + "feature": { + "word": "and" + }, + "id": 1910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "778.63000", + "end": "779.04000", + "feature": { + "word": "after" + }, + "id": 1911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "779.04000", + "end": "779.35000", + "feature": { + "word": "that" + }, + "id": 1912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "779.35000", + "end": "779.55000", + "feature": { + "word": "there" + }, + "id": 1913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "779.55000", + "end": "779.79000", + "feature": { + "word": "was" + }, + "id": 1914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "779.90000", + "end": "780.38000", + "feature": { + "word": "a" + }, + "id": 1916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "781.25000", + "end": "781.56000", + "feature": { + "word": "sum" + }, + "id": 1918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "781.56000", + "end": "781.67000", + "feature": { + "word": "of" + }, + "id": 1919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "781.67000", + "end": "782.05000", + "feature": { + "word": "money" + }, + "id": 1920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "782.12000", + "end": "782.34000", + "feature": { + "word": "that" + }, + "id": 1922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "782.34000", + "end": "782.52000", + "feature": { + "word": "was" + }, + "id": 1923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "782.52000", + "end": "783.19000", + "feature": { + "word": "needed" + }, + "id": 1924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "783.24000", + "end": "783.47000", + "feature": { + "word": "in" + }, + "id": 1926, + "attype": "vanilla-forced-alignment" + }, + { + "start": "783.47000", + "end": "783.69000", + "feature": { + "word": "order" + }, + "id": 1927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "783.69000", + "end": "783.85000", + "feature": { + "word": "to" + }, + "id": 1928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "783.85000", + "end": "784.36000", + "feature": { + "word": "provide" + }, + "id": 1929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "784.36000", + "end": "784.60000", + "feature": { + "word": "those" + }, + "id": 1930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "784.60000", + "end": "784.94000", + "feature": { + "word": "weapons" + }, + "id": 1931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "784.94000", + "end": "784.97000", + "feature": { + "word": "" + }, + "id": 1932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "784.97000", + "end": "785.11000", + "feature": { + "word": "what" + }, + "id": 1933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "785.11000", + "end": "785.33000", + "feature": { + "word": "those" + }, + "id": 1934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "785.33000", + "end": "785.67000", + "feature": { + "word": "weapons" + }, + "id": 1935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "785.67000", + "end": "785.83000", + "feature": { + "word": "would" + }, + "id": 1936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "785.83000", + "end": "786.41000", + "feature": { + "word": "cost" + }, + "id": 1937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "786.86000", + "end": "787.04000", + "feature": { + "word": "mr" + }, + "id": 1939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "787.04000", + "end": "787.23000", + "feature": { + "word": "was" + }, + "id": 1940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "787.23000", + "end": "787.41000", + "feature": { + "word": "there" + }, + "id": 1941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "787.41000", + "end": "787.52000", + "feature": { + "word": "an" + }, + "id": 1942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "787.52000", + "end": "787.83000", + "feature": { + "word": "amount" + }, + "id": 1943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "787.83000", + "end": "787.93000", + "feature": { + "word": "of" + }, + "id": 1944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "787.93000", + "end": "788.21000", + "feature": { + "word": "money" + }, + "id": 1945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "788.21000", + "end": "788.41000", + "feature": { + "word": "for" + }, + "id": 1946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "788.41000", + "end": "788.66000", + "feature": { + "word": "each" + }, + "id": 1947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "788.66000", + "end": "789.00000", + "feature": { + "word": "type" + }, + "id": 1948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "789.00000", + "end": "789.12000", + "feature": { + "word": "of" + }, + "id": 1949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "789.12000", + "end": "789.55000", + "feature": { + "word": "weapon" + }, + "id": 1950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "789.63000", + "end": "789.72000", + "feature": { + "word": "ms" + }, + "id": 1952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "790.59000", + "end": "790.93000", + "feature": { + "word": "yes" + }, + "id": 1954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "790.93000", + "end": "791.10000", + "feature": { + "word": "sir" + }, + "id": 1955, + "attype": "vanilla-forced-alignment" + }, + { + "start": "791.10000", + "end": "791.25000", + "feature": { + "word": "mr" + }, + "id": 1956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "791.36000", + "end": "791.77000", + "feature": { + "word": "and" + }, + "id": 1958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "791.77000", + "end": "791.95000", + "feature": { + "word": "was" + }, + "id": 1959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "791.95000", + "end": "792.05000", + "feature": { + "word": "there" + }, + "id": 1960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "792.05000", + "end": "792.49000", + "feature": { + "word": "also" + }, + "id": 1961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "792.49000", + "end": "792.57000", + "feature": { + "word": "a" + }, + "id": 1962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "792.57000", + "end": "793.03000", + "feature": { + "word": "total" + }, + "id": 1963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "793.03000", + "end": "793.58000", + "feature": { + "word": "amount" + }, + "id": 1964, + "attype": "vanilla-forced-alignment" + }, + { + "start": "793.58000", + "end": "793.68000", + "feature": { + "word": "ms" + }, + "id": 1965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "793.71000", + "end": "793.83000", + "feature": { + "word": "i" + }, + "id": 1967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "793.83000", + "end": "794.08000", + "feature": { + "word": "think" + }, + "id": 1968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "794.08000", + "end": "794.21000", + "feature": { + "word": "there" + }, + "id": 1969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "794.21000", + "end": "794.46000", + "feature": { + "word": "was" + }, + "id": 1970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "794.46000", + "end": "794.55000", + "feature": { + "word": "a" + }, + "id": 1971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "794.55000", + "end": "794.81000", + "feature": { + "word": "total" + }, + "id": 1972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "794.81000", + "end": "795.16000", + "feature": { + "word": "amount" + }, + "id": 1973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "795.16000", + "end": "795.53000", + "feature": { + "word": "yes" + }, + "id": 1974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "795.58000", + "end": "795.76000", + "feature": { + "word": "mr" + }, + "id": 1976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "795.76000", + "end": "795.95000", + "feature": { + "word": "what" + }, + "id": 1977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "795.95000", + "end": "796.11000", + "feature": { + "word": "was" + }, + "id": 1978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "796.11000", + "end": "796.25000", + "feature": { + "word": "the" + }, + "id": 1979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "796.25000", + "end": "796.98000", + "feature": { + "word": "approximate" + }, + "id": 1980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "796.98000", + "end": "797.33000", + "feature": { + "word": "total" + }, + "id": 1981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "797.33000", + "end": "797.62000", + "feature": { + "word": "amount" + }, + "id": 1982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "797.62000", + "end": "797.71000", + "feature": { + "word": "ms" + }, + "id": 1983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "798.08000", + "end": "798.20000", + "feature": { + "word": "the" + }, + "id": 1985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "798.20000", + "end": "798.84000", + "feature": { + "word": "approximate" + }, + "id": 1986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "798.84000", + "end": "799.08000", + "feature": { + "word": "total" + }, + "id": 1987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "799.08000", + "end": "799.47000", + "feature": { + "word": "amount" + }, + "id": 1988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "799.47000", + "end": "799.66000", + "feature": { + "word": "was" + }, + "id": 1989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "799.71000", + "end": "800.06000", + "feature": { + "word": "over" + }, + "id": 1991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "800.06000", + "end": "800.12000", + "feature": { + "word": "a" + }, + "id": 1992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "800.12000", + "end": "800.46000", + "feature": { + "word": "million" + }, + "id": 1993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "800.46000", + "end": "801.14000", + "feature": { + "word": "dollars" + }, + "id": 1994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "801.33000", + "end": "801.76000", + "feature": { + "word": "i'm" + }, + "id": 1996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "802.79000", + "end": "803.26000", + "feature": { + "word": "not" + }, + "id": 1998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "803.26000", + "end": "803.62000", + "feature": { + "word": "sure" + }, + "id": 1999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "803.62000", + "end": "803.87000", + "feature": { + "word": "just" + }, + "id": 2000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "803.87000", + "end": "804.41000", + "feature": { + "word": "exactly" + }, + "id": 2001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "804.41000", + "end": "804.58000", + "feature": { + "word": "what" + }, + "id": 2002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "804.58000", + "end": "804.67000", + "feature": { + "word": "it" + }, + "id": 2003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "804.67000", + "end": "804.97000", + "feature": { + "word": "was" + }, + "id": 2004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "805.61000", + "end": "806.20000", + "feature": { + "word": "probably" + }, + "id": 2006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "806.20000", + "end": "806.23000", + "feature": { + "word": "a" + }, + "id": 2007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "806.23000", + "end": "806.54000", + "feature": { + "word": "million" + }, + "id": 2008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "806.54000", + "end": "806.63000", + "feature": { + "word": "and" + }, + "id": 2009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "806.63000", + "end": "806.68000", + "feature": { + "word": "a" + }, + "id": 2010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "806.68000", + "end": "807.05000", + "feature": { + "word": "half" + }, + "id": 2011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "807.05000", + "end": "807.29000", + "feature": { + "word": "something" + }, + "id": 2012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "807.29000", + "end": "807.49000", + "feature": { + "word": "like" + }, + "id": 2013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "807.49000", + "end": "807.69000", + "feature": { + "word": "that" + }, + "id": 2014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "807.69000", + "end": "807.84000", + "feature": { + "word": "mr" + }, + "id": 2015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "808.76000", + "end": "808.86000", + "feature": { + "word": "did" + }, + "id": 2017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "808.86000", + "end": "810.33000", + "feature": { + "word": "" + }, + "id": 2018, + "attype": "vanilla-forced-alignment" + }, + { + "start": "810.33000", + "end": "810.96000", + "feature": { + "word": "north" + }, + "id": 2019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "810.96000", + "end": "811.42000", + "feature": { + "word": "in" + }, + "id": 2020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "811.42000", + "end": "811.63000", + "feature": { + "word": "this" + }, + "id": 2021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "811.63000", + "end": "812.11000", + "feature": { + "word": "meeting" + }, + "id": 2022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "812.11000", + "end": "812.57000", + "feature": { + "word": "ask" + }, + "id": 2023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "812.57000", + "end": "812.77000", + "feature": { + "word": "you" + }, + "id": 2024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "812.77000", + "end": "812.91000", + "feature": { + "word": "to" + }, + "id": 2025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "812.91000", + "end": "813.24000", + "feature": { + "word": "make" + }, + "id": 2026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "813.24000", + "end": "813.35000", + "feature": { + "word": "a" + }, + "id": 2027, + "attype": "vanilla-forced-alignment" + }, + { + "start": "813.35000", + "end": "814.37000", + "feature": { + "word": "contribution" + }, + "id": 2028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "814.37000", + "end": "814.54000", + "feature": { + "word": "for" + }, + "id": 2029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "814.54000", + "end": "815.11000", + "feature": { + "word": "weapons" + }, + "id": 2030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "816.38000", + "end": "816.65000", + "feature": { + "word": "ms" + }, + "id": 2032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "816.70000", + "end": "817.05000", + "feature": { + "word": "no" + }, + "id": 2034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "817.19000", + "end": "817.44000", + "feature": { + "word": "" + }, + "id": 2036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "817.44000", + "end": "817.71000", + "feature": { + "word": "north" + }, + "id": 2037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "817.71000", + "end": "817.84000", + "feature": { + "word": "did" + }, + "id": 2038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "817.84000", + "end": "818.00000", + "feature": { + "word": "not" + }, + "id": 2039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "818.00000", + "end": "818.15000", + "feature": { + "word": "mr" + }, + "id": 2040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "818.70000", + "end": "819.11000", + "feature": { + "word": "did" + }, + "id": 2042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "819.30000", + "end": "819.67000", + "feature": { + "word": "mr" + }, + "id": 2044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "819.67000", + "end": "820.05000", + "feature": { + "word": "channell" + }, + "id": 2045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "820.05000", + "end": "820.47000", + "feature": { + "word": "ask" + }, + "id": 2046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "820.47000", + "end": "820.58000", + "feature": { + "word": "you" + }, + "id": 2047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "820.58000", + "end": "820.65000", + "feature": { + "word": "to" + }, + "id": 2048, + "attype": "vanilla-forced-alignment" + }, + { + "start": "820.65000", + "end": "820.86000", + "feature": { + "word": "make" + }, + "id": 2049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "820.86000", + "end": "820.94000", + "feature": { + "word": "a" + }, + "id": 2050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "820.94000", + "end": "821.47000", + "feature": { + "word": "contribution" + }, + "id": 2051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "821.50000", + "end": "821.59000", + "feature": { + "word": "ms" + }, + "id": 2053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "821.59000", + "end": "821.74000", + "feature": { + "word": "mr" + }, + "id": 2054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "821.74000", + "end": "822.07000", + "feature": { + "word": "channell" + }, + "id": 2055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "822.07000", + "end": "822.28000", + "feature": { + "word": "did" + }, + "id": 2056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "822.28000", + "end": "822.60000", + "feature": { + "word": "after" + }, + "id": 2057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "822.60000", + "end": "822.90000", + "feature": { + "word": "" + }, + "id": 2058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "822.90000", + "end": "823.17000", + "feature": { + "word": "north" + }, + "id": 2059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "823.17000", + "end": "823.61000", + "feature": { + "word": "left" + }, + "id": 2060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "823.90000", + "end": "824.13000", + "feature": { + "word": "mr" + }, + "id": 2062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "824.13000", + "end": "824.23000", + "feature": { + "word": "what" + }, + "id": 2063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "824.23000", + "end": "824.35000", + "feature": { + "word": "did" + }, + "id": 2064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "824.35000", + "end": "824.49000", + "feature": { + "word": "he" + }, + "id": 2065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "824.49000", + "end": "824.82000", + "feature": { + "word": "say" + }, + "id": 2066, + "attype": "vanilla-forced-alignment" + }, + { + "start": "824.85000", + "end": "824.94000", + "feature": { + "word": "ms" + }, + "id": 2068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "825.10000", + "end": "825.31000", + "feature": { + "word": "he" + }, + "id": 2070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "825.31000", + "end": "825.62000", + "feature": { + "word": "said" + }, + "id": 2071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "825.85000", + "end": "826.11000", + "feature": { + "word": "this" + }, + "id": 2073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "826.11000", + "end": "826.21000", + "feature": { + "word": "is" + }, + "id": 2074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "826.21000", + "end": "826.33000", + "feature": { + "word": "the" + }, + "id": 2075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "826.33000", + "end": "826.75000", + "feature": { + "word": "list" + }, + "id": 2076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "827.02000", + "end": "827.29000", + "feature": { + "word": "of" + }, + "id": 2078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "827.29000", + "end": "827.63000", + "feature": { + "word": "things" + }, + "id": 2079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "827.63000", + "end": "828.06000", + "feature": { + "word": "needed" + }, + "id": 2080, + "attype": "vanilla-forced-alignment" + }, + { + "start": "828.06000", + "end": "828.45000", + "feature": { + "word": "" + }, + "id": 2081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "828.45000", + "end": "828.68000", + "feature": { + "word": "and" + }, + "id": 2082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "828.77000", + "end": "829.01000", + "feature": { + "word": "can" + }, + "id": 2084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "829.01000", + "end": "829.12000", + "feature": { + "word": "you" + }, + "id": 2085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "829.12000", + "end": "829.28000", + "feature": { + "word": "do" + }, + "id": 2086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "829.28000", + "end": "829.59000", + "feature": { + "word": "something" + }, + "id": 2087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "829.59000", + "end": "829.89000", + "feature": { + "word": "about" + }, + "id": 2088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "829.89000", + "end": "829.99000", + "feature": { + "word": "it" + }, + "id": 2089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "830.68000", + "end": "830.95000", + "feature": { + "word": "can" + }, + "id": 2091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "830.95000", + "end": "831.08000", + "feature": { + "word": "you" + }, + "id": 2092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "831.08000", + "end": "831.58000", + "feature": { + "word": "help" + }, + "id": 2093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "831.58000", + "end": "832.12000", + "feature": { + "word": "provide" + }, + "id": 2094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "832.50000", + "end": "832.75000", + "feature": { + "word": "william" + }, + "id": 2096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "832.75000", + "end": "832.78000", + "feature": { + "word": "o'" + }, + "id": 2097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "832.78000", + "end": "832.84000", + "feature": { + "word": "the" + }, + "id": 2098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "832.84000", + "end": "832.96000", + "feature": { + "word": "group" + }, + "id": 2099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "832.96000", + "end": "833.08000", + "feature": { + "word": "went" + }, + "id": 2100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "833.08000", + "end": "833.27000", + "feature": { + "word": "over" + }, + "id": 2101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "833.27000", + "end": "833.50000", + "feature": { + "word": "to" + }, + "id": 2102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "833.50000", + "end": "833.66000", + "feature": { + "word": "the" + }, + "id": 2103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "833.66000", + "end": "833.83000", + "feature": { + "word": "old" + }, + "id": 2104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "833.83000", + "end": "834.35000", + "feature": { + "word": "executive" + }, + "id": 2105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "834.35000", + "end": "834.89000", + "feature": { + "word": "office" + }, + "id": 2106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "834.89000", + "end": "835.56000", + "feature": { + "word": "building" + }, + "id": 2107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "836.75000", + "end": "836.96000", + "feature": { + "word": "went" + }, + "id": 2109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "836.96000", + "end": "837.17000", + "feature": { + "word": "through" + }, + "id": 2110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "837.17000", + "end": "837.79000", + "feature": { + "word": "security" + }, + "id": 2111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "837.79000", + "end": "838.04000", + "feature": { + "word": "at" + }, + "id": 2112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "838.04000", + "end": "838.33000", + "feature": { + "word": "the" + }, + "id": 2113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "838.89000", + "end": "839.11000", + "feature": { + "word": "old" + }, + "id": 2115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "839.11000", + "end": "839.57000", + "feature": { + "word": "executive" + }, + "id": 2116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "839.57000", + "end": "839.83000", + "feature": { + "word": "office" + }, + "id": 2117, + "attype": "vanilla-forced-alignment" + }, + { + "start": "839.83000", + "end": "840.17000", + "feature": { + "word": "building" + }, + "id": 2118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "840.17000", + "end": "840.24000", + "feature": { + "word": "and" + }, + "id": 2119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "840.24000", + "end": "840.37000", + "feature": { + "word": "we" + }, + "id": 2120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "840.37000", + "end": "840.55000", + "feature": { + "word": "went" + }, + "id": 2121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "840.55000", + "end": "840.63000", + "feature": { + "word": "up" + }, + "id": 2122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "840.63000", + "end": "840.73000", + "feature": { + "word": "to" + }, + "id": 2123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "840.73000", + "end": "840.81000", + "feature": { + "word": "the" + }, + "id": 2124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "840.81000", + "end": "841.45000", + "feature": { + "word": "conference" + }, + "id": 2125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "841.45000", + "end": "841.70000", + "feature": { + "word": "room" + }, + "id": 2126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "843.86000", + "end": "844.13000", + "feature": { + "word": "we" + }, + "id": 2128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "844.13000", + "end": "844.56000", + "feature": { + "word": "waited" + }, + "id": 2129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "844.56000", + "end": "844.74000", + "feature": { + "word": "for" + }, + "id": 2130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "844.77000", + "end": "845.14000", + "feature": { + "word": "" + }, + "id": 2132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "845.14000", + "end": "845.48000", + "feature": { + "word": "north" + }, + "id": 2133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "845.48000", + "end": "845.60000", + "feature": { + "word": "to" + }, + "id": 2134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "845.60000", + "end": "846.01000", + "feature": { + "word": "appear" + }, + "id": 2135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "846.37000", + "end": "846.52000", + "feature": { + "word": "mr" + }, + "id": 2137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "846.52000", + "end": "846.62000", + "feature": { + "word": "and" + }, + "id": 2138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "846.62000", + "end": "846.76000", + "feature": { + "word": "did" + }, + "id": 2139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "846.76000", + "end": "846.92000", + "feature": { + "word": "he" + }, + "id": 2140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "846.92000", + "end": "847.22000", + "feature": { + "word": "speak" + }, + "id": 2141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "847.22000", + "end": "847.31000", + "feature": { + "word": "to" + }, + "id": 2142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "847.31000", + "end": "847.41000", + "feature": { + "word": "the" + }, + "id": 2143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "847.41000", + "end": "847.69000", + "feature": { + "word": "group" + }, + "id": 2144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "847.69000", + "end": "847.84000", + "feature": { + "word": "mr" + }, + "id": 2145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "847.94000", + "end": "847.97000", + "feature": { + "word": "o'" + }, + "id": 2147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "848.03000", + "end": "848.39000", + "feature": { + "word": "yes" + }, + "id": 2149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "848.39000", + "end": "848.47000", + "feature": { + "word": "he" + }, + "id": 2150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "848.47000", + "end": "848.71000", + "feature": { + "word": "did" + }, + "id": 2151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "848.92000", + "end": "849.32000", + "feature": { + "word": "mr" + }, + "id": 2153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "849.56000", + "end": "849.71000", + "feature": { + "word": "what" + }, + "id": 2155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "849.71000", + "end": "849.82000", + "feature": { + "word": "did" + }, + "id": 2156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "849.82000", + "end": "849.95000", + "feature": { + "word": "he" + }, + "id": 2157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "849.95000", + "end": "850.20000", + "feature": { + "word": "say" + }, + "id": 2158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "850.20000", + "end": "850.35000", + "feature": { + "word": "mr" + }, + "id": 2159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "850.57000", + "end": "850.60000", + "feature": { + "word": "o'" + }, + "id": 2161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "851.57000", + "end": "851.71000", + "feature": { + "word": "he" + }, + "id": 2163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "851.71000", + "end": "852.38000", + "feature": { + "word": "described" + }, + "id": 2164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "852.38000", + "end": "853.21000", + "feature": { + "word": "the" + }, + "id": 2165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "854.17000", + "end": "855.00000", + "feature": { + "word": "military" + }, + "id": 2167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "855.00000", + "end": "855.22000", + "feature": { + "word": "and" + }, + "id": 2168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "855.22000", + "end": "855.93000", + "feature": { + "word": "political" + }, + "id": 2169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "855.93000", + "end": "856.57000", + "feature": { + "word": "situation" + }, + "id": 2170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "856.57000", + "end": "856.68000", + "feature": { + "word": "in" + }, + "id": 2171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "856.68000", + "end": "857.44000", + "feature": { + "word": "nicaragua" + }, + "id": 2172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "857.73000", + "end": "857.93000", + "feature": { + "word": "mr" + }, + "id": 2174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "857.93000", + "end": "858.03000", + "feature": { + "word": "did" + }, + "id": 2175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "858.03000", + "end": "858.31000", + "feature": { + "word": "" + }, + "id": 2176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "858.31000", + "end": "858.69000", + "feature": { + "word": "north" + }, + "id": 2177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "858.69000", + "end": "858.97000", + "feature": { + "word": "make" + }, + "id": 2178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "858.97000", + "end": "859.25000", + "feature": { + "word": "any" + }, + "id": 2179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "859.25000", + "end": "860.13000", + "feature": { + "word": "requests" + }, + "id": 2180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "860.13000", + "end": "860.50000", + "feature": { + "word": "for" + }, + "id": 2181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "860.50000", + "end": "860.71000", + "feature": { + "word": "any" + }, + "id": 2182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "860.71000", + "end": "861.86000", + "feature": { + "word": "contributions" + }, + "id": 2183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "861.86000", + "end": "862.08000", + "feature": { + "word": "from" + }, + "id": 2184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "862.08000", + "end": "862.15000", + "feature": { + "word": "the" + }, + "id": 2185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "862.15000", + "end": "862.75000", + "feature": { + "word": "persons" + }, + "id": 2186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "862.75000", + "end": "863.41000", + "feature": { + "word": "attending" + }, + "id": 2187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "863.63000", + "end": "863.86000", + "feature": { + "word": "this" + }, + "id": 2189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "863.86000", + "end": "864.22000", + "feature": { + "word": "meeting" + }, + "id": 2190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "864.22000", + "end": "864.37000", + "feature": { + "word": "in" + }, + "id": 2191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "864.37000", + "end": "864.44000", + "feature": { + "word": "the" + }, + "id": 2192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "864.44000", + "end": "865.03000", + "feature": { + "word": "conference" + }, + "id": 2193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "865.03000", + "end": "865.26000", + "feature": { + "word": "room" + }, + "id": 2194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "865.43000", + "end": "865.76000", + "feature": { + "word": "mr" + }, + "id": 2196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "865.86000", + "end": "865.89000", + "feature": { + "word": "o'" + }, + "id": 2198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "866.37000", + "end": "866.52000", + "feature": { + "word": "no" + }, + "id": 2200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "866.52000", + "end": "866.70000", + "feature": { + "word": "mr" + }, + "id": 2201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "866.70000", + "end": "867.02000", + "feature": { + "word": "did" + }, + "id": 2202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "867.02000", + "end": "867.14000", + "feature": { + "word": "you" + }, + "id": 2203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "867.14000", + "end": "867.38000", + "feature": { + "word": "have" + }, + "id": 2204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "867.38000", + "end": "867.80000", + "feature": { + "word": "any" + }, + "id": 2205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "867.80000", + "end": "869.40000", + "feature": { + "word": "discussion" + }, + "id": 2206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "869.40000", + "end": "869.57000", + "feature": { + "word": "with" + }, + "id": 2207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "869.57000", + "end": "869.86000", + "feature": { + "word": "mr" + }, + "id": 2208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "869.86000", + "end": "870.29000", + "feature": { + "word": "channell" + }, + "id": 2209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "870.29000", + "end": "870.49000", + "feature": { + "word": "that" + }, + "id": 2210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "870.49000", + "end": "870.64000", + "feature": { + "word": "evening" + }, + "id": 2211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "870.69000", + "end": "870.85000", + "feature": { + "word": "mr" + }, + "id": 2213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "871.07000", + "end": "871.10000", + "feature": { + "word": "o'" + }, + "id": 2215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "871.13000", + "end": "871.49000", + "feature": { + "word": "yes" + }, + "id": 2217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "871.49000", + "end": "871.61000", + "feature": { + "word": "he" + }, + "id": 2218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "871.61000", + "end": "871.83000", + "feature": { + "word": "asked" + }, + "id": 2219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "871.83000", + "end": "871.93000", + "feature": { + "word": "me" + }, + "id": 2220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "871.93000", + "end": "872.16000", + "feature": { + "word": "to" + }, + "id": 2221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "872.16000", + "end": "872.60000", + "feature": { + "word": "stay" + }, + "id": 2222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "872.60000", + "end": "873.06000", + "feature": { + "word": "to" + }, + "id": 2223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "873.37000", + "end": "873.67000", + "feature": { + "word": "come" + }, + "id": 2225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "873.67000", + "end": "873.73000", + "feature": { + "word": "to" + }, + "id": 2226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "873.73000", + "end": "874.29000", + "feature": { + "word": "breakfast" + }, + "id": 2227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "874.29000", + "end": "874.35000", + "feature": { + "word": "the" + }, + "id": 2228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "874.35000", + "end": "874.61000", + "feature": { + "word": "next" + }, + "id": 2229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "874.61000", + "end": "875.03000", + "feature": { + "word": "morning" + }, + "id": 2230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "875.03000", + "end": "875.35000", + "feature": { + "word": "with" + }, + "id": 2231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "876.14000", + "end": "876.67000", + "feature": { + "word": "himself" + }, + "id": 2233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "876.67000", + "end": "876.78000", + "feature": { + "word": "and" + }, + "id": 2234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "876.78000", + "end": "877.04000", + "feature": { + "word": "" + }, + "id": 2235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "877.04000", + "end": "877.55000", + "feature": { + "word": "north" + }, + "id": 2236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "877.85000", + "end": "878.00000", + "feature": { + "word": "mr" + }, + "id": 2238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.00000", + "end": "878.13000", + "feature": { + "word": "and" + }, + "id": 2239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.13000", + "end": "878.28000", + "feature": { + "word": "did" + }, + "id": 2240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.28000", + "end": "878.38000", + "feature": { + "word": "the" + }, + "id": 2241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.38000", + "end": "878.59000", + "feature": { + "word": "three" + }, + "id": 2242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.59000", + "end": "878.69000", + "feature": { + "word": "of" + }, + "id": 2243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.69000", + "end": "878.81000", + "feature": { + "word": "you" + }, + "id": 2244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.81000", + "end": "878.99000", + "feature": { + "word": "have" + }, + "id": 2245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "878.99000", + "end": "879.40000", + "feature": { + "word": "breakfast" + }, + "id": 2246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "879.40000", + "end": "879.67000", + "feature": { + "word": "together" + }, + "id": 2247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "879.67000", + "end": "879.82000", + "feature": { + "word": "mr" + }, + "id": 2248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "879.85000", + "end": "879.88000", + "feature": { + "word": "o'" + }, + "id": 2250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "880.25000", + "end": "880.64000", + "feature": { + "word": "yes" + }, + "id": 2252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "880.64000", + "end": "880.74000", + "feature": { + "word": "we" + }, + "id": 2253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "880.74000", + "end": "880.95000", + "feature": { + "word": "did" + }, + "id": 2254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "881.46000", + "end": "881.61000", + "feature": { + "word": "mr" + }, + "id": 2256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "881.61000", + "end": "882.37000", + "feature": { + "word": "what" + }, + "id": 2257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "882.37000", + "end": "882.48000", + "feature": { + "word": "did" + }, + "id": 2258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "882.48000", + "end": "882.80000", + "feature": { + "word": "mr" + }, + "id": 2259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "882.80000", + "end": "883.24000", + "feature": { + "word": "channell" + }, + "id": 2260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "883.24000", + "end": "883.58000", + "feature": { + "word": "say" + }, + "id": 2261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "883.58000", + "end": "883.85000", + "feature": { + "word": "after" + }, + "id": 2262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "883.85000", + "end": "884.20000", + "feature": { + "word": "" + }, + "id": 2263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "884.20000", + "end": "884.49000", + "feature": { + "word": "north" + }, + "id": 2264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "884.49000", + "end": "884.96000", + "feature": { + "word": "arrived" + }, + "id": 2265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "885.47000", + "end": "885.62000", + "feature": { + "word": "mr" + }, + "id": 2267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "890.23000", + "end": "890.26000", + "feature": { + "word": "o'" + }, + "id": 2269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "891.70000", + "end": "892.05000", + "feature": { + "word": "well" + }, + "id": 2271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "892.05000", + "end": "892.42000", + "feature": { + "word": "he" + }, + "id": 2272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "893.14000", + "end": "893.73000", + "feature": { + "word": "introduced" + }, + "id": 2274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "893.73000", + "end": "893.87000", + "feature": { + "word": "me" + }, + "id": 2275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "893.87000", + "end": "894.14000", + "feature": { + "word": "as" + }, + "id": 2276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "894.41000", + "end": "895.20000", + "feature": { + "word": "someone" + }, + "id": 2278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "895.24000", + "end": "895.35000", + "feature": { + "word": "who" + }, + "id": 2280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "895.35000", + "end": "895.62000", + "feature": { + "word": "was" + }, + "id": 2281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "895.62000", + "end": "896.66000", + "feature": { + "word": "willing" + }, + "id": 2282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "897.68000", + "end": "898.35000", + "feature": { + "word": "to" + }, + "id": 2284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "898.58000", + "end": "899.41000", + "feature": { + "word": "provide" + }, + "id": 2286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "899.41000", + "end": "899.72000", + "feature": { + "word": "money" + }, + "id": 2287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "899.72000", + "end": "899.97000", + "feature": { + "word": "for" + }, + "id": 2288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "899.97000", + "end": "900.48000", + "feature": { + "word": "weapons" + }, + "id": 2289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "900.48000", + "end": "900.56000", + "feature": { + "word": "i" + }, + "id": 2290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "900.56000", + "end": "900.72000", + "feature": { + "word": "don't" + }, + "id": 2291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "900.72000", + "end": "901.03000", + "feature": { + "word": "recall" + }, + "id": 2292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "901.03000", + "end": "901.15000", + "feature": { + "word": "his" + }, + "id": 2293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "901.15000", + "end": "901.57000", + "feature": { + "word": "exact" + }, + "id": 2294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "901.57000", + "end": "901.96000", + "feature": { + "word": "words" + }, + "id": 2295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "901.96000", + "end": "902.14000", + "feature": { + "word": "but" + }, + "id": 2296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "904.58000", + "end": "904.74000", + "feature": { + "word": "that" + }, + "id": 2298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "904.74000", + "end": "904.89000", + "feature": { + "word": "was" + }, + "id": 2299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "904.89000", + "end": "904.98000", + "feature": { + "word": "in" + }, + "id": 2300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "904.98000", + "end": "905.35000", + "feature": { + "word": "effect" + }, + "id": 2301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "905.35000", + "end": "905.46000", + "feature": { + "word": "what" + }, + "id": 2302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "905.46000", + "end": "905.55000", + "feature": { + "word": "he" + }, + "id": 2303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "905.55000", + "end": "905.65000", + "feature": { + "word": "said" + }, + "id": 2304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "905.65000", + "end": "905.85000", + "feature": { + "word": "mr" + }, + "id": 2305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "908.07000", + "end": "908.42000", + "feature": { + "word": "what" + }, + "id": 2307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "908.42000", + "end": "908.71000", + "feature": { + "word": "did" + }, + "id": 2308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "908.71000", + "end": "909.16000", + "feature": { + "word": "" + }, + "id": 2309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "909.16000", + "end": "909.47000", + "feature": { + "word": "north" + }, + "id": 2310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "909.47000", + "end": "909.74000", + "feature": { + "word": "say" + }, + "id": 2311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "909.74000", + "end": "909.86000", + "feature": { + "word": "in" + }, + "id": 2312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "909.86000", + "end": "910.44000", + "feature": { + "word": "response" + }, + "id": 2313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "910.44000", + "end": "910.54000", + "feature": { + "word": "to" + }, + "id": 2314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "910.54000", + "end": "910.90000", + "feature": { + "word": "this" + }, + "id": 2315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "910.90000", + "end": "911.05000", + "feature": { + "word": "mr" + }, + "id": 2316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "912.17000", + "end": "912.20000", + "feature": { + "word": "o'" + }, + "id": 2318, + "attype": "vanilla-forced-alignment" + }, + { + "start": "912.28000", + "end": "912.39000", + "feature": { + "word": "well" + }, + "id": 2320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "912.39000", + "end": "912.68000", + "feature": { + "word": "" + }, + "id": 2321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "912.68000", + "end": "913.07000", + "feature": { + "word": "north" + }, + "id": 2322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "913.07000", + "end": "913.30000", + "feature": { + "word": "made" + }, + "id": 2323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "913.30000", + "end": "913.38000", + "feature": { + "word": "the" + }, + "id": 2324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "913.38000", + "end": "913.68000", + "feature": { + "word": "point" + }, + "id": 2325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "913.68000", + "end": "913.79000", + "feature": { + "word": "that" + }, + "id": 2326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "913.79000", + "end": "913.99000", + "feature": { + "word": "he" + }, + "id": 2327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "913.99000", + "end": "914.28000", + "feature": { + "word": "could" + }, + "id": 2328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "914.28000", + "end": "914.53000", + "feature": { + "word": "not" + }, + "id": 2329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "914.53000", + "end": "914.83000", + "feature": { + "word": "ask" + }, + "id": 2330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "914.83000", + "end": "914.94000", + "feature": { + "word": "for" + }, + "id": 2331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "914.94000", + "end": "915.20000", + "feature": { + "word": "money" + }, + "id": 2332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "915.20000", + "end": "915.83000", + "feature": { + "word": "himself" + }, + "id": 2333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "915.89000", + "end": "916.13000", + "feature": { + "word": "as" + }, + "id": 2335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "916.13000", + "end": "916.31000", + "feature": { + "word": "a" + }, + "id": 2336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "916.31000", + "end": "916.72000", + "feature": { + "word": "government" + }, + "id": 2337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "916.72000", + "end": "917.47000", + "feature": { + "word": "employee" + }, + "id": 2338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "918.44000", + "end": "918.67000", + "feature": { + "word": "but" + }, + "id": 2340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "918.67000", + "end": "918.77000", + "feature": { + "word": "that" + }, + "id": 2341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "918.77000", + "end": "918.88000", + "feature": { + "word": "he" + }, + "id": 2342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "918.88000", + "end": "919.04000", + "feature": { + "word": "could" + }, + "id": 2343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "919.04000", + "end": "919.37000", + "feature": { + "word": "provide" + }, + "id": 2344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "919.37000", + "end": "920.05000", + "feature": { + "word": "information" + }, + "id": 2345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "920.86000", + "end": "921.08000", + "feature": { + "word": "and" + }, + "id": 2347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "921.08000", + "end": "921.57000", + "feature": { + "word": "he" + }, + "id": 2348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "922.99000", + "end": "923.29000", + "feature": { + "word": "did" + }, + "id": 2350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "923.29000", + "end": "923.67000", + "feature": { + "word": "that" + }, + "id": 2351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "924.01000", + "end": "924.98000", + "feature": { + "word": "he" + }, + "id": 2353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "925.57000", + "end": "925.96000", + "feature": { + "word": "began" + }, + "id": 2355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "925.96000", + "end": "926.10000", + "feature": { + "word": "to" + }, + "id": 2356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "926.10000", + "end": "927.10000", + "feature": { + "word": "explain" + }, + "id": 2357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "927.29000", + "end": "927.45000", + "feature": { + "word": "the" + }, + "id": 2359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "927.45000", + "end": "927.74000", + "feature": { + "word": "type" + }, + "id": 2360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "927.74000", + "end": "927.85000", + "feature": { + "word": "of" + }, + "id": 2361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "927.85000", + "end": "928.53000", + "feature": { + "word": "weapons" + }, + "id": 2362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "928.94000", + "end": "929.39000", + "feature": { + "word": "which" + }, + "id": 2364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "930.30000", + "end": "930.43000", + "feature": { + "word": "were" + }, + "id": 2366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "930.52000", + "end": "930.99000", + "feature": { + "word": "needed" + }, + "id": 2368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "931.61000", + "end": "931.70000", + "feature": { + "word": "he" + }, + "id": 2370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "931.70000", + "end": "932.13000", + "feature": { + "word": "referred" + }, + "id": 2371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "932.13000", + "end": "932.33000", + "feature": { + "word": "to" + }, + "id": 2372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "932.33000", + "end": "932.38000", + "feature": { + "word": "a" + }, + "id": 2373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "932.38000", + "end": "932.62000", + "feature": { + "word": "type" + }, + "id": 2374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "932.62000", + "end": "932.82000", + "feature": { + "word": "of" + }, + "id": 2375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "932.82000", + "end": "933.23000", + "feature": { + "word": "eastern" + }, + "id": 2376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "933.23000", + "end": "933.67000", + "feature": { + "word": "bloc" + }, + "id": 2377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "933.73000", + "end": "934.40000", + "feature": { + "word": "ammunition" + }, + "id": 2379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "934.40000", + "end": "934.53000", + "feature": { + "word": "that" + }, + "id": 2380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "934.53000", + "end": "934.80000", + "feature": { + "word": "was" + }, + "id": 2381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "934.83000", + "end": "935.48000", + "feature": { + "word": "being" + }, + "id": 2383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "935.51000", + "end": "935.93000", + "feature": { + "word": "used" + }, + "id": 2385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "935.93000", + "end": "936.05000", + "feature": { + "word": "by" + }, + "id": 2386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "936.05000", + "end": "936.14000", + "feature": { + "word": "the" + }, + "id": 2387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "936.14000", + "end": "936.63000", + "feature": { + "word": "contras" + }, + "id": 2388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "936.63000", + "end": "936.76000", + "feature": { + "word": "that" + }, + "id": 2389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "936.76000", + "end": "936.88000", + "feature": { + "word": "they" + }, + "id": 2390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "936.88000", + "end": "937.26000", + "feature": { + "word": "needed" + }, + "id": 2391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "937.93000", + "end": "938.01000", + "feature": { + "word": "he" + }, + "id": 2393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "938.01000", + "end": "938.31000", + "feature": { + "word": "gave" + }, + "id": 2394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "938.31000", + "end": "938.79000", + "feature": { + "word": "prices" + }, + "id": 2395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "938.79000", + "end": "938.96000", + "feature": { + "word": "for" + }, + "id": 2396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "938.96000", + "end": "939.43000", + "feature": { + "word": "those" + }, + "id": 2397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "939.95000", + "end": "940.07000", + "feature": { + "word": "he" + }, + "id": 2399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "940.07000", + "end": "940.27000", + "feature": { + "word": "also" + }, + "id": 2400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "940.27000", + "end": "941.04000", + "feature": { + "word": "described" + }, + "id": 2401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "941.04000", + "end": "941.37000", + "feature": { + "word": "a" + }, + "id": 2402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "941.50000", + "end": "941.79000", + "feature": { + "word": "certain" + }, + "id": 2404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "941.79000", + "end": "942.02000", + "feature": { + "word": "kind" + }, + "id": 2405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "942.02000", + "end": "942.11000", + "feature": { + "word": "of" + }, + "id": 2406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "942.11000", + "end": "942.91000", + "feature": { + "word": "aircraft" + }, + "id": 2407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "943.39000", + "end": "943.57000", + "feature": { + "word": "that" + }, + "id": 2409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "943.57000", + "end": "943.72000", + "feature": { + "word": "was" + }, + "id": 2410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "943.72000", + "end": "944.02000", + "feature": { + "word": "needed" + }, + "id": 2411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "944.79000", + "end": "944.97000", + "feature": { + "word": "mr" + }, + "id": 2413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "944.97000", + "end": "945.18000", + "feature": { + "word": "what" + }, + "id": 2414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "945.18000", + "end": "945.47000", + "feature": { + "word": "type" + }, + "id": 2415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "945.47000", + "end": "945.57000", + "feature": { + "word": "of" + }, + "id": 2416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "945.57000", + "end": "946.09000", + "feature": { + "word": "aircraft" + }, + "id": 2417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "946.09000", + "end": "946.25000", + "feature": { + "word": "was" + }, + "id": 2418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "946.25000", + "end": "946.50000", + "feature": { + "word": "that" + }, + "id": 2419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "946.93000", + "end": "947.23000", + "feature": { + "word": "mr" + }, + "id": 2421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "947.34000", + "end": "947.94000", + "feature": { + "word": "o'" + }, + "id": 2423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "948.11000", + "end": "948.17000", + "feature": { + "word": "it" + }, + "id": 2425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "948.17000", + "end": "948.47000", + "feature": { + "word": "was" + }, + "id": 2426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "948.72000", + "end": "948.82000", + "feature": { + "word": "a" + }, + "id": 2428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "948.82000", + "end": "949.31000", + "feature": { + "word": "maule" + }, + "id": 2429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "949.31000", + "end": "950.01000", + "feature": { + "word": "aircraft" + }, + "id": 2430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "950.49000", + "end": "950.77000", + "feature": { + "word": "mr" + }, + "id": 2432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "950.77000", + "end": "950.88000", + "feature": { + "word": "is" + }, + "id": 2433, + "attype": "vanilla-forced-alignment" + }, + { + "start": "950.88000", + "end": "951.07000", + "feature": { + "word": "that" + }, + "id": 2434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "951.07000", + "end": "951.23000", + "feature": { + "word": "a" + }, + "id": 2435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "951.26000", + "end": "951.70000", + "feature": { + "word": "brand" + }, + "id": 2437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "951.70000", + "end": "951.82000", + "feature": { + "word": "of" + }, + "id": 2438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "951.82000", + "end": "952.47000", + "feature": { + "word": "aircraft" + }, + "id": 2439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "952.74000", + "end": "953.34000", + "feature": { + "word": "mr" + }, + "id": 2441, + "attype": "vanilla-forced-alignment" + }, + { + "start": "953.34000", + "end": "953.41000", + "feature": { + "word": "o'" + }, + "id": 2442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "953.41000", + "end": "953.64000", + "feature": { + "word": "yes" + }, + "id": 2443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "953.64000", + "end": "954.08000", + "feature": { + "word": "maule" + }, + "id": 2444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "954.08000", + "end": "954.19000", + "feature": { + "word": "is" + }, + "id": 2445, + "attype": "vanilla-forced-alignment" + }, + { + "start": "954.19000", + "end": "954.25000", + "feature": { + "word": "the" + }, + "id": 2446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "954.25000", + "end": "955.24000", + "feature": { + "word": "manufacturer" + }, + "id": 2447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "955.46000", + "end": "955.65000", + "feature": { + "word": "of" + }, + "id": 2449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "955.65000", + "end": "955.77000", + "feature": { + "word": "the" + }, + "id": 2450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "955.77000", + "end": "956.13000", + "feature": { + "word": "aircraft" + }, + "id": 2451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "956.13000", + "end": "956.28000", + "feature": { + "word": "mr" + }, + "id": 2452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "956.36000", + "end": "956.60000", + "feature": { + "word": "was" + }, + "id": 2454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "956.60000", + "end": "956.75000", + "feature": { + "word": "there" + }, + "id": 2455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "956.75000", + "end": "956.82000", + "feature": { + "word": "a" + }, + "id": 2456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "956.82000", + "end": "957.34000", + "feature": { + "word": "price" + }, + "id": 2457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "957.34000", + "end": "958.12000", + "feature": { + "word": "identified" + }, + "id": 2458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "958.12000", + "end": "958.27000", + "feature": { + "word": "for" + }, + "id": 2459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "958.27000", + "end": "958.50000", + "feature": { + "word": "these" + }, + "id": 2460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "958.50000", + "end": "958.94000", + "feature": { + "word": "planes" + }, + "id": 2461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "959.12000", + "end": "959.56000", + "feature": { + "word": "mr" + }, + "id": 2463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "959.56000", + "end": "959.59000", + "feature": { + "word": "o'" + }, + "id": 2464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "959.65000", + "end": "959.74000", + "feature": { + "word": "yes" + }, + "id": 2466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "959.74000", + "end": "959.89000", + "feature": { + "word": "they" + }, + "id": 2467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "959.89000", + "end": "960.17000", + "feature": { + "word": "were" + }, + "id": 2468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "960.47000", + "end": "960.92000", + "feature": { + "word": "quoted" + }, + "id": 2470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "960.92000", + "end": "961.00000", + "feature": { + "word": "at" + }, + "id": 2471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "961.00000", + "end": "962.47000", + "feature": { + "word": "" + }, + "id": 2472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "962.47000", + "end": "962.80000", + "feature": { + "word": "each" + }, + "id": 2473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "963.48000", + "end": "963.86000", + "feature": { + "word": "apparently" + }, + "id": 2475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "963.86000", + "end": "964.04000", + "feature": { + "word": "that" + }, + "id": 2476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "964.04000", + "end": "964.21000", + "feature": { + "word": "was" + }, + "id": 2477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "964.21000", + "end": "964.30000", + "feature": { + "word": "a" + }, + "id": 2478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "964.30000", + "end": "964.91000", + "feature": { + "word": "reduced" + }, + "id": 2479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "964.91000", + "end": "965.38000", + "feature": { + "word": "price" + }, + "id": 2480, + "attype": "vanilla-forced-alignment" + }, + { + "start": "966.64000", + "end": "966.79000", + "feature": { + "word": "mr" + }, + "id": 2482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "968.20000", + "end": "968.37000", + "feature": { + "word": "now" + }, + "id": 2484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "968.37000", + "end": "968.53000", + "feature": { + "word": "you" + }, + "id": 2485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "968.53000", + "end": "968.81000", + "feature": { + "word": "say" + }, + "id": 2486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "968.81000", + "end": "969.12000", + "feature": { + "word": "while" + }, + "id": 2487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "969.12000", + "end": "969.54000", + "feature": { + "word": "" + }, + "id": 2488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "969.54000", + "end": "969.87000", + "feature": { + "word": "north" + }, + "id": 2489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "969.87000", + "end": "970.07000", + "feature": { + "word": "was" + }, + "id": 2490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "970.07000", + "end": "970.36000", + "feature": { + "word": "there" + }, + "id": 2491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "970.36000", + "end": "970.53000", + "feature": { + "word": "he" + }, + "id": 2492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "970.53000", + "end": "971.07000", + "feature": { + "word": "stated" + }, + "id": 2493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "971.07000", + "end": "971.23000", + "feature": { + "word": "that" + }, + "id": 2494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "971.23000", + "end": "971.50000", + "feature": { + "word": "he" + }, + "id": 2495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "971.50000", + "end": "971.79000", + "feature": { + "word": "could" + }, + "id": 2496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "971.79000", + "end": "972.25000", + "feature": { + "word": "not" + }, + "id": 2497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "972.47000", + "end": "973.09000", + "feature": { + "word": "himself" + }, + "id": 2499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "973.09000", + "end": "973.47000", + "feature": { + "word": "ask" + }, + "id": 2500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "973.47000", + "end": "973.88000", + "feature": { + "word": "for" + }, + "id": 2501, + "attype": "vanilla-forced-alignment" + }, + { + "start": "973.88000", + "end": "974.89000", + "feature": { + "word": "contribution" + }, + "id": 2502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "974.92000", + "end": "975.07000", + "feature": { + "word": "mr" + }, + "id": 2504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "975.71000", + "end": "975.74000", + "feature": { + "word": "o'" + }, + "id": 2506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "976.13000", + "end": "976.36000", + "feature": { + "word": "that" + }, + "id": 2508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "976.36000", + "end": "976.44000", + "feature": { + "word": "s" + }, + "id": 2509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "976.44000", + "end": "976.68000", + "feature": { + "word": "right" + }, + "id": 2510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "977.60000", + "end": "977.94000", + "feature": { + "word": "mr" + }, + "id": 2512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "977.97000", + "end": "978.12000", + "feature": { + "word": "what" + }, + "id": 2514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "978.12000", + "end": "978.54000", + "feature": { + "word": "happened" + }, + "id": 2515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "978.54000", + "end": "978.96000", + "feature": { + "word": "after" + }, + "id": 2516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "978.96000", + "end": "979.15000", + "feature": { + "word": "he" + }, + "id": 2517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "979.15000", + "end": "979.69000", + "feature": { + "word": "left" + }, + "id": 2518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "981.53000", + "end": "981.70000", + "feature": { + "word": "mr" + }, + "id": 2520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "981.70000", + "end": "981.95000", + "feature": { + "word": "o'" + }, + "id": 2521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "982.26000", + "end": "982.63000", + "feature": { + "word": "well" + }, + "id": 2523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "983.20000", + "end": "983.53000", + "feature": { + "word": "mr" + }, + "id": 2525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "983.53000", + "end": "983.89000", + "feature": { + "word": "channell" + }, + "id": 2526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "983.89000", + "end": "983.99000", + "feature": { + "word": "and" + }, + "id": 2527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "983.99000", + "end": "984.15000", + "feature": { + "word": "i" + }, + "id": 2528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "984.15000", + "end": "984.48000", + "feature": { + "word": "talked" + }, + "id": 2529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "984.48000", + "end": "984.52000", + "feature": { + "word": "a" + }, + "id": 2530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "984.52000", + "end": "984.78000", + "feature": { + "word": "bit" + }, + "id": 2531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "984.78000", + "end": "985.14000", + "feature": { + "word": "more" + }, + "id": 2532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "985.14000", + "end": "985.27000", + "feature": { + "word": "" + }, + "id": 2533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "985.77000", + "end": "985.97000", + "feature": { + "word": "pretty" + }, + "id": 2535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "985.97000", + "end": "986.15000", + "feature": { + "word": "much" + }, + "id": 2536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "986.15000", + "end": "986.45000", + "feature": { + "word": "about" + }, + "id": 2537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "986.45000", + "end": "986.59000", + "feature": { + "word": "what" + }, + "id": 2538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "986.59000", + "end": "986.66000", + "feature": { + "word": "we" + }, + "id": 2539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "986.66000", + "end": "986.75000", + "feature": { + "word": "had" + }, + "id": 2540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "986.75000", + "end": "986.87000", + "feature": { + "word": "been" + }, + "id": 2541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "986.87000", + "end": "987.23000", + "feature": { + "word": "talking" + }, + "id": 2542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "987.23000", + "end": "987.48000", + "feature": { + "word": "about" + }, + "id": 2543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "987.48000", + "end": "987.64000", + "feature": { + "word": "all" + }, + "id": 2544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "987.64000", + "end": "988.17000", + "feature": { + "word": "along" + }, + "id": 2545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "988.65000", + "end": "989.10000", + "feature": { + "word": "and" + }, + "id": 2547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "989.10000", + "end": "989.31000", + "feature": { + "word": "i" + }, + "id": 2548, + "attype": "vanilla-forced-alignment" + }, + { + "start": "989.31000", + "end": "989.94000", + "feature": { + "word": "indicated" + }, + "id": 2549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "989.94000", + "end": "990.34000", + "feature": { + "word": "that" + }, + "id": 2550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "990.34000", + "end": "990.54000", + "feature": { + "word": "i" + }, + "id": 2551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "991.51000", + "end": "991.86000", + "feature": { + "word": "" + }, + "id": 2553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "991.86000", + "end": "992.20000", + "feature": { + "word": "be" + }, + "id": 2554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "992.98000", + "end": "993.32000", + "feature": { + "word": "willing" + }, + "id": 2556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "993.32000", + "end": "993.82000", + "feature": { + "word": "to" + }, + "id": 2557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "994.74000", + "end": "995.18000", + "feature": { + "word": "think" + }, + "id": 2559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "995.18000", + "end": "995.38000", + "feature": { + "word": "this" + }, + "id": 2560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "995.38000", + "end": "995.71000", + "feature": { + "word": "over" + }, + "id": 2561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "996.19000", + "end": "996.74000", + "feature": { + "word": "and" + }, + "id": 2563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "996.74000", + "end": "997.11000", + "feature": { + "word": "that" + }, + "id": 2564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "997.11000", + "end": "997.20000", + "feature": { + "word": "i" + }, + "id": 2565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "997.20000", + "end": "997.23000", + "feature": { + "word": "" + }, + "id": 2566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "997.23000", + "end": "997.43000", + "feature": { + "word": "get" + }, + "id": 2567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "997.43000", + "end": "997.91000", + "feature": { + "word": "back" + }, + "id": 2568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "997.91000", + "end": "998.01000", + "feature": { + "word": "to" + }, + "id": 2569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "998.01000", + "end": "998.25000", + "feature": { + "word": "mr" + }, + "id": 2570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "998.25000", + "end": "998.69000", + "feature": { + "word": "channell" + }, + "id": 2571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "998.69000", + "end": "998.98000", + "feature": { + "word": "if" + }, + "id": 2572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "998.98000", + "end": "999.15000", + "feature": { + "word": "i" + }, + "id": 2573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "999.15000", + "end": "999.65000", + "feature": { + "word": "decided" + }, + "id": 2574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "999.65000", + "end": "999.70000", + "feature": { + "word": "i" + }, + "id": 2575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "999.70000", + "end": "999.96000", + "feature": { + "word": "wanted" + }, + "id": 2576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "999.96000", + "end": "1000.03000", + "feature": { + "word": "to" + }, + "id": 2577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1000.03000", + "end": "1000.51000", + "feature": { + "word": "contribute" + }, + "id": 2578, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1001.35000", + "end": "1001.70000", + "feature": { + "word": "both" + }, + "id": 2580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1001.70000", + "end": "1002.25000", + "feature": { + "word": "garwood" + }, + "id": 2581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1002.25000", + "end": "1002.58000", + "feature": { + "word": "and" + }, + "id": 2582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1002.58000", + "end": "1003.16000", + "feature": { + "word": "o'boyle" + }, + "id": 2583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1003.16000", + "end": "1003.31000", + "feature": { + "word": "were" + }, + "id": 2584, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1003.31000", + "end": "1003.91000", + "feature": { + "word": "persuaded" + }, + "id": 2585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1003.91000", + "end": "1004.02000", + "feature": { + "word": "to" + }, + "id": 2586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1004.02000", + "end": "1004.44000", + "feature": { + "word": "donate" + }, + "id": 2587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1004.44000", + "end": "1004.77000", + "feature": { + "word": "money" + }, + "id": 2588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1004.77000", + "end": "1004.89000", + "feature": { + "word": "to" + }, + "id": 2589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1004.89000", + "end": "1005.00000", + "feature": { + "word": "the" + }, + "id": 2590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1005.00000", + "end": "1005.62000", + "feature": { + "word": "cause" + }, + "id": 2591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1005.65000", + "end": "1005.75000", + "feature": { + "word": "ms" + }, + "id": 2593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1005.75000", + "end": "1005.92000", + "feature": { + "word": "i" + }, + "id": 2594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1005.92000", + "end": "1006.32000", + "feature": { + "word": "returned" + }, + "id": 2595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1006.32000", + "end": "1006.45000", + "feature": { + "word": "on" + }, + "id": 2596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1006.45000", + "end": "1006.81000", + "feature": { + "word": "sunday" + }, + "id": 2597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1006.81000", + "end": "1007.56000", + "feature": { + "word": "afternoon" + }, + "id": 2598, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1007.56000", + "end": "1008.03000", + "feature": { + "word": "and" + }, + "id": 2599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1008.03000", + "end": "1008.45000", + "feature": { + "word": "on" + }, + "id": 2600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1008.76000", + "end": "1009.23000", + "feature": { + "word": "monday" + }, + "id": 2602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1009.23000", + "end": "1009.64000", + "feature": { + "word": "morning" + }, + "id": 2603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1009.64000", + "end": "1009.74000", + "feature": { + "word": "i" + }, + "id": 2604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1009.74000", + "end": "1009.99000", + "feature": { + "word": "took" + }, + "id": 2605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1009.99000", + "end": "1010.09000", + "feature": { + "word": "the" + }, + "id": 2606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1010.09000", + "end": "1010.55000", + "feature": { + "word": "list" + }, + "id": 2607, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1010.75000", + "end": "1011.17000", + "feature": { + "word": "to" + }, + "id": 2609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1011.20000", + "end": "1011.37000", + "feature": { + "word": "ms" + }, + "id": 2611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1011.37000", + "end": "1012.27000", + "feature": { + "word": "" + }, + "id": 2612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1012.27000", + "end": "1012.46000", + "feature": { + "word": "who" + }, + "id": 2613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1012.96000", + "end": "1013.25000", + "feature": { + "word": "is" + }, + "id": 2615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1013.25000", + "end": "1013.58000", + "feature": { + "word": "the" + }, + "id": 2616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1013.61000", + "end": "1014.12000", + "feature": { + "word": "manager" + }, + "id": 2618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1014.12000", + "end": "1014.29000", + "feature": { + "word": "of" + }, + "id": 2619, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1014.29000", + "end": "1014.49000", + "feature": { + "word": "my" + }, + "id": 2620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1014.49000", + "end": "1014.95000", + "feature": { + "word": "trust" + }, + "id": 2621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1014.95000", + "end": "1015.37000", + "feature": { + "word": "account" + }, + "id": 2622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1015.43000", + "end": "1015.87000", + "feature": { + "word": "at" + }, + "id": 2624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1015.87000", + "end": "1016.16000", + "feature": { + "word": "first" + }, + "id": 2625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1016.16000", + "end": "1016.49000", + "feature": { + "word": "bank" + }, + "id": 2626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1016.49000", + "end": "1016.64000", + "feature": { + "word": "in" + }, + "id": 2627, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1016.64000", + "end": "1017.04000", + "feature": { + "word": "austin" + }, + "id": 2628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1018.05000", + "end": "1018.22000", + "feature": { + "word": "and" + }, + "id": 2630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1018.22000", + "end": "1018.63000", + "feature": { + "word": "asked" + }, + "id": 2631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1018.63000", + "end": "1018.97000", + "feature": { + "word": "her" + }, + "id": 2632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1018.97000", + "end": "1019.37000", + "feature": { + "word": "if" + }, + "id": 2633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1019.37000", + "end": "1019.47000", + "feature": { + "word": "" + }, + "id": 2634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1019.47000", + "end": "1019.76000", + "feature": { + "word": "i" + }, + "id": 2635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1019.79000", + "end": "1020.01000", + "feature": { + "word": "showed" + }, + "id": 2637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1020.01000", + "end": "1020.10000", + "feature": { + "word": "her" + }, + "id": 2638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1020.10000", + "end": "1020.22000", + "feature": { + "word": "the" + }, + "id": 2639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1020.22000", + "end": "1020.52000", + "feature": { + "word": "list" + }, + "id": 2640, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1020.52000", + "end": "1020.66000", + "feature": { + "word": "" + }, + "id": 2641, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1020.66000", + "end": "1020.83000", + "feature": { + "word": "and" + }, + "id": 2642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1020.83000", + "end": "1021.17000", + "feature": { + "word": "asked" + }, + "id": 2643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1021.17000", + "end": "1021.37000", + "feature": { + "word": "her" + }, + "id": 2644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1021.37000", + "end": "1021.61000", + "feature": { + "word": "if" + }, + "id": 2645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1021.61000", + "end": "1021.70000", + "feature": { + "word": "it" + }, + "id": 2646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1021.70000", + "end": "1021.81000", + "feature": { + "word": "were" + }, + "id": 2647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1021.81000", + "end": "1022.35000", + "feature": { + "word": "possible" + }, + "id": 2648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1022.94000", + "end": "1023.16000", + "feature": { + "word": "for" + }, + "id": 2650, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1023.16000", + "end": "1023.39000", + "feature": { + "word": "me" + }, + "id": 2651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1023.39000", + "end": "1023.77000", + "feature": { + "word": "to" + }, + "id": 2652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1023.77000", + "end": "1024.30000", + "feature": { + "word": "supply" + }, + "id": 2653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1024.30000", + "end": "1024.55000", + "feature": { + "word": "the" + }, + "id": 2654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1024.61000", + "end": "1024.97000", + "feature": { + "word": "funds" + }, + "id": 2656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1024.97000", + "end": "1025.49000", + "feature": { + "word": "needed" + }, + "id": 2657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1025.82000", + "end": "1025.92000", + "feature": { + "word": "for" + }, + "id": 2659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1025.92000", + "end": "1026.19000", + "feature": { + "word": "that" + }, + "id": 2660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1026.66000", + "end": "1026.81000", + "feature": { + "word": "mr" + }, + "id": 2662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1026.81000", + "end": "1026.93000", + "feature": { + "word": "and" + }, + "id": 2663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1026.93000", + "end": "1027.14000", + "feature": { + "word": "what" + }, + "id": 2664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1027.14000", + "end": "1027.30000", + "feature": { + "word": "was" + }, + "id": 2665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1027.30000", + "end": "1027.47000", + "feature": { + "word": "her" + }, + "id": 2666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1027.47000", + "end": "1028.10000", + "feature": { + "word": "response" + }, + "id": 2667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1028.37000", + "end": "1028.47000", + "feature": { + "word": "ms" + }, + "id": 2669, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1028.79000", + "end": "1028.97000", + "feature": { + "word": "she" + }, + "id": 2671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1028.97000", + "end": "1029.18000", + "feature": { + "word": "said" + }, + "id": 2672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1029.21000", + "end": "1029.36000", + "feature": { + "word": "i" + }, + "id": 2674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1029.36000", + "end": "1029.69000", + "feature": { + "word": "think" + }, + "id": 2675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1029.69000", + "end": "1029.80000", + "feature": { + "word": "you" + }, + "id": 2676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1029.80000", + "end": "1030.29000", + "feature": { + "word": "can" + }, + "id": 2677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1030.53000", + "end": "1030.71000", + "feature": { + "word": "but" + }, + "id": 2679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1030.71000", + "end": "1030.82000", + "feature": { + "word": "i" + }, + "id": 2680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1030.82000", + "end": "1031.12000", + "feature": { + "word": "think" + }, + "id": 2681, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1031.12000", + "end": "1031.24000", + "feature": { + "word": "we" + }, + "id": 2682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1031.24000", + "end": "1031.40000", + "feature": { + "word": "will" + }, + "id": 2683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1031.40000", + "end": "1031.75000", + "feature": { + "word": "have" + }, + "id": 2684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1031.75000", + "end": "1032.37000", + "feature": { + "word": "to" + }, + "id": 2685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1032.44000", + "end": "1032.83000", + "feature": { + "word": "sell" + }, + "id": 2687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1032.83000", + "end": "1032.99000", + "feature": { + "word": "some" + }, + "id": 2688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1032.99000", + "end": "1033.41000", + "feature": { + "word": "stock" + }, + "id": 2689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1033.56000", + "end": "1033.67000", + "feature": { + "word": "we" + }, + "id": 2691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1033.67000", + "end": "1034.20000", + "feature": { + "word": "certainly" + }, + "id": 2692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1034.20000", + "end": "1034.38000", + "feature": { + "word": "don't" + }, + "id": 2693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1034.38000", + "end": "1034.56000", + "feature": { + "word": "have" + }, + "id": 2694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1034.56000", + "end": "1034.64000", + "feature": { + "word": "the" + }, + "id": 2695, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1034.64000", + "end": "1034.84000", + "feature": { + "word": "cash" + }, + "id": 2696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1034.84000", + "end": "1034.87000", + "feature": { + "word": "" + }, + "id": 2697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1034.87000", + "end": "1035.13000", + "feature": { + "word": "mr" + }, + "id": 2698, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1035.80000", + "end": "1036.11000", + "feature": { + "word": "what" + }, + "id": 2700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1036.11000", + "end": "1036.90000", + "feature": { + "word": "decision" + }, + "id": 2701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1037.00000", + "end": "1037.65000", + "feature": { + "word": "did" + }, + "id": 2703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1037.65000", + "end": "1037.74000", + "feature": { + "word": "you" + }, + "id": 2704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1037.74000", + "end": "1038.03000", + "feature": { + "word": "make" + }, + "id": 2705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1038.03000", + "end": "1038.31000", + "feature": { + "word": "about" + }, + "id": 2706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1038.31000", + "end": "1038.60000", + "feature": { + "word": "making" + }, + "id": 2707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1038.60000", + "end": "1038.67000", + "feature": { + "word": "a" + }, + "id": 2708, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1038.67000", + "end": "1039.36000", + "feature": { + "word": "contribution" + }, + "id": 2709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1039.40000", + "end": "1039.55000", + "feature": { + "word": "mr" + }, + "id": 2711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1040.23000", + "end": "1040.29000", + "feature": { + "word": "o'" + }, + "id": 2713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1040.29000", + "end": "1040.35000", + "feature": { + "word": "i" + }, + "id": 2714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1040.35000", + "end": "1040.75000", + "feature": { + "word": "decided" + }, + "id": 2715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1040.75000", + "end": "1040.84000", + "feature": { + "word": "that" + }, + "id": 2716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1040.84000", + "end": "1040.87000", + "feature": { + "word": "i" + }, + "id": 2717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1040.87000", + "end": "1041.07000", + "feature": { + "word": "would" + }, + "id": 2718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1041.07000", + "end": "1041.30000", + "feature": { + "word": "make" + }, + "id": 2719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1041.30000", + "end": "1041.36000", + "feature": { + "word": "a" + }, + "id": 2720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1041.36000", + "end": "1042.07000", + "feature": { + "word": "contribution" + }, + "id": 2721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1043.23000", + "end": "1043.49000", + "feature": { + "word": "mr" + }, + "id": 2723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1043.53000", + "end": "1043.70000", + "feature": { + "word": "and" + }, + "id": 2725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1043.70000", + "end": "1043.94000", + "feature": { + "word": "what" + }, + "id": 2726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1043.94000", + "end": "1044.32000", + "feature": { + "word": "amount" + }, + "id": 2727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1044.32000", + "end": "1044.42000", + "feature": { + "word": "did" + }, + "id": 2728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1044.55000", + "end": "1044.63000", + "feature": { + "word": "you" + }, + "id": 2730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1044.70000", + "end": "1045.09000", + "feature": { + "word": "decide" + }, + "id": 2732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1045.09000", + "end": "1045.16000", + "feature": { + "word": "to" + }, + "id": 2733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1045.16000", + "end": "1045.64000", + "feature": { + "word": "contribute" + }, + "id": 2734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1046.38000", + "end": "1046.55000", + "feature": { + "word": "mr" + }, + "id": 2736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1046.55000", + "end": "1046.59000", + "feature": { + "word": "o'" + }, + "id": 2737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1046.59000", + "end": "1046.70000", + "feature": { + "word": "i" + }, + "id": 2738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1046.70000", + "end": "1047.07000", + "feature": { + "word": "decided" + }, + "id": 2739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1047.07000", + "end": "1047.13000", + "feature": { + "word": "to" + }, + "id": 2740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1047.13000", + "end": "1047.52000", + "feature": { + "word": "contribute" + }, + "id": 2741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1047.52000", + "end": "1049.00000", + "feature": { + "word": "" + }, + "id": 2742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1049.00000", + "end": "1049.24000", + "feature": { + "word": "mr" + }, + "id": 2743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1049.96000", + "end": "1050.28000", + "feature": { + "word": "and" + }, + "id": 2745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1050.45000", + "end": "1050.62000", + "feature": { + "word": "what" + }, + "id": 2747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1050.62000", + "end": "1050.75000", + "feature": { + "word": "was" + }, + "id": 2748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1050.75000", + "end": "1050.94000", + "feature": { + "word": "this" + }, + "id": 2749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1050.94000", + "end": "1051.02000", + "feature": { + "word": "to" + }, + "id": 2750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1051.02000", + "end": "1051.17000", + "feature": { + "word": "be" + }, + "id": 2751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1051.17000", + "end": "1051.46000", + "feature": { + "word": "for" + }, + "id": 2752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1051.46000", + "end": "1051.61000", + "feature": { + "word": "mr" + }, + "id": 2753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1051.86000", + "end": "1051.89000", + "feature": { + "word": "o'" + }, + "id": 2755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1051.94000", + "end": "1052.46000", + "feature": { + "word": "two" + }, + "id": 2757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1052.49000", + "end": "1052.64000", + "feature": { + "word": "of" + }, + "id": 2759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1052.64000", + "end": "1052.72000", + "feature": { + "word": "the" + }, + "id": 2760, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1052.72000", + "end": "1053.11000", + "feature": { + "word": "maule" + }, + "id": 2761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1053.11000", + "end": "1053.64000", + "feature": { + "word": "aircraft" + }, + "id": 2762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1053.67000", + "end": "1053.82000", + "feature": { + "word": "mr" + }, + "id": 2764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1056.06000", + "end": "1056.29000", + "feature": { + "word": "how" + }, + "id": 2766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1056.29000", + "end": "1056.48000", + "feature": { + "word": "did" + }, + "id": 2767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1056.48000", + "end": "1056.56000", + "feature": { + "word": "you" + }, + "id": 2768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1056.56000", + "end": "1056.84000", + "feature": { + "word": "make" + }, + "id": 2769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1056.84000", + "end": "1057.03000", + "feature": { + "word": "this" + }, + "id": 2770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1057.03000", + "end": "1057.75000", + "feature": { + "word": "contribution" + }, + "id": 2771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1058.33000", + "end": "1058.50000", + "feature": { + "word": "mr" + }, + "id": 2773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1058.91000", + "end": "1058.96000", + "feature": { + "word": "o'" + }, + "id": 2775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1058.96000", + "end": "1059.06000", + "feature": { + "word": "i" + }, + "id": 2776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1059.06000", + "end": "1059.32000", + "feature": { + "word": "hand" + }, + "id": 2777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1059.32000", + "end": "1059.74000", + "feature": { + "word": "delivered" + }, + "id": 2778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1059.74000", + "end": "1059.84000", + "feature": { + "word": "the" + }, + "id": 2779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1059.84000", + "end": "1060.29000", + "feature": { + "word": "check" + }, + "id": 2780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1060.29000", + "end": "1060.38000", + "feature": { + "word": "to" + }, + "id": 2781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1060.38000", + "end": "1060.79000", + "feature": { + "word": "mr" + }, + "id": 2782, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1060.79000", + "end": "1061.18000", + "feature": { + "word": "channell" + }, + "id": 2783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1061.18000", + "end": "1061.38000", + "feature": { + "word": "in" + }, + "id": 2784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1061.38000", + "end": "1061.98000", + "feature": { + "word": "washington" + }, + "id": 2785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1062.29000", + "end": "1062.59000", + "feature": { + "word": "a" + }, + "id": 2787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1062.59000", + "end": "1062.77000", + "feature": { + "word": "few" + }, + "id": 2788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1062.77000", + "end": "1063.01000", + "feature": { + "word": "days" + }, + "id": 2789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1063.01000", + "end": "1063.36000", + "feature": { + "word": "later" + }, + "id": 2790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1063.69000", + "end": "1063.78000", + "feature": { + "word": "sen" + }, + "id": 2792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1064.12000", + "end": "1064.28000", + "feature": { + "word": "i" + }, + "id": 2794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1064.28000", + "end": "1064.93000", + "feature": { + "word": "want" + }, + "id": 2795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1064.96000", + "end": "1065.47000", + "feature": { + "word": "to" + }, + "id": 2797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1065.47000", + "end": "1065.85000", + "feature": { + "word": "ask" + }, + "id": 2798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1065.85000", + "end": "1066.08000", + "feature": { + "word": "ms" + }, + "id": 2799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1066.08000", + "end": "1066.52000", + "feature": { + "word": "garwood" + }, + "id": 2800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1066.52000", + "end": "1066.64000", + "feature": { + "word": "a" + }, + "id": 2801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1066.64000", + "end": "1067.12000", + "feature": { + "word": "question" + }, + "id": 2802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1067.12000", + "end": "1067.45000", + "feature": { + "word": "because" + }, + "id": 2803, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1067.45000", + "end": "1067.67000", + "feature": { + "word": "we" + }, + "id": 2804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1067.67000", + "end": "1068.10000", + "feature": { + "word": "kind" + }, + "id": 2805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1068.10000", + "end": "1068.25000", + "feature": { + "word": "of" + }, + "id": 2806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1068.25000", + "end": "1068.90000", + "feature": { + "word": "got" + }, + "id": 2807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1069.12000", + "end": "1069.15000", + "feature": { + "word": "a" + }, + "id": 2809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1069.15000", + "end": "1069.18000", + "feature": { + "word": "" + }, + "id": 2810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1071.36000", + "end": "1071.47000", + "feature": { + "word": "well" + }, + "id": 2812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1071.47000", + "end": "1071.52000", + "feature": { + "word": "i" + }, + "id": 2813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1071.52000", + "end": "1071.73000", + "feature": { + "word": "guess" + }, + "id": 2814, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1071.73000", + "end": "1071.83000", + "feature": { + "word": "i" + }, + "id": 2815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1071.83000", + "end": "1072.07000", + "feature": { + "word": "can" + }, + "id": 2816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1072.37000", + "end": "1072.66000", + "feature": { + "word": "best" + }, + "id": 2818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1072.66000", + "end": "1073.18000", + "feature": { + "word": "describe" + }, + "id": 2819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1073.18000", + "end": "1073.27000", + "feature": { + "word": "it" + }, + "id": 2820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1073.27000", + "end": "1073.51000", + "feature": { + "word": "as" + }, + "id": 2821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1073.51000", + "end": "1073.69000", + "feature": { + "word": "a" + }, + "id": 2822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1073.69000", + "end": "1074.33000", + "feature": { + "word": "theory" + }, + "id": 2823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1074.33000", + "end": "1074.54000", + "feature": { + "word": "that" + }, + "id": 2824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1074.54000", + "end": "1074.72000", + "feature": { + "word": "is" + }, + "id": 2825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1074.72000", + "end": "1075.11000", + "feature": { + "word": "legal" + }, + "id": 2826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1075.11000", + "end": "1075.62000", + "feature": { + "word": "fiction" + }, + "id": 2827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1075.62000", + "end": "1075.65000", + "feature": { + "word": "" + }, + "id": 2828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1076.02000", + "end": "1076.28000", + "feature": { + "word": "not" + }, + "id": 2830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1076.28000", + "end": "1076.46000", + "feature": { + "word": "by" + }, + "id": 2831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1076.46000", + "end": "1076.77000", + "feature": { + "word": "mrs" + }, + "id": 2832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1076.77000", + "end": "1077.26000", + "feature": { + "word": "garwood" + }, + "id": 2833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1077.33000", + "end": "1077.49000", + "feature": { + "word": "but" + }, + "id": 2835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1078.22000", + "end": "1078.86000", + "feature": { + "word": "generally" + }, + "id": 2837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1078.86000", + "end": "1079.86000", + "feature": { + "word": "floating" + }, + "id": 2838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1079.86000", + "end": "1080.29000", + "feature": { + "word": "around" + }, + "id": 2839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1080.29000", + "end": "1080.32000", + "feature": { + "word": "" + }, + "id": 2840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1080.32000", + "end": "1080.48000", + "feature": { + "word": "that" + }, + "id": 2841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1080.48000", + "end": "1081.26000", + "feature": { + "word": "somehow" + }, + "id": 2842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1083.39000", + "end": "1083.92000", + "feature": { + "word": "because" + }, + "id": 2844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1083.92000", + "end": "1084.05000", + "feature": { + "word": "you" + }, + "id": 2845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1084.05000", + "end": "1084.16000", + "feature": { + "word": "were" + }, + "id": 2846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1084.16000", + "end": "1084.53000", + "feature": { + "word": "never" + }, + "id": 2847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1084.53000", + "end": "1084.85000", + "feature": { + "word": "asked" + }, + "id": 2848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1084.85000", + "end": "1085.45000", + "feature": { + "word": "directly" + }, + "id": 2849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1085.45000", + "end": "1085.70000", + "feature": { + "word": "by" + }, + "id": 2850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1085.70000", + "end": "1086.13000", + "feature": { + "word": "certain" + }, + "id": 2851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1086.16000", + "end": "1086.52000", + "feature": { + "word": "people" + }, + "id": 2853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1086.52000", + "end": "1086.66000", + "feature": { + "word": "to" + }, + "id": 2854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1086.66000", + "end": "1086.86000", + "feature": { + "word": "give" + }, + "id": 2855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1086.86000", + "end": "1087.31000", + "feature": { + "word": "money" + }, + "id": 2856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1087.31000", + "end": "1087.64000", + "feature": { + "word": "that" + }, + "id": 2857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1087.64000", + "end": "1087.89000", + "feature": { + "word": "they" + }, + "id": 2858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1088.64000", + "end": "1088.94000", + "feature": { + "word": "didn't" + }, + "id": 2860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1088.94000", + "end": "1089.26000", + "feature": { + "word": "ask" + }, + "id": 2861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1090.27000", + "end": "1090.46000", + "feature": { + "word": "i" + }, + "id": 2863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1090.46000", + "end": "1090.55000", + "feature": { + "word": "just" + }, + "id": 2864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1090.55000", + "end": "1090.80000", + "feature": { + "word": "want" + }, + "id": 2865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1090.80000", + "end": "1091.01000", + "feature": { + "word": "to" + }, + "id": 2866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1091.04000", + "end": "1091.20000", + "feature": { + "word": "go" + }, + "id": 2868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1091.20000", + "end": "1091.48000", + "feature": { + "word": "through" + }, + "id": 2869, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1091.48000", + "end": "1091.57000", + "feature": { + "word": "a" + }, + "id": 2870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1091.57000", + "end": "1091.86000", + "feature": { + "word": "meeting" + }, + "id": 2871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1091.86000", + "end": "1091.99000", + "feature": { + "word": "that" + }, + "id": 2872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1091.99000", + "end": "1092.38000", + "feature": { + "word": "hasn't" + }, + "id": 2873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1092.38000", + "end": "1092.57000", + "feature": { + "word": "been" + }, + "id": 2874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1092.57000", + "end": "1093.19000", + "feature": { + "word": "covered" + }, + "id": 2875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1093.19000", + "end": "1093.58000", + "feature": { + "word": "but" + }, + "id": 2876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1093.58000", + "end": "1093.75000", + "feature": { + "word": "is" + }, + "id": 2877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1093.75000", + "end": "1094.01000", + "feature": { + "word": "covered" + }, + "id": 2878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1094.01000", + "end": "1094.07000", + "feature": { + "word": "in" + }, + "id": 2879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1094.07000", + "end": "1094.18000", + "feature": { + "word": "your" + }, + "id": 2880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1094.18000", + "end": "1094.90000", + "feature": { + "word": "deposition" + }, + "id": 2881, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1094.90000", + "end": "1095.01000", + "feature": { + "word": "there" + }, + "id": 2882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1095.52000", + "end": "1095.69000", + "feature": { + "word": "was" + }, + "id": 2884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1095.69000", + "end": "1095.73000", + "feature": { + "word": "a" + }, + "id": 2885, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1095.73000", + "end": "1095.93000", + "feature": { + "word": "meeting" + }, + "id": 2886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1095.93000", + "end": "1096.04000", + "feature": { + "word": "in" + }, + "id": 2887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1096.04000", + "end": "1096.56000", + "feature": { + "word": "dallas" + }, + "id": 2888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1096.56000", + "end": "1096.85000", + "feature": { + "word": "december" + }, + "id": 2889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1096.90000", + "end": "1097.08000", + "feature": { + "word": "of" + }, + "id": 2891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1097.08000", + "end": "1098.59000", + "feature": { + "word": "" + }, + "id": 2892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1098.63000", + "end": "1098.82000", + "feature": { + "word": "if" + }, + "id": 2894, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1098.82000", + "end": "1098.97000", + "feature": { + "word": "i'm" + }, + "id": 2895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1098.97000", + "end": "1099.38000", + "feature": { + "word": "correct" + }, + "id": 2896, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1099.57000", + "end": "1099.69000", + "feature": { + "word": "of" + }, + "id": 2898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1099.69000", + "end": "1099.75000", + "feature": { + "word": "the" + }, + "id": 2899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1099.75000", + "end": "1099.93000", + "feature": { + "word": "u" + }, + "id": 2900, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1099.93000", + "end": "1100.06000", + "feature": { + "word": "s" + }, + "id": 2901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1100.06000", + "end": "1100.47000", + "feature": { + "word": "council" + }, + "id": 2902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1100.47000", + "end": "1100.54000", + "feature": { + "word": "of" + }, + "id": 2903, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1100.54000", + "end": "1100.80000", + "feature": { + "word": "world" + }, + "id": 2904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1100.80000", + "end": "1101.22000", + "feature": { + "word": "freedom" + }, + "id": 2905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1101.94000", + "end": "1102.43000", + "feature": { + "word": "and" + }, + "id": 2907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1102.66000", + "end": "1102.92000", + "feature": { + "word": "mr" + }, + "id": 2909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1102.92000", + "end": "1103.71000", + "feature": { + "word": "channell" + }, + "id": 2910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1105.15000", + "end": "1105.35000", + "feature": { + "word": "went" + }, + "id": 2912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1105.35000", + "end": "1105.44000", + "feature": { + "word": "to" + }, + "id": 2913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1105.44000", + "end": "1105.71000", + "feature": { + "word": "that" + }, + "id": 2914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1105.71000", + "end": "1106.01000", + "feature": { + "word": "meeting" + }, + "id": 2915, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1106.01000", + "end": "1106.20000", + "feature": { + "word": "and" + }, + "id": 2916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1106.20000", + "end": "1106.48000", + "feature": { + "word": "said" + }, + "id": 2917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1106.48000", + "end": "1106.78000", + "feature": { + "word": "he" + }, + "id": 2918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1106.78000", + "end": "1107.39000", + "feature": { + "word": "wanted" + }, + "id": 2919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1107.39000", + "end": "1107.46000", + "feature": { + "word": "to" + }, + "id": 2920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1107.46000", + "end": "1107.69000", + "feature": { + "word": "take" + }, + "id": 2921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1107.69000", + "end": "1107.94000", + "feature": { + "word": "you" + }, + "id": 2922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1107.94000", + "end": "1108.41000", + "feature": { + "word": "to" + }, + "id": 2923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1108.44000", + "end": "1108.67000", + "feature": { + "word": "meet" + }, + "id": 2925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1108.67000", + "end": "1109.02000", + "feature": { + "word": "" + }, + "id": 2926, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1109.02000", + "end": "1109.40000", + "feature": { + "word": "north" + }, + "id": 2927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1109.40000", + "end": "1109.55000", + "feature": { + "word": "at" + }, + "id": 2928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1109.55000", + "end": "1109.76000", + "feature": { + "word": "the" + }, + "id": 2929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1109.84000", + "end": "1110.65000", + "feature": { + "word": "airport" + }, + "id": 2931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1111.97000", + "end": "1112.50000", + "feature": { + "word": "following" + }, + "id": 2933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1112.50000", + "end": "1112.58000", + "feature": { + "word": "the" + }, + "id": 2934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1112.58000", + "end": "1112.91000", + "feature": { + "word": "meeting" + }, + "id": 2935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1112.91000", + "end": "1112.94000", + "feature": { + "word": "" + }, + "id": 2936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1112.94000", + "end": "1113.25000", + "feature": { + "word": "because" + }, + "id": 2937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1113.46000", + "end": "1113.72000", + "feature": { + "word": "" + }, + "id": 2939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1113.72000", + "end": "1114.03000", + "feature": { + "word": "north" + }, + "id": 2940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1114.03000", + "end": "1114.15000", + "feature": { + "word": "was" + }, + "id": 2941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1114.15000", + "end": "1114.30000", + "feature": { + "word": "going" + }, + "id": 2942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1114.30000", + "end": "1114.39000", + "feature": { + "word": "to" + }, + "id": 2943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1114.39000", + "end": "1114.45000", + "feature": { + "word": "be" + }, + "id": 2944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1114.48000", + "end": "1114.82000", + "feature": { + "word": "coming" + }, + "id": 2946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1114.82000", + "end": "1115.11000", + "feature": { + "word": "through" + }, + "id": 2947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1115.11000", + "end": "1115.50000", + "feature": { + "word": "dallas" + }, + "id": 2948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1115.50000", + "end": "1115.56000", + "feature": { + "word": "and" + }, + "id": 2949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1115.56000", + "end": "1115.65000", + "feature": { + "word": "was" + }, + "id": 2950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1115.65000", + "end": "1115.77000", + "feature": { + "word": "going" + }, + "id": 2951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1115.77000", + "end": "1115.83000", + "feature": { + "word": "to" + }, + "id": 2952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1115.83000", + "end": "1116.40000", + "feature": { + "word": "stop" + }, + "id": 2953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1116.40000", + "end": "1116.53000", + "feature": { + "word": "to" + }, + "id": 2954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1116.53000", + "end": "1116.76000", + "feature": { + "word": "meet" + }, + "id": 2955, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1116.76000", + "end": "1116.79000", + "feature": { + "word": "" + }, + "id": 2956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1116.79000", + "end": "1116.87000", + "feature": { + "word": "is" + }, + "id": 2957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1116.87000", + "end": "1117.11000", + "feature": { + "word": "that" + }, + "id": 2958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1117.11000", + "end": "1117.52000", + "feature": { + "word": "correct" + }, + "id": 2959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1117.52000", + "end": "1117.61000", + "feature": { + "word": "ms" + }, + "id": 2960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1117.87000", + "end": "1118.14000", + "feature": { + "word": "yes" + }, + "id": 2962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1118.14000", + "end": "1118.20000", + "feature": { + "word": "sir" + }, + "id": 2963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1118.20000", + "end": "1118.46000", + "feature": { + "word": "sen" + }, + "id": 2964, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1118.90000", + "end": "1119.22000", + "feature": { + "word": "and" + }, + "id": 2966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1119.22000", + "end": "1119.46000", + "feature": { + "word": "mr" + }, + "id": 2967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1119.46000", + "end": "1119.94000", + "feature": { + "word": "calero" + }, + "id": 2968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1119.94000", + "end": "1120.13000", + "feature": { + "word": "was" + }, + "id": 2969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1120.13000", + "end": "1120.57000", + "feature": { + "word": "also" + }, + "id": 2970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1120.57000", + "end": "1120.70000", + "feature": { + "word": "at" + }, + "id": 2971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1120.70000", + "end": "1120.93000", + "feature": { + "word": "that" + }, + "id": 2972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1120.93000", + "end": "1121.17000", + "feature": { + "word": "meeting" + }, + "id": 2973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1121.17000", + "end": "1121.27000", + "feature": { + "word": "of" + }, + "id": 2974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1121.27000", + "end": "1121.35000", + "feature": { + "word": "the" + }, + "id": 2975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1121.35000", + "end": "1121.56000", + "feature": { + "word": "u" + }, + "id": 2976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1121.56000", + "end": "1121.69000", + "feature": { + "word": "s" + }, + "id": 2977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1121.69000", + "end": "1122.17000", + "feature": { + "word": "council" + }, + "id": 2978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1122.17000", + "end": "1122.25000", + "feature": { + "word": "i" + }, + "id": 2979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1122.25000", + "end": "1122.58000", + "feature": { + "word": "believe" + }, + "id": 2980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1122.84000", + "end": "1122.94000", + "feature": { + "word": "ms" + }, + "id": 2982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1123.34000", + "end": "1123.66000", + "feature": { + "word": "yes" + }, + "id": 2984, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1123.66000", + "end": "1123.75000", + "feature": { + "word": "he" + }, + "id": 2985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1123.75000", + "end": "1124.23000", + "feature": { + "word": "was" + }, + "id": 2986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1124.70000", + "end": "1125.28000", + "feature": { + "word": "sen" + }, + "id": 2988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1126.91000", + "end": "1126.97000", + "feature": { + "word": "and" + }, + "id": 2990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1126.97000", + "end": "1127.40000", + "feature": { + "word": "mr" + }, + "id": 2991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1127.43000", + "end": "1127.97000", + "feature": { + "word": "channell" + }, + "id": 2993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1127.97000", + "end": "1128.20000", + "feature": { + "word": "" + }, + "id": 2994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1128.83000", + "end": "1129.21000", + "feature": { + "word": "mr" + }, + "id": 2996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1129.21000", + "end": "1129.67000", + "feature": { + "word": "north" + }, + "id": 2997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1130.06000", + "end": "1130.31000", + "feature": { + "word": "met" + }, + "id": 2999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1130.31000", + "end": "1130.45000", + "feature": { + "word": "with" + }, + "id": 3000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1130.45000", + "end": "1130.67000", + "feature": { + "word": "you" + }, + "id": 3001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1130.67000", + "end": "1130.75000", + "feature": { + "word": "at" + }, + "id": 3002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1130.75000", + "end": "1130.91000", + "feature": { + "word": "the" + }, + "id": 3003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1130.91000", + "end": "1131.31000", + "feature": { + "word": "airport" + }, + "id": 3004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1132.43000", + "end": "1132.69000", + "feature": { + "word": "that" + }, + "id": 3006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1132.69000", + "end": "1133.00000", + "feature": { + "word": "day" + }, + "id": 3007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1133.05000", + "end": "1133.14000", + "feature": { + "word": "ms" + }, + "id": 3009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1133.14000", + "end": "1133.58000", + "feature": { + "word": "yes" + }, + "id": 3010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1134.19000", + "end": "1134.77000", + "feature": { + "word": "sen" + }, + "id": 3012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1135.22000", + "end": "1135.28000", + "feature": { + "word": "and" + }, + "id": 3014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1135.28000", + "end": "1135.55000", + "feature": { + "word": "mr" + }, + "id": 3015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1135.55000", + "end": "1135.86000", + "feature": { + "word": "north" + }, + "id": 3016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1135.86000", + "end": "1136.12000", + "feature": { + "word": "told" + }, + "id": 3017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1136.12000", + "end": "1136.36000", + "feature": { + "word": "you" + }, + "id": 3018, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1136.36000", + "end": "1136.60000", + "feature": { + "word": "of" + }, + "id": 3019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1136.60000", + "end": "1136.90000", + "feature": { + "word": "the" + }, + "id": 3020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1136.90000", + "end": "1136.96000", + "feature": { + "word": "" + }, + "id": 3021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1136.96000", + "end": "1137.32000", + "feature": { + "word": "according" + }, + "id": 3022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1137.32000", + "end": "1137.43000", + "feature": { + "word": "to" + }, + "id": 3023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1137.43000", + "end": "1137.59000", + "feature": { + "word": "your" + }, + "id": 3024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1137.59000", + "end": "1138.33000", + "feature": { + "word": "deposition" + }, + "id": 3025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1138.33000", + "end": "1138.63000", + "feature": { + "word": "" + }, + "id": 3026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1139.23000", + "end": "1139.41000", + "feature": { + "word": "that" + }, + "id": 3028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1139.41000", + "end": "1139.54000", + "feature": { + "word": "there" + }, + "id": 3029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1139.54000", + "end": "1139.73000", + "feature": { + "word": "was" + }, + "id": 3030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1139.73000", + "end": "1140.12000", + "feature": { + "word": "a" + }, + "id": 3031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1140.15000", + "end": "1140.51000", + "feature": { + "word": "need" + }, + "id": 3033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1140.51000", + "end": "1141.18000", + "feature": { + "word": "for" + }, + "id": 3034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1142.28000", + "end": "1142.62000", + "feature": { + "word": "all" + }, + "id": 3036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1142.62000", + "end": "1143.01000", + "feature": { + "word": "sorts" + }, + "id": 3037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1143.01000", + "end": "1143.12000", + "feature": { + "word": "of" + }, + "id": 3038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1143.12000", + "end": "1143.64000", + "feature": { + "word": "things" + }, + "id": 3039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1143.85000", + "end": "1144.03000", + "feature": { + "word": "down" + }, + "id": 3041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1144.03000", + "end": "1144.12000", + "feature": { + "word": "in" + }, + "id": 3042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1144.12000", + "end": "1144.72000", + "feature": { + "word": "nicaragua" + }, + "id": 3043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1144.72000", + "end": "1144.75000", + "feature": { + "word": "" + }, + "id": 3044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1144.75000", + "end": "1145.32000", + "feature": { + "word": "particularly" + }, + "id": 3045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1145.32000", + "end": "1145.42000", + "feature": { + "word": "i" + }, + "id": 3046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1145.42000", + "end": "1146.51000", + "feature": { + "word": "believe" + }, + "id": 3047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1146.94000", + "end": "1147.41000", + "feature": { + "word": "possibly" + }, + "id": 3049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1147.45000", + "end": "1147.99000", + "feature": { + "word": "trucks" + }, + "id": 3051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1147.99000", + "end": "1148.10000", + "feature": { + "word": "and" + }, + "id": 3052, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1148.10000", + "end": "1148.30000", + "feature": { + "word": "other" + }, + "id": 3053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1148.30000", + "end": "1148.91000", + "feature": { + "word": "supplies" + }, + "id": 3054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1149.59000", + "end": "1149.68000", + "feature": { + "word": "ms" + }, + "id": 3056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1149.71000", + "end": "1150.11000", + "feature": { + "word": "yes" + }, + "id": 3058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1150.11000", + "end": "1150.20000", + "feature": { + "word": "he" + }, + "id": 3059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1150.20000", + "end": "1150.48000", + "feature": { + "word": "told" + }, + "id": 3060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1150.48000", + "end": "1151.17000", + "feature": { + "word": "me" + }, + "id": 3061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1151.46000", + "end": "1151.65000", + "feature": { + "word": "the" + }, + "id": 3063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1151.65000", + "end": "1152.09000", + "feature": { + "word": "terrible" + }, + "id": 3064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1152.09000", + "end": "1152.58000", + "feature": { + "word": "news" + }, + "id": 3065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1152.58000", + "end": "1152.97000", + "feature": { + "word": "that" + }, + "id": 3066, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1153.42000", + "end": "1153.97000", + "feature": { + "word": "supplies" + }, + "id": 3068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1153.97000", + "end": "1154.11000", + "feature": { + "word": "had" + }, + "id": 3069, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1154.11000", + "end": "1154.74000", + "feature": { + "word": "arrived" + }, + "id": 3070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1154.77000", + "end": "1154.99000", + "feature": { + "word": "but" + }, + "id": 3072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1154.99000", + "end": "1155.22000", + "feature": { + "word": "there" + }, + "id": 3073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1155.22000", + "end": "1155.39000", + "feature": { + "word": "was" + }, + "id": 3074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1155.39000", + "end": "1155.66000", + "feature": { + "word": "no" + }, + "id": 3075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1155.66000", + "end": "1155.93000", + "feature": { + "word": "way" + }, + "id": 3076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1155.93000", + "end": "1156.09000", + "feature": { + "word": "to" + }, + "id": 3077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1156.09000", + "end": "1156.76000", + "feature": { + "word": "transport" + }, + "id": 3078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1156.76000", + "end": "1156.92000", + "feature": { + "word": "them" + }, + "id": 3079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1157.04000", + "end": "1157.08000", + "feature": { + "word": "" + }, + "id": 3081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1157.08000", + "end": "1157.29000", + "feature": { + "word": "much" + }, + "id": 3082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1157.29000", + "end": "1157.40000", + "feature": { + "word": "as" + }, + "id": 3083, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1157.40000", + "end": "1157.87000", + "feature": { + "word": "supplies" + }, + "id": 3084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1157.87000", + "end": "1157.96000", + "feature": { + "word": "had" + }, + "id": 3085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1157.96000", + "end": "1158.31000", + "feature": { + "word": "arrived" + }, + "id": 3086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1158.31000", + "end": "1158.47000", + "feature": { + "word": "to" + }, + "id": 3087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1158.87000", + "end": "1159.14000", + "feature": { + "word": "feed" + }, + "id": 3089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1159.14000", + "end": "1159.24000", + "feature": { + "word": "the" + }, + "id": 3090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1159.24000", + "end": "1159.67000", + "feature": { + "word": "starving" + }, + "id": 3091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1159.67000", + "end": "1160.00000", + "feature": { + "word": "people" + }, + "id": 3092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1160.00000", + "end": "1160.12000", + "feature": { + "word": "of" + }, + "id": 3093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1160.12000", + "end": "1160.76000", + "feature": { + "word": "ethiopia" + }, + "id": 3094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1160.76000", + "end": "1160.87000", + "feature": { + "word": "and" + }, + "id": 3095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1160.87000", + "end": "1160.97000", + "feature": { + "word": "they" + }, + "id": 3096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1160.97000", + "end": "1161.06000", + "feature": { + "word": "were" + }, + "id": 3097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1161.06000", + "end": "1161.34000", + "feature": { + "word": "left" + }, + "id": 3098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1161.34000", + "end": "1161.47000", + "feature": { + "word": "on" + }, + "id": 3099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1161.47000", + "end": "1161.56000", + "feature": { + "word": "the" + }, + "id": 3100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1161.56000", + "end": "1162.06000", + "feature": { + "word": "docks" + }, + "id": 3101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1162.06000", + "end": "1162.19000", + "feature": { + "word": "and" + }, + "id": 3102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1162.19000", + "end": "1162.66000", + "feature": { + "word": "rotted" + }, + "id": 3103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1163.26000", + "end": "1163.35000", + "feature": { + "word": "sen" + }, + "id": 3105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1163.35000", + "end": "1163.44000", + "feature": { + "word": "and" + }, + "id": 3106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1163.44000", + "end": "1163.55000", + "feature": { + "word": "they" + }, + "id": 3107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1163.55000", + "end": "1163.76000", + "feature": { + "word": "didn't" + }, + "id": 3108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1163.76000", + "end": "1163.94000", + "feature": { + "word": "have" + }, + "id": 3109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1163.94000", + "end": "1164.23000", + "feature": { + "word": "trucks" + }, + "id": 3110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1164.23000", + "end": "1164.31000", + "feature": { + "word": "to" + }, + "id": 3111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1164.31000", + "end": "1164.53000", + "feature": { + "word": "move" + }, + "id": 3112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1164.53000", + "end": "1164.67000", + "feature": { + "word": "them" + }, + "id": 3113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1164.67000", + "end": "1164.82000", + "feature": { + "word": "with" + }, + "id": 3114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1164.82000", + "end": "1164.91000", + "feature": { + "word": "ms" + }, + "id": 3115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1164.96000", + "end": "1165.19000", + "feature": { + "word": "that" + }, + "id": 3117, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1165.19000", + "end": "1165.22000", + "feature": { + "word": "s" + }, + "id": 3118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1165.22000", + "end": "1165.51000", + "feature": { + "word": "right" + }, + "id": 3119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1165.51000", + "end": "1165.60000", + "feature": { + "word": "sen" + }, + "id": 3120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1165.78000", + "end": "1165.92000", + "feature": { + "word": "and" + }, + "id": 3122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1165.92000", + "end": "1166.12000", + "feature": { + "word": "then" + }, + "id": 3123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1166.27000", + "end": "1166.80000", + "feature": { + "word": "" + }, + "id": 3125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1166.80000", + "end": "1167.28000", + "feature": { + "word": "north" + }, + "id": 3126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1167.28000", + "end": "1168.00000", + "feature": { + "word": "left" + }, + "id": 3127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1168.12000", + "end": "1168.31000", + "feature": { + "word": "and" + }, + "id": 3129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1168.31000", + "end": "1168.60000", + "feature": { + "word": "then" + }, + "id": 3130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1168.60000", + "end": "1169.79000", + "feature": { + "word": "" + }, + "id": 3131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1169.79000", + "end": "1170.03000", + "feature": { + "word": "took" + }, + "id": 3132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1170.03000", + "end": "1170.11000", + "feature": { + "word": "you" + }, + "id": 3133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1170.11000", + "end": "1170.38000", + "feature": { + "word": "back" + }, + "id": 3134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1170.38000", + "end": "1170.44000", + "feature": { + "word": "to" + }, + "id": 3135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1170.44000", + "end": "1170.53000", + "feature": { + "word": "your" + }, + "id": 3136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1170.53000", + "end": "1171.08000", + "feature": { + "word": "hotel" + }, + "id": 3137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1171.11000", + "end": "1171.19000", + "feature": { + "word": "in" + }, + "id": 3139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1171.19000", + "end": "1171.27000", + "feature": { + "word": "the" + }, + "id": 3140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1171.27000", + "end": "1171.62000", + "feature": { + "word": "cab" + }, + "id": 3141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1171.65000", + "end": "1171.68000", + "feature": { + "word": "" + }, + "id": 3143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1171.68000", + "end": "1171.74000", + "feature": { + "word": "is" + }, + "id": 3144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1171.74000", + "end": "1171.92000", + "feature": { + "word": "that" + }, + "id": 3145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1171.92000", + "end": "1172.28000", + "feature": { + "word": "correct" + }, + "id": 3146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1172.28000", + "end": "1172.37000", + "feature": { + "word": "ms" + }, + "id": 3147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1172.49000", + "end": "1172.70000", + "feature": { + "word": "yes" + }, + "id": 3149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1172.70000", + "end": "1172.82000", + "feature": { + "word": "sir" + }, + "id": 3150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1173.41000", + "end": "1173.50000", + "feature": { + "word": "sen" + }, + "id": 3152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1173.50000", + "end": "1173.63000", + "feature": { + "word": "and" + }, + "id": 3153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1173.63000", + "end": "1174.01000", + "feature": { + "word": "then" + }, + "id": 3154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1174.60000", + "end": "1175.23000", + "feature": { + "word": "essentially" + }, + "id": 3156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1175.23000", + "end": "1175.58000", + "feature": { + "word": "within" + }, + "id": 3157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1175.58000", + "end": "1175.70000", + "feature": { + "word": "a" + }, + "id": 3158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1175.70000", + "end": "1176.09000", + "feature": { + "word": "short" + }, + "id": 3159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1176.09000", + "end": "1176.78000", + "feature": { + "word": "timeframe" + }, + "id": 3160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1176.78000", + "end": "1177.25000", + "feature": { + "word": "after" + }, + "id": 3161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1177.36000", + "end": "1178.11000", + "feature": { + "word": "" + }, + "id": 3163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1178.11000", + "end": "1178.44000", + "feature": { + "word": "north" + }, + "id": 3164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1178.80000", + "end": "1179.05000", + "feature": { + "word": "telling" + }, + "id": 3166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1179.05000", + "end": "1179.14000", + "feature": { + "word": "you" + }, + "id": 3167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1179.14000", + "end": "1179.39000", + "feature": { + "word": "mrs" + }, + "id": 3168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1179.39000", + "end": "1179.89000", + "feature": { + "word": "garwood" + }, + "id": 3169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1179.89000", + "end": "1180.01000", + "feature": { + "word": "that" + }, + "id": 3170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1180.62000", + "end": "1180.98000", + "feature": { + "word": "trucks" + }, + "id": 3172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1180.98000", + "end": "1181.09000", + "feature": { + "word": "were" + }, + "id": 3173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1181.09000", + "end": "1181.42000", + "feature": { + "word": "needed" + }, + "id": 3174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1181.84000", + "end": "1182.16000", + "feature": { + "word": "mr" + }, + "id": 3176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1182.16000", + "end": "1182.58000", + "feature": { + "word": "channell" + }, + "id": 3177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1182.58000", + "end": "1182.85000", + "feature": { + "word": "said" + }, + "id": 3178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1182.85000", + "end": "1182.94000", + "feature": { + "word": "to" + }, + "id": 3179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1182.94000", + "end": "1183.10000", + "feature": { + "word": "you" + }, + "id": 3180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1183.57000", + "end": "1183.80000", + "feature": { + "word": "mr" + }, + "id": 3182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1183.90000", + "end": "1184.35000", + "feature": { + "word": "garwood" + }, + "id": 3184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1184.54000", + "end": "1184.70000", + "feature": { + "word": "you" + }, + "id": 3186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1184.70000", + "end": "1184.85000", + "feature": { + "word": "can" + }, + "id": 3187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1184.85000", + "end": "1185.38000", + "feature": { + "word": "help" + }, + "id": 3188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1185.41000", + "end": "1185.44000", + "feature": { + "word": "" + }, + "id": 3190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1185.74000", + "end": "1185.83000", + "feature": { + "word": "ms" + }, + "id": 3192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1185.83000", + "end": "1185.98000", + "feature": { + "word": "yes" + }, + "id": 3193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1185.98000", + "end": "1186.04000", + "feature": { + "word": "sir" + }, + "id": 3194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1186.04000", + "end": "1186.16000", + "feature": { + "word": "sen" + }, + "id": 3195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1186.57000", + "end": "1186.70000", + "feature": { + "word": "and" + }, + "id": 3197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1186.70000", + "end": "1186.77000", + "feature": { + "word": "in" + }, + "id": 3198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1186.77000", + "end": "1187.06000", + "feature": { + "word": "fact" + }, + "id": 3199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1187.06000", + "end": "1187.12000", + "feature": { + "word": "you" + }, + "id": 3200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1187.12000", + "end": "1187.21000", + "feature": { + "word": "did" + }, + "id": 3201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1187.21000", + "end": "1187.38000", + "feature": { + "word": "ms" + }, + "id": 3202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1188.02000", + "end": "1188.26000", + "feature": { + "word": "yes" + }, + "id": 3204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1188.26000", + "end": "1188.34000", + "feature": { + "word": "i" + }, + "id": 3205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1188.34000", + "end": "1188.58000", + "feature": { + "word": "did" + }, + "id": 3206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1188.58000", + "end": "1188.67000", + "feature": { + "word": "sen" + }, + "id": 3207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1188.71000", + "end": "1189.00000", + "feature": { + "word": "then" + }, + "id": 3209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1189.00000", + "end": "1189.06000", + "feature": { + "word": "and" + }, + "id": 3210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1189.06000", + "end": "1189.38000", + "feature": { + "word": "there" + }, + "id": 3211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1189.38000", + "end": "1189.70000", + "feature": { + "word": "you" + }, + "id": 3212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1189.70000", + "end": "1189.97000", + "feature": { + "word": "issued" + }, + "id": 3213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1189.97000", + "end": "1190.05000", + "feature": { + "word": "a" + }, + "id": 3214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1190.05000", + "end": "1190.34000", + "feature": { + "word": "check" + }, + "id": 3215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1190.34000", + "end": "1190.43000", + "feature": { + "word": "" + }, + "id": 3216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1190.43000", + "end": "1190.59000", + "feature": { + "word": "or" + }, + "id": 3217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1190.59000", + "end": "1190.90000", + "feature": { + "word": "shortly" + }, + "id": 3218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1190.90000", + "end": "1191.41000", + "feature": { + "word": "thereafter" + }, + "id": 3219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1191.41000", + "end": "1192.00000", + "feature": { + "word": "" + }, + "id": 3220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1192.00000", + "end": "1192.13000", + "feature": { + "word": "for" + }, + "id": 3221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1192.13000", + "end": "1192.63000", + "feature": { + "word": "" + }, + "id": 3222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1192.63000", + "end": "1192.72000", + "feature": { + "word": "ms" + }, + "id": 3223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1193.04000", + "end": "1193.30000", + "feature": { + "word": "yes" + }, + "id": 3225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1194.54000", + "end": "1194.87000", + "feature": { + "word": "sen" + }, + "id": 3227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1194.87000", + "end": "1195.08000", + "feature": { + "word": "that" + }, + "id": 3228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1195.08000", + "end": "1195.14000", + "feature": { + "word": "s" + }, + "id": 3229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1195.14000", + "end": "1195.25000", + "feature": { + "word": "" + }, + "id": 3230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1195.25000", + "end": "1195.71000", + "feature": { + "word": "" + }, + "id": 3231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1195.71000", + "end": "1196.08000", + "feature": { + "word": "where" + }, + "id": 3232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1196.08000", + "end": "1196.17000", + "feature": { + "word": "i" + }, + "id": 3233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1196.17000", + "end": "1196.41000", + "feature": { + "word": "come" + }, + "id": 3234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1196.41000", + "end": "1196.54000", + "feature": { + "word": "from" + }, + "id": 3235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1196.54000", + "end": "1196.67000", + "feature": { + "word": "we" + }, + "id": 3236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1196.67000", + "end": "1196.91000", + "feature": { + "word": "call" + }, + "id": 3237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1196.91000", + "end": "1197.14000", + "feature": { + "word": "that" + }, + "id": 3238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1197.14000", + "end": "1197.30000", + "feature": { + "word": "the" + }, + "id": 3239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1197.30000", + "end": "1197.52000", + "feature": { + "word": "old" + }, + "id": 3240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1197.52000", + "end": "1197.89000", + "feature": { + "word": "one" + }, + "id": 3241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1197.89000", + "end": "1198.14000", + "feature": { + "word": "two" + }, + "id": 3242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1198.14000", + "end": "1198.69000", + "feature": { + "word": "punch" + }, + "id": 3243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1198.78000", + "end": "1198.87000", + "feature": { + "word": "that" + }, + "id": 3245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1198.87000", + "end": "1198.90000", + "feature": { + "word": "s" + }, + "id": 3246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1198.90000", + "end": "1199.05000", + "feature": { + "word": "what" + }, + "id": 3247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1199.05000", + "end": "1199.14000", + "feature": { + "word": "we" + }, + "id": 3248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1199.23000", + "end": "1199.44000", + "feature": { + "word": "call" + }, + "id": 3250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1199.44000", + "end": "1199.65000", + "feature": { + "word": "that" + }, + "id": 3251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1199.71000", + "end": "1199.74000", + "feature": { + "word": "" + }, + "id": 3253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1199.97000", + "end": "1200.06000", + "feature": { + "word": "ms" + }, + "id": 3255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1200.06000", + "end": "1200.22000", + "feature": { + "word": "they" + }, + "id": 3256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1200.22000", + "end": "1200.38000", + "feature": { + "word": "didn't" + }, + "id": 3257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1200.38000", + "end": "1200.58000", + "feature": { + "word": "have" + }, + "id": 3258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1200.58000", + "end": "1200.71000", + "feature": { + "word": "to" + }, + "id": 3259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1200.71000", + "end": "1200.86000", + "feature": { + "word": "do" + }, + "id": 3260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1200.86000", + "end": "1200.93000", + "feature": { + "word": "a" + }, + "id": 3261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1200.93000", + "end": "1201.16000", + "feature": { + "word": "one" + }, + "id": 3262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1201.16000", + "end": "1201.34000", + "feature": { + "word": "two" + }, + "id": 3263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1201.34000", + "end": "1201.67000", + "feature": { + "word": "punch" + }, + "id": 3264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1201.67000", + "end": "1201.80000", + "feature": { + "word": "with" + }, + "id": 3265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1201.80000", + "end": "1201.90000", + "feature": { + "word": "me" + }, + "id": 3266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1201.90000", + "end": "1202.12000", + "feature": { + "word": "because" + }, + "id": 3267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1202.12000", + "end": "1202.26000", + "feature": { + "word": "they" + }, + "id": 3268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1202.26000", + "end": "1202.51000", + "feature": { + "word": "knew" + }, + "id": 3269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1202.51000", + "end": "1202.60000", + "feature": { + "word": "i" + }, + "id": 3270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1202.60000", + "end": "1202.84000", + "feature": { + "word": "was" + }, + "id": 3271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1202.84000", + "end": "1203.31000", + "feature": { + "word": "already" + }, + "id": 3272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1203.66000", + "end": "1204.09000", + "feature": { + "word": "so" + }, + "id": 3274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1204.09000", + "end": "1204.70000", + "feature": { + "word": "interested" + }, + "id": 3275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1204.70000", + "end": "1204.88000", + "feature": { + "word": "and" + }, + "id": 3276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1204.88000", + "end": "1205.17000", + "feature": { + "word": "so" + }, + "id": 3277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1205.20000", + "end": "1205.56000", + "feature": { + "word": "eager" + }, + "id": 3279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1205.72000", + "end": "1205.85000", + "feature": { + "word": "to" + }, + "id": 3281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1205.85000", + "end": "1206.46000", + "feature": { + "word": "help" + }, + "id": 3282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1206.62000", + "end": "1206.74000", + "feature": { + "word": "to" + }, + "id": 3284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1206.74000", + "end": "1207.11000", + "feature": { + "word": "defend" + }, + "id": 3285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1207.11000", + "end": "1207.20000", + "feature": { + "word": "our" + }, + "id": 3286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1207.20000", + "end": "1207.63000", + "feature": { + "word": "country" + }, + "id": 3287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1207.78000", + "end": "1208.06000", + "feature": { + "word": "that" + }, + "id": 3289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1208.56000", + "end": "1208.71000", + "feature": { + "word": "all" + }, + "id": 3291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1208.71000", + "end": "1208.79000", + "feature": { + "word": "they" + }, + "id": 3292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1208.79000", + "end": "1208.93000", + "feature": { + "word": "had" + }, + "id": 3293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1208.93000", + "end": "1209.02000", + "feature": { + "word": "to" + }, + "id": 3294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1209.02000", + "end": "1209.18000", + "feature": { + "word": "do" + }, + "id": 3295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1209.18000", + "end": "1209.34000", + "feature": { + "word": "was" + }, + "id": 3296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1209.34000", + "end": "1209.68000", + "feature": { + "word": "ask" + }, + "id": 3297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1209.68000", + "end": "1209.75000", + "feature": { + "word": "me" + }, + "id": 3298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1209.75000", + "end": "1209.81000", + "feature": { + "word": "and" + }, + "id": 3299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1209.81000", + "end": "1209.92000", + "feature": { + "word": "if" + }, + "id": 3300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1209.92000", + "end": "1210.00000", + "feature": { + "word": "i" + }, + "id": 3301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1210.00000", + "end": "1210.18000", + "feature": { + "word": "had" + }, + "id": 3302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1210.18000", + "end": "1210.30000", + "feature": { + "word": "it" + }, + "id": 3303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1210.30000", + "end": "1210.41000", + "feature": { + "word": "i" + }, + "id": 3304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1210.41000", + "end": "1210.47000", + "feature": { + "word": "" + }, + "id": 3305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1210.47000", + "end": "1210.62000", + "feature": { + "word": "give" + }, + "id": 3306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1210.62000", + "end": "1210.95000", + "feature": { + "word": "it" + }, + "id": 3307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1211.36000", + "end": "1211.50000", + "feature": { + "word": "at" + }, + "id": 3309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1211.50000", + "end": "1211.79000", + "feature": { + "word": "one" + }, + "id": 3310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1211.79000", + "end": "1212.11000", + "feature": { + "word": "point" + }, + "id": 3311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1212.11000", + "end": "1212.52000", + "feature": { + "word": "william" + }, + "id": 3312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1212.52000", + "end": "1213.05000", + "feature": { + "word": "o'boyle" + }, + "id": 3313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1213.05000", + "end": "1213.24000", + "feature": { + "word": "was" + }, + "id": 3314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1213.24000", + "end": "1213.84000", + "feature": { + "word": "hesitant" + }, + "id": 3315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1213.84000", + "end": "1213.95000", + "feature": { + "word": "to" + }, + "id": 3316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1213.95000", + "end": "1214.47000", + "feature": { + "word": "describe" + }, + "id": 3317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1214.47000", + "end": "1214.55000", + "feature": { + "word": "a" + }, + "id": 3318, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1214.55000", + "end": "1215.11000", + "feature": { + "word": "plan" + }, + "id": 3319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1215.33000", + "end": "1215.71000", + "feature": { + "word": "" + }, + "id": 3321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1215.71000", + "end": "1216.06000", + "feature": { + "word": "north" + }, + "id": 3322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1216.09000", + "end": "1216.29000", + "feature": { + "word": "had" + }, + "id": 3324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1216.29000", + "end": "1216.68000", + "feature": { + "word": "shared" + }, + "id": 3325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1216.68000", + "end": "1216.91000", + "feature": { + "word": "with" + }, + "id": 3326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1216.91000", + "end": "1217.13000", + "feature": { + "word": "him" + }, + "id": 3327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1217.45000", + "end": "1217.92000", + "feature": { + "word": "mr" + }, + "id": 3329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1217.92000", + "end": "1218.02000", + "feature": { + "word": "did" + }, + "id": 3330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1218.02000", + "end": "1218.25000", + "feature": { + "word": "" + }, + "id": 3331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1218.25000", + "end": "1218.73000", + "feature": { + "word": "north" + }, + "id": 3332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1218.73000", + "end": "1219.39000", + "feature": { + "word": "again" + }, + "id": 3333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1219.39000", + "end": "1219.49000", + "feature": { + "word": "in" + }, + "id": 3334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1219.49000", + "end": "1220.02000", + "feature": { + "word": "connection" + }, + "id": 3335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1220.02000", + "end": "1220.39000", + "feature": { + "word": "with" + }, + "id": 3336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1220.54000", + "end": "1220.72000", + "feature": { + "word": "your" + }, + "id": 3338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1220.72000", + "end": "1221.06000", + "feature": { + "word": "interest" + }, + "id": 3339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1221.06000", + "end": "1221.14000", + "feature": { + "word": "in" + }, + "id": 3340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1221.14000", + "end": "1221.45000", + "feature": { + "word": "helping" + }, + "id": 3341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1221.45000", + "end": "1221.51000", + "feature": { + "word": "the" + }, + "id": 3342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1221.51000", + "end": "1222.00000", + "feature": { + "word": "contras" + }, + "id": 3343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1222.00000", + "end": "1222.25000", + "feature": { + "word": "tell" + }, + "id": 3344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1222.25000", + "end": "1222.54000", + "feature": { + "word": "you" + }, + "id": 3345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1222.57000", + "end": "1222.67000", + "feature": { + "word": "a" + }, + "id": 3347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1222.67000", + "end": "1223.25000", + "feature": { + "word": "secret" + }, + "id": 3348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1223.25000", + "end": "1223.75000", + "feature": { + "word": "plan" + }, + "id": 3349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1224.55000", + "end": "1225.09000", + "feature": { + "word": "to" + }, + "id": 3351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1225.71000", + "end": "1226.67000", + "feature": { + "word": "allow" + }, + "id": 3353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1226.67000", + "end": "1226.84000", + "feature": { + "word": "the" + }, + "id": 3354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1226.87000", + "end": "1227.24000", + "feature": { + "word": "contras" + }, + "id": 3356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1227.24000", + "end": "1227.32000", + "feature": { + "word": "to" + }, + "id": 3357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1227.32000", + "end": "1227.64000", + "feature": { + "word": "take" + }, + "id": 3358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1227.64000", + "end": "1228.03000", + "feature": { + "word": "power" + }, + "id": 3359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1228.03000", + "end": "1228.14000", + "feature": { + "word": "in" + }, + "id": 3360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1228.14000", + "end": "1228.51000", + "feature": { + "word": "nicaragua" + }, + "id": 3361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1228.51000", + "end": "1228.66000", + "feature": { + "word": "mr" + }, + "id": 3362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1228.66000", + "end": "1228.69000", + "feature": { + "word": "o'" + }, + "id": 3363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1229.54000", + "end": "1229.82000", + "feature": { + "word": "yes" + }, + "id": 3365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1229.82000", + "end": "1229.99000", + "feature": { + "word": "mr" + }, + "id": 3366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1230.21000", + "end": "1230.38000", + "feature": { + "word": "and" + }, + "id": 3368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1230.38000", + "end": "1230.55000", + "feature": { + "word": "can" + }, + "id": 3369, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1230.55000", + "end": "1230.63000", + "feature": { + "word": "you" + }, + "id": 3370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1230.63000", + "end": "1231.07000", + "feature": { + "word": "describe" + }, + "id": 3371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1231.07000", + "end": "1231.24000", + "feature": { + "word": "that" + }, + "id": 3372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1231.24000", + "end": "1231.34000", + "feature": { + "word": "for" + }, + "id": 3373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1231.34000", + "end": "1231.45000", + "feature": { + "word": "the" + }, + "id": 3374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1231.45000", + "end": "1231.73000", + "feature": { + "word": "committee" + }, + "id": 3375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1231.82000", + "end": "1232.06000", + "feature": { + "word": "please" + }, + "id": 3377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1234.92000", + "end": "1235.13000", + "feature": { + "word": "mr" + }, + "id": 3379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1235.13000", + "end": "1235.16000", + "feature": { + "word": "o'" + }, + "id": 3380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1235.16000", + "end": "1235.41000", + "feature": { + "word": "well" + }, + "id": 3381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1235.44000", + "end": "1235.61000", + "feature": { + "word": "you" + }, + "id": 3383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1235.61000", + "end": "1235.98000", + "feature": { + "word": "understand" + }, + "id": 3384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1235.98000", + "end": "1236.06000", + "feature": { + "word": "of" + }, + "id": 3385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1236.06000", + "end": "1236.30000", + "feature": { + "word": "course" + }, + "id": 3386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1236.30000", + "end": "1236.40000", + "feature": { + "word": "that" + }, + "id": 3387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1236.40000", + "end": "1236.51000", + "feature": { + "word": "" + }, + "id": 3388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1236.51000", + "end": "1236.76000", + "feature": { + "word": "north" + }, + "id": 3389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1236.76000", + "end": "1237.22000", + "feature": { + "word": "indicated" + }, + "id": 3390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1237.22000", + "end": "1237.29000", + "feature": { + "word": "to" + }, + "id": 3391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1237.29000", + "end": "1237.43000", + "feature": { + "word": "me" + }, + "id": 3392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1237.43000", + "end": "1237.58000", + "feature": { + "word": "that" + }, + "id": 3393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1237.58000", + "end": "1237.77000", + "feature": { + "word": "that" + }, + "id": 3394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1237.77000", + "end": "1238.09000", + "feature": { + "word": "was" + }, + "id": 3395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1238.25000", + "end": "1238.64000", + "feature": { + "word": "secret" + }, + "id": 3397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1240.37000", + "end": "1240.80000", + "feature": { + "word": "mr" + }, + "id": 3399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1241.94000", + "end": "1241.97000", + "feature": { + "word": "i" + }, + "id": 3401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1242.36000", + "end": "1242.98000", + "feature": { + "word": "understand" + }, + "id": 3403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1242.98000", + "end": "1243.12000", + "feature": { + "word": "that" + }, + "id": 3404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1243.12000", + "end": "1243.27000", + "feature": { + "word": "he" + }, + "id": 3405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1243.27000", + "end": "1243.71000", + "feature": { + "word": "indicated" + }, + "id": 3406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1243.71000", + "end": "1243.83000", + "feature": { + "word": "to" + }, + "id": 3407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1243.83000", + "end": "1243.99000", + "feature": { + "word": "you" + }, + "id": 3408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1243.99000", + "end": "1244.14000", + "feature": { + "word": "that" + }, + "id": 3409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1244.14000", + "end": "1244.24000", + "feature": { + "word": "it" + }, + "id": 3410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1244.24000", + "end": "1244.48000", + "feature": { + "word": "was" + }, + "id": 3411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1244.48000", + "end": "1244.96000", + "feature": { + "word": "secret" + }, + "id": 3412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1244.96000", + "end": "1245.24000", + "feature": { + "word": "and" + }, + "id": 3413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1245.24000", + "end": "1245.78000", + "feature": { + "word": "without" + }, + "id": 3414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1245.78000", + "end": "1246.38000", + "feature": { + "word": "disclosing" + }, + "id": 3415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1246.38000", + "end": "1246.56000", + "feature": { + "word": "any" + }, + "id": 3416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1246.56000", + "end": "1246.66000", + "feature": { + "word": "of" + }, + "id": 3417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1246.66000", + "end": "1246.77000", + "feature": { + "word": "the" + }, + "id": 3418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1246.77000", + "end": "1247.45000", + "feature": { + "word": "specifics" + }, + "id": 3419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1247.45000", + "end": "1247.61000", + "feature": { + "word": "would" + }, + "id": 3420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1247.61000", + "end": "1247.67000", + "feature": { + "word": "you" + }, + "id": 3421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1247.67000", + "end": "1248.17000", + "feature": { + "word": "describe" + }, + "id": 3422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1248.17000", + "end": "1248.32000", + "feature": { + "word": "in" + }, + "id": 3423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1248.35000", + "end": "1248.74000", + "feature": { + "word": "general" + }, + "id": 3425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1248.77000", + "end": "1249.25000", + "feature": { + "word": "terms" + }, + "id": 3427, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1249.25000", + "end": "1249.35000", + "feature": { + "word": "the" + }, + "id": 3428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1249.35000", + "end": "1249.82000", + "feature": { + "word": "plan" + }, + "id": 3429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1251.53000", + "end": "1251.84000", + "feature": { + "word": "the" + }, + "id": 3431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1251.92000", + "end": "1252.18000", + "feature": { + "word": "committee" + }, + "id": 3433, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1252.18000", + "end": "1252.29000", + "feature": { + "word": "does" + }, + "id": 3434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1252.29000", + "end": "1252.48000", + "feature": { + "word": "not" + }, + "id": 3435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1252.48000", + "end": "1252.61000", + "feature": { + "word": "need" + }, + "id": 3436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1252.61000", + "end": "1252.68000", + "feature": { + "word": "to" + }, + "id": 3437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1252.68000", + "end": "1252.83000", + "feature": { + "word": "have" + }, + "id": 3438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1252.83000", + "end": "1252.91000", + "feature": { + "word": "the" + }, + "id": 3439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1252.91000", + "end": "1253.42000", + "feature": { + "word": "specifics" + }, + "id": 3440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1253.42000", + "end": "1253.52000", + "feature": { + "word": "but" + }, + "id": 3441, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1253.52000", + "end": "1253.69000", + "feature": { + "word": "just" + }, + "id": 3442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1253.69000", + "end": "1254.08000", + "feature": { + "word": "describe" + }, + "id": 3443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1254.08000", + "end": "1254.21000", + "feature": { + "word": "to" + }, + "id": 3444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1254.21000", + "end": "1254.39000", + "feature": { + "word": "us" + }, + "id": 3445, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1254.39000", + "end": "1254.69000", + "feature": { + "word": "please" + }, + "id": 3446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1254.69000", + "end": "1254.80000", + "feature": { + "word": "in" + }, + "id": 3447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1254.80000", + "end": "1255.09000", + "feature": { + "word": "general" + }, + "id": 3448, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1255.09000", + "end": "1255.50000", + "feature": { + "word": "terms" + }, + "id": 3449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1255.50000", + "end": "1255.56000", + "feature": { + "word": "the" + }, + "id": 3450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1255.56000", + "end": "1255.82000", + "feature": { + "word": "nature" + }, + "id": 3451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1255.82000", + "end": "1255.91000", + "feature": { + "word": "of" + }, + "id": 3452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1255.91000", + "end": "1255.99000", + "feature": { + "word": "the" + }, + "id": 3453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1256.02000", + "end": "1256.28000", + "feature": { + "word": "plan" + }, + "id": 3455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1256.28000", + "end": "1256.43000", + "feature": { + "word": "mr" + }, + "id": 3456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1256.47000", + "end": "1256.50000", + "feature": { + "word": "o'" + }, + "id": 3458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1256.53000", + "end": "1256.63000", + "feature": { + "word": "well" + }, + "id": 3460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1256.63000", + "end": "1256.75000", + "feature": { + "word": "the" + }, + "id": 3461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1256.75000", + "end": "1257.09000", + "feature": { + "word": "plan" + }, + "id": 3462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1257.09000", + "end": "1257.70000", + "feature": { + "word": "itself" + }, + "id": 3463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1257.70000", + "end": "1257.84000", + "feature": { + "word": "i" + }, + "id": 3464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1257.84000", + "end": "1258.13000", + "feature": { + "word": "took" + }, + "id": 3465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1258.13000", + "end": "1258.21000", + "feature": { + "word": "to" + }, + "id": 3466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1258.21000", + "end": "1258.38000", + "feature": { + "word": "be" + }, + "id": 3467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1258.38000", + "end": "1258.88000", + "feature": { + "word": "secret" + }, + "id": 3468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1260.99000", + "end": "1261.23000", + "feature": { + "word": "and" + }, + "id": 3470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1261.23000", + "end": "1261.43000", + "feature": { + "word": "in" + }, + "id": 3471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1261.43000", + "end": "1261.98000", + "feature": { + "word": "general" + }, + "id": 3472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1261.98000", + "end": "1262.11000", + "feature": { + "word": "" + }, + "id": 3473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1262.11000", + "end": "1262.16000", + "feature": { + "word": "i" + }, + "id": 3474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1262.16000", + "end": "1262.68000", + "feature": { + "word": "mean" + }, + "id": 3475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1263.09000", + "end": "1263.65000", + "feature": { + "word": "specific" + }, + "id": 3477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1263.65000", + "end": "1263.79000", + "feature": { + "word": "or" + }, + "id": 3478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1263.79000", + "end": "1264.18000", + "feature": { + "word": "general" + }, + "id": 3479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1264.33000", + "end": "1264.65000", + "feature": { + "word": "mr" + }, + "id": 3481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1265.00000", + "end": "1265.23000", + "feature": { + "word": "when" + }, + "id": 3483, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1265.23000", + "end": "1265.51000", + "feature": { + "word": "did" + }, + "id": 3484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1265.51000", + "end": "1266.51000", + "feature": { + "word": "this" + }, + "id": 3485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1266.84000", + "end": "1267.61000", + "feature": { + "word": "classified" + }, + "id": 3487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1267.61000", + "end": "1268.03000", + "feature": { + "word": "briefing" + }, + "id": 3488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1268.03000", + "end": "1268.61000", + "feature": { + "word": "occur" + }, + "id": 3489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1268.70000", + "end": "1268.89000", + "feature": { + "word": "that" + }, + "id": 3491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1268.89000", + "end": "1269.02000", + "feature": { + "word": "you" + }, + "id": 3492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1269.02000", + "end": "1269.22000", + "feature": { + "word": "have" + }, + "id": 3493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1269.22000", + "end": "1269.58000", + "feature": { + "word": "alluded" + }, + "id": 3494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1269.58000", + "end": "1269.78000", + "feature": { + "word": "to" + }, + "id": 3495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1270.40000", + "end": "1270.55000", + "feature": { + "word": "mr" + }, + "id": 3497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1270.71000", + "end": "1270.98000", + "feature": { + "word": "o'" + }, + "id": 3499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1270.98000", + "end": "1271.31000", + "feature": { + "word": "again" + }, + "id": 3500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1271.31000", + "end": "1271.43000", + "feature": { + "word": "i'm" + }, + "id": 3501, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1271.43000", + "end": "1271.84000", + "feature": { + "word": "not" + }, + "id": 3502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1272.00000", + "end": "1272.25000", + "feature": { + "word": "sure" + }, + "id": 3504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1272.25000", + "end": "1272.59000", + "feature": { + "word": "whether" + }, + "id": 3505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1272.70000", + "end": "1272.81000", + "feature": { + "word": "it" + }, + "id": 3507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1272.81000", + "end": "1272.91000", + "feature": { + "word": "s" + }, + "id": 3508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1272.91000", + "end": "1273.31000", + "feature": { + "word": "correct" + }, + "id": 3509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1273.31000", + "end": "1274.13000", + "feature": { + "word": "to" + }, + "id": 3510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1274.16000", + "end": "1274.56000", + "feature": { + "word": "describe" + }, + "id": 3512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1274.56000", + "end": "1274.62000", + "feature": { + "word": "it" + }, + "id": 3513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1274.62000", + "end": "1274.74000", + "feature": { + "word": "as" + }, + "id": 3514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1274.74000", + "end": "1274.79000", + "feature": { + "word": "a" + }, + "id": 3515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1274.79000", + "end": "1275.52000", + "feature": { + "word": "classified" + }, + "id": 3516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1275.52000", + "end": "1275.72000", + "feature": { + "word": "briefing" + }, + "id": 3517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1275.72000", + "end": "1275.88000", + "feature": { + "word": "mr" + }, + "id": 3518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1275.88000", + "end": "1275.99000", + "feature": { + "word": "well" + }, + "id": 3519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1275.99000", + "end": "1276.05000", + "feature": { + "word": "the" + }, + "id": 3520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1276.05000", + "end": "1276.56000", + "feature": { + "word": "secret" + }, + "id": 3521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1276.56000", + "end": "1277.20000", + "feature": { + "word": "information" + }, + "id": 3522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1277.20000", + "end": "1277.35000", + "feature": { + "word": "you" + }, + "id": 3523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1277.35000", + "end": "1277.43000", + "feature": { + "word": "were" + }, + "id": 3524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1277.43000", + "end": "1277.97000", + "feature": { + "word": "receiving" + }, + "id": 3525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1277.97000", + "end": "1278.00000", + "feature": { + "word": "" + }, + "id": 3526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1278.00000", + "end": "1278.30000", + "feature": { + "word": "whatever" + }, + "id": 3527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1278.30000", + "end": "1278.42000", + "feature": { + "word": "you" + }, + "id": 3528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1278.42000", + "end": "1278.53000", + "feature": { + "word": "would" + }, + "id": 3529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1278.53000", + "end": "1278.77000", + "feature": { + "word": "like" + }, + "id": 3530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1278.77000", + "end": "1279.49000", + "feature": { + "word": "" + }, + "id": 3531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1279.49000", + "end": "1279.79000", + "feature": { + "word": "whatever" + }, + "id": 3532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1279.79000", + "end": "1279.97000", + "feature": { + "word": "term" + }, + "id": 3533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1279.97000", + "end": "1280.03000", + "feature": { + "word": "you" + }, + "id": 3534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1280.03000", + "end": "1280.12000", + "feature": { + "word": "would" + }, + "id": 3535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1280.12000", + "end": "1280.28000", + "feature": { + "word": "like" + }, + "id": 3536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1280.28000", + "end": "1280.35000", + "feature": { + "word": "to" + }, + "id": 3537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1280.35000", + "end": "1280.55000", + "feature": { + "word": "use" + }, + "id": 3538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1280.75000", + "end": "1280.90000", + "feature": { + "word": "mr" + }, + "id": 3540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1281.09000", + "end": "1281.12000", + "feature": { + "word": "o'" + }, + "id": 3542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1281.12000", + "end": "1281.74000", + "feature": { + "word": "when" + }, + "id": 3543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1281.74000", + "end": "1282.65000", + "feature": { + "word": "" + }, + "id": 3544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1282.65000", + "end": "1282.71000", + "feature": { + "word": "it" + }, + "id": 3545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1282.90000", + "end": "1282.99000", + "feature": { + "word": "was" + }, + "id": 3547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1282.99000", + "end": "1283.28000", + "feature": { + "word": "april" + }, + "id": 3548, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1283.28000", + "end": "1283.72000", + "feature": { + "word": "" + }, + "id": 3549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1283.72000", + "end": "1283.84000", + "feature": { + "word": "in" + }, + "id": 3550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1284.30000", + "end": "1284.97000", + "feature": { + "word": "" + }, + "id": 3552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1284.97000", + "end": "1285.23000", + "feature": { + "word": "mr" + }, + "id": 3553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1285.58000", + "end": "1285.73000", + "feature": { + "word": "did" + }, + "id": 3555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1285.73000", + "end": "1285.93000", + "feature": { + "word": "he" + }, + "id": 3556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1285.93000", + "end": "1286.26000", + "feature": { + "word": "ask" + }, + "id": 3557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1286.26000", + "end": "1286.64000", + "feature": { + "word": "you" + }, + "id": 3558, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1286.84000", + "end": "1286.96000", + "feature": { + "word": "at" + }, + "id": 3560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1286.96000", + "end": "1287.18000", + "feature": { + "word": "any" + }, + "id": 3561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1287.18000", + "end": "1287.50000", + "feature": { + "word": "time" + }, + "id": 3562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1287.50000", + "end": "1287.73000", + "feature": { + "word": "whether" + }, + "id": 3563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1287.73000", + "end": "1288.01000", + "feature": { + "word": "you" + }, + "id": 3564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1288.01000", + "end": "1288.67000", + "feature": { + "word": "had" + }, + "id": 3565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1288.70000", + "end": "1288.93000", + "feature": { + "word": "any" + }, + "id": 3567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1288.93000", + "end": "1289.24000", + "feature": { + "word": "kind" + }, + "id": 3568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1289.24000", + "end": "1289.38000", + "feature": { + "word": "of" + }, + "id": 3569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1289.38000", + "end": "1289.80000", + "feature": { + "word": "security" + }, + "id": 3570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1289.80000", + "end": "1290.11000", + "feature": { + "word": "clearance" + }, + "id": 3571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1290.11000", + "end": "1290.26000", + "feature": { + "word": "mr" + }, + "id": 3572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1290.33000", + "end": "1290.36000", + "feature": { + "word": "o'" + }, + "id": 3574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1290.45000", + "end": "1290.64000", + "feature": { + "word": "no" + }, + "id": 3576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1290.64000", + "end": "1290.79000", + "feature": { + "word": "mr" + }, + "id": 3577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1291.61000", + "end": "1291.77000", + "feature": { + "word": "did" + }, + "id": 3579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1291.77000", + "end": "1291.88000", + "feature": { + "word": "you" + }, + "id": 3580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1291.88000", + "end": "1292.46000", + "feature": { + "word": "volunteer" + }, + "id": 3581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1292.46000", + "end": "1292.67000", + "feature": { + "word": "whether" + }, + "id": 3582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1292.67000", + "end": "1292.84000", + "feature": { + "word": "you" + }, + "id": 3583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1292.84000", + "end": "1293.05000", + "feature": { + "word": "had" + }, + "id": 3584, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1293.05000", + "end": "1293.13000", + "feature": { + "word": "or" + }, + "id": 3585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1293.13000", + "end": "1293.47000", + "feature": { + "word": "not" + }, + "id": 3586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1293.76000", + "end": "1293.91000", + "feature": { + "word": "mr" + }, + "id": 3588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1293.91000", + "end": "1293.95000", + "feature": { + "word": "o'" + }, + "id": 3589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1293.95000", + "end": "1294.02000", + "feature": { + "word": "no" + }, + "id": 3590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1294.02000", + "end": "1294.17000", + "feature": { + "word": "mr" + }, + "id": 3591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1294.95000", + "end": "1295.12000", + "feature": { + "word": "do" + }, + "id": 3593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1295.12000", + "end": "1295.27000", + "feature": { + "word": "you" + }, + "id": 3594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1295.27000", + "end": "1295.56000", + "feature": { + "word": "have" + }, + "id": 3595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1295.56000", + "end": "1295.94000", + "feature": { + "word": "security" + }, + "id": 3596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1295.94000", + "end": "1296.21000", + "feature": { + "word": "clearance" + }, + "id": 3597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1296.21000", + "end": "1296.40000", + "feature": { + "word": "mr" + }, + "id": 3598, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1296.48000", + "end": "1296.51000", + "feature": { + "word": "o'" + }, + "id": 3600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1296.55000", + "end": "1296.97000", + "feature": { + "word": "not" + }, + "id": 3602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1296.97000", + "end": "1297.45000", + "feature": { + "word": "currently" + }, + "id": 3603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1297.45000", + "end": "1297.58000", + "feature": { + "word": "no" + }, + "id": 3604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1297.61000", + "end": "1297.84000", + "feature": { + "word": "mr" + }, + "id": 3606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1298.17000", + "end": "1298.32000", + "feature": { + "word": "did" + }, + "id": 3608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1298.32000", + "end": "1298.44000", + "feature": { + "word": "he" + }, + "id": 3609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1298.44000", + "end": "1298.62000", + "feature": { + "word": "tell" + }, + "id": 3610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1298.62000", + "end": "1298.79000", + "feature": { + "word": "you" + }, + "id": 3611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1298.79000", + "end": "1299.20000", + "feature": { + "word": "what" + }, + "id": 3612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1299.20000", + "end": "1299.73000", + "feature": { + "word": "category" + }, + "id": 3613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1299.73000", + "end": "1299.83000", + "feature": { + "word": "of" + }, + "id": 3614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1299.83000", + "end": "1300.46000", + "feature": { + "word": "classification" + }, + "id": 3615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1300.46000", + "end": "1300.56000", + "feature": { + "word": "it" + }, + "id": 3616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1300.56000", + "end": "1300.93000", + "feature": { + "word": "was" + }, + "id": 3617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1300.93000", + "end": "1300.96000", + "feature": { + "word": "" + }, + "id": 3618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1300.96000", + "end": "1301.05000", + "feature": { + "word": "did" + }, + "id": 3619, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1301.05000", + "end": "1301.14000", + "feature": { + "word": "he" + }, + "id": 3620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1301.14000", + "end": "1301.28000", + "feature": { + "word": "every" + }, + "id": 3621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1301.28000", + "end": "1301.84000", + "feature": { + "word": "mention" + }, + "id": 3622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1302.38000", + "end": "1302.64000", + "feature": { + "word": "top" + }, + "id": 3624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1302.64000", + "end": "1303.02000", + "feature": { + "word": "secret" + }, + "id": 3625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1303.02000", + "end": "1303.27000", + "feature": { + "word": "or" + }, + "id": 3626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1303.36000", + "end": "1303.39000", + "feature": { + "word": "a" + }, + "id": 3628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1303.39000", + "end": "1303.61000", + "feature": { + "word": "code" + }, + "id": 3629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1303.61000", + "end": "1304.02000", + "feature": { + "word": "word" + }, + "id": 3630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1304.02000", + "end": "1304.22000", + "feature": { + "word": "or" + }, + "id": 3631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1304.41000", + "end": "1304.93000", + "feature": { + "word": "secret" + }, + "id": 3633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1304.93000", + "end": "1305.14000", + "feature": { + "word": "or" + }, + "id": 3634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1305.19000", + "end": "1305.90000", + "feature": { + "word": "confidential" + }, + "id": 3636, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1306.19000", + "end": "1306.24000", + "feature": { + "word": "or" + }, + "id": 3638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1306.24000", + "end": "1306.56000", + "feature": { + "word": "no" + }, + "id": 3639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1306.63000", + "end": "1307.82000", + "feature": { + "word": "" + }, + "id": 3641, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1308.03000", + "end": "1308.16000", + "feature": { + "word": "or" + }, + "id": 3643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1308.16000", + "end": "1308.47000", + "feature": { + "word": "anything" + }, + "id": 3644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1308.47000", + "end": "1308.53000", + "feature": { + "word": "of" + }, + "id": 3645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1308.53000", + "end": "1308.68000", + "feature": { + "word": "that" + }, + "id": 3646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1308.68000", + "end": "1308.96000", + "feature": { + "word": "nature" + }, + "id": 3647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1308.99000", + "end": "1309.17000", + "feature": { + "word": "mr" + }, + "id": 3649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.17000", + "end": "1309.21000", + "feature": { + "word": "o'" + }, + "id": 3650, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.21000", + "end": "1309.29000", + "feature": { + "word": "no" + }, + "id": 3651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.32000", + "end": "1309.47000", + "feature": { + "word": "mr" + }, + "id": 3653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.47000", + "end": "1309.54000", + "feature": { + "word": "so" + }, + "id": 3654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.54000", + "end": "1309.61000", + "feature": { + "word": "he" + }, + "id": 3655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.61000", + "end": "1309.85000", + "feature": { + "word": "just" + }, + "id": 3656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.85000", + "end": "1309.93000", + "feature": { + "word": "" + }, + "id": 3657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1309.96000", + "end": "1310.32000", + "feature": { + "word": "very" + }, + "id": 3659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1310.32000", + "end": "1310.57000", + "feature": { + "word": "very" + }, + "id": 3660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1310.57000", + "end": "1310.99000", + "feature": { + "word": "secret" + }, + "id": 3661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1310.99000", + "end": "1311.15000", + "feature": { + "word": "is" + }, + "id": 3662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1311.15000", + "end": "1311.21000", + "feature": { + "word": "the" + }, + "id": 3663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1311.21000", + "end": "1311.45000", + "feature": { + "word": "best" + }, + "id": 3664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1311.45000", + "end": "1311.90000", + "feature": { + "word": "description" + }, + "id": 3665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1311.90000", + "end": "1311.98000", + "feature": { + "word": "he" + }, + "id": 3666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1311.98000", + "end": "1312.26000", + "feature": { + "word": "gave" + }, + "id": 3667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1312.26000", + "end": "1312.49000", + "feature": { + "word": "you" + }, + "id": 3668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1313.16000", + "end": "1313.65000", + "feature": { + "word": "mr" + }, + "id": 3670, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1314.52000", + "end": "1314.68000", + "feature": { + "word": "o'" + }, + "id": 3672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1314.68000", + "end": "1314.95000", + "feature": { + "word": "yes" + }, + "id": 3673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1315.10000", + "end": "1315.21000", + "feature": { + "word": "the" + }, + "id": 3675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1315.21000", + "end": "1315.32000", + "feature": { + "word": "way" + }, + "id": 3676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1315.32000", + "end": "1315.38000", + "feature": { + "word": "he" + }, + "id": 3677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1315.38000", + "end": "1315.52000", + "feature": { + "word": "put" + }, + "id": 3678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1315.52000", + "end": "1315.63000", + "feature": { + "word": "it" + }, + "id": 3679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1315.63000", + "end": "1315.89000", + "feature": { + "word": "was" + }, + "id": 3680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1316.10000", + "end": "1316.25000", + "feature": { + "word": "you" + }, + "id": 3682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1316.25000", + "end": "1316.60000", + "feature": { + "word": "can't" + }, + "id": 3683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1316.60000", + "end": "1316.81000", + "feature": { + "word": "tell" + }, + "id": 3684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1316.81000", + "end": "1317.08000", + "feature": { + "word": "this" + }, + "id": 3685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1317.08000", + "end": "1317.20000", + "feature": { + "word": "to" + }, + "id": 3686, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1317.20000", + "end": "1317.54000", + "feature": { + "word": "anybody" + }, + "id": 3687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1317.54000", + "end": "1317.69000", + "feature": { + "word": "" + }, + "id": 3688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1318.33000", + "end": "1319.01000", + "feature": { + "word": "suggesting" + }, + "id": 3690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1319.01000", + "end": "1319.17000", + "feature": { + "word": "the" + }, + "id": 3691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1319.17000", + "end": "1319.85000", + "feature": { + "word": "information" + }, + "id": 3692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1319.85000", + "end": "1320.02000", + "feature": { + "word": "was" + }, + "id": 3693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1320.02000", + "end": "1320.26000", + "feature": { + "word": "not" + }, + "id": 3694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1320.26000", + "end": "1320.95000", + "feature": { + "word": "classified" + }, + "id": 3695, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1320.95000", + "end": "1321.39000", + "feature": { + "word": "after" + }, + "id": 3696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1321.39000", + "end": "1321.60000", + "feature": { + "word": "all" + }, + "id": 3697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1321.84000", + "end": "1322.31000", + "feature": { + "word": "ohio" + }, + "id": 3699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1322.31000", + "end": "1322.87000", + "feature": { + "word": "democratic" + }, + "id": 3700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1322.87000", + "end": "1323.49000", + "feature": { + "word": "congressman" + }, + "id": 3701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1323.49000", + "end": "1323.83000", + "feature": { + "word": "louis" + }, + "id": 3702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1323.83000", + "end": "1324.23000", + "feature": { + "word": "stokes" + }, + "id": 3703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1324.33000", + "end": "1324.74000", + "feature": { + "word": "pressed" + }, + "id": 3705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1324.74000", + "end": "1324.97000", + "feature": { + "word": "for" + }, + "id": 3706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1324.97000", + "end": "1325.49000", + "feature": { + "word": "o'boyle" + }, + "id": 3707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1325.49000", + "end": "1325.63000", + "feature": { + "word": "to" + }, + "id": 3708, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1325.63000", + "end": "1326.15000", + "feature": { + "word": "reveal" + }, + "id": 3709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1326.15000", + "end": "1326.24000", + "feature": { + "word": "the" + }, + "id": 3710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1326.24000", + "end": "1326.68000", + "feature": { + "word": "plan" + }, + "id": 3711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1326.68000", + "end": "1326.78000", + "feature": { + "word": "rep" + }, + "id": 3712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1326.81000", + "end": "1326.90000", + "feature": { + "word": "louis" + }, + "id": 3714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1326.90000", + "end": "1327.05000", + "feature": { + "word": "stokes" + }, + "id": 3715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1327.05000", + "end": "1327.11000", + "feature": { + "word": "" + }, + "id": 3716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1327.11000", + "end": "1327.23000", + "feature": { + "word": "ohio" + }, + "id": 3717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1327.23000", + "end": "1327.29000", + "feature": { + "word": "you" + }, + "id": 3718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1327.29000", + "end": "1327.40000", + "feature": { + "word": "have" + }, + "id": 3719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1327.40000", + "end": "1327.49000", + "feature": { + "word": "made" + }, + "id": 3720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1327.49000", + "end": "1327.56000", + "feature": { + "word": "the" + }, + "id": 3721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1327.56000", + "end": "1328.03000", + "feature": { + "word": "inquiry" + }, + "id": 3722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1328.03000", + "end": "1328.60000", + "feature": { + "word": "yourself" + }, + "id": 3723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1328.60000", + "end": "1328.67000", + "feature": { + "word": "of" + }, + "id": 3724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1328.67000", + "end": "1328.96000", + "feature": { + "word": "mr" + }, + "id": 3725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1328.96000", + "end": "1329.40000", + "feature": { + "word": "north" + }, + "id": 3726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1329.40000", + "end": "1329.60000", + "feature": { + "word": "as" + }, + "id": 3727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1329.60000", + "end": "1330.02000", + "feature": { + "word": "to" + }, + "id": 3728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1330.90000", + "end": "1331.34000", + "feature": { + "word": "what" + }, + "id": 3730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1331.34000", + "end": "1331.62000", + "feature": { + "word": "was" + }, + "id": 3731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1331.62000", + "end": "1331.69000", + "feature": { + "word": "the" + }, + "id": 3732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1331.69000", + "end": "1332.22000", + "feature": { + "word": "plan" + }, + "id": 3733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1332.22000", + "end": "1332.48000", + "feature": { + "word": "for" + }, + "id": 3734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1332.48000", + "end": "1333.21000", + "feature": { + "word": "nicaragua" + }, + "id": 3735, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1333.65000", + "end": "1333.71000", + "feature": { + "word": "is" + }, + "id": 3737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1333.71000", + "end": "1333.88000", + "feature": { + "word": "that" + }, + "id": 3738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1333.88000", + "end": "1334.25000", + "feature": { + "word": "correct" + }, + "id": 3739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1334.29000", + "end": "1334.44000", + "feature": { + "word": "mr" + }, + "id": 3741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1334.44000", + "end": "1334.47000", + "feature": { + "word": "o'" + }, + "id": 3742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1334.47000", + "end": "1334.57000", + "feature": { + "word": "that" + }, + "id": 3743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1334.57000", + "end": "1334.62000", + "feature": { + "word": "s" + }, + "id": 3744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1334.62000", + "end": "1334.96000", + "feature": { + "word": "correct" + }, + "id": 3745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1334.96000", + "end": "1335.10000", + "feature": { + "word": "rep" + }, + "id": 3746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1335.56000", + "end": "1335.82000", + "feature": { + "word": "and" + }, + "id": 3748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1335.82000", + "end": "1336.15000", + "feature": { + "word": "then" + }, + "id": 3749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1336.87000", + "end": "1337.01000", + "feature": { + "word": "in" + }, + "id": 3751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1337.01000", + "end": "1337.58000", + "feature": { + "word": "response" + }, + "id": 3752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1337.58000", + "end": "1337.66000", + "feature": { + "word": "to" + }, + "id": 3753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1337.66000", + "end": "1337.94000", + "feature": { + "word": "that" + }, + "id": 3754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1337.94000", + "end": "1338.04000", + "feature": { + "word": "he" + }, + "id": 3755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1338.04000", + "end": "1338.29000", + "feature": { + "word": "then" + }, + "id": 3756, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1338.29000", + "end": "1338.61000", + "feature": { + "word": "said" + }, + "id": 3757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1338.61000", + "end": "1338.74000", + "feature": { + "word": "to" + }, + "id": 3758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1338.74000", + "end": "1339.11000", + "feature": { + "word": "you" + }, + "id": 3759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1339.79000", + "end": "1340.15000", + "feature": { + "word": "something" + }, + "id": 3761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1340.15000", + "end": "1340.28000", + "feature": { + "word": "to" + }, + "id": 3762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1340.28000", + "end": "1340.34000", + "feature": { + "word": "the" + }, + "id": 3763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1340.34000", + "end": "1340.78000", + "feature": { + "word": "effect" + }, + "id": 3764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1340.78000", + "end": "1340.94000", + "feature": { + "word": "that" + }, + "id": 3765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1341.54000", + "end": "1341.68000", + "feature": { + "word": "he" + }, + "id": 3767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1341.68000", + "end": "1341.81000", + "feature": { + "word": "" + }, + "id": 3768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1341.81000", + "end": "1342.10000", + "feature": { + "word": "share" + }, + "id": 3769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1342.10000", + "end": "1342.31000", + "feature": { + "word": "with" + }, + "id": 3770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1342.31000", + "end": "1342.41000", + "feature": { + "word": "you" + }, + "id": 3771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1342.41000", + "end": "1342.56000", + "feature": { + "word": "but" + }, + "id": 3772, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1342.56000", + "end": "1342.71000", + "feature": { + "word": "it" + }, + "id": 3773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1342.71000", + "end": "1342.88000", + "feature": { + "word": "was" + }, + "id": 3774, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1342.88000", + "end": "1343.09000", + "feature": { + "word": "really" + }, + "id": 3775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1343.09000", + "end": "1343.18000", + "feature": { + "word": "a" + }, + "id": 3776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1343.18000", + "end": "1343.60000", + "feature": { + "word": "secret" + }, + "id": 3777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1344.22000", + "end": "1344.28000", + "feature": { + "word": "is" + }, + "id": 3779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1344.28000", + "end": "1344.46000", + "feature": { + "word": "that" + }, + "id": 3780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1344.46000", + "end": "1344.91000", + "feature": { + "word": "correct" + }, + "id": 3781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1344.91000", + "end": "1345.13000", + "feature": { + "word": "mr" + }, + "id": 3782, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1346.04000", + "end": "1346.12000", + "feature": { + "word": "o'" + }, + "id": 3784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1346.12000", + "end": "1346.22000", + "feature": { + "word": "yes" + }, + "id": 3785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1346.22000", + "end": "1346.31000", + "feature": { + "word": "rep" + }, + "id": 3786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1346.31000", + "end": "1346.58000", + "feature": { + "word": "after" + }, + "id": 3787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1346.58000", + "end": "1346.85000", + "feature": { + "word": "that" + }, + "id": 3788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1346.85000", + "end": "1347.06000", + "feature": { + "word": "then" + }, + "id": 3789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1347.06000", + "end": "1347.22000", + "feature": { + "word": "what" + }, + "id": 3790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1347.22000", + "end": "1347.34000", + "feature": { + "word": "did" + }, + "id": 3791, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1347.34000", + "end": "1347.45000", + "feature": { + "word": "he" + }, + "id": 3792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1347.45000", + "end": "1347.64000", + "feature": { + "word": "say" + }, + "id": 3793, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1347.64000", + "end": "1347.79000", + "feature": { + "word": "mr" + }, + "id": 3794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1349.29000", + "end": "1349.41000", + "feature": { + "word": "o'" + }, + "id": 3796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1349.41000", + "end": "1349.47000", + "feature": { + "word": "are" + }, + "id": 3797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1349.47000", + "end": "1349.73000", + "feature": { + "word": "you" + }, + "id": 3798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1350.00000", + "end": "1350.56000", + "feature": { + "word": "requiring" + }, + "id": 3800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1350.56000", + "end": "1350.67000", + "feature": { + "word": "me" + }, + "id": 3801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1350.67000", + "end": "1350.74000", + "feature": { + "word": "to" + }, + "id": 3802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1350.74000", + "end": "1351.00000", + "feature": { + "word": "answer" + }, + "id": 3803, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1351.00000", + "end": "1351.10000", + "feature": { + "word": "that" + }, + "id": 3804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1351.10000", + "end": "1351.21000", + "feature": { + "word": "rep" + }, + "id": 3805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1351.44000", + "end": "1351.63000", + "feature": { + "word": "yes" + }, + "id": 3807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1351.63000", + "end": "1351.73000", + "feature": { + "word": "sir" + }, + "id": 3808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1351.76000", + "end": "1351.91000", + "feature": { + "word": "mr" + }, + "id": 3810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1353.70000", + "end": "1353.73000", + "feature": { + "word": "o'" + }, + "id": 3812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1354.15000", + "end": "1354.30000", + "feature": { + "word": "he" + }, + "id": 3814, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1354.30000", + "end": "1354.52000", + "feature": { + "word": "said" + }, + "id": 3815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1354.52000", + "end": "1354.67000", + "feature": { + "word": "that" + }, + "id": 3816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1354.67000", + "end": "1354.86000", + "feature": { + "word": "there" + }, + "id": 3817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1354.86000", + "end": "1355.15000", + "feature": { + "word": "were" + }, + "id": 3818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1355.39000", + "end": "1355.83000", + "feature": { + "word": "two" + }, + "id": 3820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1356.70000", + "end": "1356.82000", + "feature": { + "word": "" + }, + "id": 3822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1356.82000", + "end": "1356.94000", + "feature": { + "word": "there" + }, + "id": 3823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1356.94000", + "end": "1357.09000", + "feature": { + "word": "was" + }, + "id": 3824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1357.09000", + "end": "1357.38000", + "feature": { + "word": "one" + }, + "id": 3825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1357.38000", + "end": "1357.84000", + "feature": { + "word": "plan" + }, + "id": 3826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1357.84000", + "end": "1357.94000", + "feature": { + "word": "that" + }, + "id": 3827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1357.94000", + "end": "1358.27000", + "feature": { + "word": "had" + }, + "id": 3828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1358.27000", + "end": "1358.66000", + "feature": { + "word": "two" + }, + "id": 3829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1358.96000", + "end": "1359.53000", + "feature": { + "word": "different" + }, + "id": 3831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1360.09000", + "end": "1360.44000", + "feature": { + "word": "" + }, + "id": 3833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1361.39000", + "end": "1361.52000", + "feature": { + "word": "there" + }, + "id": 3835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1361.52000", + "end": "1361.61000", + "feature": { + "word": "were" + }, + "id": 3836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1361.61000", + "end": "1361.85000", + "feature": { + "word": "two" + }, + "id": 3837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1361.85000", + "end": "1362.21000", + "feature": { + "word": "plans" + }, + "id": 3838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1362.21000", + "end": "1362.35000", + "feature": { + "word": "in" + }, + "id": 3839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1362.35000", + "end": "1362.68000", + "feature": { + "word": "one" + }, + "id": 3840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1362.68000", + "end": "1362.82000", + "feature": { + "word": "so" + }, + "id": 3841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1362.82000", + "end": "1362.93000", + "feature": { + "word": "to" + }, + "id": 3842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1362.93000", + "end": "1363.25000", + "feature": { + "word": "speak" + }, + "id": 3843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1363.70000", + "end": "1364.43000", + "feature": { + "word": "one" + }, + "id": 3845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1364.78000", + "end": "1365.02000", + "feature": { + "word": "would" + }, + "id": 3847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1365.02000", + "end": "1365.16000", + "feature": { + "word": "be" + }, + "id": 3848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1365.16000", + "end": "1365.70000", + "feature": { + "word": "implemented" + }, + "id": 3849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1365.70000", + "end": "1366.16000", + "feature": { + "word": "if" + }, + "id": 3850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1366.38000", + "end": "1366.98000", + "feature": { + "word": "congress" + }, + "id": 3852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1367.03000", + "end": "1367.58000", + "feature": { + "word": "approved" + }, + "id": 3854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1367.58000", + "end": "1367.67000", + "feature": { + "word": "the" + }, + "id": 3855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1367.67000", + "end": "1368.05000", + "feature": { + "word": "money" + }, + "id": 3856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1368.48000", + "end": "1369.14000", + "feature": { + "word": "last" + }, + "id": 3858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1369.14000", + "end": "1369.36000", + "feature": { + "word": "year" + }, + "id": 3859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1369.92000", + "end": "1370.06000", + "feature": { + "word": "for" + }, + "id": 3861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1370.06000", + "end": "1370.15000", + "feature": { + "word": "the" + }, + "id": 3862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1370.15000", + "end": "1370.64000", + "feature": { + "word": "contras" + }, + "id": 3863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1370.85000", + "end": "1371.10000", + "feature": { + "word": "one" + }, + "id": 3865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1371.10000", + "end": "1371.21000", + "feature": { + "word": "would" + }, + "id": 3866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1371.21000", + "end": "1371.31000", + "feature": { + "word": "be" + }, + "id": 3867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1371.31000", + "end": "1371.82000", + "feature": { + "word": "implemented" + }, + "id": 3868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1372.11000", + "end": "1372.18000", + "feature": { + "word": "if" + }, + "id": 3870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1372.18000", + "end": "1372.50000", + "feature": { + "word": "congress" + }, + "id": 3871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1372.50000", + "end": "1372.64000", + "feature": { + "word": "did" + }, + "id": 3872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1372.64000", + "end": "1372.95000", + "feature": { + "word": "not" + }, + "id": 3873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1372.95000", + "end": "1373.39000", + "feature": { + "word": "approve" + }, + "id": 3874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1373.39000", + "end": "1373.46000", + "feature": { + "word": "the" + }, + "id": 3875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1373.46000", + "end": "1373.75000", + "feature": { + "word": "money" + }, + "id": 3876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1376.65000", + "end": "1376.85000", + "feature": { + "word": "they" + }, + "id": 3878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1376.85000", + "end": "1377.41000", + "feature": { + "word": "involved" + }, + "id": 3879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1377.41000", + "end": "1377.91000", + "feature": { + "word": "the" + }, + "id": 3880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1377.94000", + "end": "1378.70000", + "feature": { + "word": "nicaraguan" + }, + "id": 3882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1378.70000", + "end": "1379.34000", + "feature": { + "word": "contras" + }, + "id": 3883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1379.72000", + "end": "1380.25000", + "feature": { + "word": "seizing" + }, + "id": 3885, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1380.25000", + "end": "1380.31000", + "feature": { + "word": "a" + }, + "id": 3886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1380.31000", + "end": "1380.53000", + "feature": { + "word": "part" + }, + "id": 3887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1380.53000", + "end": "1380.60000", + "feature": { + "word": "of" + }, + "id": 3888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1380.60000", + "end": "1381.29000", + "feature": { + "word": "nicaragua" + }, + "id": 3889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1382.38000", + "end": "1383.70000", + "feature": { + "word": "establishing" + }, + "id": 3891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1383.74000", + "end": "1384.25000", + "feature": { + "word": "a" + }, + "id": 3893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1384.82000", + "end": "1385.68000", + "feature": { + "word": "provisional" + }, + "id": 3895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1386.94000", + "end": "1387.52000", + "feature": { + "word": "capital" + }, + "id": 3897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1388.23000", + "end": "1388.66000", + "feature": { + "word": "a" + }, + "id": 3899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1388.85000", + "end": "1389.65000", + "feature": { + "word": "provisional" + }, + "id": 3901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1389.65000", + "end": "1390.15000", + "feature": { + "word": "government" + }, + "id": 3902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1391.67000", + "end": "1392.23000", + "feature": { + "word": "and" + }, + "id": 3904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1393.45000", + "end": "1393.93000", + "feature": { + "word": "the" + }, + "id": 3906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1393.96000", + "end": "1394.17000", + "feature": { + "word": "u" + }, + "id": 3908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1394.17000", + "end": "1394.36000", + "feature": { + "word": "s" + }, + "id": 3909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1394.36000", + "end": "1394.68000", + "feature": { + "word": "navy" + }, + "id": 3910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1394.68000", + "end": "1394.97000", + "feature": { + "word": "going" + }, + "id": 3911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1394.97000", + "end": "1395.32000", + "feature": { + "word": "down" + }, + "id": 3912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1395.32000", + "end": "1395.84000", + "feature": { + "word": "blockading" + }, + "id": 3913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1395.84000", + "end": "1395.93000", + "feature": { + "word": "the" + }, + "id": 3914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1395.93000", + "end": "1396.47000", + "feature": { + "word": "country" + }, + "id": 3915, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1398.73000", + "end": "1399.18000", + "feature": { + "word": "preventing" + }, + "id": 3917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1399.18000", + "end": "1399.27000", + "feature": { + "word": "the" + }, + "id": 3918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1399.27000", + "end": "1399.85000", + "feature": { + "word": "supplies" + }, + "id": 3919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1399.85000", + "end": "1400.13000", + "feature": { + "word": "coming" + }, + "id": 3920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1400.13000", + "end": "1400.27000", + "feature": { + "word": "in" + }, + "id": 3921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1400.27000", + "end": "1400.43000", + "feature": { + "word": "from" + }, + "id": 3922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1400.43000", + "end": "1400.87000", + "feature": { + "word": "cuba" + }, + "id": 3923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1401.59000", + "end": "1401.70000", + "feature": { + "word": "to" + }, + "id": 3925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1401.70000", + "end": "1402.01000", + "feature": { + "word": "support" + }, + "id": 3926, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1402.01000", + "end": "1402.09000", + "feature": { + "word": "the" + }, + "id": 3927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1402.09000", + "end": "1402.85000", + "feature": { + "word": "sandinistas" + }, + "id": 3928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1404.79000", + "end": "1405.26000", + "feature": { + "word": "and" + }, + "id": 3930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1405.30000", + "end": "1405.42000", + "feature": { + "word": "at" + }, + "id": 3932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1405.42000", + "end": "1405.65000", + "feature": { + "word": "that" + }, + "id": 3933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1405.65000", + "end": "1406.07000", + "feature": { + "word": "point" + }, + "id": 3934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1406.07000", + "end": "1406.46000", + "feature": { + "word": "the" + }, + "id": 3935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1406.49000", + "end": "1406.56000", + "feature": { + "word": "" + }, + "id": 3937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1406.56000", + "end": "1406.99000", + "feature": { + "word": "supposedly" + }, + "id": 3938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1406.99000", + "end": "1407.02000", + "feature": { + "word": "" + }, + "id": 3939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1407.02000", + "end": "1407.11000", + "feature": { + "word": "the" + }, + "id": 3940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1407.11000", + "end": "1407.78000", + "feature": { + "word": "sandinistas" + }, + "id": 3941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1407.78000", + "end": "1407.94000", + "feature": { + "word": "would" + }, + "id": 3942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1407.94000", + "end": "1408.39000", + "feature": { + "word": "fall" + }, + "id": 3943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1408.84000", + "end": "1409.13000", + "feature": { + "word": "and" + }, + "id": 3945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1409.13000", + "end": "1409.23000", + "feature": { + "word": "the" + }, + "id": 3946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1409.23000", + "end": "1409.84000", + "feature": { + "word": "contra" + }, + "id": 3947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1411.79000", + "end": "1412.32000", + "feature": { + "word": "government" + }, + "id": 3949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1412.32000", + "end": "1412.57000", + "feature": { + "word": "would" + }, + "id": 3950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1413.02000", + "end": "1413.20000", + "feature": { + "word": "come" + }, + "id": 3952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1413.20000", + "end": "1413.35000", + "feature": { + "word": "into" + }, + "id": 3953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1413.35000", + "end": "1413.88000", + "feature": { + "word": "power" + }, + "id": 3954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1413.92000", + "end": "1414.33000", + "feature": { + "word": "and" + }, + "id": 3956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1414.36000", + "end": "1414.65000", + "feature": { + "word": "then" + }, + "id": 3958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1414.70000", + "end": "1415.39000", + "feature": { + "word": "nicaragua" + }, + "id": 3960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1415.53000", + "end": "1415.70000", + "feature": { + "word": "would" + }, + "id": 3962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1415.70000", + "end": "1416.00000", + "feature": { + "word": "be" + }, + "id": 3963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1416.03000", + "end": "1416.55000", + "feature": { + "word": "restored" + }, + "id": 3965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1416.55000", + "end": "1416.64000", + "feature": { + "word": "to" + }, + "id": 3966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1416.64000", + "end": "1417.33000", + "feature": { + "word": "democracy" + }, + "id": 3967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1417.73000", + "end": "1418.24000", + "feature": { + "word": "joseph" + }, + "id": 3969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1418.27000", + "end": "1418.73000", + "feature": { + "word": "coors" + }, + "id": 3971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1418.73000", + "end": "1419.41000", + "feature": { + "word": "testified" + }, + "id": 3972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1419.41000", + "end": "1419.54000", + "feature": { + "word": "that" + }, + "id": 3973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1419.54000", + "end": "1419.71000", + "feature": { + "word": "when" + }, + "id": 3974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1419.71000", + "end": "1419.91000", + "feature": { + "word": "he" + }, + "id": 3975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1419.91000", + "end": "1420.27000", + "feature": { + "word": "became" + }, + "id": 3976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1420.27000", + "end": "1420.73000", + "feature": { + "word": "interested" + }, + "id": 3977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1420.73000", + "end": "1420.84000", + "feature": { + "word": "in" + }, + "id": 3978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1420.84000", + "end": "1421.43000", + "feature": { + "word": "contributing" + }, + "id": 3979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1421.43000", + "end": "1421.50000", + "feature": { + "word": "to" + }, + "id": 3980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1421.50000", + "end": "1421.58000", + "feature": { + "word": "the" + }, + "id": 3981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1421.58000", + "end": "1421.99000", + "feature": { + "word": "contra" + }, + "id": 3982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1421.99000", + "end": "1422.49000", + "feature": { + "word": "cause" + }, + "id": 3983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1422.75000", + "end": "1422.86000", + "feature": { + "word": "he" + }, + "id": 3985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1422.86000", + "end": "1423.12000", + "feature": { + "word": "went" + }, + "id": 3986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1423.12000", + "end": "1423.22000", + "feature": { + "word": "to" + }, + "id": 3987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1423.22000", + "end": "1423.59000", + "feature": { + "word": "see" + }, + "id": 3988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1423.59000", + "end": "1423.77000", + "feature": { + "word": "his" + }, + "id": 3989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1423.77000", + "end": "1424.05000", + "feature": { + "word": "old" + }, + "id": 3990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1424.05000", + "end": "1424.60000", + "feature": { + "word": "friend" + }, + "id": 3991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1424.60000", + "end": "1425.01000", + "feature": { + "word": "william" + }, + "id": 3992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1425.01000", + "end": "1425.51000", + "feature": { + "word": "casey" + }, + "id": 3993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1425.71000", + "end": "1425.88000", + "feature": { + "word": "the" + }, + "id": 3995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1425.88000", + "end": "1426.23000", + "feature": { + "word": "late" + }, + "id": 3996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1426.23000", + "end": "1426.81000", + "feature": { + "word": "cia" + }, + "id": 3997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1426.81000", + "end": "1427.32000", + "feature": { + "word": "director" + }, + "id": 3998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1427.62000", + "end": "1427.78000", + "feature": { + "word": "who" + }, + "id": 4000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1427.81000", + "end": "1428.28000", + "feature": { + "word": "directed" + }, + "id": 4002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1428.28000", + "end": "1428.47000", + "feature": { + "word": "him" + }, + "id": 4003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1428.47000", + "end": "1428.84000", + "feature": { + "word": "then" + }, + "id": 4004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1428.84000", + "end": "1428.99000", + "feature": { + "word": "to" + }, + "id": 4005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1428.99000", + "end": "1429.34000", + "feature": { + "word": "" + }, + "id": 4006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1429.34000", + "end": "1429.52000", + "feature": { + "word": "north" + }, + "id": 4007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1429.52000", + "end": "1429.67000", + "feature": { + "word": "mr" + }, + "id": 4008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1429.67000", + "end": "1429.76000", + "feature": { + "word": "and" + }, + "id": 4009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1429.79000", + "end": "1429.93000", + "feature": { + "word": "did" + }, + "id": 4011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1429.93000", + "end": "1430.05000", + "feature": { + "word": "you" + }, + "id": 4012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1430.05000", + "end": "1430.39000", + "feature": { + "word": "also" + }, + "id": 4013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1430.39000", + "end": "1430.86000", + "feature": { + "word": "express" + }, + "id": 4014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1430.86000", + "end": "1430.96000", + "feature": { + "word": "to" + }, + "id": 4015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1430.96000", + "end": "1431.29000", + "feature": { + "word": "north" + }, + "id": 4016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1431.29000", + "end": "1431.45000", + "feature": { + "word": "your" + }, + "id": 4017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1431.45000", + "end": "1431.86000", + "feature": { + "word": "interest" + }, + "id": 4018, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1431.86000", + "end": "1431.97000", + "feature": { + "word": "in" + }, + "id": 4019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1431.97000", + "end": "1432.42000", + "feature": { + "word": "providing" + }, + "id": 4020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1432.42000", + "end": "1432.98000", + "feature": { + "word": "monetary" + }, + "id": 4021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1432.98000", + "end": "1433.37000", + "feature": { + "word": "support" + }, + "id": 4022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1433.37000", + "end": "1433.50000", + "feature": { + "word": "for" + }, + "id": 4023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1433.50000", + "end": "1433.60000", + "feature": { + "word": "the" + }, + "id": 4024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1433.60000", + "end": "1433.95000", + "feature": { + "word": "freedom" + }, + "id": 4025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1433.95000", + "end": "1434.39000", + "feature": { + "word": "fighters" + }, + "id": 4026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1434.69000", + "end": "1435.33000", + "feature": { + "word": "mr" + }, + "id": 4028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1435.33000", + "end": "1435.72000", + "feature": { + "word": "yes" + }, + "id": 4029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1436.68000", + "end": "1436.87000", + "feature": { + "word": "i" + }, + "id": 4031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1436.87000", + "end": "1437.22000", + "feature": { + "word": "told" + }, + "id": 4032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1437.22000", + "end": "1437.42000", + "feature": { + "word": "him" + }, + "id": 4033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1437.42000", + "end": "1437.57000", + "feature": { + "word": "that" + }, + "id": 4034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1437.57000", + "end": "1437.70000", + "feature": { + "word": "i" + }, + "id": 4035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1437.70000", + "end": "1437.87000", + "feature": { + "word": "was" + }, + "id": 4036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1437.87000", + "end": "1438.32000", + "feature": { + "word": "interested" + }, + "id": 4037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1438.32000", + "end": "1439.36000", + "feature": { + "word": "in" + }, + "id": 4038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1439.39000", + "end": "1439.60000", + "feature": { + "word": "seeing" + }, + "id": 4040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1439.60000", + "end": "1439.77000", + "feature": { + "word": "what" + }, + "id": 4041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1439.77000", + "end": "1439.90000", + "feature": { + "word": "i" + }, + "id": 4042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1439.90000", + "end": "1440.12000", + "feature": { + "word": "could" + }, + "id": 4043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1440.12000", + "end": "1440.56000", + "feature": { + "word": "do" + }, + "id": 4044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1440.56000", + "end": "1440.83000", + "feature": { + "word": "and" + }, + "id": 4045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1440.83000", + "end": "1440.97000", + "feature": { + "word": "i" + }, + "id": 4046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1440.97000", + "end": "1441.32000", + "feature": { + "word": "asked" + }, + "id": 4047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1441.32000", + "end": "1441.47000", + "feature": { + "word": "him" + }, + "id": 4048, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1441.47000", + "end": "1441.65000", + "feature": { + "word": "for" + }, + "id": 4049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1441.65000", + "end": "1441.82000", + "feature": { + "word": "his" + }, + "id": 4050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1441.82000", + "end": "1442.65000", + "feature": { + "word": "recommendation" + }, + "id": 4051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1442.82000", + "end": "1443.19000", + "feature": { + "word": "mr" + }, + "id": 4053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1443.19000", + "end": "1443.29000", + "feature": { + "word": "i" + }, + "id": 4054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1443.29000", + "end": "1443.60000", + "feature": { + "word": "take" + }, + "id": 4055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1443.60000", + "end": "1443.69000", + "feature": { + "word": "it" + }, + "id": 4056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1443.69000", + "end": "1443.82000", + "feature": { + "word": "in" + }, + "id": 4057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1443.82000", + "end": "1444.38000", + "feature": { + "word": "response" + }, + "id": 4058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1444.38000", + "end": "1444.74000", + "feature": { + "word": "" + }, + "id": 4059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1444.74000", + "end": "1445.05000", + "feature": { + "word": "north" + }, + "id": 4060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1445.05000", + "end": "1445.28000", + "feature": { + "word": "was" + }, + "id": 4061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1445.28000", + "end": "1445.51000", + "feature": { + "word": "not" + }, + "id": 4062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1445.51000", + "end": "1445.76000", + "feature": { + "word": "quite" + }, + "id": 4063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1445.76000", + "end": "1445.91000", + "feature": { + "word": "as" + }, + "id": 4064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1445.91000", + "end": "1446.42000", + "feature": { + "word": "guarded" + }, + "id": 4065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1446.42000", + "end": "1446.66000", + "feature": { + "word": "or" + }, + "id": 4066, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1446.66000", + "end": "1446.77000", + "feature": { + "word": "as" + }, + "id": 4067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1446.77000", + "end": "1447.60000", + "feature": { + "word": "circumspect" + }, + "id": 4068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1447.60000", + "end": "1447.92000", + "feature": { + "word": "as" + }, + "id": 4069, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1447.92000", + "end": "1448.18000", + "feature": { + "word": "mr" + }, + "id": 4070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1448.18000", + "end": "1448.59000", + "feature": { + "word": "casey" + }, + "id": 4071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1448.59000", + "end": "1448.77000", + "feature": { + "word": "had" + }, + "id": 4072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1448.77000", + "end": "1448.94000", + "feature": { + "word": "been" + }, + "id": 4073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1449.00000", + "end": "1449.20000", + "feature": { + "word": "mr" + }, + "id": 4075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1449.88000", + "end": "1450.06000", + "feature": { + "word": "no" + }, + "id": 4077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1450.06000", + "end": "1450.22000", + "feature": { + "word": "he" + }, + "id": 4078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1450.22000", + "end": "1450.37000", + "feature": { + "word": "was" + }, + "id": 4079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1450.37000", + "end": "1450.68000", + "feature": { + "word": "very" + }, + "id": 4080, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1450.68000", + "end": "1451.20000", + "feature": { + "word": "anxious" + }, + "id": 4081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1451.20000", + "end": "1451.69000", + "feature": { + "word": "to" + }, + "id": 4082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1452.12000", + "end": "1452.62000", + "feature": { + "word": "provide" + }, + "id": 4084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1452.62000", + "end": "1452.99000", + "feature": { + "word": "me" + }, + "id": 4085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1453.10000", + "end": "1453.61000", + "feature": { + "word": "with" + }, + "id": 4087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1453.92000", + "end": "1454.09000", + "feature": { + "word": "an" + }, + "id": 4089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1454.09000", + "end": "1454.46000", + "feature": { + "word": "area" + }, + "id": 4090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1454.46000", + "end": "1454.70000", + "feature": { + "word": "where" + }, + "id": 4091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1454.70000", + "end": "1454.79000", + "feature": { + "word": "he" + }, + "id": 4092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1454.79000", + "end": "1455.28000", + "feature": { + "word": "thought" + }, + "id": 4093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1455.28000", + "end": "1455.40000", + "feature": { + "word": "i" + }, + "id": 4094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1455.40000", + "end": "1455.68000", + "feature": { + "word": "could" + }, + "id": 4095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1455.68000", + "end": "1455.90000", + "feature": { + "word": "be" + }, + "id": 4096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1455.90000", + "end": "1456.05000", + "feature": { + "word": "of" + }, + "id": 4097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1456.05000", + "end": "1456.33000", + "feature": { + "word": "most" + }, + "id": 4098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1456.33000", + "end": "1457.22000", + "feature": { + "word": "help" + }, + "id": 4099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1457.25000", + "end": "1457.40000", + "feature": { + "word": "mr" + }, + "id": 4101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1457.40000", + "end": "1457.70000", + "feature": { + "word": "and" + }, + "id": 4102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1457.70000", + "end": "1458.06000", + "feature": { + "word": "what" + }, + "id": 4103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1458.06000", + "end": "1458.31000", + "feature": { + "word": "was" + }, + "id": 4104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1458.31000", + "end": "1458.47000", + "feature": { + "word": "that" + }, + "id": 4105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1458.47000", + "end": "1458.83000", + "feature": { + "word": "area" + }, + "id": 4106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1459.04000", + "end": "1459.21000", + "feature": { + "word": "mr" + }, + "id": 4108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1459.21000", + "end": "1459.34000", + "feature": { + "word": "that" + }, + "id": 4109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1459.34000", + "end": "1459.62000", + "feature": { + "word": "was" + }, + "id": 4110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1459.62000", + "end": "1460.17000", + "feature": { + "word": "in" + }, + "id": 4111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1460.17000", + "end": "1460.28000", + "feature": { + "word": "the" + }, + "id": 4112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1460.28000", + "end": "1460.67000", + "feature": { + "word": "area" + }, + "id": 4113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1460.67000", + "end": "1460.81000", + "feature": { + "word": "of" + }, + "id": 4114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1460.81000", + "end": "1461.79000", + "feature": { + "word": "providing" + }, + "id": 4115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1462.38000", + "end": "1462.71000", + "feature": { + "word": "a" + }, + "id": 4117, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1462.90000", + "end": "1463.77000", + "feature": { + "word": "small" + }, + "id": 4119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1464.23000", + "end": "1464.78000", + "feature": { + "word": "maule" + }, + "id": 4121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1464.78000", + "end": "1465.43000", + "feature": { + "word": "airplane" + }, + "id": 4122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1465.87000", + "end": "1466.01000", + "feature": { + "word": "i" + }, + "id": 4124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1466.01000", + "end": "1466.12000", + "feature": { + "word": "was" + }, + "id": 4125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1466.12000", + "end": "1466.15000", + "feature": { + "word": "a" + }, + "id": 4126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1466.15000", + "end": "1466.33000", + "feature": { + "word": "little" + }, + "id": 4127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1466.33000", + "end": "1466.57000", + "feature": { + "word": "bit" + }, + "id": 4128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1466.57000", + "end": "1467.27000", + "feature": { + "word": "surprised" + }, + "id": 4129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1467.27000", + "end": "1467.68000", + "feature": { + "word": "to" + }, + "id": 4130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1467.76000", + "end": "1468.07000", + "feature": { + "word": "see" + }, + "id": 4132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1468.07000", + "end": "1469.37000", + "feature": { + "word": "that" + }, + "id": 4133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1469.37000", + "end": "1469.65000", + "feature": { + "word": "bill" + }, + "id": 4134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1469.65000", + "end": "1470.27000", + "feature": { + "word": "o'boyle" + }, + "id": 4135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1470.30000", + "end": "1470.90000", + "feature": { + "word": "also" + }, + "id": 4137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1471.42000", + "end": "1471.96000", + "feature": { + "word": "bought" + }, + "id": 4139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1471.96000", + "end": "1472.02000", + "feature": { + "word": "" + }, + "id": 4140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1472.02000", + "end": "1472.11000", + "feature": { + "word": "i" + }, + "id": 4141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1472.11000", + "end": "1472.34000", + "feature": { + "word": "thought" + }, + "id": 4142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1472.34000", + "end": "1472.47000", + "feature": { + "word": "i" + }, + "id": 4143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1472.47000", + "end": "1472.71000", + "feature": { + "word": "was" + }, + "id": 4144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1472.71000", + "end": "1472.81000", + "feature": { + "word": "the" + }, + "id": 4145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1472.81000", + "end": "1473.18000", + "feature": { + "word": "first" + }, + "id": 4146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1473.18000", + "end": "1473.28000", + "feature": { + "word": "and" + }, + "id": 4147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1473.28000", + "end": "1473.55000", + "feature": { + "word": "only" + }, + "id": 4148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1473.55000", + "end": "1473.96000", + "feature": { + "word": "one" + }, + "id": 4149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1473.96000", + "end": "1474.09000", + "feature": { + "word": "but" + }, + "id": 4150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1474.09000", + "end": "1474.61000", + "feature": { + "word": "evidently" + }, + "id": 4151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1474.61000", + "end": "1474.81000", + "feature": { + "word": "that" + }, + "id": 4152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1474.81000", + "end": "1475.11000", + "feature": { + "word": "wasn't" + }, + "id": 4153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1475.11000", + "end": "1475.99000", + "feature": { + "word": "the" + }, + "id": 4154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1477.66000", + "end": "1478.48000", + "feature": { + "word": "case" + }, + "id": 4156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1478.48000", + "end": "1478.98000", + "feature": { + "word": "chuckle" + }, + "id": 4157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1479.56000", + "end": "1480.09000", + "feature": { + "word": "in" + }, + "id": 4159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1480.09000", + "end": "1480.20000", + "feature": { + "word": "any" + }, + "id": 4160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1480.36000", + "end": "1480.45000", + "feature": { + "word": "case" + }, + "id": 4162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1480.63000", + "end": "1481.09000", + "feature": { + "word": "he" + }, + "id": 4164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1481.12000", + "end": "1481.40000", + "feature": { + "word": "told" + }, + "id": 4166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1481.40000", + "end": "1481.64000", + "feature": { + "word": "me" + }, + "id": 4167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1481.64000", + "end": "1482.76000", + "feature": { + "word": "that" + }, + "id": 4168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1482.76000", + "end": "1482.92000", + "feature": { + "word": "they" + }, + "id": 4169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1482.92000", + "end": "1483.54000", + "feature": { + "word": "needed" + }, + "id": 4170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1484.11000", + "end": "1484.42000", + "feature": { + "word": "this" + }, + "id": 4172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1484.42000", + "end": "1484.76000", + "feature": { + "word": "kind" + }, + "id": 4173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1484.76000", + "end": "1484.84000", + "feature": { + "word": "of" + }, + "id": 4174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1484.84000", + "end": "1484.95000", + "feature": { + "word": "an" + }, + "id": 4175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1484.95000", + "end": "1485.52000", + "feature": { + "word": "airplane" + }, + "id": 4176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1485.52000", + "end": "1485.64000", + "feature": { + "word": "in" + }, + "id": 4177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1485.64000", + "end": "1485.73000", + "feature": { + "word": "the" + }, + "id": 4178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1485.73000", + "end": "1486.06000", + "feature": { + "word": "worst" + }, + "id": 4179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1486.06000", + "end": "1486.38000", + "feature": { + "word": "way" + }, + "id": 4180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1486.38000", + "end": "1486.73000", + "feature": { + "word": "down" + }, + "id": 4181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1486.73000", + "end": "1486.91000", + "feature": { + "word": "there" + }, + "id": 4182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1486.91000", + "end": "1487.06000", + "feature": { + "word": "mr" + }, + "id": 4183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1487.21000", + "end": "1487.32000", + "feature": { + "word": "did" + }, + "id": 4185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1487.32000", + "end": "1487.40000", + "feature": { + "word": "he" + }, + "id": 4186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1487.40000", + "end": "1487.62000", + "feature": { + "word": "tell" + }, + "id": 4187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1487.62000", + "end": "1487.72000", + "feature": { + "word": "you" + }, + "id": 4188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1487.72000", + "end": "1487.91000", + "feature": { + "word": "how" + }, + "id": 4189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1487.91000", + "end": "1488.04000", + "feature": { + "word": "you" + }, + "id": 4190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1488.04000", + "end": "1488.19000", + "feature": { + "word": "could" + }, + "id": 4191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1488.19000", + "end": "1488.42000", + "feature": { + "word": "make" + }, + "id": 4192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1488.42000", + "end": "1488.47000", + "feature": { + "word": "a" + }, + "id": 4193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1488.47000", + "end": "1488.95000", + "feature": { + "word": "payment" + }, + "id": 4194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1488.95000", + "end": "1489.03000", + "feature": { + "word": "to" + }, + "id": 4195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1489.03000", + "end": "1489.49000", + "feature": { + "word": "purchase" + }, + "id": 4196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1489.49000", + "end": "1489.54000", + "feature": { + "word": "a" + }, + "id": 4197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1489.54000", + "end": "1489.79000", + "feature": { + "word": "maule" + }, + "id": 4198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1489.79000", + "end": "1490.12000", + "feature": { + "word": "plane" + }, + "id": 4199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1490.12000", + "end": "1490.25000", + "feature": { + "word": "for" + }, + "id": 4200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1490.25000", + "end": "1490.35000", + "feature": { + "word": "the" + }, + "id": 4201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1490.35000", + "end": "1490.67000", + "feature": { + "word": "freedom" + }, + "id": 4202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1490.67000", + "end": "1490.98000", + "feature": { + "word": "fighters" + }, + "id": 4203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1490.98000", + "end": "1491.13000", + "feature": { + "word": "mr" + }, + "id": 4204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1491.77000", + "end": "1492.01000", + "feature": { + "word": "yes" + }, + "id": 4206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1492.01000", + "end": "1492.30000", + "feature": { + "word": "he" + }, + "id": 4207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1492.30000", + "end": "1493.09000", + "feature": { + "word": "indicated" + }, + "id": 4208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1493.09000", + "end": "1493.22000", + "feature": { + "word": "i" + }, + "id": 4209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1493.22000", + "end": "1493.38000", + "feature": { + "word": "could" + }, + "id": 4210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1493.38000", + "end": "1493.54000", + "feature": { + "word": "do" + }, + "id": 4211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1493.54000", + "end": "1493.82000", + "feature": { + "word": "that" + }, + "id": 4212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1493.82000", + "end": "1493.96000", + "feature": { + "word": "in" + }, + "id": 4213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1493.96000", + "end": "1494.39000", + "feature": { + "word": "any" + }, + "id": 4214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1494.39000", + "end": "1494.74000", + "feature": { + "word": "number" + }, + "id": 4215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1494.74000", + "end": "1494.80000", + "feature": { + "word": "of" + }, + "id": 4216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1494.80000", + "end": "1495.27000", + "feature": { + "word": "ways" + }, + "id": 4217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1495.58000", + "end": "1495.93000", + "feature": { + "word": "but" + }, + "id": 4219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1496.05000", + "end": "1496.28000", + "feature": { + "word": "he" + }, + "id": 4221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1496.28000", + "end": "1496.90000", + "feature": { + "word": "suggested" + }, + "id": 4222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1496.90000", + "end": "1496.97000", + "feature": { + "word": "the" + }, + "id": 4223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1496.97000", + "end": "1498.32000", + "feature": { + "word": "possibility" + }, + "id": 4224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1498.32000", + "end": "1498.73000", + "feature": { + "word": "of" + }, + "id": 4225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1498.73000", + "end": "1498.90000", + "feature": { + "word": "a" + }, + "id": 4226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1498.90000", + "end": "1499.24000", + "feature": { + "word": "bank" + }, + "id": 4227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1499.24000", + "end": "1499.84000", + "feature": { + "word": "transfer" + }, + "id": 4228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1499.84000", + "end": "1500.07000", + "feature": { + "word": "to" + }, + "id": 4229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1500.07000", + "end": "1500.13000", + "feature": { + "word": "a" + }, + "id": 4230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1500.13000", + "end": "1500.48000", + "feature": { + "word": "swiss" + }, + "id": 4231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1500.74000", + "end": "1501.05000", + "feature": { + "word": "bank" + }, + "id": 4233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1501.05000", + "end": "1501.45000", + "feature": { + "word": "account" + }, + "id": 4234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1502.14000", + "end": "1502.47000", + "feature": { + "word": "and" + }, + "id": 4236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1502.47000", + "end": "1502.97000", + "feature": { + "word": "i" + }, + "id": 4237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1502.97000", + "end": "1503.32000", + "feature": { + "word": "chose" + }, + "id": 4238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1503.32000", + "end": "1503.53000", + "feature": { + "word": "that" + }, + "id": 4239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1503.53000", + "end": "1503.76000", + "feature": { + "word": "route" + }, + "id": 4240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1504.24000", + "end": "1504.56000", + "feature": { + "word": "even" + }, + "id": 4242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1504.56000", + "end": "1504.71000", + "feature": { + "word": "though" + }, + "id": 4243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1504.71000", + "end": "1504.96000", + "feature": { + "word": "no" + }, + "id": 4244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1504.96000", + "end": "1505.33000", + "feature": { + "word": "one" + }, + "id": 4245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1505.33000", + "end": "1505.50000", + "feature": { + "word": "from" + }, + "id": 4246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1505.50000", + "end": "1505.58000", + "feature": { + "word": "the" + }, + "id": 4247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1505.58000", + "end": "1505.91000", + "feature": { + "word": "reagan" + }, + "id": 4248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1505.91000", + "end": "1506.72000", + "feature": { + "word": "administration" + }, + "id": 4249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1506.72000", + "end": "1507.07000", + "feature": { + "word": "ever" + }, + "id": 4250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1507.07000", + "end": "1507.75000", + "feature": { + "word": "directly" + }, + "id": 4251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1507.75000", + "end": "1508.40000", + "feature": { + "word": "solicited" + }, + "id": 4252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1508.40000", + "end": "1508.70000", + "feature": { + "word": "money" + }, + "id": 4253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1508.70000", + "end": "1509.02000", + "feature": { + "word": "from" + }, + "id": 4254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1509.02000", + "end": "1509.26000", + "feature": { + "word": "them" + }, + "id": 4255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1509.52000", + "end": "1509.69000", + "feature": { + "word": "the" + }, + "id": 4257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1509.69000", + "end": "1510.00000", + "feature": { + "word": "three" + }, + "id": 4258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1510.00000", + "end": "1510.14000", + "feature": { + "word": "who" + }, + "id": 4259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1510.14000", + "end": "1510.82000", + "feature": { + "word": "testified" + }, + "id": 4260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1510.82000", + "end": "1511.28000", + "feature": { + "word": "today" + }, + "id": 4261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1511.47000", + "end": "1511.84000", + "feature": { + "word": "all" + }, + "id": 4263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1511.84000", + "end": "1512.20000", + "feature": { + "word": "said" + }, + "id": 4264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1512.20000", + "end": "1512.34000", + "feature": { + "word": "they" + }, + "id": 4265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1512.34000", + "end": "1512.78000", + "feature": { + "word": "believed" + }, + "id": 4266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1512.78000", + "end": "1512.88000", + "feature": { + "word": "the" + }, + "id": 4267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1512.88000", + "end": "1513.76000", + "feature": { + "word": "administration" + }, + "id": 4268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1513.76000", + "end": "1514.31000", + "feature": { + "word": "endorsed" + }, + "id": 4269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1514.31000", + "end": "1514.55000", + "feature": { + "word": "such" + }, + "id": 4270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1514.55000", + "end": "1515.03000", + "feature": { + "word": "private" + }, + "id": 4271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1515.03000", + "end": "1515.73000", + "feature": { + "word": "donations" + }, + "id": 4272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1515.73000", + "end": "1515.84000", + "feature": { + "word": "sen" + }, + "id": 4273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1515.84000", + "end": "1516.06000", + "feature": { + "word": "daniel" + }, + "id": 4274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.06000", + "end": "1516.20000", + "feature": { + "word": "inouye" + }, + "id": 4275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.20000", + "end": "1516.23000", + "feature": { + "word": "" + }, + "id": 4276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.23000", + "end": "1516.38000", + "feature": { + "word": "hawaii" + }, + "id": 4277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.38000", + "end": "1516.44000", + "feature": { + "word": "you" + }, + "id": 4278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.44000", + "end": "1516.51000", + "feature": { + "word": "were" + }, + "id": 4279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.51000", + "end": "1516.82000", + "feature": { + "word": "making" + }, + "id": 4280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.82000", + "end": "1516.93000", + "feature": { + "word": "a" + }, + "id": 4281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1516.93000", + "end": "1517.66000", + "feature": { + "word": "contribution" + }, + "id": 4282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1517.66000", + "end": "1517.89000", + "feature": { + "word": "because" + }, + "id": 4283, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1517.89000", + "end": "1518.67000", + "feature": { + "word": "the" + }, + "id": 4284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1518.67000", + "end": "1519.57000", + "feature": { + "word": "administration" + }, + "id": 4285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1519.57000", + "end": "1519.93000", + "feature": { + "word": "wanted" + }, + "id": 4286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1519.93000", + "end": "1519.99000", + "feature": { + "word": "the" + }, + "id": 4287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1519.99000", + "end": "1520.75000", + "feature": { + "word": "contribution" + }, + "id": 4288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1521.28000", + "end": "1521.41000", + "feature": { + "word": "ms" + }, + "id": 4290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1521.44000", + "end": "1521.69000", + "feature": { + "word": "yes" + }, + "id": 4292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1521.69000", + "end": "1521.88000", + "feature": { + "word": "sir" + }, + "id": 4293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1522.69000", + "end": "1522.86000", + "feature": { + "word": "sen" + }, + "id": 4295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1523.16000", + "end": "1523.35000", + "feature": { + "word": "when" + }, + "id": 4297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1523.35000", + "end": "1523.52000", + "feature": { + "word": "you" + }, + "id": 4298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1523.52000", + "end": "1523.82000", + "feature": { + "word": "say" + }, + "id": 4299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1523.82000", + "end": "1524.67000", + "feature": { + "word": "administration" + }, + "id": 4300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1524.67000", + "end": "1524.88000", + "feature": { + "word": "what" + }, + "id": 4301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1524.88000", + "end": "1524.94000", + "feature": { + "word": "do" + }, + "id": 4302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1524.94000", + "end": "1525.04000", + "feature": { + "word": "you" + }, + "id": 4303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1525.04000", + "end": "1525.33000", + "feature": { + "word": "mean" + }, + "id": 4304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1525.33000", + "end": "1525.53000", + "feature": { + "word": "by" + }, + "id": 4305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1525.53000", + "end": "1525.68000", + "feature": { + "word": "the" + }, + "id": 4306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1525.68000", + "end": "1526.21000", + "feature": { + "word": "administration" + }, + "id": 4307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1526.21000", + "end": "1526.34000", + "feature": { + "word": "ms" + }, + "id": 4308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1527.87000", + "end": "1528.42000", + "feature": { + "word": "i" + }, + "id": 4310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1528.42000", + "end": "1528.78000", + "feature": { + "word": "mean" + }, + "id": 4311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1528.78000", + "end": "1529.03000", + "feature": { + "word": "the" + }, + "id": 4312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1529.03000", + "end": "1529.78000", + "feature": { + "word": "executive" + }, + "id": 4313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1529.78000", + "end": "1530.22000", + "feature": { + "word": "branch" + }, + "id": 4314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1530.22000", + "end": "1530.31000", + "feature": { + "word": "of" + }, + "id": 4315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1530.31000", + "end": "1530.39000", + "feature": { + "word": "the" + }, + "id": 4316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1530.39000", + "end": "1531.13000", + "feature": { + "word": "administration" + }, + "id": 4317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1531.39000", + "end": "1532.00000", + "feature": { + "word": "particularly" + }, + "id": 4319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1532.61000", + "end": "1532.71000", + "feature": { + "word": "sen" + }, + "id": 4321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1532.71000", + "end": "1532.79000", + "feature": { + "word": "is" + }, + "id": 4322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1532.79000", + "end": "1532.94000", + "feature": { + "word": "it" + }, + "id": 4323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1532.94000", + "end": "1533.23000", + "feature": { + "word": "any" + }, + "id": 4324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1533.23000", + "end": "1533.76000", + "feature": { + "word": "person" + }, + "id": 4325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1533.76000", + "end": "1534.22000", + "feature": { + "word": "or" + }, + "id": 4326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1534.25000", + "end": "1534.60000", + "feature": { + "word": "just" + }, + "id": 4328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1534.60000", + "end": "1534.83000", + "feature": { + "word": "some" + }, + "id": 4329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1534.83000", + "end": "1534.92000", + "feature": { + "word": "vague" + }, + "id": 4330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1535.84000", + "end": "1535.94000", + "feature": { + "word": "thing" + }, + "id": 4332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1535.94000", + "end": "1536.03000", + "feature": { + "word": "that" + }, + "id": 4333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1536.03000", + "end": "1536.52000", + "feature": { + "word": "" + }, + "id": 4334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1536.52000", + "end": "1536.63000", + "feature": { + "word": "ms" + }, + "id": 4335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1537.29000", + "end": "1537.56000", + "feature": { + "word": "well" + }, + "id": 4337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1537.56000", + "end": "1537.68000", + "feature": { + "word": "it" + }, + "id": 4338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1537.68000", + "end": "1538.05000", + "feature": { + "word": "isn't" + }, + "id": 4339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1538.05000", + "end": "1538.28000", + "feature": { + "word": "very" + }, + "id": 4340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1538.28000", + "end": "1539.31000", + "feature": { + "word": "vague" + }, + "id": 4341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1539.36000", + "end": "1539.46000", + "feature": { + "word": "we" + }, + "id": 4343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1539.46000", + "end": "1539.64000", + "feature": { + "word": "know" + }, + "id": 4344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1539.64000", + "end": "1539.79000", + "feature": { + "word": "who" + }, + "id": 4345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1539.79000", + "end": "1539.84000", + "feature": { + "word": "s" + }, + "id": 4346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1539.84000", + "end": "1539.91000", + "feature": { + "word": "the" + }, + "id": 4347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1539.91000", + "end": "1540.50000", + "feature": { + "word": "president" + }, + "id": 4348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1540.50000", + "end": "1540.59000", + "feature": { + "word": "sen" + }, + "id": 4349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1540.59000", + "end": "1540.83000", + "feature": { + "word": "mr" + }, + "id": 4350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1540.83000", + "end": "1541.78000", + "feature": { + "word": "o'boyle" + }, + "id": 4351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1542.71000", + "end": "1542.92000", + "feature": { + "word": "i" + }, + "id": 4353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1542.92000", + "end": "1543.13000", + "feature": { + "word": "think" + }, + "id": 4354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1543.13000", + "end": "1543.26000", + "feature": { + "word": "your" + }, + "id": 4355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1543.26000", + "end": "1543.92000", + "feature": { + "word": "testimony" + }, + "id": 4356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1543.92000", + "end": "1544.27000", + "feature": { + "word": "also" + }, + "id": 4357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1544.27000", + "end": "1544.60000", + "feature": { + "word": "says" + }, + "id": 4358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1544.60000", + "end": "1544.66000", + "feature": { + "word": "the" + }, + "id": 4359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1544.66000", + "end": "1545.05000", + "feature": { + "word": "same" + }, + "id": 4360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1545.72000", + "end": "1545.91000", + "feature": { + "word": "did" + }, + "id": 4362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1545.91000", + "end": "1546.03000", + "feature": { + "word": "you" + }, + "id": 4363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1546.03000", + "end": "1546.15000", + "feature": { + "word": "at" + }, + "id": 4364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1546.15000", + "end": "1546.39000", + "feature": { + "word": "any" + }, + "id": 4365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1546.39000", + "end": "1546.73000", + "feature": { + "word": "time" + }, + "id": 4366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1546.73000", + "end": "1547.16000", + "feature": { + "word": "doubt" + }, + "id": 4367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1547.16000", + "end": "1547.35000", + "feature": { + "word": "that" + }, + "id": 4368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1547.35000", + "end": "1547.41000", + "feature": { + "word": "the" + }, + "id": 4369, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1547.41000", + "end": "1547.95000", + "feature": { + "word": "president" + }, + "id": 4370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1547.95000", + "end": "1548.31000", + "feature": { + "word": "wanted" + }, + "id": 4371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1548.31000", + "end": "1548.58000", + "feature": { + "word": "this" + }, + "id": 4372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1549.58000", + "end": "1549.73000", + "feature": { + "word": "mr" + }, + "id": 4374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1549.73000", + "end": "1549.83000", + "feature": { + "word": "o'" + }, + "id": 4375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1549.92000", + "end": "1549.98000", + "feature": { + "word": "no" + }, + "id": 4377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1550.01000", + "end": "1550.13000", + "feature": { + "word": "sir" + }, + "id": 4379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1550.76000", + "end": "1550.85000", + "feature": { + "word": "sen" + }, + "id": 4381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1550.85000", + "end": "1550.97000", + "feature": { + "word": "would" + }, + "id": 4382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1550.97000", + "end": "1551.05000", + "feature": { + "word": "you" + }, + "id": 4383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1551.05000", + "end": "1551.20000", + "feature": { + "word": "have" + }, + "id": 4384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1551.26000", + "end": "1551.77000", + "feature": { + "word": "provided" + }, + "id": 4386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1551.77000", + "end": "1551.93000", + "feature": { + "word": "the" + }, + "id": 4387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1551.96000", + "end": "1552.94000", + "feature": { + "word": "contribution" + }, + "id": 4389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1552.94000", + "end": "1553.62000", + "feature": { + "word": "if" + }, + "id": 4390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1553.67000", + "end": "1553.76000", + "feature": { + "word": "the" + }, + "id": 4392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1553.76000", + "end": "1554.29000", + "feature": { + "word": "president" + }, + "id": 4393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1554.32000", + "end": "1554.50000", + "feature": { + "word": "had" + }, + "id": 4395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1554.50000", + "end": "1554.65000", + "feature": { + "word": "been" + }, + "id": 4396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1554.65000", + "end": "1555.24000", + "feature": { + "word": "opposed" + }, + "id": 4397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1555.24000", + "end": "1555.43000", + "feature": { + "word": "to" + }, + "id": 4398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1555.43000", + "end": "1555.51000", + "feature": { + "word": "it" + }, + "id": 4399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1557.67000", + "end": "1557.97000", + "feature": { + "word": "mr" + }, + "id": 4401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1558.00000", + "end": "1558.03000", + "feature": { + "word": "o'" + }, + "id": 4403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1558.03000", + "end": "1558.09000", + "feature": { + "word": "i" + }, + "id": 4404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1558.09000", + "end": "1558.25000", + "feature": { + "word": "would" + }, + "id": 4405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1558.25000", + "end": "1558.57000", + "feature": { + "word": "doubt" + }, + "id": 4406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1559.59000", + "end": "1559.68000", + "feature": { + "word": "that" + }, + "id": 4408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1559.88000", + "end": "1560.10000", + "feature": { + "word": "this" + }, + "id": 4410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1560.10000", + "end": "1560.71000", + "feature": { + "word": "afternoon" + }, + "id": 4411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1560.71000", + "end": "1561.36000", + "feature": { + "word": "retired" + }, + "id": 4412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1561.36000", + "end": "1561.72000", + "feature": { + "word": "army" + }, + "id": 4413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1561.72000", + "end": "1562.19000", + "feature": { + "word": "general" + }, + "id": 4414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1562.19000", + "end": "1562.56000", + "feature": { + "word": "john" + }, + "id": 4415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1562.56000", + "end": "1563.18000", + "feature": { + "word": "singlaub" + }, + "id": 4416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1563.18000", + "end": "1563.63000", + "feature": { + "word": "returned" + }, + "id": 4417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1563.63000", + "end": "1563.70000", + "feature": { + "word": "to" + }, + "id": 4418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1563.70000", + "end": "1563.80000", + "feature": { + "word": "the" + }, + "id": 4419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1563.80000", + "end": "1564.19000", + "feature": { + "word": "witness" + }, + "id": 4420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1564.19000", + "end": "1564.64000", + "feature": { + "word": "table" + }, + "id": 4421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1564.84000", + "end": "1564.93000", + "feature": { + "word": "to" + }, + "id": 4423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1564.93000", + "end": "1565.18000", + "feature": { + "word": "talk" + }, + "id": 4424, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1565.18000", + "end": "1565.47000", + "feature": { + "word": "about" + }, + "id": 4425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1565.47000", + "end": "1565.71000", + "feature": { + "word": "his" + }, + "id": 4426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1565.71000", + "end": "1566.07000", + "feature": { + "word": "role" + }, + "id": 4427, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1566.07000", + "end": "1566.22000", + "feature": { + "word": "in" + }, + "id": 4428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1566.22000", + "end": "1566.49000", + "feature": { + "word": "aiding" + }, + "id": 4429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1566.49000", + "end": "1566.58000", + "feature": { + "word": "the" + }, + "id": 4430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1566.58000", + "end": "1567.06000", + "feature": { + "word": "contras" + }, + "id": 4431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1567.06000", + "end": "1567.21000", + "feature": { + "word": "voice" + }, + "id": 4432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1568.37000", + "end": "1568.46000", + "feature": { + "word": "over" + }, + "id": 4434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1568.49000", + "end": "1569.00000", + "feature": { + "word": "retired" + }, + "id": 4436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1569.00000", + "end": "1569.26000", + "feature": { + "word": "army" + }, + "id": 4437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1569.26000", + "end": "1569.65000", + "feature": { + "word": "general" + }, + "id": 4438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1569.65000", + "end": "1569.99000", + "feature": { + "word": "john" + }, + "id": 4439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1569.99000", + "end": "1570.62000", + "feature": { + "word": "singlaub" + }, + "id": 4440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1570.62000", + "end": "1570.79000", + "feature": { + "word": "has" + }, + "id": 4441, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1570.79000", + "end": "1571.31000", + "feature": { + "word": "conducted" + }, + "id": 4442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1571.31000", + "end": "1571.39000", + "feature": { + "word": "a" + }, + "id": 4443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1571.39000", + "end": "1571.76000", + "feature": { + "word": "highly" + }, + "id": 4444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1571.76000", + "end": "1572.25000", + "feature": { + "word": "visible" + }, + "id": 4445, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1572.25000", + "end": "1572.89000", + "feature": { + "word": "campaign" + }, + "id": 4446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1572.89000", + "end": "1573.02000", + "feature": { + "word": "to" + }, + "id": 4447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1573.02000", + "end": "1573.34000", + "feature": { + "word": "raise" + }, + "id": 4448, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1573.34000", + "end": "1573.78000", + "feature": { + "word": "private" + }, + "id": 4449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1573.78000", + "end": "1574.22000", + "feature": { + "word": "funds" + }, + "id": 4450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1574.22000", + "end": "1574.33000", + "feature": { + "word": "for" + }, + "id": 4451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1574.33000", + "end": "1574.43000", + "feature": { + "word": "the" + }, + "id": 4452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1574.43000", + "end": "1575.13000", + "feature": { + "word": "nicaraguan" + }, + "id": 4453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1575.13000", + "end": "1575.67000", + "feature": { + "word": "rebels" + }, + "id": 4454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1576.04000", + "end": "1576.73000", + "feature": { + "word": "testifying" + }, + "id": 4456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1576.73000", + "end": "1576.83000", + "feature": { + "word": "for" + }, + "id": 4457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1576.83000", + "end": "1576.94000", + "feature": { + "word": "the" + }, + "id": 4458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1576.94000", + "end": "1577.24000", + "feature": { + "word": "first" + }, + "id": 4459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1577.24000", + "end": "1577.56000", + "feature": { + "word": "time" + }, + "id": 4460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1577.56000", + "end": "1578.20000", + "feature": { + "word": "yesterday" + }, + "id": 4461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1578.46000", + "end": "1579.07000", + "feature": { + "word": "singlaub" + }, + "id": 4463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1579.07000", + "end": "1579.53000", + "feature": { + "word": "said" + }, + "id": 4464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1579.53000", + "end": "1579.83000", + "feature": { + "word": "that" + }, + "id": 4465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1579.93000", + "end": "1580.28000", + "feature": { + "word": "he" + }, + "id": 4467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1580.28000", + "end": "1580.71000", + "feature": { + "word": "arranged" + }, + "id": 4468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1580.71000", + "end": "1580.77000", + "feature": { + "word": "a" + }, + "id": 4469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1580.77000", + "end": "1581.14000", + "feature": { + "word": "" + }, + "id": 4470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1581.21000", + "end": "1581.96000", + "feature": { + "word": "" + }, + "id": 4472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1581.96000", + "end": "1582.37000", + "feature": { + "word": "million" + }, + "id": 4473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1582.37000", + "end": "1583.00000", + "feature": { + "word": "arms" + }, + "id": 4474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1583.00000", + "end": "1583.29000", + "feature": { + "word": "deal" + }, + "id": 4475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1583.29000", + "end": "1583.42000", + "feature": { + "word": "for" + }, + "id": 4476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1583.42000", + "end": "1583.53000", + "feature": { + "word": "the" + }, + "id": 4477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1583.53000", + "end": "1584.05000", + "feature": { + "word": "contras" + }, + "id": 4478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1584.26000", + "end": "1584.44000", + "feature": { + "word": "at" + }, + "id": 4480, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1584.44000", + "end": "1585.10000", + "feature": { + "word": "considerably" + }, + "id": 4481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1585.10000", + "end": "1585.49000", + "feature": { + "word": "lower" + }, + "id": 4482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1585.49000", + "end": "1586.04000", + "feature": { + "word": "prices" + }, + "id": 4483, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1586.04000", + "end": "1586.22000", + "feature": { + "word": "than" + }, + "id": 4484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1586.22000", + "end": "1586.65000", + "feature": { + "word": "richard" + }, + "id": 4485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1586.65000", + "end": "1587.22000", + "feature": { + "word": "secord" + }, + "id": 4486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1587.22000", + "end": "1587.81000", + "feature": { + "word": "charged" + }, + "id": 4487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1588.21000", + "end": "1588.38000", + "feature": { + "word": "that" + }, + "id": 4489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1588.38000", + "end": "1588.54000", + "feature": { + "word": "he" + }, + "id": 4490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1588.54000", + "end": "1589.15000", + "feature": { + "word": "solicited" + }, + "id": 4491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1589.15000", + "end": "1589.23000", + "feature": { + "word": "the" + }, + "id": 4492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1589.23000", + "end": "1589.70000", + "feature": { + "word": "governments" + }, + "id": 4493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1589.70000", + "end": "1589.79000", + "feature": { + "word": "of" + }, + "id": 4494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1589.79000", + "end": "1590.55000", + "feature": { + "word": "taiwan" + }, + "id": 4495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1590.55000", + "end": "1590.81000", + "feature": { + "word": "and" + }, + "id": 4496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1590.81000", + "end": "1591.17000", + "feature": { + "word": "south" + }, + "id": 4497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1591.17000", + "end": "1591.63000", + "feature": { + "word": "korea" + }, + "id": 4498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1591.63000", + "end": "1591.85000", + "feature": { + "word": "for" + }, + "id": 4499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1591.85000", + "end": "1592.67000", + "feature": { + "word": "donations" + }, + "id": 4500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1593.09000", + "end": "1593.30000", + "feature": { + "word": "that" + }, + "id": 4502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1593.30000", + "end": "1593.43000", + "feature": { + "word": "at" + }, + "id": 4503, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1593.43000", + "end": "1593.83000", + "feature": { + "word": "" + }, + "id": 4504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1593.83000", + "end": "1594.13000", + "feature": { + "word": "north" + }, + "id": 4505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1594.13000", + "end": "1594.22000", + "feature": { + "word": "s" + }, + "id": 4506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1594.22000", + "end": "1594.81000", + "feature": { + "word": "request" + }, + "id": 4507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1594.97000", + "end": "1595.59000", + "feature": { + "word": "singlaub" + }, + "id": 4509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1595.59000", + "end": "1595.96000", + "feature": { + "word": "served" + }, + "id": 4510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1595.96000", + "end": "1596.10000", + "feature": { + "word": "as" + }, + "id": 4511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1596.10000", + "end": "1596.19000", + "feature": { + "word": "a" + }, + "id": 4512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1596.19000", + "end": "1596.71000", + "feature": { + "word": "lightning" + }, + "id": 4513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1596.71000", + "end": "1597.05000", + "feature": { + "word": "rod" + }, + "id": 4514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1597.24000", + "end": "1597.40000", + "feature": { + "word": "to" + }, + "id": 4516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1597.40000", + "end": "1597.82000", + "feature": { + "word": "divert" + }, + "id": 4517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1597.82000", + "end": "1598.41000", + "feature": { + "word": "attention" + }, + "id": 4518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1598.41000", + "end": "1598.81000", + "feature": { + "word": "away" + }, + "id": 4519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1598.81000", + "end": "1599.03000", + "feature": { + "word": "from" + }, + "id": 4520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1599.03000", + "end": "1599.36000", + "feature": { + "word": "north" + }, + "id": 4521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1599.36000", + "end": "1599.43000", + "feature": { + "word": "s" + }, + "id": 4522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1599.43000", + "end": "1599.83000", + "feature": { + "word": "covert" + }, + "id": 4523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1599.83000", + "end": "1600.62000", + "feature": { + "word": "activities" + }, + "id": 4524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1601.08000", + "end": "1601.28000", + "feature": { + "word": "that" + }, + "id": 4526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1601.28000", + "end": "1601.78000", + "feature": { + "word": "assistant" + }, + "id": 4527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1601.78000", + "end": "1602.35000", + "feature": { + "word": "secretary" + }, + "id": 4528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1602.35000", + "end": "1602.44000", + "feature": { + "word": "of" + }, + "id": 4529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1602.44000", + "end": "1602.79000", + "feature": { + "word": "state" + }, + "id": 4530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1602.79000", + "end": "1603.26000", + "feature": { + "word": "elliott" + }, + "id": 4531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1603.26000", + "end": "1603.75000", + "feature": { + "word": "abrams" + }, + "id": 4532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1603.94000", + "end": "1604.21000", + "feature": { + "word": "played" + }, + "id": 4534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1604.21000", + "end": "1604.27000", + "feature": { + "word": "a" + }, + "id": 4535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1604.27000", + "end": "1604.50000", + "feature": { + "word": "more" + }, + "id": 4536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1604.50000", + "end": "1604.99000", + "feature": { + "word": "active" + }, + "id": 4537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1604.99000", + "end": "1605.34000", + "feature": { + "word": "role" + }, + "id": 4538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1605.34000", + "end": "1605.58000", + "feature": { + "word": "than" + }, + "id": 4539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1605.58000", + "end": "1606.05000", + "feature": { + "word": "abrams" + }, + "id": 4540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1606.05000", + "end": "1606.27000", + "feature": { + "word": "has" + }, + "id": 4541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1606.27000", + "end": "1606.90000", + "feature": { + "word": "acknowledged" + }, + "id": 4542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1607.05000", + "end": "1607.26000", + "feature": { + "word": "in" + }, + "id": 4544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1607.26000", + "end": "1607.65000", + "feature": { + "word": "efforts" + }, + "id": 4545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1607.65000", + "end": "1607.78000", + "feature": { + "word": "to" + }, + "id": 4546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1607.78000", + "end": "1608.12000", + "feature": { + "word": "raise" + }, + "id": 4547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1608.12000", + "end": "1608.44000", + "feature": { + "word": "money" + }, + "id": 4548, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1608.44000", + "end": "1608.56000", + "feature": { + "word": "for" + }, + "id": 4549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1608.56000", + "end": "1608.66000", + "feature": { + "word": "the" + }, + "id": 4550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1608.66000", + "end": "1609.41000", + "feature": { + "word": "contras" + }, + "id": 4551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1609.79000", + "end": "1610.11000", + "feature": { + "word": "since" + }, + "id": 4553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1610.11000", + "end": "1610.58000", + "feature": { + "word": "singlaub" + }, + "id": 4554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1610.58000", + "end": "1611.04000", + "feature": { + "word": "retired" + }, + "id": 4555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1611.04000", + "end": "1611.18000", + "feature": { + "word": "from" + }, + "id": 4556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1611.18000", + "end": "1611.30000", + "feature": { + "word": "the" + }, + "id": 4557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1611.30000", + "end": "1611.68000", + "feature": { + "word": "army" + }, + "id": 4558, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1611.68000", + "end": "1611.79000", + "feature": { + "word": "in" + }, + "id": 4559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1611.79000", + "end": "1612.94000", + "feature": { + "word": "" + }, + "id": 4560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1612.94000", + "end": "1613.30000", + "feature": { + "word": "he" + }, + "id": 4561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1613.30000", + "end": "1613.41000", + "feature": { + "word": "has" + }, + "id": 4562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1613.41000", + "end": "1613.56000", + "feature": { + "word": "been" + }, + "id": 4563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1613.56000", + "end": "1614.27000", + "feature": { + "word": "associated" + }, + "id": 4564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1614.27000", + "end": "1614.43000", + "feature": { + "word": "with" + }, + "id": 4565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1614.43000", + "end": "1615.17000", + "feature": { + "word": "innumerable" + }, + "id": 4566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1615.17000", + "end": "1615.55000", + "feature": { + "word": "anti" + }, + "id": 4567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1615.55000", + "end": "1616.14000", + "feature": { + "word": "communist" + }, + "id": 4568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1616.14000", + "end": "1617.03000", + "feature": { + "word": "insurgencies" + }, + "id": 4569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1617.03000", + "end": "1617.36000", + "feature": { + "word": "around" + }, + "id": 4570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1617.36000", + "end": "1617.45000", + "feature": { + "word": "the" + }, + "id": 4571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1617.45000", + "end": "1617.98000", + "feature": { + "word": "world" + }, + "id": 4572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1618.13000", + "end": "1618.51000", + "feature": { + "word": "he" + }, + "id": 4574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1618.51000", + "end": "1618.76000", + "feature": { + "word": "was" + }, + "id": 4575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1618.76000", + "end": "1619.06000", + "feature": { + "word": "chief" + }, + "id": 4576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1619.06000", + "end": "1619.18000", + "feature": { + "word": "of" + }, + "id": 4577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1619.18000", + "end": "1619.64000", + "feature": { + "word": "staff" + }, + "id": 4578, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1619.64000", + "end": "1619.84000", + "feature": { + "word": "of" + }, + "id": 4579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1619.84000", + "end": "1620.00000", + "feature": { + "word": "u" + }, + "id": 4580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1620.00000", + "end": "1620.20000", + "feature": { + "word": "s" + }, + "id": 4581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1620.20000", + "end": "1620.72000", + "feature": { + "word": "forces" + }, + "id": 4582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1620.72000", + "end": "1620.97000", + "feature": { + "word": "in" + }, + "id": 4583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1620.97000", + "end": "1621.33000", + "feature": { + "word": "south" + }, + "id": 4584, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1621.33000", + "end": "1621.83000", + "feature": { + "word": "korea" + }, + "id": 4585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1622.12000", + "end": "1622.60000", + "feature": { + "word": "until" + }, + "id": 4587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1622.60000", + "end": "1623.11000", + "feature": { + "word": "president" + }, + "id": 4588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1623.11000", + "end": "1623.53000", + "feature": { + "word": "carter" + }, + "id": 4589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1623.53000", + "end": "1623.98000", + "feature": { + "word": "fired" + }, + "id": 4590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1623.98000", + "end": "1624.17000", + "feature": { + "word": "him" + }, + "id": 4591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1624.17000", + "end": "1624.29000", + "feature": { + "word": "in" + }, + "id": 4592, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1624.29000", + "end": "1625.64000", + "feature": { + "word": "" + }, + "id": 4593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1625.93000", + "end": "1626.07000", + "feature": { + "word": "for" + }, + "id": 4595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1626.07000", + "end": "1626.88000", + "feature": { + "word": "criticizing" + }, + "id": 4596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1626.88000", + "end": "1627.28000", + "feature": { + "word": "carter" + }, + "id": 4597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1627.28000", + "end": "1627.36000", + "feature": { + "word": "s" + }, + "id": 4598, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1627.36000", + "end": "1627.95000", + "feature": { + "word": "proposal" + }, + "id": 4599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1627.95000", + "end": "1628.10000", + "feature": { + "word": "to" + }, + "id": 4600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1628.10000", + "end": "1628.57000", + "feature": { + "word": "remove" + }, + "id": 4601, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1628.57000", + "end": "1628.79000", + "feature": { + "word": "u" + }, + "id": 4602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1628.79000", + "end": "1628.94000", + "feature": { + "word": "s" + }, + "id": 4603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1628.94000", + "end": "1629.39000", + "feature": { + "word": "troops" + }, + "id": 4604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1629.39000", + "end": "1629.69000", + "feature": { + "word": "from" + }, + "id": 4605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1629.69000", + "end": "1630.40000", + "feature": { + "word": "korea" + }, + "id": 4606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1631.72000", + "end": "1632.29000", + "feature": { + "word": "today" + }, + "id": 4608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1632.29000", + "end": "1632.84000", + "feature": { + "word": "singlaub" + }, + "id": 4609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1632.84000", + "end": "1633.07000", + "feature": { + "word": "got" + }, + "id": 4610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1633.07000", + "end": "1633.16000", + "feature": { + "word": "a" + }, + "id": 4611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1633.16000", + "end": "1633.58000", + "feature": { + "word": "chance" + }, + "id": 4612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1633.58000", + "end": "1633.71000", + "feature": { + "word": "to" + }, + "id": 4613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1633.71000", + "end": "1634.26000", + "feature": { + "word": "explain" + }, + "id": 4614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1634.26000", + "end": "1634.56000", + "feature": { + "word": "why" + }, + "id": 4615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1634.56000", + "end": "1634.80000", + "feature": { + "word": "he" + }, + "id": 4616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1634.80000", + "end": "1635.14000", + "feature": { + "word": "thinks" + }, + "id": 4617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1635.14000", + "end": "1635.96000", + "feature": { + "word": "nicaragua" + }, + "id": 4618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1635.96000", + "end": "1636.16000", + "feature": { + "word": "is" + }, + "id": 4619, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1636.16000", + "end": "1636.43000", + "feature": { + "word": "so" + }, + "id": 4620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1636.43000", + "end": "1637.27000", + "feature": { + "word": "strategically" + }, + "id": 4621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1637.27000", + "end": "1637.88000", + "feature": { + "word": "important" + }, + "id": 4622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1637.88000", + "end": "1637.97000", + "feature": { + "word": "to" + }, + "id": 4623, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1637.97000", + "end": "1638.06000", + "feature": { + "word": "the" + }, + "id": 4624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1638.06000", + "end": "1638.48000", + "feature": { + "word": "united" + }, + "id": 4625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1638.48000", + "end": "1639.03000", + "feature": { + "word": "states" + }, + "id": 4626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.03000", + "end": "1639.12000", + "feature": { + "word": "gen" + }, + "id": 4627, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.12000", + "end": "1639.21000", + "feature": { + "word": "john" + }, + "id": 4628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.24000", + "end": "1639.42000", + "feature": { + "word": "singlaub" + }, + "id": 4630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.42000", + "end": "1639.48000", + "feature": { + "word": "u" + }, + "id": 4631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.48000", + "end": "1639.51000", + "feature": { + "word": "s" + }, + "id": 4632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.51000", + "end": "1639.63000", + "feature": { + "word": "army" + }, + "id": 4633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.63000", + "end": "1639.81000", + "feature": { + "word": "retired" + }, + "id": 4634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.81000", + "end": "1639.90000", + "feature": { + "word": "well" + }, + "id": 4635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.90000", + "end": "1639.99000", + "feature": { + "word": "not" + }, + "id": 4636, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1639.99000", + "end": "1640.36000", + "feature": { + "word": "only" + }, + "id": 4637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1640.36000", + "end": "1640.75000", + "feature": { + "word": "is" + }, + "id": 4638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1640.78000", + "end": "1641.12000", + "feature": { + "word": "the" + }, + "id": 4640, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1641.43000", + "end": "1642.04000", + "feature": { + "word": "military" + }, + "id": 4642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1642.04000", + "end": "1642.45000", + "feature": { + "word": "force" + }, + "id": 4643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1642.45000", + "end": "1642.82000", + "feature": { + "word": "being" + }, + "id": 4644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1642.82000", + "end": "1643.43000", + "feature": { + "word": "created" + }, + "id": 4645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1643.43000", + "end": "1643.79000", + "feature": { + "word": "there" + }, + "id": 4646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1643.82000", + "end": "1644.07000", + "feature": { + "word": "a" + }, + "id": 4648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1644.07000", + "end": "1644.67000", + "feature": { + "word": "threat" + }, + "id": 4649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1644.84000", + "end": "1645.21000", + "feature": { + "word": "well" + }, + "id": 4651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1645.21000", + "end": "1645.98000", + "feature": { + "word": "recognized" + }, + "id": 4652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1645.98000", + "end": "1646.38000", + "feature": { + "word": "by" + }, + "id": 4653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1646.42000", + "end": "1647.12000", + "feature": { + "word": "nicaragua" + }, + "id": 4655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1647.12000", + "end": "1647.23000", + "feature": { + "word": "s" + }, + "id": 4656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1647.27000", + "end": "1647.84000", + "feature": { + "word": "neighbors" + }, + "id": 4658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1648.38000", + "end": "1648.81000", + "feature": { + "word": "but" + }, + "id": 4660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1648.81000", + "end": "1649.25000", + "feature": { + "word": "the" + }, + "id": 4661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1649.28000", + "end": "1649.79000", + "feature": { + "word": "bases" + }, + "id": 4663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1649.79000", + "end": "1649.96000", + "feature": { + "word": "that" + }, + "id": 4664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1649.96000", + "end": "1650.09000", + "feature": { + "word": "are" + }, + "id": 4665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1650.09000", + "end": "1650.44000", + "feature": { + "word": "being" + }, + "id": 4666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1650.44000", + "end": "1650.83000", + "feature": { + "word": "built" + }, + "id": 4667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1650.83000", + "end": "1651.00000", + "feature": { + "word": "there" + }, + "id": 4668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1651.00000", + "end": "1651.04000", + "feature": { + "word": "" + }, + "id": 4669, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1651.04000", + "end": "1651.33000", + "feature": { + "word": "both" + }, + "id": 4670, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1651.33000", + "end": "1651.79000", + "feature": { + "word": "naval" + }, + "id": 4671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1651.79000", + "end": "1652.01000", + "feature": { + "word": "and" + }, + "id": 4672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1652.01000", + "end": "1652.21000", + "feature": { + "word": "air" + }, + "id": 4673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1652.21000", + "end": "1652.76000", + "feature": { + "word": "bases" + }, + "id": 4674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1652.76000", + "end": "1652.89000", + "feature": { + "word": "" + }, + "id": 4675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1652.89000", + "end": "1652.97000", + "feature": { + "word": "are" + }, + "id": 4676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1652.97000", + "end": "1653.04000", + "feature": { + "word": "a" + }, + "id": 4677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1653.04000", + "end": "1653.48000", + "feature": { + "word": "direct" + }, + "id": 4678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1653.48000", + "end": "1653.90000", + "feature": { + "word": "threat" + }, + "id": 4679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1653.90000", + "end": "1653.99000", + "feature": { + "word": "to" + }, + "id": 4680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1653.99000", + "end": "1654.09000", + "feature": { + "word": "the" + }, + "id": 4681, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1654.09000", + "end": "1654.56000", + "feature": { + "word": "united" + }, + "id": 4682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1654.56000", + "end": "1655.04000", + "feature": { + "word": "states" + }, + "id": 4683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1655.72000", + "end": "1656.04000", + "feature": { + "word": "as" + }, + "id": 4685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1656.04000", + "end": "1656.47000", + "feature": { + "word": "adolfo" + }, + "id": 4686, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1656.47000", + "end": "1656.90000", + "feature": { + "word": "calero" + }, + "id": 4687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1656.90000", + "end": "1657.38000", + "feature": { + "word": "talked" + }, + "id": 4688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1657.38000", + "end": "1657.94000", + "feature": { + "word": "" + }, + "id": 4689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1657.94000", + "end": "1658.31000", + "feature": { + "word": "mentioned" + }, + "id": 4690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1658.31000", + "end": "1658.34000", + "feature": { + "word": "" + }, + "id": 4691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1658.34000", + "end": "1658.86000", + "feature": { + "word": "yesterday" + }, + "id": 4692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1659.69000", + "end": "1660.15000", + "feature": { + "word": "the" + }, + "id": 4694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1660.15000", + "end": "1661.10000", + "feature": { + "word": "" + }, + "id": 4695, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1661.36000", + "end": "1661.66000", + "feature": { + "word": "big" + }, + "id": 4697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1661.69000", + "end": "1661.94000", + "feature": { + "word": "air" + }, + "id": 4699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1661.94000", + "end": "1662.24000", + "feature": { + "word": "base" + }, + "id": 4700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1662.24000", + "end": "1662.48000", + "feature": { + "word": "there" + }, + "id": 4701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1662.48000", + "end": "1662.59000", + "feature": { + "word": "is" + }, + "id": 4702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1662.59000", + "end": "1662.68000", + "feature": { + "word": "the" + }, + "id": 4703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1662.68000", + "end": "1663.20000", + "feature": { + "word": "largest" + }, + "id": 4704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1663.20000", + "end": "1663.35000", + "feature": { + "word": "air" + }, + "id": 4705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1663.35000", + "end": "1663.76000", + "feature": { + "word": "base" + }, + "id": 4706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1664.23000", + "end": "1664.73000", + "feature": { + "word": "south" + }, + "id": 4708, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1664.73000", + "end": "1665.00000", + "feature": { + "word": "of" + }, + "id": 4709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1665.00000", + "end": "1665.09000", + "feature": { + "word": "the" + }, + "id": 4710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1665.09000", + "end": "1665.33000", + "feature": { + "word": "rio" + }, + "id": 4711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1665.33000", + "end": "1665.77000", + "feature": { + "word": "grande" + }, + "id": 4712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1665.77000", + "end": "1665.90000", + "feature": { + "word": "it" + }, + "id": 4713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1665.90000", + "end": "1666.04000", + "feature": { + "word": "would" + }, + "id": 4714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1666.04000", + "end": "1666.41000", + "feature": { + "word": "enable" + }, + "id": 4715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1666.41000", + "end": "1666.51000", + "feature": { + "word": "the" + }, + "id": 4716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1666.51000", + "end": "1666.99000", + "feature": { + "word": "soviets" + }, + "id": 4717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1666.99000", + "end": "1667.10000", + "feature": { + "word": "to" + }, + "id": 4718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1667.10000", + "end": "1667.40000", + "feature": { + "word": "base" + }, + "id": 4719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1667.99000", + "end": "1668.59000", + "feature": { + "word": "long" + }, + "id": 4721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1668.59000", + "end": "1669.03000", + "feature": { + "word": "range" + }, + "id": 4722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1669.03000", + "end": "1669.60000", + "feature": { + "word": "bombers" + }, + "id": 4723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1669.60000", + "end": "1669.78000", + "feature": { + "word": "and" + }, + "id": 4724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1669.78000", + "end": "1670.43000", + "feature": { + "word": "reconnaissance" + }, + "id": 4725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1670.43000", + "end": "1671.05000", + "feature": { + "word": "aircraft" + }, + "id": 4726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1671.05000", + "end": "1671.28000", + "feature": { + "word": "there" + }, + "id": 4727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1671.28000", + "end": "1671.44000", + "feature": { + "word": "that" + }, + "id": 4728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1671.44000", + "end": "1671.58000", + "feature": { + "word": "would" + }, + "id": 4729, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1671.58000", + "end": "1671.71000", + "feature": { + "word": "be" + }, + "id": 4730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1671.71000", + "end": "1671.81000", + "feature": { + "word": "a" + }, + "id": 4731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1671.81000", + "end": "1672.13000", + "feature": { + "word": "direct" + }, + "id": 4732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1672.13000", + "end": "1672.44000", + "feature": { + "word": "threat" + }, + "id": 4733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1672.44000", + "end": "1672.58000", + "feature": { + "word": "to" + }, + "id": 4734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1672.58000", + "end": "1672.75000", + "feature": { + "word": "our" + }, + "id": 4735, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1672.75000", + "end": "1673.32000", + "feature": { + "word": "security" + }, + "id": 4736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1673.76000", + "end": "1673.87000", + "feature": { + "word": "the" + }, + "id": 4738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1673.87000", + "end": "1674.35000", + "feature": { + "word": "bases" + }, + "id": 4739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1674.35000", + "end": "1674.46000", + "feature": { + "word": "that" + }, + "id": 4740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1674.46000", + "end": "1674.54000", + "feature": { + "word": "are" + }, + "id": 4741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1674.54000", + "end": "1674.85000", + "feature": { + "word": "being" + }, + "id": 4742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1674.85000", + "end": "1675.30000", + "feature": { + "word": "built" + }, + "id": 4743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1675.30000", + "end": "1675.54000", + "feature": { + "word": "on" + }, + "id": 4744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1675.54000", + "end": "1675.67000", + "feature": { + "word": "the" + }, + "id": 4745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1675.67000", + "end": "1676.22000", + "feature": { + "word": "pacific" + }, + "id": 4746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1676.22000", + "end": "1676.53000", + "feature": { + "word": "coast" + }, + "id": 4747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1676.53000", + "end": "1676.66000", + "feature": { + "word": "would" + }, + "id": 4748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1676.66000", + "end": "1676.89000", + "feature": { + "word": "give" + }, + "id": 4749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1676.89000", + "end": "1677.19000", + "feature": { + "word": "them" + }, + "id": 4750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1677.49000", + "end": "1677.58000", + "feature": { + "word": "for" + }, + "id": 4752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1677.58000", + "end": "1677.67000", + "feature": { + "word": "the" + }, + "id": 4753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1677.67000", + "end": "1678.04000", + "feature": { + "word": "first" + }, + "id": 4754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1678.04000", + "end": "1678.41000", + "feature": { + "word": "time" + }, + "id": 4755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1678.41000", + "end": "1678.48000", + "feature": { + "word": "a" + }, + "id": 4756, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1678.48000", + "end": "1679.06000", + "feature": { + "word": "base" + }, + "id": 4757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1679.44000", + "end": "1679.60000", + "feature": { + "word": "from" + }, + "id": 4759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1679.60000", + "end": "1679.81000", + "feature": { + "word": "which" + }, + "id": 4760, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1679.81000", + "end": "1679.98000", + "feature": { + "word": "they" + }, + "id": 4761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1679.98000", + "end": "1680.15000", + "feature": { + "word": "could" + }, + "id": 4762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1680.15000", + "end": "1680.62000", + "feature": { + "word": "threaten" + }, + "id": 4763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1680.62000", + "end": "1680.70000", + "feature": { + "word": "the" + }, + "id": 4764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1680.70000", + "end": "1680.96000", + "feature": { + "word": "west" + }, + "id": 4765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1680.96000", + "end": "1681.18000", + "feature": { + "word": "coast" + }, + "id": 4766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1681.18000", + "end": "1681.24000", + "feature": { + "word": "of" + }, + "id": 4767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1681.24000", + "end": "1681.30000", + "feature": { + "word": "the" + }, + "id": 4768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1681.30000", + "end": "1681.76000", + "feature": { + "word": "united" + }, + "id": 4769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1681.76000", + "end": "1682.22000", + "feature": { + "word": "states" + }, + "id": 4770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1682.68000", + "end": "1683.19000", + "feature": { + "word": "the" + }, + "id": 4772, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1683.69000", + "end": "1685.80000", + "feature": { + "word": "obvious" + }, + "id": 4774, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1685.86000", + "end": "1686.22000", + "feature": { + "word": "place" + }, + "id": 4776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1686.22000", + "end": "1686.58000", + "feature": { + "word": "for" + }, + "id": 4777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1686.58000", + "end": "1686.73000", + "feature": { + "word": "a" + }, + "id": 4778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1686.73000", + "end": "1687.43000", + "feature": { + "word": "second" + }, + "id": 4779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1688.10000", + "end": "1688.48000", + "feature": { + "word": "canal" + }, + "id": 4781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1688.56000", + "end": "1689.30000", + "feature": { + "word": "" + }, + "id": 4783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1689.92000", + "end": "1690.30000", + "feature": { + "word": "ocean" + }, + "id": 4785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1690.30000", + "end": "1690.37000", + "feature": { + "word": "to" + }, + "id": 4786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1690.37000", + "end": "1690.75000", + "feature": { + "word": "ocean" + }, + "id": 4787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1690.75000", + "end": "1691.16000", + "feature": { + "word": "canal" + }, + "id": 4788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1691.16000", + "end": "1691.41000", + "feature": { + "word": "through" + }, + "id": 4789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1691.41000", + "end": "1691.63000", + "feature": { + "word": "the" + }, + "id": 4790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1691.63000", + "end": "1692.03000", + "feature": { + "word": "isthmus" + }, + "id": 4791, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1692.03000", + "end": "1692.13000", + "feature": { + "word": "" + }, + "id": 4792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1692.45000", + "end": "1692.73000", + "feature": { + "word": "is" + }, + "id": 4794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1692.73000", + "end": "1693.19000", + "feature": { + "word": "through" + }, + "id": 4795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1693.23000", + "end": "1694.01000", + "feature": { + "word": "nicaragua" + }, + "id": 4797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1694.34000", + "end": "1694.53000", + "feature": { + "word": "i" + }, + "id": 4799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1694.53000", + "end": "1694.77000", + "feature": { + "word": "would" + }, + "id": 4800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1694.77000", + "end": "1695.18000", + "feature": { + "word": "not" + }, + "id": 4801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1695.18000", + "end": "1695.61000", + "feature": { + "word": "want" + }, + "id": 4802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1695.61000", + "end": "1695.76000", + "feature": { + "word": "to" + }, + "id": 4803, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1695.76000", + "end": "1696.17000", + "feature": { + "word": "have" + }, + "id": 4804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1696.20000", + "end": "1696.47000", + "feature": { + "word": "a" + }, + "id": 4806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1696.47000", + "end": "1697.15000", + "feature": { + "word": "canal" + }, + "id": 4807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1697.15000", + "end": "1697.18000", + "feature": { + "word": "" + }, + "id": 4808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1697.18000", + "end": "1697.26000", + "feature": { + "word": "a" + }, + "id": 4809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1697.26000", + "end": "1697.67000", + "feature": { + "word": "second" + }, + "id": 4810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1697.67000", + "end": "1698.18000", + "feature": { + "word": "canal" + }, + "id": 4811, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1698.40000", + "end": "1698.43000", + "feature": { + "word": "" + }, + "id": 4813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1698.49000", + "end": "1698.68000", + "feature": { + "word": "in" + }, + "id": 4815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1698.68000", + "end": "1698.82000", + "feature": { + "word": "the" + }, + "id": 4816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1698.82000", + "end": "1699.32000", + "feature": { + "word": "hands" + }, + "id": 4817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1699.32000", + "end": "1699.52000", + "feature": { + "word": "of" + }, + "id": 4818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1699.52000", + "end": "1699.61000", + "feature": { + "word": "the" + }, + "id": 4819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1699.61000", + "end": "1700.17000", + "feature": { + "word": "soviets" + }, + "id": 4820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1700.17000", + "end": "1700.41000", + "feature": { + "word": "which" + }, + "id": 4821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1700.41000", + "end": "1700.55000", + "feature": { + "word": "it" + }, + "id": 4822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1700.55000", + "end": "1700.80000", + "feature": { + "word": "would" + }, + "id": 4823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1700.80000", + "end": "1701.11000", + "feature": { + "word": "be" + }, + "id": 4824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1701.47000", + "end": "1701.78000", + "feature": { + "word": "if" + }, + "id": 4826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1701.78000", + "end": "1702.26000", + "feature": { + "word": "we" + }, + "id": 4827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1702.97000", + "end": "1704.31000", + "feature": { + "word": "allow" + }, + "id": 4829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1704.70000", + "end": "1704.95000", + "feature": { + "word": "the" + }, + "id": 4831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1704.95000", + "end": "1705.78000", + "feature": { + "word": "sandinistas" + }, + "id": 4832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1705.78000", + "end": "1705.86000", + "feature": { + "word": "to" + }, + "id": 4833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1705.86000", + "end": "1706.71000", + "feature": { + "word": "consolidate" + }, + "id": 4834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1706.71000", + "end": "1706.89000", + "feature": { + "word": "this" + }, + "id": 4835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1706.89000", + "end": "1707.39000", + "feature": { + "word": "communist" + }, + "id": 4836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1707.39000", + "end": "1707.94000", + "feature": { + "word": "revolution" + }, + "id": 4837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1707.94000", + "end": "1708.04000", + "feature": { + "word": "there" + }, + "id": 4838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.04000", + "end": "1708.13000", + "feature": { + "word": "rep" + }, + "id": 4839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.13000", + "end": "1708.25000", + "feature": { + "word": "james" + }, + "id": 4840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.36000", + "end": "1708.51000", + "feature": { + "word": "courter" + }, + "id": 4842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.55000", + "end": "1708.58000", + "feature": { + "word": "" + }, + "id": 4844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.61000", + "end": "1708.67000", + "feature": { + "word": "new" + }, + "id": 4846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.70000", + "end": "1708.82000", + "feature": { + "word": "jersey" + }, + "id": 4848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.87000", + "end": "1708.96000", + "feature": { + "word": "now" + }, + "id": 4850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1708.96000", + "end": "1709.10000", + "feature": { + "word": "there" + }, + "id": 4851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1709.10000", + "end": "1709.34000", + "feature": { + "word": "came" + }, + "id": 4852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1709.34000", + "end": "1709.42000", + "feature": { + "word": "a" + }, + "id": 4853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1709.42000", + "end": "1709.77000", + "feature": { + "word": "time" + }, + "id": 4854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1709.77000", + "end": "1709.89000", + "feature": { + "word": "did" + }, + "id": 4855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1709.89000", + "end": "1709.98000", + "feature": { + "word": "there" + }, + "id": 4856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1709.98000", + "end": "1710.33000", + "feature": { + "word": "not" + }, + "id": 4857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1710.33000", + "end": "1710.56000", + "feature": { + "word": "that" + }, + "id": 4858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1710.56000", + "end": "1710.74000", + "feature": { + "word": "the" + }, + "id": 4859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1710.77000", + "end": "1711.20000", + "feature": { + "word": "soviet" + }, + "id": 4861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1711.20000", + "end": "1711.51000", + "feature": { + "word": "union" + }, + "id": 4862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1711.51000", + "end": "1711.84000", + "feature": { + "word": "shipped" + }, + "id": 4863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1711.84000", + "end": "1712.21000", + "feature": { + "word": "hind" + }, + "id": 4864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1712.21000", + "end": "1712.99000", + "feature": { + "word": "helicopters" + }, + "id": 4865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1712.99000", + "end": "1713.42000", + "feature": { + "word": "to" + }, + "id": 4866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1713.42000", + "end": "1713.75000", + "feature": { + "word": "central" + }, + "id": 4867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1713.75000", + "end": "1714.10000", + "feature": { + "word": "america" + }, + "id": 4868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1714.10000", + "end": "1714.30000", + "feature": { + "word": "" + }, + "id": 4869, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1714.44000", + "end": "1715.04000", + "feature": { + "word": "nicaragua" + }, + "id": 4871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1715.07000", + "end": "1715.19000", + "feature": { + "word": "gen" + }, + "id": 4873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1715.19000", + "end": "1715.47000", + "feature": { + "word": "that" + }, + "id": 4874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1715.47000", + "end": "1715.60000", + "feature": { + "word": "is" + }, + "id": 4875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1715.60000", + "end": "1716.00000", + "feature": { + "word": "about" + }, + "id": 4876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1716.00000", + "end": "1716.09000", + "feature": { + "word": "the" + }, + "id": 4877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1716.09000", + "end": "1716.50000", + "feature": { + "word": "same" + }, + "id": 4878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1716.50000", + "end": "1716.94000", + "feature": { + "word": "time" + }, + "id": 4879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1716.94000", + "end": "1717.42000", + "feature": { + "word": "that" + }, + "id": 4880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1717.42000", + "end": "1717.74000", + "feature": { + "word": "our" + }, + "id": 4881, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1717.74000", + "end": "1718.29000", + "feature": { + "word": "congress" + }, + "id": 4882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1718.29000", + "end": "1718.53000", + "feature": { + "word": "cut" + }, + "id": 4883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1718.53000", + "end": "1718.84000", + "feature": { + "word": "off" + }, + "id": 4884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1718.84000", + "end": "1719.23000", + "feature": { + "word": "all" + }, + "id": 4885, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1719.23000", + "end": "1719.63000", + "feature": { + "word": "aid" + }, + "id": 4886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1719.81000", + "end": "1720.47000", + "feature": { + "word": "to" + }, + "id": 4888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1720.50000", + "end": "1720.66000", + "feature": { + "word": "those" + }, + "id": 4890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1720.66000", + "end": "1720.98000", + "feature": { + "word": "freedom" + }, + "id": 4891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1720.98000", + "end": "1721.26000", + "feature": { + "word": "fighters" + }, + "id": 4892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1721.26000", + "end": "1721.35000", + "feature": { + "word": "rep" + }, + "id": 4893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1721.35000", + "end": "1721.61000", + "feature": { + "word": "hind" + }, + "id": 4894, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1721.61000", + "end": "1722.42000", + "feature": { + "word": "helicopters" + }, + "id": 4895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1722.42000", + "end": "1722.88000", + "feature": { + "word": "are" + }, + "id": 4896, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1722.88000", + "end": "1723.15000", + "feature": { + "word": "pretty" + }, + "id": 4897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1723.15000", + "end": "1724.19000", + "feature": { + "word": "sophisticated" + }, + "id": 4898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1724.19000", + "end": "1724.71000", + "feature": { + "word": "fighting" + }, + "id": 4899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1724.75000", + "end": "1725.23000", + "feature": { + "word": "machines" + }, + "id": 4901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1725.23000", + "end": "1725.38000", + "feature": { + "word": "would" + }, + "id": 4902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1725.38000", + "end": "1725.44000", + "feature": { + "word": "you" + }, + "id": 4903, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1725.44000", + "end": "1725.63000", + "feature": { + "word": "not" + }, + "id": 4904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1725.63000", + "end": "1725.73000", + "feature": { + "word": "say" + }, + "id": 4905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1725.73000", + "end": "1725.88000", + "feature": { + "word": "gen" + }, + "id": 4906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1725.98000", + "end": "1726.33000", + "feature": { + "word": "i've" + }, + "id": 4908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1726.33000", + "end": "1726.85000", + "feature": { + "word": "described" + }, + "id": 4909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1726.85000", + "end": "1726.95000", + "feature": { + "word": "it" + }, + "id": 4910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1726.95000", + "end": "1727.07000", + "feature": { + "word": "as" + }, + "id": 4911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1727.07000", + "end": "1727.15000", + "feature": { + "word": "the" + }, + "id": 4912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1727.15000", + "end": "1727.48000", + "feature": { + "word": "most" + }, + "id": 4913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1727.48000", + "end": "1728.10000", + "feature": { + "word": "effective" + }, + "id": 4914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1728.13000", + "end": "1728.48000", + "feature": { + "word": "people" + }, + "id": 4916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1728.48000", + "end": "1728.82000", + "feature": { + "word": "killing" + }, + "id": 4917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1728.82000", + "end": "1729.22000", + "feature": { + "word": "machine" + }, + "id": 4918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1729.22000", + "end": "1729.30000", + "feature": { + "word": "in" + }, + "id": 4919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1729.30000", + "end": "1729.37000", + "feature": { + "word": "the" + }, + "id": 4920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1729.37000", + "end": "1729.65000", + "feature": { + "word": "world" + }, + "id": 4921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1730.69000", + "end": "1732.75000", + "feature": { + "word": "rep" + }, + "id": 4923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1732.75000", + "end": "1732.89000", + "feature": { + "word": "they're" + }, + "id": 4924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1732.89000", + "end": "1733.25000", + "feature": { + "word": "fairly" + }, + "id": 4925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1733.25000", + "end": "1733.90000", + "feature": { + "word": "expensive" + }, + "id": 4926, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1733.90000", + "end": "1734.03000", + "feature": { + "word": "to" + }, + "id": 4927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1734.03000", + "end": "1734.13000", + "feature": { + "word": "the" + }, + "id": 4928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1734.13000", + "end": "1734.63000", + "feature": { + "word": "soviet" + }, + "id": 4929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1734.63000", + "end": "1735.00000", + "feature": { + "word": "union" + }, + "id": 4930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1735.00000", + "end": "1735.15000", + "feature": { + "word": "i" + }, + "id": 4931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1735.15000", + "end": "1735.33000", + "feature": { + "word": "would" + }, + "id": 4932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1735.68000", + "end": "1736.47000", + "feature": { + "word": "imagine" + }, + "id": 4934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1736.60000", + "end": "1736.69000", + "feature": { + "word": "gen" + }, + "id": 4936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1736.69000", + "end": "1737.09000", + "feature": { + "word": "quite" + }, + "id": 4937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1737.40000", + "end": "1737.60000", + "feature": { + "word": "rep" + }, + "id": 4939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1737.60000", + "end": "1737.72000", + "feature": { + "word": "there" + }, + "id": 4940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1737.72000", + "end": "1737.78000", + "feature": { + "word": "s" + }, + "id": 4941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1737.78000", + "end": "1737.93000", + "feature": { + "word": "been" + }, + "id": 4942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1737.93000", + "end": "1737.96000", + "feature": { + "word": "a" + }, + "id": 4943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1737.96000", + "end": "1738.30000", + "feature": { + "word": "great" + }, + "id": 4944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1738.30000", + "end": "1738.89000", + "feature": { + "word": "deal" + }, + "id": 4945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1738.89000", + "end": "1739.22000", + "feature": { + "word": "said" + }, + "id": 4946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1739.22000", + "end": "1739.71000", + "feature": { + "word": "about" + }, + "id": 4947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1739.93000", + "end": "1740.52000", + "feature": { + "word": "soviet" + }, + "id": 4949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1740.52000", + "end": "1740.93000", + "feature": { + "word": "bloc" + }, + "id": 4950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1740.99000", + "end": "1741.41000", + "feature": { + "word": "aid" + }, + "id": 4952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1741.41000", + "end": "1741.69000", + "feature": { + "word": "to" + }, + "id": 4953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1741.69000", + "end": "1742.13000", + "feature": { + "word": "central" + }, + "id": 4954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1742.13000", + "end": "1742.55000", + "feature": { + "word": "america" + }, + "id": 4955, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1742.55000", + "end": "1742.69000", + "feature": { + "word": "to" + }, + "id": 4956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1742.69000", + "end": "1742.78000", + "feature": { + "word": "the" + }, + "id": 4957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1742.78000", + "end": "1743.67000", + "feature": { + "word": "sandinistas" + }, + "id": 4958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1743.73000", + "end": "1744.16000", + "feature": { + "word": "since" + }, + "id": 4960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1744.16000", + "end": "1744.52000", + "feature": { + "word": "the" + }, + "id": 4961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1744.83000", + "end": "1745.62000", + "feature": { + "word": "revolution" + }, + "id": 4963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1745.62000", + "end": "1745.77000", + "feature": { + "word": "in" + }, + "id": 4964, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1745.77000", + "end": "1746.48000", + "feature": { + "word": "" + }, + "id": 4965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1746.48000", + "end": "1746.69000", + "feature": { + "word": "from" + }, + "id": 4966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1746.69000", + "end": "1746.89000", + "feature": { + "word": "your" + }, + "id": 4967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1746.89000", + "end": "1747.83000", + "feature": { + "word": "experience" + }, + "id": 4968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1748.10000", + "end": "1748.30000", + "feature": { + "word": "in" + }, + "id": 4970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1748.30000", + "end": "1748.80000", + "feature": { + "word": "talking" + }, + "id": 4971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1748.80000", + "end": "1749.00000", + "feature": { + "word": "with" + }, + "id": 4972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1749.00000", + "end": "1749.35000", + "feature": { + "word": "people" + }, + "id": 4973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1749.35000", + "end": "1749.74000", + "feature": { + "word": "living" + }, + "id": 4974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1749.74000", + "end": "1749.84000", + "feature": { + "word": "in" + }, + "id": 4975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1749.84000", + "end": "1750.08000", + "feature": { + "word": "that" + }, + "id": 4976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1750.08000", + "end": "1750.24000", + "feature": { + "word": "part" + }, + "id": 4977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1750.24000", + "end": "1750.31000", + "feature": { + "word": "of" + }, + "id": 4978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1750.31000", + "end": "1750.38000", + "feature": { + "word": "the" + }, + "id": 4979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1750.38000", + "end": "1750.84000", + "feature": { + "word": "world" + }, + "id": 4980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1751.15000", + "end": "1751.41000", + "feature": { + "word": "do" + }, + "id": 4982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1751.41000", + "end": "1751.59000", + "feature": { + "word": "you" + }, + "id": 4983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1751.59000", + "end": "1752.39000", + "feature": { + "word": "know" + }, + "id": 4984, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1752.42000", + "end": "1752.75000", + "feature": { + "word": "whether" + }, + "id": 4986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1752.75000", + "end": "1752.87000", + "feature": { + "word": "the" + }, + "id": 4987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1752.87000", + "end": "1753.57000", + "feature": { + "word": "soviet" + }, + "id": 4988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1753.57000", + "end": "1753.96000", + "feature": { + "word": "bloc" + }, + "id": 4989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1753.96000", + "end": "1754.40000", + "feature": { + "word": "gave" + }, + "id": 4990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1754.40000", + "end": "1755.12000", + "feature": { + "word": "training" + }, + "id": 4991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1755.15000", + "end": "1755.54000", + "feature": { + "word": "gave" + }, + "id": 4993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1755.58000", + "end": "1756.05000", + "feature": { + "word": "aid" + }, + "id": 4995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1756.05000", + "end": "1756.36000", + "feature": { + "word": "gave" + }, + "id": 4996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1756.36000", + "end": "1756.97000", + "feature": { + "word": "logistics" + }, + "id": 4997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1756.97000", + "end": "1757.25000", + "feature": { + "word": "gave" + }, + "id": 4998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1757.25000", + "end": "1758.03000", + "feature": { + "word": "information" + }, + "id": 4999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1758.03000", + "end": "1758.14000", + "feature": { + "word": "and" + }, + "id": 5000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1758.14000", + "end": "1758.85000", + "feature": { + "word": "material" + }, + "id": 5001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1759.18000", + "end": "1759.31000", + "feature": { + "word": "to" + }, + "id": 5003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1759.31000", + "end": "1759.41000", + "feature": { + "word": "the" + }, + "id": 5004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1759.41000", + "end": "1760.26000", + "feature": { + "word": "sandinistas" + }, + "id": 5005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1760.41000", + "end": "1760.63000", + "feature": { + "word": "in" + }, + "id": 5007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1760.63000", + "end": "1761.04000", + "feature": { + "word": "fact" + }, + "id": 5008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1761.04000", + "end": "1761.74000", + "feature": { + "word": "before" + }, + "id": 5009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1762.00000", + "end": "1762.34000", + "feature": { + "word": "they" + }, + "id": 5011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1762.34000", + "end": "1762.70000", + "feature": { + "word": "seized" + }, + "id": 5012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1762.70000", + "end": "1762.95000", + "feature": { + "word": "power" + }, + "id": 5013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1762.95000", + "end": "1763.06000", + "feature": { + "word": "in" + }, + "id": 5014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1763.06000", + "end": "1763.69000", + "feature": { + "word": "" + }, + "id": 5015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1763.69000", + "end": "1763.93000", + "feature": { + "word": "gen" + }, + "id": 5016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1764.64000", + "end": "1764.80000", + "feature": { + "word": "i" + }, + "id": 5018, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1764.80000", + "end": "1765.39000", + "feature": { + "word": "believe" + }, + "id": 5019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1765.39000", + "end": "1765.67000", + "feature": { + "word": "that" + }, + "id": 5020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1765.67000", + "end": "1765.88000", + "feature": { + "word": "they" + }, + "id": 5021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1765.88000", + "end": "1766.30000", + "feature": { + "word": "did" + }, + "id": 5022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1766.30000", + "end": "1766.62000", + "feature": { + "word": "this" + }, + "id": 5023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1766.62000", + "end": "1766.79000", + "feature": { + "word": "through" + }, + "id": 5024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1766.79000", + "end": "1767.00000", + "feature": { + "word": "their" + }, + "id": 5025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1767.00000", + "end": "1767.93000", + "feature": { + "word": "surrogate" + }, + "id": 5026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1767.93000", + "end": "1768.28000", + "feature": { + "word": "cuba" + }, + "id": 5027, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1768.50000", + "end": "1768.79000", + "feature": { + "word": "that" + }, + "id": 5029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1768.79000", + "end": "1769.09000", + "feature": { + "word": "was" + }, + "id": 5030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1769.16000", + "end": "1770.01000", + "feature": { + "word": "open" + }, + "id": 5032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1770.90000", + "end": "1772.07000", + "feature": { + "word": "knowledge" + }, + "id": 5034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1772.10000", + "end": "1772.33000", + "feature": { + "word": "in" + }, + "id": 5036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1772.33000", + "end": "1772.52000", + "feature": { + "word": "the" + }, + "id": 5037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1772.52000", + "end": "1772.91000", + "feature": { + "word": "area" + }, + "id": 5038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1772.91000", + "end": "1773.37000", + "feature": { + "word": "that" + }, + "id": 5039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1773.37000", + "end": "1773.70000", + "feature": { + "word": "the" + }, + "id": 5040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1774.32000", + "end": "1775.03000", + "feature": { + "word": "sandinista" + }, + "id": 5042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1775.03000", + "end": "1775.45000", + "feature": { + "word": "forces" + }, + "id": 5043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1775.45000", + "end": "1775.66000", + "feature": { + "word": "would" + }, + "id": 5044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1775.66000", + "end": "1775.94000", + "feature": { + "word": "go" + }, + "id": 5045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1775.94000", + "end": "1776.26000", + "feature": { + "word": "to" + }, + "id": 5046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1776.26000", + "end": "1776.81000", + "feature": { + "word": "havana" + }, + "id": 5047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1776.92000", + "end": "1777.71000", + "feature": { + "word": "receive" + }, + "id": 5049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1777.74000", + "end": "1778.31000", + "feature": { + "word": "training" + }, + "id": 5051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1778.62000", + "end": "1778.82000", + "feature": { + "word": "there" + }, + "id": 5053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1778.82000", + "end": "1779.02000", + "feature": { + "word": "were" + }, + "id": 5054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1779.02000", + "end": "1779.59000", + "feature": { + "word": "" + }, + "id": 5055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1779.59000", + "end": "1779.70000", + "feature": { + "word": "in" + }, + "id": 5056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1779.70000", + "end": "1779.78000", + "feature": { + "word": "the" + }, + "id": 5057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1779.78000", + "end": "1780.18000", + "feature": { + "word": "force" + }, + "id": 5058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1780.18000", + "end": "1780.32000", + "feature": { + "word": "there" + }, + "id": 5059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1780.32000", + "end": "1780.43000", + "feature": { + "word": "were" + }, + "id": 5060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1780.43000", + "end": "1781.38000", + "feature": { + "word": "panamanians" + }, + "id": 5061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1781.38000", + "end": "1781.61000", + "feature": { + "word": "by" + }, + "id": 5062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1781.61000", + "end": "1781.74000", + "feature": { + "word": "the" + }, + "id": 5063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1781.74000", + "end": "1782.03000", + "feature": { + "word": "way" + }, + "id": 5064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1782.03000", + "end": "1782.34000", + "feature": { + "word": "who" + }, + "id": 5065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1782.34000", + "end": "1782.83000", + "feature": { + "word": "assisted" + }, + "id": 5066, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1782.83000", + "end": "1782.96000", + "feature": { + "word": "in" + }, + "id": 5067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1782.96000", + "end": "1783.18000", + "feature": { + "word": "that" + }, + "id": 5068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1783.18000", + "end": "1783.57000", + "feature": { + "word": "period" + }, + "id": 5069, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1784.20000", + "end": "1784.64000", + "feature": { + "word": "today" + }, + "id": 5071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1784.64000", + "end": "1784.87000", + "feature": { + "word": "there" + }, + "id": 5072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1784.87000", + "end": "1784.99000", + "feature": { + "word": "are" + }, + "id": 5073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1784.99000", + "end": "1785.45000", + "feature": { + "word": "roughly" + }, + "id": 5074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1785.45000", + "end": "1786.92000", + "feature": { + "word": "" + }, + "id": 5075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1787.51000", + "end": "1788.10000", + "feature": { + "word": "foreign" + }, + "id": 5077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1788.56000", + "end": "1789.49000", + "feature": { + "word": "military" + }, + "id": 5079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1789.77000", + "end": "1790.30000", + "feature": { + "word": "forces" + }, + "id": 5081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1790.30000", + "end": "1790.40000", + "feature": { + "word": "" + }, + "id": 5082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1790.40000", + "end": "1790.82000", + "feature": { + "word": "military" + }, + "id": 5083, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1790.82000", + "end": "1791.01000", + "feature": { + "word": "and" + }, + "id": 5084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1791.01000", + "end": "1791.48000", + "feature": { + "word": "civilian" + }, + "id": 5085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1791.48000", + "end": "1792.25000", + "feature": { + "word": "advisors" + }, + "id": 5086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1792.79000", + "end": "1793.05000", + "feature": { + "word": "all" + }, + "id": 5088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1793.05000", + "end": "1793.25000", + "feature": { + "word": "from" + }, + "id": 5089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1793.25000", + "end": "1794.08000", + "feature": { + "word": "communist" + }, + "id": 5090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1794.08000", + "end": "1794.62000", + "feature": { + "word": "countries" + }, + "id": 5091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1794.62000", + "end": "1794.88000", + "feature": { + "word": "and" + }, + "id": 5092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1794.88000", + "end": "1795.20000", + "feature": { + "word": "from" + }, + "id": 5093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1795.45000", + "end": "1795.92000", + "feature": { + "word": "terrorist" + }, + "id": 5095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1795.92000", + "end": "1796.95000", + "feature": { + "word": "organizations" + }, + "id": 5096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1797.30000", + "end": "1797.44000", + "feature": { + "word": "in" + }, + "id": 5098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1797.44000", + "end": "1798.11000", + "feature": { + "word": "nicaragua" + }, + "id": 5099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1798.51000", + "end": "1798.63000", + "feature": { + "word": "the" + }, + "id": 5101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1798.63000", + "end": "1799.05000", + "feature": { + "word": "members" + }, + "id": 5102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1799.05000", + "end": "1799.36000", + "feature": { + "word": "picked" + }, + "id": 5103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1799.36000", + "end": "1799.54000", + "feature": { + "word": "up" + }, + "id": 5104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1799.54000", + "end": "1799.77000", + "feature": { + "word": "on" + }, + "id": 5105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1799.77000", + "end": "1800.29000", + "feature": { + "word": "singlaub" + }, + "id": 5106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1800.29000", + "end": "1800.36000", + "feature": { + "word": "s" + }, + "id": 5107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1800.36000", + "end": "1800.94000", + "feature": { + "word": "testimony" + }, + "id": 5108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1800.94000", + "end": "1801.65000", + "feature": { + "word": "yesterday" + }, + "id": 5109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1801.81000", + "end": "1802.10000", + "feature": { + "word": "about" + }, + "id": 5111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1802.10000", + "end": "1802.22000", + "feature": { + "word": "his" + }, + "id": 5112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1802.22000", + "end": "1802.52000", + "feature": { + "word": "going" + }, + "id": 5113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1802.52000", + "end": "1802.64000", + "feature": { + "word": "to" + }, + "id": 5114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1802.64000", + "end": "1803.39000", + "feature": { + "word": "taiwan" + }, + "id": 5115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1803.39000", + "end": "1803.49000", + "feature": { + "word": "to" + }, + "id": 5116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1803.49000", + "end": "1803.97000", + "feature": { + "word": "solicit" + }, + "id": 5117, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1803.97000", + "end": "1804.22000", + "feature": { + "word": "money" + }, + "id": 5118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1804.22000", + "end": "1804.34000", + "feature": { + "word": "for" + }, + "id": 5119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1804.34000", + "end": "1804.44000", + "feature": { + "word": "the" + }, + "id": 5120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1804.44000", + "end": "1805.05000", + "feature": { + "word": "contras" + }, + "id": 5121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1805.05000", + "end": "1805.08000", + "feature": { + "word": "" + }, + "id": 5122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1805.42000", + "end": "1805.68000", + "feature": { + "word": "but" + }, + "id": 5124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1805.68000", + "end": "1805.94000", + "feature": { + "word": "then" + }, + "id": 5125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1805.94000", + "end": "1806.21000", + "feature": { + "word": "being" + }, + "id": 5126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1806.21000", + "end": "1806.58000", + "feature": { + "word": "told" + }, + "id": 5127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1806.58000", + "end": "1806.69000", + "feature": { + "word": "to" + }, + "id": 5128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1806.69000", + "end": "1807.03000", + "feature": { + "word": "hold" + }, + "id": 5129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1807.03000", + "end": "1807.41000", + "feature": { + "word": "off" + }, + "id": 5130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1807.41000", + "end": "1807.58000", + "feature": { + "word": "by" + }, + "id": 5131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1807.58000", + "end": "1808.17000", + "feature": { + "word": "assistant" + }, + "id": 5132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1808.17000", + "end": "1808.71000", + "feature": { + "word": "secretary" + }, + "id": 5133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1808.71000", + "end": "1808.81000", + "feature": { + "word": "of" + }, + "id": 5134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1808.81000", + "end": "1809.21000", + "feature": { + "word": "state" + }, + "id": 5135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1809.21000", + "end": "1809.55000", + "feature": { + "word": "elliott" + }, + "id": 5136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1809.55000", + "end": "1810.15000", + "feature": { + "word": "abrams" + }, + "id": 5137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1810.15000", + "end": "1810.30000", + "feature": { + "word": "mr" + }, + "id": 5138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1810.49000", + "end": "1810.62000", + "feature": { + "word": "when" + }, + "id": 5140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1810.62000", + "end": "1810.77000", + "feature": { + "word": "you" + }, + "id": 5141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1810.77000", + "end": "1811.48000", + "feature": { + "word": "returned" + }, + "id": 5142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1811.61000", + "end": "1811.87000", + "feature": { + "word": "from" + }, + "id": 5144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1811.87000", + "end": "1811.96000", + "feature": { + "word": "the" + }, + "id": 5145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1811.96000", + "end": "1812.30000", + "feature": { + "word": "trip" + }, + "id": 5146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1812.30000", + "end": "1812.90000", + "feature": { + "word": "you" + }, + "id": 5147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1812.90000", + "end": "1813.32000", + "feature": { + "word": "testified" + }, + "id": 5148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1813.32000", + "end": "1813.44000", + "feature": { + "word": "that" + }, + "id": 5149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1813.44000", + "end": "1813.50000", + "feature": { + "word": "you" + }, + "id": 5150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1813.50000", + "end": "1813.77000", + "feature": { + "word": "spoke" + }, + "id": 5151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1813.77000", + "end": "1813.99000", + "feature": { + "word": "to" + }, + "id": 5152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1813.99000", + "end": "1814.54000", + "feature": { + "word": "secretary" + }, + "id": 5153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1814.54000", + "end": "1814.90000", + "feature": { + "word": "abrams" + }, + "id": 5154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1814.90000", + "end": "1815.02000", + "feature": { + "word": "gen" + }, + "id": 5155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1815.13000", + "end": "1815.30000", + "feature": { + "word": "that" + }, + "id": 5157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1815.30000", + "end": "1815.36000", + "feature": { + "word": "s" + }, + "id": 5158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1815.36000", + "end": "1815.58000", + "feature": { + "word": "correct" + }, + "id": 5159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1815.58000", + "end": "1815.73000", + "feature": { + "word": "mr" + }, + "id": 5160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1815.73000", + "end": "1815.79000", + "feature": { + "word": "and" + }, + "id": 5161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1815.79000", + "end": "1815.93000", + "feature": { + "word": "you" + }, + "id": 5162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1815.93000", + "end": "1816.26000", + "feature": { + "word": "told" + }, + "id": 5163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1816.26000", + "end": "1816.50000", + "feature": { + "word": "him" + }, + "id": 5164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1816.50000", + "end": "1816.71000", + "feature": { + "word": "it" + }, + "id": 5165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1816.71000", + "end": "1816.97000", + "feature": { + "word": "was" + }, + "id": 5166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1817.11000", + "end": "1817.65000", + "feature": { + "word": "embarrassing" + }, + "id": 5168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1817.65000", + "end": "1817.86000", + "feature": { + "word": "for" + }, + "id": 5169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1817.86000", + "end": "1817.97000", + "feature": { + "word": "you" + }, + "id": 5170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1817.97000", + "end": "1818.16000", + "feature": { + "word": "that" + }, + "id": 5171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1818.16000", + "end": "1818.36000", + "feature": { + "word": "this" + }, + "id": 5172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1818.36000", + "end": "1818.66000", + "feature": { + "word": "was" + }, + "id": 5173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1819.27000", + "end": "1820.60000", + "feature": { + "word": "" + }, + "id": 5175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1820.69000", + "end": "1821.00000", + "feature": { + "word": "this" + }, + "id": 5177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1821.00000", + "end": "1821.10000", + "feature": { + "word": "" + }, + "id": 5178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1821.16000", + "end": "1821.33000", + "feature": { + "word": "by" + }, + "id": 5180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1821.33000", + "end": "1821.69000", + "feature": { + "word": "him" + }, + "id": 5181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1821.69000", + "end": "1821.98000", + "feature": { + "word": "to" + }, + "id": 5182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1822.75000", + "end": "1823.01000", + "feature": { + "word": "give" + }, + "id": 5184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1823.01000", + "end": "1823.07000", + "feature": { + "word": "the" + }, + "id": 5185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1823.07000", + "end": "1823.41000", + "feature": { + "word": "signal" + }, + "id": 5186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1823.41000", + "end": "1823.56000", + "feature": { + "word": "was" + }, + "id": 5187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1823.56000", + "end": "1824.19000", + "feature": { + "word": "" + }, + "id": 5188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1824.19000", + "end": "1824.38000", + "feature": { + "word": "by" + }, + "id": 5189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1824.38000", + "end": "1824.44000", + "feature": { + "word": "him" + }, + "id": 5190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1824.44000", + "end": "1824.65000", + "feature": { + "word": "gen" + }, + "id": 5191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1824.85000", + "end": "1824.94000", + "feature": { + "word": "yes" + }, + "id": 5193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1825.42000", + "end": "1825.64000", + "feature": { + "word": "mr" + }, + "id": 5195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1825.64000", + "end": "1825.79000", + "feature": { + "word": "what" + }, + "id": 5196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1825.79000", + "end": "1825.93000", + "feature": { + "word": "did" + }, + "id": 5197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1825.93000", + "end": "1826.00000", + "feature": { + "word": "he" + }, + "id": 5198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1826.00000", + "end": "1826.23000", + "feature": { + "word": "tell" + }, + "id": 5199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1826.23000", + "end": "1826.31000", + "feature": { + "word": "you" + }, + "id": 5200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1826.31000", + "end": "1826.45000", + "feature": { + "word": "was" + }, + "id": 5201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1826.45000", + "end": "1826.55000", + "feature": { + "word": "the" + }, + "id": 5202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1826.55000", + "end": "1826.81000", + "feature": { + "word": "reason" + }, + "id": 5203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1826.81000", + "end": "1827.56000", + "feature": { + "word": "why" + }, + "id": 5204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1827.56000", + "end": "1827.76000", + "feature": { + "word": "he" + }, + "id": 5205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1827.76000", + "end": "1828.09000", + "feature": { + "word": "changed" + }, + "id": 5206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1828.09000", + "end": "1828.19000", + "feature": { + "word": "his" + }, + "id": 5207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1828.19000", + "end": "1828.41000", + "feature": { + "word": "mind" + }, + "id": 5208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1828.99000", + "end": "1829.08000", + "feature": { + "word": "gen" + }, + "id": 5210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1829.08000", + "end": "1829.33000", + "feature": { + "word": "he" + }, + "id": 5211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1829.33000", + "end": "1830.31000", + "feature": { + "word": "indicated" + }, + "id": 5212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1830.45000", + "end": "1830.81000", + "feature": { + "word": "that" + }, + "id": 5214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1832.59000", + "end": "1833.28000", + "feature": { + "word": "the" + }, + "id": 5216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1834.17000", + "end": "1834.96000", + "feature": { + "word": "solicitation" + }, + "id": 5218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1834.96000", + "end": "1835.12000", + "feature": { + "word": "was" + }, + "id": 5219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1835.12000", + "end": "1835.34000", + "feature": { + "word": "going" + }, + "id": 5220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1835.34000", + "end": "1835.41000", + "feature": { + "word": "to" + }, + "id": 5221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1835.41000", + "end": "1835.56000", + "feature": { + "word": "be" + }, + "id": 5222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1835.56000", + "end": "1836.13000", + "feature": { + "word": "made" + }, + "id": 5223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1836.13000", + "end": "1836.52000", + "feature": { + "word": "at" + }, + "id": 5224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1836.52000", + "end": "1836.63000", + "feature": { + "word": "the" + }, + "id": 5225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1836.63000", + "end": "1837.16000", + "feature": { + "word": "highest" + }, + "id": 5226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1837.16000", + "end": "1837.56000", + "feature": { + "word": "level" + }, + "id": 5227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1838.44000", + "end": "1838.75000", + "feature": { + "word": "which" + }, + "id": 5229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1838.75000", + "end": "1838.92000", + "feature": { + "word": "as" + }, + "id": 5230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1838.92000", + "end": "1839.21000", + "feature": { + "word": "i" + }, + "id": 5231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1839.49000", + "end": "1840.53000", + "feature": { + "word": "" + }, + "id": 5233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1840.53000", + "end": "1840.77000", + "feature": { + "word": "i" + }, + "id": 5234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1840.77000", + "end": "1841.54000", + "feature": { + "word": "assumed" + }, + "id": 5235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1841.54000", + "end": "1841.99000", + "feature": { + "word": "was" + }, + "id": 5236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1842.07000", + "end": "1842.35000", + "feature": { + "word": "someone" + }, + "id": 5238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1842.35000", + "end": "1842.41000", + "feature": { + "word": "in" + }, + "id": 5239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1842.41000", + "end": "1842.49000", + "feature": { + "word": "the" + }, + "id": 5240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1842.49000", + "end": "1842.71000", + "feature": { + "word": "white" + }, + "id": 5241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1842.71000", + "end": "1843.01000", + "feature": { + "word": "house" + }, + "id": 5242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1844.39000", + "end": "1844.57000", + "feature": { + "word": "if" + }, + "id": 5244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1844.57000", + "end": "1844.67000", + "feature": { + "word": "that" + }, + "id": 5245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1844.67000", + "end": "1844.78000", + "feature": { + "word": "was" + }, + "id": 5246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1844.78000", + "end": "1845.08000", + "feature": { + "word": "true" + }, + "id": 5247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1846.17000", + "end": "1846.34000", + "feature": { + "word": "mr" + }, + "id": 5249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1846.34000", + "end": "1846.53000", + "feature": { + "word": "you're" + }, + "id": 5250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1846.53000", + "end": "1846.96000", + "feature": { + "word": "speaking" + }, + "id": 5251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1846.96000", + "end": "1847.09000", + "feature": { + "word": "with" + }, + "id": 5252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1847.09000", + "end": "1847.18000", + "feature": { + "word": "an" + }, + "id": 5253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1847.18000", + "end": "1847.69000", + "feature": { + "word": "assistant" + }, + "id": 5254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1847.69000", + "end": "1848.27000", + "feature": { + "word": "secretary" + }, + "id": 5255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1848.27000", + "end": "1848.41000", + "feature": { + "word": "of" + }, + "id": 5256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1848.41000", + "end": "1848.82000", + "feature": { + "word": "state" + }, + "id": 5257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1848.82000", + "end": "1848.94000", + "feature": { + "word": "and" + }, + "id": 5258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1848.94000", + "end": "1849.09000", + "feature": { + "word": "he" + }, + "id": 5259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1849.09000", + "end": "1849.73000", + "feature": { + "word": "refers" + }, + "id": 5260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1849.73000", + "end": "1849.94000", + "feature": { + "word": "to" + }, + "id": 5261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1849.94000", + "end": "1850.05000", + "feature": { + "word": "the" + }, + "id": 5262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1850.05000", + "end": "1850.53000", + "feature": { + "word": "highest" + }, + "id": 5263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1850.53000", + "end": "1850.90000", + "feature": { + "word": "level" + }, + "id": 5264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1851.45000", + "end": "1851.96000", + "feature": { + "word": "that" + }, + "id": 5266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1852.33000", + "end": "1852.59000", + "feature": { + "word": "would" + }, + "id": 5268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1852.59000", + "end": "1852.69000", + "feature": { + "word": "be" + }, + "id": 5269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1852.69000", + "end": "1853.24000", + "feature": { + "word": "normally" + }, + "id": 5270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1853.24000", + "end": "1853.59000", + "feature": { + "word": "something" + }, + "id": 5271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1853.59000", + "end": "1853.69000", + "feature": { + "word": "you" + }, + "id": 5272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1853.69000", + "end": "1853.81000", + "feature": { + "word": "would" + }, + "id": 5273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1853.81000", + "end": "1854.11000", + "feature": { + "word": "assume" + }, + "id": 5274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1854.11000", + "end": "1854.18000", + "feature": { + "word": "to" + }, + "id": 5275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1854.18000", + "end": "1854.39000", + "feature": { + "word": "be" + }, + "id": 5276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1854.39000", + "end": "1854.78000", + "feature": { + "word": "from" + }, + "id": 5277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1854.78000", + "end": "1854.84000", + "feature": { + "word": "the" + }, + "id": 5278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1854.84000", + "end": "1855.08000", + "feature": { + "word": "white" + }, + "id": 5279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1855.08000", + "end": "1855.27000", + "feature": { + "word": "house" + }, + "id": 5280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1855.27000", + "end": "1855.36000", + "feature": { + "word": "gen" + }, + "id": 5281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1855.39000", + "end": "1856.18000", + "feature": { + "word": "above" + }, + "id": 5283, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1856.18000", + "end": "1856.50000", + "feature": { + "word": "george" + }, + "id": 5284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1856.50000", + "end": "1856.94000", + "feature": { + "word": "shultz" + }, + "id": 5285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1856.98000", + "end": "1857.21000", + "feature": { + "word": "yes" + }, + "id": 5287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1857.21000", + "end": "1857.39000", + "feature": { + "word": "mr" + }, + "id": 5288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1858.67000", + "end": "1858.78000", + "feature": { + "word": "how" + }, + "id": 5290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1858.78000", + "end": "1858.98000", + "feature": { + "word": "many" + }, + "id": 5291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1858.98000", + "end": "1859.34000", + "feature": { + "word": "people" + }, + "id": 5292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1859.34000", + "end": "1859.44000", + "feature": { + "word": "are" + }, + "id": 5293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1859.44000", + "end": "1859.72000", + "feature": { + "word": "above" + }, + "id": 5294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1859.75000", + "end": "1860.08000", + "feature": { + "word": "george" + }, + "id": 5296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1860.08000", + "end": "1860.33000", + "feature": { + "word": "shultz" + }, + "id": 5297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1860.33000", + "end": "1860.39000", + "feature": { + "word": "in" + }, + "id": 5298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1860.39000", + "end": "1860.52000", + "feature": { + "word": "the" + }, + "id": 5299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1860.52000", + "end": "1860.69000", + "feature": { + "word": "u" + }, + "id": 5300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1860.69000", + "end": "1860.77000", + "feature": { + "word": "s" + }, + "id": 5301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1860.77000", + "end": "1861.14000", + "feature": { + "word": "government" + }, + "id": 5302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1861.39000", + "end": "1861.49000", + "feature": { + "word": "gen" + }, + "id": 5304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1861.52000", + "end": "1861.69000", + "feature": { + "word": "not" + }, + "id": 5306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1861.72000", + "end": "1861.84000", + "feature": { + "word": "many" + }, + "id": 5308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1861.84000", + "end": "1862.36000", + "feature": { + "word": "singlaub" + }, + "id": 5309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1862.36000", + "end": "1862.51000", + "feature": { + "word": "who" + }, + "id": 5310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1862.51000", + "end": "1862.73000", + "feature": { + "word": "has" + }, + "id": 5311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1862.73000", + "end": "1863.25000", + "feature": { + "word": "sold" + }, + "id": 5312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1863.25000", + "end": "1863.40000", + "feature": { + "word": "but" + }, + "id": 5313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1863.40000", + "end": "1863.97000", + "feature": { + "word": "apparently" + }, + "id": 5314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1863.97000", + "end": "1864.15000", + "feature": { + "word": "did" + }, + "id": 5315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1864.15000", + "end": "1864.35000", + "feature": { + "word": "not" + }, + "id": 5316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1864.35000", + "end": "1864.88000", + "feature": { + "word": "profit" + }, + "id": 5317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1864.88000", + "end": "1865.10000", + "feature": { + "word": "from" + }, + "id": 5318, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1865.10000", + "end": "1865.47000", + "feature": { + "word": "selling" + }, + "id": 5319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1865.47000", + "end": "1865.80000", + "feature": { + "word": "arms" + }, + "id": 5320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1865.80000", + "end": "1865.87000", + "feature": { + "word": "to" + }, + "id": 5321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1865.87000", + "end": "1865.98000", + "feature": { + "word": "the" + }, + "id": 5322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1865.98000", + "end": "1866.53000", + "feature": { + "word": "contras" + }, + "id": 5323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1866.78000", + "end": "1867.03000", + "feature": { + "word": "was" + }, + "id": 5325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1867.03000", + "end": "1867.29000", + "feature": { + "word": "asked" + }, + "id": 5326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1867.33000", + "end": "1867.61000", + "feature": { + "word": "how" + }, + "id": 5328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1867.61000", + "end": "1867.77000", + "feature": { + "word": "he" + }, + "id": 5329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1867.77000", + "end": "1868.46000", + "feature": { + "word": "reacted" + }, + "id": 5330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1868.70000", + "end": "1868.85000", + "feature": { + "word": "when" + }, + "id": 5332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1868.85000", + "end": "1868.94000", + "feature": { + "word": "he" + }, + "id": 5333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1868.94000", + "end": "1869.26000", + "feature": { + "word": "learned" + }, + "id": 5334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1869.26000", + "end": "1869.39000", + "feature": { + "word": "that" + }, + "id": 5335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1869.39000", + "end": "1869.91000", + "feature": { + "word": "retired" + }, + "id": 5336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1869.91000", + "end": "1870.20000", + "feature": { + "word": "maj" + }, + "id": 5337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1870.25000", + "end": "1870.61000", + "feature": { + "word": "gen" + }, + "id": 5339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1870.61000", + "end": "1871.25000", + "feature": { + "word": "secord" + }, + "id": 5340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1871.25000", + "end": "1871.49000", + "feature": { + "word": "was" + }, + "id": 5341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1871.49000", + "end": "1871.91000", + "feature": { + "word": "also" + }, + "id": 5342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1871.91000", + "end": "1872.32000", + "feature": { + "word": "selling" + }, + "id": 5343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1872.32000", + "end": "1872.74000", + "feature": { + "word": "arms" + }, + "id": 5344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1873.00000", + "end": "1873.12000", + "feature": { + "word": "but" + }, + "id": 5346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1873.12000", + "end": "1873.27000", + "feature": { + "word": "at" + }, + "id": 5347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1873.27000", + "end": "1873.78000", + "feature": { + "word": "twice" + }, + "id": 5348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1873.78000", + "end": "1874.03000", + "feature": { + "word": "his" + }, + "id": 5349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1874.03000", + "end": "1874.54000", + "feature": { + "word": "price" + }, + "id": 5350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1874.54000", + "end": "1874.65000", + "feature": { + "word": "sen" + }, + "id": 5351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1874.86000", + "end": "1874.98000", + "feature": { + "word": "and" + }, + "id": 5353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1874.98000", + "end": "1875.06000", + "feature": { + "word": "you" + }, + "id": 5354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1875.06000", + "end": "1875.45000", + "feature": { + "word": "reported" + }, + "id": 5355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1875.45000", + "end": "1875.61000", + "feature": { + "word": "that" + }, + "id": 5356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1875.61000", + "end": "1875.71000", + "feature": { + "word": "to" + }, + "id": 5357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1875.71000", + "end": "1876.00000", + "feature": { + "word": "" + }, + "id": 5358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1876.00000", + "end": "1876.28000", + "feature": { + "word": "north" + }, + "id": 5359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1876.28000", + "end": "1876.37000", + "feature": { + "word": "gen" + }, + "id": 5360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1876.56000", + "end": "1876.70000", + "feature": { + "word": "i" + }, + "id": 5362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1876.70000", + "end": "1876.88000", + "feature": { + "word": "did" + }, + "id": 5363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1876.92000", + "end": "1877.15000", + "feature": { + "word": "yes" + }, + "id": 5365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1877.15000", + "end": "1877.24000", + "feature": { + "word": "sen" + }, + "id": 5366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1877.84000", + "end": "1878.02000", + "feature": { + "word": "and" + }, + "id": 5368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1878.02000", + "end": "1878.18000", + "feature": { + "word": "he" + }, + "id": 5369, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1878.18000", + "end": "1878.67000", + "feature": { + "word": "agreed" + }, + "id": 5370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1878.67000", + "end": "1878.79000", + "feature": { + "word": "when" + }, + "id": 5371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1878.79000", + "end": "1879.18000", + "feature": { + "word": "looking" + }, + "id": 5372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1879.18000", + "end": "1879.44000", + "feature": { + "word": "at" + }, + "id": 5373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1879.53000", + "end": "1879.74000", + "feature": { + "word": "what" + }, + "id": 5375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1879.74000", + "end": "1879.86000", + "feature": { + "word": "you" + }, + "id": 5376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1879.86000", + "end": "1880.06000", + "feature": { + "word": "showed" + }, + "id": 5377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1880.06000", + "end": "1880.13000", + "feature": { + "word": "him" + }, + "id": 5378, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1880.13000", + "end": "1880.23000", + "feature": { + "word": "" + }, + "id": 5379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1880.23000", + "end": "1880.36000", + "feature": { + "word": "the" + }, + "id": 5380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1880.36000", + "end": "1881.26000", + "feature": { + "word": "documentation" + }, + "id": 5381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1881.26000", + "end": "1881.31000", + "feature": { + "word": "" + }, + "id": 5382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1881.67000", + "end": "1881.85000", + "feature": { + "word": "that" + }, + "id": 5384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1881.85000", + "end": "1882.03000", + "feature": { + "word": "your" + }, + "id": 5385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1882.03000", + "end": "1882.50000", + "feature": { + "word": "prices" + }, + "id": 5386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1882.50000", + "end": "1882.66000", + "feature": { + "word": "were" + }, + "id": 5387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1882.66000", + "end": "1883.26000", + "feature": { + "word": "enormously" + }, + "id": 5388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1883.26000", + "end": "1883.62000", + "feature": { + "word": "better" + }, + "id": 5389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1884.34000", + "end": "1884.61000", + "feature": { + "word": "than" + }, + "id": 5391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1884.64000", + "end": "1884.96000", + "feature": { + "word": "gen" + }, + "id": 5393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1884.96000", + "end": "1885.48000", + "feature": { + "word": "secord" + }, + "id": 5394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1885.48000", + "end": "1885.52000", + "feature": { + "word": "s" + }, + "id": 5395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1885.52000", + "end": "1885.61000", + "feature": { + "word": "gen" + }, + "id": 5396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1885.68000", + "end": "1885.83000", + "feature": { + "word": "that" + }, + "id": 5398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1885.83000", + "end": "1885.89000", + "feature": { + "word": "s" + }, + "id": 5399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1885.89000", + "end": "1886.15000", + "feature": { + "word": "correct" + }, + "id": 5400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1886.18000", + "end": "1886.27000", + "feature": { + "word": "sen" + }, + "id": 5402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1886.27000", + "end": "1886.43000", + "feature": { + "word": "as" + }, + "id": 5403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1886.43000", + "end": "1886.50000", + "feature": { + "word": "a" + }, + "id": 5404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1886.50000", + "end": "1886.74000", + "feature": { + "word": "matter" + }, + "id": 5405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1886.74000", + "end": "1886.83000", + "feature": { + "word": "of" + }, + "id": 5406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1886.83000", + "end": "1887.25000", + "feature": { + "word": "fact" + }, + "id": 5407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1887.25000", + "end": "1887.33000", + "feature": { + "word": "the" + }, + "id": 5408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1887.38000", + "end": "1888.03000", + "feature": { + "word": "contras" + }, + "id": 5410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1888.15000", + "end": "1888.18000", + "feature": { + "word": "" + }, + "id": 5412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1888.18000", + "end": "1888.29000", + "feature": { + "word": "if" + }, + "id": 5413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1888.29000", + "end": "1888.38000", + "feature": { + "word": "you" + }, + "id": 5414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1888.38000", + "end": "1888.49000", + "feature": { + "word": "could" + }, + "id": 5415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1888.49000", + "end": "1888.64000", + "feature": { + "word": "have" + }, + "id": 5416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1888.64000", + "end": "1888.89000", + "feature": { + "word": "kept" + }, + "id": 5417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1888.89000", + "end": "1889.30000", + "feature": { + "word": "supplying" + }, + "id": 5418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1889.30000", + "end": "1889.44000", + "feature": { + "word": "at" + }, + "id": 5419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1889.44000", + "end": "1889.69000", + "feature": { + "word": "that" + }, + "id": 5420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1889.69000", + "end": "1890.20000", + "feature": { + "word": "price" + }, + "id": 5421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1890.28000", + "end": "1890.31000", + "feature": { + "word": "" + }, + "id": 5423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1890.69000", + "end": "1890.82000", + "feature": { + "word": "would" + }, + "id": 5425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1890.82000", + "end": "1890.94000", + "feature": { + "word": "have" + }, + "id": 5426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1890.94000", + "end": "1891.94000", + "feature": { + "word": "received" + }, + "id": 5427, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1891.94000", + "end": "1892.12000", + "feature": { + "word": "two" + }, + "id": 5428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1892.12000", + "end": "1892.74000", + "feature": { + "word": "weapons" + }, + "id": 5429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1893.56000", + "end": "1893.75000", + "feature": { + "word": "for" + }, + "id": 5431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1893.75000", + "end": "1894.03000", + "feature": { + "word": "every" + }, + "id": 5432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1894.03000", + "end": "1894.31000", + "feature": { + "word": "one" + }, + "id": 5433, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1894.31000", + "end": "1894.45000", + "feature": { + "word": "that" + }, + "id": 5434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1894.45000", + "end": "1894.57000", + "feature": { + "word": "they" + }, + "id": 5435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1894.57000", + "end": "1895.06000", + "feature": { + "word": "received" + }, + "id": 5436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1895.06000", + "end": "1895.23000", + "feature": { + "word": "under" + }, + "id": 5437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1895.23000", + "end": "1895.56000", + "feature": { + "word": "gen" + }, + "id": 5438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1895.56000", + "end": "1896.02000", + "feature": { + "word": "secord" + }, + "id": 5439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1896.02000", + "end": "1896.09000", + "feature": { + "word": "s" + }, + "id": 5440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1896.09000", + "end": "1896.52000", + "feature": { + "word": "prices" + }, + "id": 5441, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1896.52000", + "end": "1896.62000", + "feature": { + "word": "is" + }, + "id": 5442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1896.62000", + "end": "1896.86000", + "feature": { + "word": "that" + }, + "id": 5443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1896.86000", + "end": "1897.02000", + "feature": { + "word": "true" + }, + "id": 5444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1897.02000", + "end": "1897.11000", + "feature": { + "word": "gen" + }, + "id": 5445, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1897.14000", + "end": "1897.46000", + "feature": { + "word": "that" + }, + "id": 5447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1897.46000", + "end": "1897.61000", + "feature": { + "word": "is" + }, + "id": 5448, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1897.61000", + "end": "1897.96000", + "feature": { + "word": "correct" + }, + "id": 5449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1898.74000", + "end": "1899.15000", + "feature": { + "word": "sen" + }, + "id": 5451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1899.15000", + "end": "1899.72000", + "feature": { + "word": "since" + }, + "id": 5452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1899.89000", + "end": "1900.09000", + "feature": { + "word": "this" + }, + "id": 5454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1900.09000", + "end": "1900.30000", + "feature": { + "word": "whole" + }, + "id": 5455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1900.30000", + "end": "1900.69000", + "feature": { + "word": "story" + }, + "id": 5456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1900.69000", + "end": "1900.88000", + "feature": { + "word": "has" + }, + "id": 5457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1900.88000", + "end": "1901.29000", + "feature": { + "word": "broken" + }, + "id": 5458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1901.29000", + "end": "1901.45000", + "feature": { + "word": "you" + }, + "id": 5459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1901.45000", + "end": "1901.60000", + "feature": { + "word": "have" + }, + "id": 5460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1901.60000", + "end": "1901.97000", + "feature": { + "word": "found" + }, + "id": 5461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1901.97000", + "end": "1902.29000", + "feature": { + "word": "out" + }, + "id": 5462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1902.29000", + "end": "1902.55000", + "feature": { + "word": "that" + }, + "id": 5463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1902.88000", + "end": "1903.24000", + "feature": { + "word": "gen" + }, + "id": 5465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1903.24000", + "end": "1903.70000", + "feature": { + "word": "secord" + }, + "id": 5466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1903.70000", + "end": "1903.85000", + "feature": { + "word": "was" + }, + "id": 5467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1903.85000", + "end": "1903.93000", + "feature": { + "word": "in" + }, + "id": 5468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1903.93000", + "end": "1903.98000", + "feature": { + "word": "a" + }, + "id": 5469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1903.98000", + "end": "1904.24000", + "feature": { + "word": "very" + }, + "id": 5470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1904.24000", + "end": "1904.61000", + "feature": { + "word": "unique" + }, + "id": 5471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1904.61000", + "end": "1905.15000", + "feature": { + "word": "position" + }, + "id": 5472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1905.77000", + "end": "1906.12000", + "feature": { + "word": "gen" + }, + "id": 5474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1906.12000", + "end": "1906.73000", + "feature": { + "word": "secord" + }, + "id": 5475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1907.82000", + "end": "1908.27000", + "feature": { + "word": "was" + }, + "id": 5477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1908.33000", + "end": "1908.71000", + "feature": { + "word": "the" + }, + "id": 5479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1908.74000", + "end": "1909.58000", + "feature": { + "word": "recipient" + }, + "id": 5481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1910.47000", + "end": "1910.51000", + "feature": { + "word": "" + }, + "id": 5483, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1910.51000", + "end": "1910.82000", + "feature": { + "word": "either" + }, + "id": 5484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1910.82000", + "end": "1910.92000", + "feature": { + "word": "in" + }, + "id": 5485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1910.92000", + "end": "1911.37000", + "feature": { + "word": "trust" + }, + "id": 5486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1911.37000", + "end": "1911.52000", + "feature": { + "word": "or" + }, + "id": 5487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1911.52000", + "end": "1912.18000", + "feature": { + "word": "otherwise" + }, + "id": 5488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1912.46000", + "end": "1912.49000", + "feature": { + "word": "" + }, + "id": 5490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1912.64000", + "end": "1912.84000", + "feature": { + "word": "of" + }, + "id": 5492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1912.84000", + "end": "1912.96000", + "feature": { + "word": "a" + }, + "id": 5493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1912.96000", + "end": "1913.58000", + "feature": { + "word": "huge" + }, + "id": 5494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1913.66000", + "end": "1914.02000", + "feature": { + "word": "amount" + }, + "id": 5496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1914.02000", + "end": "1914.14000", + "feature": { + "word": "of" + }, + "id": 5497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1914.14000", + "end": "1914.48000", + "feature": { + "word": "money" + }, + "id": 5498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1915.14000", + "end": "1915.31000", + "feature": { + "word": "that" + }, + "id": 5500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1915.31000", + "end": "1916.07000", + "feature": { + "word": "represented" + }, + "id": 5501, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1916.07000", + "end": "1916.10000", + "feature": { + "word": "a" + }, + "id": 5502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1916.10000", + "end": "1916.57000", + "feature": { + "word": "markup" + }, + "id": 5503, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1916.57000", + "end": "1916.69000", + "feature": { + "word": "on" + }, + "id": 5504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1916.69000", + "end": "1916.95000", + "feature": { + "word": "u" + }, + "id": 5505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1916.95000", + "end": "1917.11000", + "feature": { + "word": "s" + }, + "id": 5506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1917.11000", + "end": "1917.45000", + "feature": { + "word": "goods" + }, + "id": 5507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1917.45000", + "end": "1917.52000", + "feature": { + "word": "is" + }, + "id": 5508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1917.52000", + "end": "1917.73000", + "feature": { + "word": "that" + }, + "id": 5509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1917.73000", + "end": "1918.07000", + "feature": { + "word": "correct" + }, + "id": 5510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1918.07000", + "end": "1918.18000", + "feature": { + "word": "you" + }, + "id": 5511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1918.18000", + "end": "1918.46000", + "feature": { + "word": "learned" + }, + "id": 5512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1918.46000", + "end": "1918.67000", + "feature": { + "word": "that" + }, + "id": 5513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1918.67000", + "end": "1918.83000", + "feature": { + "word": "like" + }, + "id": 5514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1918.83000", + "end": "1918.99000", + "feature": { + "word": "we" + }, + "id": 5515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1918.99000", + "end": "1919.11000", + "feature": { + "word": "all" + }, + "id": 5516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1919.11000", + "end": "1919.20000", + "feature": { + "word": "did" + }, + "id": 5517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1919.20000", + "end": "1919.29000", + "feature": { + "word": "gen" + }, + "id": 5518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1919.29000", + "end": "1919.45000", + "feature": { + "word": "that" + }, + "id": 5519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1919.45000", + "end": "1919.52000", + "feature": { + "word": "s" + }, + "id": 5520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1919.52000", + "end": "1919.74000", + "feature": { + "word": "right" + }, + "id": 5521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1919.86000", + "end": "1920.05000", + "feature": { + "word": "yes" + }, + "id": 5523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1920.05000", + "end": "1920.15000", + "feature": { + "word": "sir" + }, + "id": 5524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1920.15000", + "end": "1920.27000", + "feature": { + "word": "sen" + }, + "id": 5525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1920.51000", + "end": "1920.64000", + "feature": { + "word": "and" + }, + "id": 5527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1920.64000", + "end": "1920.73000", + "feature": { + "word": "he" + }, + "id": 5528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1920.73000", + "end": "1920.95000", + "feature": { + "word": "was" + }, + "id": 5529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1920.95000", + "end": "1921.41000", + "feature": { + "word": "also" + }, + "id": 5530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1921.41000", + "end": "1921.47000", + "feature": { + "word": "in" + }, + "id": 5531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1921.47000", + "end": "1921.54000", + "feature": { + "word": "the" + }, + "id": 5532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1921.54000", + "end": "1922.04000", + "feature": { + "word": "position" + }, + "id": 5533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1922.04000", + "end": "1922.18000", + "feature": { + "word": "of" + }, + "id": 5534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1922.18000", + "end": "1922.97000", + "feature": { + "word": "controlling" + }, + "id": 5535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1923.07000", + "end": "1923.71000", + "feature": { + "word": "those" + }, + "id": 5537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1923.83000", + "end": "1924.38000", + "feature": { + "word": "monies" + }, + "id": 5539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1926.77000", + "end": "1926.90000", + "feature": { + "word": "to" + }, + "id": 5541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1926.90000", + "end": "1927.26000", + "feature": { + "word": "buy" + }, + "id": 5542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1927.26000", + "end": "1927.45000", + "feature": { + "word": "what" + }, + "id": 5543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1927.45000", + "end": "1927.53000", + "feature": { + "word": "the" + }, + "id": 5544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1927.53000", + "end": "1928.04000", + "feature": { + "word": "contras" + }, + "id": 5545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1928.04000", + "end": "1928.35000", + "feature": { + "word": "might" + }, + "id": 5546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1928.35000", + "end": "1928.66000", + "feature": { + "word": "want" + }, + "id": 5547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1928.98000", + "end": "1929.22000", + "feature": { + "word": "from" + }, + "id": 5549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1929.22000", + "end": "1929.42000", + "feature": { + "word": "him" + }, + "id": 5550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1929.42000", + "end": "1929.51000", + "feature": { + "word": "gen" + }, + "id": 5551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1931.57000", + "end": "1931.78000", + "feature": { + "word": "i've" + }, + "id": 5553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1931.78000", + "end": "1932.03000", + "feature": { + "word": "learned" + }, + "id": 5554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1932.03000", + "end": "1932.30000", + "feature": { + "word": "that" + }, + "id": 5555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1932.30000", + "end": "1932.52000", + "feature": { + "word": "yes" + }, + "id": 5556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1932.52000", + "end": "1932.61000", + "feature": { + "word": "sen" + }, + "id": 5557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1932.68000", + "end": "1932.84000", + "feature": { + "word": "you've" + }, + "id": 5559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1932.84000", + "end": "1933.10000", + "feature": { + "word": "learned" + }, + "id": 5560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1933.10000", + "end": "1933.30000", + "feature": { + "word": "that" + }, + "id": 5561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1934.10000", + "end": "1934.32000", + "feature": { + "word": "and" + }, + "id": 5563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1934.32000", + "end": "1934.57000", + "feature": { + "word": "during" + }, + "id": 5564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1934.57000", + "end": "1934.85000", + "feature": { + "word": "that" + }, + "id": 5565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1934.85000", + "end": "1935.22000", + "feature": { + "word": "period" + }, + "id": 5566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1935.22000", + "end": "1935.35000", + "feature": { + "word": "that" + }, + "id": 5567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1935.35000", + "end": "1935.56000", + "feature": { + "word": "that" + }, + "id": 5568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1935.56000", + "end": "1935.82000", + "feature": { + "word": "money" + }, + "id": 5569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1935.82000", + "end": "1936.00000", + "feature": { + "word": "was" + }, + "id": 5570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1936.00000", + "end": "1936.22000", + "feature": { + "word": "being" + }, + "id": 5571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1936.22000", + "end": "1936.67000", + "feature": { + "word": "held" + }, + "id": 5572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1937.72000", + "end": "1937.85000", + "feature": { + "word": "the" + }, + "id": 5574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1937.85000", + "end": "1938.29000", + "feature": { + "word": "contras" + }, + "id": 5575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1938.29000", + "end": "1938.51000", + "feature": { + "word": "needed" + }, + "id": 5576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1938.51000", + "end": "1938.56000", + "feature": { + "word": "a" + }, + "id": 5577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1938.56000", + "end": "1938.76000", + "feature": { + "word": "lot" + }, + "id": 5578, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1938.76000", + "end": "1938.85000", + "feature": { + "word": "of" + }, + "id": 5579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1938.85000", + "end": "1939.14000", + "feature": { + "word": "things" + }, + "id": 5580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1939.14000", + "end": "1939.25000", + "feature": { + "word": "did" + }, + "id": 5581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1939.25000", + "end": "1939.39000", + "feature": { + "word": "they" + }, + "id": 5582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1939.39000", + "end": "1939.79000", + "feature": { + "word": "not" + }, + "id": 5583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1939.96000", + "end": "1940.39000", + "feature": { + "word": "general" + }, + "id": 5585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1940.85000", + "end": "1941.32000", + "feature": { + "word": "singlaub" + }, + "id": 5587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1941.32000", + "end": "1941.41000", + "feature": { + "word": "gen" + }, + "id": 5588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1941.87000", + "end": "1942.19000", + "feature": { + "word": "i" + }, + "id": 5590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1942.19000", + "end": "1942.54000", + "feature": { + "word": "must" + }, + "id": 5591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1942.54000", + "end": "1942.80000", + "feature": { + "word": "say" + }, + "id": 5592, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1942.80000", + "end": "1943.04000", + "feature": { + "word": "that" + }, + "id": 5593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1943.04000", + "end": "1943.39000", + "feature": { + "word": "that" + }, + "id": 5594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1943.39000", + "end": "1943.66000", + "feature": { + "word": "is" + }, + "id": 5595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1943.66000", + "end": "1943.78000", + "feature": { + "word": "a" + }, + "id": 5596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1943.78000", + "end": "1944.19000", + "feature": { + "word": "source" + }, + "id": 5597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1944.19000", + "end": "1944.32000", + "feature": { + "word": "of" + }, + "id": 5598, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1944.32000", + "end": "1944.58000", + "feature": { + "word": "great" + }, + "id": 5599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1944.58000", + "end": "1945.32000", + "feature": { + "word": "irritation" + }, + "id": 5600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1945.32000", + "end": "1945.47000", + "feature": { + "word": "to" + }, + "id": 5601, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1945.47000", + "end": "1945.78000", + "feature": { + "word": "me" + }, + "id": 5602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1945.78000", + "end": "1945.95000", + "feature": { + "word": "that" + }, + "id": 5603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1945.95000", + "end": "1946.22000", + "feature": { + "word": "i" + }, + "id": 5604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1946.22000", + "end": "1946.49000", + "feature": { + "word": "was" + }, + "id": 5605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1946.49000", + "end": "1946.93000", + "feature": { + "word": "working" + }, + "id": 5606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1946.93000", + "end": "1947.22000", + "feature": { + "word": "very" + }, + "id": 5607, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1947.22000", + "end": "1947.67000", + "feature": { + "word": "hard" + }, + "id": 5608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1947.67000", + "end": "1947.91000", + "feature": { + "word": "during" + }, + "id": 5609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1947.91000", + "end": "1948.15000", + "feature": { + "word": "that" + }, + "id": 5610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1948.15000", + "end": "1948.55000", + "feature": { + "word": "time" + }, + "id": 5611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1948.55000", + "end": "1948.75000", + "feature": { + "word": "to" + }, + "id": 5612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1948.75000", + "end": "1949.09000", + "feature": { + "word": "get" + }, + "id": 5613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1949.09000", + "end": "1949.19000", + "feature": { + "word": "the" + }, + "id": 5614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1949.19000", + "end": "1949.75000", + "feature": { + "word": "few" + }, + "id": 5615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1949.75000", + "end": "1950.30000", + "feature": { + "word": "hundred" + }, + "id": 5616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1950.30000", + "end": "1950.81000", + "feature": { + "word": "thousand" + }, + "id": 5617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1950.81000", + "end": "1951.37000", + "feature": { + "word": "dollars" + }, + "id": 5618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1953.07000", + "end": "1953.31000", + "feature": { + "word": "if" + }, + "id": 5620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1953.31000", + "end": "1953.44000", + "feature": { + "word": "i" + }, + "id": 5621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1953.44000", + "end": "1953.63000", + "feature": { + "word": "had" + }, + "id": 5622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1953.63000", + "end": "1953.80000", + "feature": { + "word": "any" + }, + "id": 5623, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1953.80000", + "end": "1954.31000", + "feature": { + "word": "knowledge" + }, + "id": 5624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1954.31000", + "end": "1954.50000", + "feature": { + "word": "that" + }, + "id": 5625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1954.50000", + "end": "1954.70000", + "feature": { + "word": "that" + }, + "id": 5626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1954.70000", + "end": "1955.03000", + "feature": { + "word": "money" + }, + "id": 5627, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1955.03000", + "end": "1955.18000", + "feature": { + "word": "had" + }, + "id": 5628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1955.18000", + "end": "1955.33000", + "feature": { + "word": "been" + }, + "id": 5629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1955.33000", + "end": "1955.48000", + "feature": { + "word": "in" + }, + "id": 5630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1955.48000", + "end": "1955.55000", + "feature": { + "word": "a" + }, + "id": 5631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1955.55000", + "end": "1956.01000", + "feature": { + "word": "bank" + }, + "id": 5632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1956.01000", + "end": "1956.10000", + "feature": { + "word": "and" + }, + "id": 5633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1956.10000", + "end": "1956.25000", + "feature": { + "word": "was" + }, + "id": 5634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1956.25000", + "end": "1957.00000", + "feature": { + "word": "available" + }, + "id": 5635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1957.00000", + "end": "1957.16000", + "feature": { + "word": "i" + }, + "id": 5636, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1957.16000", + "end": "1957.37000", + "feature": { + "word": "would" + }, + "id": 5637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1957.37000", + "end": "1957.53000", + "feature": { + "word": "be" + }, + "id": 5638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1957.53000", + "end": "1958.06000", + "feature": { + "word": "even" + }, + "id": 5639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1958.13000", + "end": "1958.51000", + "feature": { + "word": "more" + }, + "id": 5641, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1958.51000", + "end": "1959.04000", + "feature": { + "word": "furious" + }, + "id": 5642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1959.24000", + "end": "1959.33000", + "feature": { + "word": "sen" + }, + "id": 5644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1959.33000", + "end": "1959.39000", + "feature": { + "word": "and" + }, + "id": 5645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1959.39000", + "end": "1959.48000", + "feature": { + "word": "in" + }, + "id": 5646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1959.48000", + "end": "1959.86000", + "feature": { + "word": "fact" + }, + "id": 5647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1959.86000", + "end": "1960.00000", + "feature": { + "word": "there" + }, + "id": 5648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1960.00000", + "end": "1960.30000", + "feature": { + "word": "were" + }, + "id": 5649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1960.47000", + "end": "1960.90000", + "feature": { + "word": "millions" + }, + "id": 5651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1960.90000", + "end": "1961.05000", + "feature": { + "word": "of" + }, + "id": 5652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1961.05000", + "end": "1961.59000", + "feature": { + "word": "dollars" + }, + "id": 5653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1961.64000", + "end": "1961.90000", + "feature": { + "word": "in" + }, + "id": 5655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1961.93000", + "end": "1962.55000", + "feature": { + "word": "accounts" + }, + "id": 5657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1962.55000", + "end": "1962.79000", + "feature": { + "word": "and" + }, + "id": 5658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1962.93000", + "end": "1963.10000", + "feature": { + "word": "they" + }, + "id": 5660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1963.10000", + "end": "1963.21000", + "feature": { + "word": "had" + }, + "id": 5661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1963.21000", + "end": "1963.24000", + "feature": { + "word": "" + }, + "id": 5662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1963.29000", + "end": "1963.50000", + "feature": { + "word": "we" + }, + "id": 5664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1963.50000", + "end": "1963.74000", + "feature": { + "word": "have" + }, + "id": 5665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1963.74000", + "end": "1964.11000", + "feature": { + "word": "had" + }, + "id": 5666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1964.18000", + "end": "1964.75000", + "feature": { + "word": "testimony" + }, + "id": 5668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1965.11000", + "end": "1965.51000", + "feature": { + "word": "under" + }, + "id": 5670, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1965.51000", + "end": "1965.78000", + "feature": { + "word": "oath" + }, + "id": 5671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1965.78000", + "end": "1965.88000", + "feature": { + "word": "to" + }, + "id": 5672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1965.88000", + "end": "1966.10000", + "feature": { + "word": "this" + }, + "id": 5673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1966.10000", + "end": "1966.56000", + "feature": { + "word": "committee" + }, + "id": 5674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1966.90000", + "end": "1967.03000", + "feature": { + "word": "that" + }, + "id": 5676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1967.03000", + "end": "1967.31000", + "feature": { + "word": "that" + }, + "id": 5677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1967.31000", + "end": "1967.58000", + "feature": { + "word": "money" + }, + "id": 5678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1967.58000", + "end": "1967.82000", + "feature": { + "word": "was" + }, + "id": 5679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1967.82000", + "end": "1968.06000", + "feature": { + "word": "being" + }, + "id": 5680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1968.06000", + "end": "1968.46000", + "feature": { + "word": "held" + }, + "id": 5681, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1968.46000", + "end": "1968.88000", + "feature": { + "word": "for" + }, + "id": 5682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1969.17000", + "end": "1969.38000", + "feature": { + "word": "the" + }, + "id": 5684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1969.42000", + "end": "1970.29000", + "feature": { + "word": "enterprise" + }, + "id": 5686, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1970.29000", + "end": "1970.32000", + "feature": { + "word": "" + }, + "id": 5687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1970.36000", + "end": "1970.58000", + "feature": { + "word": "that" + }, + "id": 5689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1970.58000", + "end": "1970.75000", + "feature": { + "word": "is" + }, + "id": 5690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1970.75000", + "end": "1971.14000", + "feature": { + "word": "general" + }, + "id": 5691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1971.43000", + "end": "1972.09000", + "feature": { + "word": "secord" + }, + "id": 5693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1972.09000", + "end": "1972.23000", + "feature": { + "word": "s" + }, + "id": 5694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1972.26000", + "end": "1972.88000", + "feature": { + "word": "testimony" + }, + "id": 5696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1973.39000", + "end": "1974.07000", + "feature": { + "word": "certainly" + }, + "id": 5698, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1974.32000", + "end": "1974.54000", + "feature": { + "word": "you" + }, + "id": 5700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1974.54000", + "end": "1974.69000", + "feature": { + "word": "could" + }, + "id": 5701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1974.69000", + "end": "1974.81000", + "feature": { + "word": "have" + }, + "id": 5702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1974.81000", + "end": "1974.96000", + "feature": { + "word": "done" + }, + "id": 5703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1974.96000", + "end": "1975.04000", + "feature": { + "word": "a" + }, + "id": 5704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1975.04000", + "end": "1975.39000", + "feature": { + "word": "lot" + }, + "id": 5705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1975.39000", + "end": "1975.51000", + "feature": { + "word": "with" + }, + "id": 5706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1975.51000", + "end": "1975.66000", + "feature": { + "word": "that" + }, + "id": 5707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1975.66000", + "end": "1975.86000", + "feature": { + "word": "" + }, + "id": 5708, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1975.86000", + "end": "1976.16000", + "feature": { + "word": "million" + }, + "id": 5709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1976.16000", + "end": "1976.61000", + "feature": { + "word": "to" + }, + "id": 5710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1976.64000", + "end": "1976.84000", + "feature": { + "word": "help" + }, + "id": 5712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1976.84000", + "end": "1976.92000", + "feature": { + "word": "the" + }, + "id": 5713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1976.92000", + "end": "1977.33000", + "feature": { + "word": "contra" + }, + "id": 5714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1977.33000", + "end": "1977.70000", + "feature": { + "word": "cause" + }, + "id": 5715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1977.70000", + "end": "1977.86000", + "feature": { + "word": "could" + }, + "id": 5716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1977.86000", + "end": "1977.98000", + "feature": { + "word": "you" + }, + "id": 5717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1977.98000", + "end": "1978.13000", + "feature": { + "word": "have" + }, + "id": 5718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1978.13000", + "end": "1978.49000", + "feature": { + "word": "not" + }, + "id": 5719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1978.49000", + "end": "1978.58000", + "feature": { + "word": "gen" + }, + "id": 5720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1978.58000", + "end": "1978.69000", + "feature": { + "word": "that" + }, + "id": 5721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1978.69000", + "end": "1978.76000", + "feature": { + "word": "s" + }, + "id": 5722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1978.76000", + "end": "1979.26000", + "feature": { + "word": "correct" + }, + "id": 5723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1980.80000", + "end": "1980.91000", + "feature": { + "word": "the" + }, + "id": 5725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1980.91000", + "end": "1981.38000", + "feature": { + "word": "contras" + }, + "id": 5726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1981.38000", + "end": "1981.52000", + "feature": { + "word": "could" + }, + "id": 5727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1981.52000", + "end": "1981.63000", + "feature": { + "word": "have" + }, + "id": 5728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1981.63000", + "end": "1981.95000", + "feature": { + "word": "used" + }, + "id": 5729, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1981.95000", + "end": "1982.12000", + "feature": { + "word": "it" + }, + "id": 5730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1982.33000", + "end": "1982.48000", + "feature": { + "word": "sen" + }, + "id": 5732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1983.67000", + "end": "1984.58000", + "feature": { + "word": "general" + }, + "id": 5734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1986.33000", + "end": "1986.42000", + "feature": { + "word": "do" + }, + "id": 5736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1986.42000", + "end": "1986.48000", + "feature": { + "word": "you" + }, + "id": 5737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1986.48000", + "end": "1986.58000", + "feature": { + "word": "have" + }, + "id": 5738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1986.58000", + "end": "1986.64000", + "feature": { + "word": "a" + }, + "id": 5739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1986.64000", + "end": "1986.94000", + "feature": { + "word": "swiss" + }, + "id": 5740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1986.94000", + "end": "1987.22000", + "feature": { + "word": "bank" + }, + "id": 5741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1987.22000", + "end": "1987.57000", + "feature": { + "word": "account" + }, + "id": 5742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1988.12000", + "end": "1988.23000", + "feature": { + "word": "gen" + }, + "id": 5744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1988.23000", + "end": "1988.43000", + "feature": { + "word": "no" + }, + "id": 5745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1988.43000", + "end": "1988.52000", + "feature": { + "word": "sen" + }, + "id": 5746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1989.73000", + "end": "1989.85000", + "feature": { + "word": "you" + }, + "id": 5748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1989.85000", + "end": "1990.06000", + "feature": { + "word": "never" + }, + "id": 5749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1990.06000", + "end": "1990.22000", + "feature": { + "word": "had" + }, + "id": 5750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1990.22000", + "end": "1990.29000", + "feature": { + "word": "a" + }, + "id": 5751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1990.29000", + "end": "1990.53000", + "feature": { + "word": "swiss" + }, + "id": 5752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1990.53000", + "end": "1990.76000", + "feature": { + "word": "bank" + }, + "id": 5753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1990.76000", + "end": "1990.91000", + "feature": { + "word": "account" + }, + "id": 5754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1990.91000", + "end": "1991.02000", + "feature": { + "word": "gen" + }, + "id": 5755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1991.02000", + "end": "1991.14000", + "feature": { + "word": "never" + }, + "id": 5756, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1993.48000", + "end": "1993.69000", + "feature": { + "word": "sen" + }, + "id": 5758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1993.74000", + "end": "1993.86000", + "feature": { + "word": "i" + }, + "id": 5760, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1993.86000", + "end": "1993.94000", + "feature": { + "word": "" + }, + "id": 5761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1993.94000", + "end": "1994.17000", + "feature": { + "word": "ask" + }, + "id": 5762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1994.17000", + "end": "1994.37000", + "feature": { + "word": "you" + }, + "id": 5763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1994.37000", + "end": "1994.45000", + "feature": { + "word": "a" + }, + "id": 5764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1994.45000", + "end": "1994.87000", + "feature": { + "word": "question" + }, + "id": 5765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1994.87000", + "end": "1995.08000", + "feature": { + "word": "which" + }, + "id": 5766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1995.08000", + "end": "1995.16000", + "feature": { + "word": "you" + }, + "id": 5767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1995.16000", + "end": "1995.31000", + "feature": { + "word": "may" + }, + "id": 5768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1995.31000", + "end": "1995.51000", + "feature": { + "word": "not" + }, + "id": 5769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1995.51000", + "end": "1995.68000", + "feature": { + "word": "wish" + }, + "id": 5770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1995.68000", + "end": "1995.76000", + "feature": { + "word": "to" + }, + "id": 5771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1995.76000", + "end": "1996.17000", + "feature": { + "word": "answer" + }, + "id": 5772, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1996.17000", + "end": "1996.24000", + "feature": { + "word": "and" + }, + "id": 5773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1996.24000", + "end": "1996.34000", + "feature": { + "word": "i" + }, + "id": 5774, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1996.34000", + "end": "1996.43000", + "feature": { + "word": "will" + }, + "id": 5775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1996.43000", + "end": "1996.69000", + "feature": { + "word": "not" + }, + "id": 5776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1996.69000", + "end": "1996.98000", + "feature": { + "word": "press" + }, + "id": 5777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1996.98000", + "end": "1997.08000", + "feature": { + "word": "you" + }, + "id": 5778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1997.08000", + "end": "1997.28000", + "feature": { + "word": "on" + }, + "id": 5779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1997.28000", + "end": "1997.50000", + "feature": { + "word": "it" + }, + "id": 5780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1997.50000", + "end": "1997.66000", + "feature": { + "word": "but" + }, + "id": 5781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1998.12000", + "end": "1998.24000", + "feature": { + "word": "i" + }, + "id": 5783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1998.24000", + "end": "1998.36000", + "feature": { + "word": "will" + }, + "id": 5784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1998.36000", + "end": "1998.76000", + "feature": { + "word": "simply" + }, + "id": 5785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1998.76000", + "end": "1999.04000", + "feature": { + "word": "ask" + }, + "id": 5786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1999.04000", + "end": "1999.14000", + "feature": { + "word": "it" + }, + "id": 5787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1999.14000", + "end": "1999.35000", + "feature": { + "word": "and" + }, + "id": 5788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1999.68000", + "end": "1999.71000", + "feature": { + "word": "" + }, + "id": 5790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "1999.97000", + "end": "2000.27000", + "feature": { + "word": "you" + }, + "id": 5792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2000.27000", + "end": "2000.54000", + "feature": { + "word": "don't" + }, + "id": 5793, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2000.54000", + "end": "2000.79000", + "feature": { + "word": "seem" + }, + "id": 5794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2000.79000", + "end": "2000.86000", + "feature": { + "word": "to" + }, + "id": 5795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2000.86000", + "end": "2001.02000", + "feature": { + "word": "be" + }, + "id": 5796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2001.02000", + "end": "2001.31000", + "feature": { + "word": "one" + }, + "id": 5797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2001.31000", + "end": "2001.57000", + "feature": { + "word": "who" + }, + "id": 5798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2001.57000", + "end": "2001.82000", + "feature": { + "word": "is" + }, + "id": 5799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2002.17000", + "end": "2002.56000", + "feature": { + "word": "hesitant" + }, + "id": 5801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2002.56000", + "end": "2002.62000", + "feature": { + "word": "to" + }, + "id": 5802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2002.62000", + "end": "2003.10000", + "feature": { + "word": "express" + }, + "id": 5803, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2003.10000", + "end": "2003.16000", + "feature": { + "word": "a" + }, + "id": 5804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2003.16000", + "end": "2003.75000", + "feature": { + "word": "view" + }, + "id": 5805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2004.07000", + "end": "2004.25000", + "feature": { + "word": "so" + }, + "id": 5807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2004.25000", + "end": "2004.36000", + "feature": { + "word": "if" + }, + "id": 5808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2004.36000", + "end": "2004.46000", + "feature": { + "word": "you" + }, + "id": 5809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2004.46000", + "end": "2004.75000", + "feature": { + "word": "feel" + }, + "id": 5810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2004.75000", + "end": "2004.96000", + "feature": { + "word": "like" + }, + "id": 5811, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2004.96000", + "end": "2005.59000", + "feature": { + "word": "expressing" + }, + "id": 5812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2005.59000", + "end": "2005.89000", + "feature": { + "word": "one" + }, + "id": 5813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2005.89000", + "end": "2006.07000", + "feature": { + "word": "i" + }, + "id": 5814, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2006.71000", + "end": "2006.86000", + "feature": { + "word": "" + }, + "id": 5816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2006.86000", + "end": "2007.02000", + "feature": { + "word": "give" + }, + "id": 5817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2007.02000", + "end": "2007.08000", + "feature": { + "word": "you" + }, + "id": 5818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2007.08000", + "end": "2007.19000", + "feature": { + "word": "that" + }, + "id": 5819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2007.19000", + "end": "2007.82000", + "feature": { + "word": "opportunity" + }, + "id": 5820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2008.40000", + "end": "2008.47000", + "feature": { + "word": "do" + }, + "id": 5822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2008.80000", + "end": "2008.97000", + "feature": { + "word": "you" + }, + "id": 5824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2008.97000", + "end": "2009.48000", + "feature": { + "word": "think" + }, + "id": 5825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2009.48000", + "end": "2009.77000", + "feature": { + "word": "that" + }, + "id": 5826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2010.28000", + "end": "2010.43000", + "feature": { + "word": "in" + }, + "id": 5828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2010.43000", + "end": "2010.61000", + "feature": { + "word": "light" + }, + "id": 5829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2010.61000", + "end": "2010.70000", + "feature": { + "word": "of" + }, + "id": 5830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2010.70000", + "end": "2010.87000", + "feature": { + "word": "what" + }, + "id": 5831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2010.87000", + "end": "2010.99000", + "feature": { + "word": "you" + }, + "id": 5832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2010.99000", + "end": "2011.22000", + "feature": { + "word": "heard" + }, + "id": 5833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2011.22000", + "end": "2011.35000", + "feature": { + "word": "in" + }, + "id": 5834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2011.35000", + "end": "2011.63000", + "feature": { + "word": "terms" + }, + "id": 5835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2011.63000", + "end": "2011.76000", + "feature": { + "word": "of" + }, + "id": 5836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2011.76000", + "end": "2011.84000", + "feature": { + "word": "the" + }, + "id": 5837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2011.84000", + "end": "2012.31000", + "feature": { + "word": "maule" + }, + "id": 5838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2012.31000", + "end": "2013.03000", + "feature": { + "word": "airplanes" + }, + "id": 5839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2013.03000", + "end": "2013.20000", + "feature": { + "word": "and" + }, + "id": 5840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2013.37000", + "end": "2013.54000", + "feature": { + "word": "who" + }, + "id": 5842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2013.54000", + "end": "2013.96000", + "feature": { + "word": "claims" + }, + "id": 5843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2013.96000", + "end": "2014.16000", + "feature": { + "word": "they" + }, + "id": 5844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2014.16000", + "end": "2014.57000", + "feature": { + "word": "own" + }, + "id": 5845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2014.71000", + "end": "2015.13000", + "feature": { + "word": "them" + }, + "id": 5847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2015.40000", + "end": "2015.56000", + "feature": { + "word": "and" + }, + "id": 5849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2015.56000", + "end": "2015.89000", + "feature": { + "word": "all" + }, + "id": 5850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2015.89000", + "end": "2016.25000", + "feature": { + "word": "the" + }, + "id": 5851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2016.28000", + "end": "2016.64000", + "feature": { + "word": "other" + }, + "id": 5853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2016.64000", + "end": "2017.39000", + "feature": { + "word": "aircraft" + }, + "id": 5854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2017.79000", + "end": "2017.97000", + "feature": { + "word": "and" + }, + "id": 5856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2017.97000", + "end": "2018.20000", + "feature": { + "word": "who" + }, + "id": 5857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2018.20000", + "end": "2018.44000", + "feature": { + "word": "owns" + }, + "id": 5858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2018.44000", + "end": "2018.70000", + "feature": { + "word": "those" + }, + "id": 5859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2018.70000", + "end": "2019.47000", + "feature": { + "word": "aircraft" + }, + "id": 5860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2019.47000", + "end": "2019.64000", + "feature": { + "word": "and" + }, + "id": 5861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2019.64000", + "end": "2019.92000", + "feature": { + "word": "money" + }, + "id": 5862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2019.92000", + "end": "2020.02000", + "feature": { + "word": "in" + }, + "id": 5863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2020.02000", + "end": "2020.34000", + "feature": { + "word": "swiss" + }, + "id": 5864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2020.34000", + "end": "2020.64000", + "feature": { + "word": "bank" + }, + "id": 5865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2020.64000", + "end": "2021.17000", + "feature": { + "word": "accounts" + }, + "id": 5866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2021.49000", + "end": "2021.78000", + "feature": { + "word": "and" + }, + "id": 5868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2022.17000", + "end": "2022.54000", + "feature": { + "word": "doubling" + }, + "id": 5870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2022.54000", + "end": "2022.63000", + "feature": { + "word": "the" + }, + "id": 5871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2022.63000", + "end": "2022.99000", + "feature": { + "word": "price" + }, + "id": 5872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2022.99000", + "end": "2023.13000", + "feature": { + "word": "of" + }, + "id": 5873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2023.13000", + "end": "2023.48000", + "feature": { + "word": "arms" + }, + "id": 5874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2023.48000", + "end": "2023.51000", + "feature": { + "word": "" + }, + "id": 5875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2023.51000", + "end": "2023.57000", + "feature": { + "word": "do" + }, + "id": 5876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2023.57000", + "end": "2023.63000", + "feature": { + "word": "you" + }, + "id": 5877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2023.63000", + "end": "2023.81000", + "feature": { + "word": "think" + }, + "id": 5878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2023.81000", + "end": "2024.10000", + "feature": { + "word": "general" + }, + "id": 5879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2024.10000", + "end": "2024.66000", + "feature": { + "word": "secord" + }, + "id": 5880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2024.86000", + "end": "2025.00000", + "feature": { + "word": "and" + }, + "id": 5882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2025.00000", + "end": "2025.15000", + "feature": { + "word": "his" + }, + "id": 5883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2025.15000", + "end": "2025.73000", + "feature": { + "word": "associates" + }, + "id": 5884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2025.94000", + "end": "2026.26000", + "feature": { + "word": "treated" + }, + "id": 5886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2026.26000", + "end": "2026.36000", + "feature": { + "word": "the" + }, + "id": 5887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2026.36000", + "end": "2027.00000", + "feature": { + "word": "contras" + }, + "id": 5888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2027.00000", + "end": "2027.51000", + "feature": { + "word": "as" + }, + "id": 5889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2027.51000", + "end": "2027.74000", + "feature": { + "word": "someone" + }, + "id": 5890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2027.74000", + "end": "2027.84000", + "feature": { + "word": "they" + }, + "id": 5891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2027.84000", + "end": "2028.08000", + "feature": { + "word": "really" + }, + "id": 5892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2028.08000", + "end": "2028.42000", + "feature": { + "word": "wanted" + }, + "id": 5893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2028.42000", + "end": "2028.48000", + "feature": { + "word": "to" + }, + "id": 5894, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2028.48000", + "end": "2029.06000", + "feature": { + "word": "help" + }, + "id": 5895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2029.09000", + "end": "2029.23000", + "feature": { + "word": "or" + }, + "id": 5897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2029.23000", + "end": "2029.48000", + "feature": { + "word": "someone" + }, + "id": 5898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2029.48000", + "end": "2029.58000", + "feature": { + "word": "they" + }, + "id": 5899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2029.58000", + "end": "2029.89000", + "feature": { + "word": "wished" + }, + "id": 5900, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2029.89000", + "end": "2029.99000", + "feature": { + "word": "to" + }, + "id": 5901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2029.99000", + "end": "2030.52000", + "feature": { + "word": "profit" + }, + "id": 5902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2030.52000", + "end": "2030.73000", + "feature": { + "word": "by" + }, + "id": 5903, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2031.59000", + "end": "2031.68000", + "feature": { + "word": "gen" + }, + "id": 5905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2032.14000", + "end": "2032.31000", + "feature": { + "word": "you're" + }, + "id": 5907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2032.31000", + "end": "2032.60000", + "feature": { + "word": "right" + }, + "id": 5908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2032.60000", + "end": "2032.63000", + "feature": { + "word": "i" + }, + "id": 5909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2032.63000", + "end": "2032.84000", + "feature": { + "word": "" + }, + "id": 5910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2032.84000", + "end": "2033.11000", + "feature": { + "word": "prefer" + }, + "id": 5911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2033.11000", + "end": "2033.33000", + "feature": { + "word": "not" + }, + "id": 5912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2033.33000", + "end": "2033.41000", + "feature": { + "word": "to" + }, + "id": 5913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2033.41000", + "end": "2033.71000", + "feature": { + "word": "answer" + }, + "id": 5914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2033.71000", + "end": "2033.91000", + "feature": { + "word": "that" + }, + "id": 5915, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2034.21000", + "end": "2035.77000", + "feature": { + "word": "laughter" + }, + "id": 5917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2035.83000", + "end": "2035.95000", + "feature": { + "word": "sen" + }, + "id": 5919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2036.36000", + "end": "2036.59000", + "feature": { + "word": "you've" + }, + "id": 5921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2036.59000", + "end": "2037.08000", + "feature": { + "word": "answered" + }, + "id": 5922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2037.75000", + "end": "2037.81000", + "feature": { + "word": "it" + }, + "id": 5924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2038.13000", + "end": "2038.47000", + "feature": { + "word": "committee" + }, + "id": 5926, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2038.47000", + "end": "2038.91000", + "feature": { + "word": "members" + }, + "id": 5927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2038.91000", + "end": "2039.01000", + "feature": { + "word": "will" + }, + "id": 5928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2039.01000", + "end": "2039.13000", + "feature": { + "word": "get" + }, + "id": 5929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2039.13000", + "end": "2039.20000", + "feature": { + "word": "a" + }, + "id": 5930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2039.20000", + "end": "2039.57000", + "feature": { + "word": "chance" + }, + "id": 5931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2039.57000", + "end": "2039.68000", + "feature": { + "word": "to" + }, + "id": 5932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2039.68000", + "end": "2039.94000", + "feature": { + "word": "hear" + }, + "id": 5933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2039.97000", + "end": "2040.41000", + "feature": { + "word": "another" + }, + "id": 5935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2040.41000", + "end": "2040.72000", + "feature": { + "word": "side" + }, + "id": 5936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2040.72000", + "end": "2040.83000", + "feature": { + "word": "of" + }, + "id": 5937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2040.83000", + "end": "2041.06000", + "feature": { + "word": "that" + }, + "id": 5938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2041.06000", + "end": "2041.47000", + "feature": { + "word": "story" + }, + "id": 5939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2041.47000", + "end": "2041.65000", + "feature": { + "word": "from" + }, + "id": 5940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2041.65000", + "end": "2041.71000", + "feature": { + "word": "the" + }, + "id": 5941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2041.71000", + "end": "2042.04000", + "feature": { + "word": "next" + }, + "id": 5942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2042.04000", + "end": "2042.51000", + "feature": { + "word": "witness" + }, + "id": 5943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2042.71000", + "end": "2043.06000", + "feature": { + "word": "general" + }, + "id": 5945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2043.06000", + "end": "2043.59000", + "feature": { + "word": "secord" + }, + "id": 5946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2043.59000", + "end": "2043.65000", + "feature": { + "word": "s" + }, + "id": 5947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2043.65000", + "end": "2044.15000", + "feature": { + "word": "partner" + }, + "id": 5948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2044.15000", + "end": "2044.24000", + "feature": { + "word": "in" + }, + "id": 5949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2044.24000", + "end": "2044.37000", + "feature": { + "word": "the" + }, + "id": 5950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2044.37000", + "end": "2044.66000", + "feature": { + "word": "arms" + }, + "id": 5951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2044.66000", + "end": "2045.09000", + "feature": { + "word": "supply" + }, + "id": 5952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2045.09000", + "end": "2045.34000", + "feature": { + "word": "effort" + }, + "id": 5953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2045.34000", + "end": "2045.41000", + "feature": { + "word": "for" + }, + "id": 5954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2045.41000", + "end": "2045.51000", + "feature": { + "word": "the" + }, + "id": 5955, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2045.51000", + "end": "2046.04000", + "feature": { + "word": "contras" + }, + "id": 5956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2046.04000", + "end": "2046.07000", + "feature": { + "word": "" + }, + "id": 5957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2046.07000", + "end": "2046.57000", + "feature": { + "word": "iranian" + }, + "id": 5958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2046.57000", + "end": "2047.06000", + "feature": { + "word": "american" + }, + "id": 5959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2047.06000", + "end": "2047.75000", + "feature": { + "word": "businessman" + }, + "id": 5960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2047.75000", + "end": "2048.11000", + "feature": { + "word": "albert" + }, + "id": 5961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2048.11000", + "end": "2048.88000", + "feature": { + "word": "hakim" + }, + "id": 5962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2049.20000", + "end": "2049.66000", + "feature": { + "word": "hakim" + }, + "id": 5964, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2049.66000", + "end": "2050.07000", + "feature": { + "word": "appears" + }, + "id": 5965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2050.07000", + "end": "2050.39000", + "feature": { + "word": "before" + }, + "id": 5966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2050.39000", + "end": "2050.48000", + "feature": { + "word": "the" + }, + "id": 5967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2050.48000", + "end": "2050.79000", + "feature": { + "word": "committee" + }, + "id": 5968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2050.79000", + "end": "2051.10000", + "feature": { + "word": "next" + }, + "id": 5969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2051.10000", + "end": "2051.73000", + "feature": { + "word": "wednesday" + }, + "id": 5970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2051.89000", + "end": "2052.04000", + "feature": { + "word": "when" + }, + "id": 5972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2052.04000", + "end": "2052.13000", + "feature": { + "word": "it" + }, + "id": 5973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2052.13000", + "end": "2052.66000", + "feature": { + "word": "resumes" + }, + "id": 5974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2052.66000", + "end": "2053.05000", + "feature": { + "word": "public" + }, + "id": 5975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2053.05000", + "end": "2053.61000", + "feature": { + "word": "hearings" + }, + "id": 5976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2053.90000", + "end": "2054.29000", + "feature": { + "word": "robin" + }, + "id": 5978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2055.05000", + "end": "2055.30000", + "feature": { + "word": "to" + }, + "id": 5980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2055.30000", + "end": "2055.56000", + "feature": { + "word": "wrap" + }, + "id": 5981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2055.56000", + "end": "2055.74000", + "feature": { + "word": "up" + }, + "id": 5982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2055.74000", + "end": "2055.97000", + "feature": { + "word": "this" + }, + "id": 5983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2055.97000", + "end": "2056.18000", + "feature": { + "word": "week" + }, + "id": 5984, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2056.18000", + "end": "2056.23000", + "feature": { + "word": "s" + }, + "id": 5985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2056.23000", + "end": "2056.68000", + "feature": { + "word": "hearings" + }, + "id": 5986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2056.68000", + "end": "2056.82000", + "feature": { + "word": "we" + }, + "id": 5987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2056.82000", + "end": "2057.08000", + "feature": { + "word": "go" + }, + "id": 5988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2057.08000", + "end": "2057.27000", + "feature": { + "word": "to" + }, + "id": 5989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2057.27000", + "end": "2057.54000", + "feature": { + "word": "two" + }, + "id": 5990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2057.54000", + "end": "2057.92000", + "feature": { + "word": "committee" + }, + "id": 5991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2057.92000", + "end": "2058.39000", + "feature": { + "word": "members" + }, + "id": 5992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2058.39000", + "end": "2058.75000", + "feature": { + "word": "senator" + }, + "id": 5993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2058.75000", + "end": "2059.11000", + "feature": { + "word": "george" + }, + "id": 5994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2059.11000", + "end": "2059.59000", + "feature": { + "word": "mitchell" + }, + "id": 5995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2059.64000", + "end": "2060.25000", + "feature": { + "word": "democrat" + }, + "id": 5997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2060.25000", + "end": "2060.45000", + "feature": { + "word": "from" + }, + "id": 5998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2060.45000", + "end": "2060.86000", + "feature": { + "word": "maine" + }, + "id": 5999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2060.89000", + "end": "2061.08000", + "feature": { + "word": "and" + }, + "id": 6001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2061.08000", + "end": "2061.76000", + "feature": { + "word": "representative" + }, + "id": 6002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2061.76000", + "end": "2062.04000", + "feature": { + "word": "jim" + }, + "id": 6003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2062.04000", + "end": "2062.64000", + "feature": { + "word": "courter" + }, + "id": 6004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2062.70000", + "end": "2063.39000", + "feature": { + "word": "republican" + }, + "id": 6006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2063.39000", + "end": "2063.56000", + "feature": { + "word": "from" + }, + "id": 6007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2063.56000", + "end": "2063.70000", + "feature": { + "word": "new" + }, + "id": 6008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2063.70000", + "end": "2064.13000", + "feature": { + "word": "jersey" + }, + "id": 6009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2064.13000", + "end": "2064.27000", + "feature": { + "word": "they" + }, + "id": 6010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2064.27000", + "end": "2064.51000", + "feature": { + "word": "both" + }, + "id": 6011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2064.51000", + "end": "2064.77000", + "feature": { + "word": "join" + }, + "id": 6012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2064.77000", + "end": "2064.91000", + "feature": { + "word": "us" + }, + "id": 6013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2064.91000", + "end": "2065.07000", + "feature": { + "word": "from" + }, + "id": 6014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2065.07000", + "end": "2065.13000", + "feature": { + "word": "a" + }, + "id": 6015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2065.13000", + "end": "2065.54000", + "feature": { + "word": "studio" + }, + "id": 6016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2065.54000", + "end": "2065.72000", + "feature": { + "word": "on" + }, + "id": 6017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2065.72000", + "end": "2066.18000", + "feature": { + "word": "capitol" + }, + "id": 6018, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2066.18000", + "end": "2066.51000", + "feature": { + "word": "hill" + }, + "id": 6019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2067.23000", + "end": "2068.11000", + "feature": { + "word": "congressman" + }, + "id": 6021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2068.14000", + "end": "2068.35000", + "feature": { + "word": "did" + }, + "id": 6023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2068.35000", + "end": "2068.69000", + "feature": { + "word": "these" + }, + "id": 6024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2068.69000", + "end": "2069.21000", + "feature": { + "word": "private" + }, + "id": 6025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2069.21000", + "end": "2070.15000", + "feature": { + "word": "contributors" + }, + "id": 6026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2070.15000", + "end": "2070.39000", + "feature": { + "word": "who" + }, + "id": 6027, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2070.39000", + "end": "2071.19000", + "feature": { + "word": "testified" + }, + "id": 6028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2071.19000", + "end": "2071.62000", + "feature": { + "word": "today" + }, + "id": 6029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2071.62000", + "end": "2071.80000", + "feature": { + "word": "" + }, + "id": 6030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2071.80000", + "end": "2072.05000", + "feature": { + "word": "in" + }, + "id": 6031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2072.05000", + "end": "2072.13000", + "feature": { + "word": "the" + }, + "id": 6032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2072.13000", + "end": "2072.82000", + "feature": { + "word": "briefings" + }, + "id": 6033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2072.82000", + "end": "2072.86000", + "feature": { + "word": "" + }, + "id": 6034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2072.86000", + "end": "2073.03000", + "feature": { + "word": "did" + }, + "id": 6035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2073.03000", + "end": "2073.22000", + "feature": { + "word": "they" + }, + "id": 6036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2073.22000", + "end": "2073.43000", + "feature": { + "word": "get" + }, + "id": 6037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2073.43000", + "end": "2074.26000", + "feature": { + "word": "information" + }, + "id": 6038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2074.26000", + "end": "2074.48000", + "feature": { + "word": "that" + }, + "id": 6039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2074.48000", + "end": "2075.00000", + "feature": { + "word": "congress" + }, + "id": 6040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2075.00000", + "end": "2075.24000", + "feature": { + "word": "did" + }, + "id": 6041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2075.24000", + "end": "2075.55000", + "feature": { + "word": "not" + }, + "id": 6042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2076.85000", + "end": "2077.09000", + "feature": { + "word": "rep" + }, + "id": 6044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2077.09000", + "end": "2077.23000", + "feature": { + "word": "i" + }, + "id": 6045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2077.23000", + "end": "2077.40000", + "feature": { + "word": "don't" + }, + "id": 6046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2077.40000", + "end": "2077.69000", + "feature": { + "word": "think" + }, + "id": 6047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2077.69000", + "end": "2077.95000", + "feature": { + "word": "so" + }, + "id": 6048, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2077.95000", + "end": "2078.02000", + "feature": { + "word": "it" + }, + "id": 6049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2078.02000", + "end": "2078.46000", + "feature": { + "word": "very" + }, + "id": 6050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2078.46000", + "end": "2078.96000", + "feature": { + "word": "difficult" + }, + "id": 6051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2078.96000", + "end": "2079.06000", + "feature": { + "word": "to" + }, + "id": 6052, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2079.06000", + "end": "2079.39000", + "feature": { + "word": "know" + }, + "id": 6053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2079.39000", + "end": "2079.91000", + "feature": { + "word": "because" + }, + "id": 6054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2079.91000", + "end": "2080.26000", + "feature": { + "word": "" + }, + "id": 6055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2080.26000", + "end": "2080.61000", + "feature": { + "word": "north" + }, + "id": 6056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2080.61000", + "end": "2080.76000", + "feature": { + "word": "has" + }, + "id": 6057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2080.76000", + "end": "2080.96000", + "feature": { + "word": "not" + }, + "id": 6058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2080.99000", + "end": "2081.19000", + "feature": { + "word": "yet" + }, + "id": 6060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2081.19000", + "end": "2081.73000", + "feature": { + "word": "testified" + }, + "id": 6061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2081.73000", + "end": "2082.24000", + "feature": { + "word": "publicly" + }, + "id": 6062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2082.24000", + "end": "2082.36000", + "feature": { + "word": "we" + }, + "id": 6063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2082.36000", + "end": "2082.62000", + "feature": { + "word": "hope" + }, + "id": 6064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2082.62000", + "end": "2082.74000", + "feature": { + "word": "he" + }, + "id": 6065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2082.74000", + "end": "2083.15000", + "feature": { + "word": "will" + }, + "id": 6066, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2083.55000", + "end": "2083.76000", + "feature": { + "word": "the" + }, + "id": 6068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2083.79000", + "end": "2084.55000", + "feature": { + "word": "information" + }, + "id": 6070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2084.55000", + "end": "2084.74000", + "feature": { + "word": "we" + }, + "id": 6071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2084.74000", + "end": "2085.08000", + "feature": { + "word": "have" + }, + "id": 6072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2085.08000", + "end": "2085.20000", + "feature": { + "word": "is" + }, + "id": 6073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2085.20000", + "end": "2085.43000", + "feature": { + "word": "they" + }, + "id": 6074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2085.43000", + "end": "2085.90000", + "feature": { + "word": "received" + }, + "id": 6075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2085.90000", + "end": "2086.15000", + "feature": { + "word": "no" + }, + "id": 6076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2086.15000", + "end": "2086.76000", + "feature": { + "word": "information" + }, + "id": 6077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2086.76000", + "end": "2086.91000", + "feature": { + "word": "that" + }, + "id": 6078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2086.91000", + "end": "2086.98000", + "feature": { + "word": "the" + }, + "id": 6079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2086.98000", + "end": "2087.43000", + "feature": { + "word": "congress" + }, + "id": 6080, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2087.43000", + "end": "2087.60000", + "feature": { + "word": "did" + }, + "id": 6081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2087.60000", + "end": "2087.88000", + "feature": { + "word": "not" + }, + "id": 6082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2087.88000", + "end": "2087.97000", + "feature": { + "word": "there" + }, + "id": 6083, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2088.23000", + "end": "2088.40000", + "feature": { + "word": "was" + }, + "id": 6085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2088.40000", + "end": "2088.46000", + "feature": { + "word": "a" + }, + "id": 6086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2088.46000", + "end": "2088.76000", + "feature": { + "word": "great" + }, + "id": 6087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2088.76000", + "end": "2088.96000", + "feature": { + "word": "deal" + }, + "id": 6088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2088.96000", + "end": "2089.04000", + "feature": { + "word": "of" + }, + "id": 6089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2089.04000", + "end": "2089.62000", + "feature": { + "word": "discussion" + }, + "id": 6090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2089.62000", + "end": "2089.92000", + "feature": { + "word": "today" + }, + "id": 6091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2089.92000", + "end": "2090.03000", + "feature": { + "word": "as" + }, + "id": 6092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2090.03000", + "end": "2090.18000", + "feature": { + "word": "we" + }, + "id": 6093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2090.18000", + "end": "2090.37000", + "feature": { + "word": "all" + }, + "id": 6094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2090.37000", + "end": "2090.64000", + "feature": { + "word": "know" + }, + "id": 6095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2090.64000", + "end": "2090.96000", + "feature": { + "word": "about" + }, + "id": 6096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2090.96000", + "end": "2091.20000", + "feature": { + "word": "whether" + }, + "id": 6097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2091.20000", + "end": "2091.89000", + "feature": { + "word": "classified" + }, + "id": 6098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2091.89000", + "end": "2092.48000", + "feature": { + "word": "information" + }, + "id": 6099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2092.48000", + "end": "2092.62000", + "feature": { + "word": "was" + }, + "id": 6100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2092.62000", + "end": "2093.06000", + "feature": { + "word": "given" + }, + "id": 6101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2093.74000", + "end": "2093.98000", + "feature": { + "word": "but" + }, + "id": 6103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2093.98000", + "end": "2094.19000", + "feature": { + "word": "when" + }, + "id": 6104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2094.19000", + "end": "2094.64000", + "feature": { + "word": "probed" + }, + "id": 6105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2094.64000", + "end": "2094.82000", + "feature": { + "word": "on" + }, + "id": 6106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2094.82000", + "end": "2095.13000", + "feature": { + "word": "that" + }, + "id": 6107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2095.13000", + "end": "2095.25000", + "feature": { + "word": "i" + }, + "id": 6108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2095.25000", + "end": "2095.50000", + "feature": { + "word": "guess" + }, + "id": 6109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2095.50000", + "end": "2095.62000", + "feature": { + "word": "all" + }, + "id": 6110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2095.62000", + "end": "2095.73000", + "feature": { + "word": "we" + }, + "id": 6111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2095.73000", + "end": "2095.89000", + "feature": { + "word": "can" + }, + "id": 6112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2095.89000", + "end": "2096.15000", + "feature": { + "word": "say" + }, + "id": 6113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2096.26000", + "end": "2096.39000", + "feature": { + "word": "is" + }, + "id": 6115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2096.39000", + "end": "2096.60000", + "feature": { + "word": "that" + }, + "id": 6116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2097.35000", + "end": "2097.79000", + "feature": { + "word": "" + }, + "id": 6118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2097.79000", + "end": "2098.30000", + "feature": { + "word": "north" + }, + "id": 6119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2098.46000", + "end": "2098.81000", + "feature": { + "word": "thought" + }, + "id": 6121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2098.81000", + "end": "2098.89000", + "feature": { + "word": "it" + }, + "id": 6122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2098.89000", + "end": "2099.06000", + "feature": { + "word": "was" + }, + "id": 6123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2099.06000", + "end": "2099.72000", + "feature": { + "word": "secret" + }, + "id": 6124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2100.00000", + "end": "2100.23000", + "feature": { + "word": "didn't" + }, + "id": 6126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2100.23000", + "end": "2100.39000", + "feature": { + "word": "want" + }, + "id": 6127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2100.39000", + "end": "2100.47000", + "feature": { + "word": "it" + }, + "id": 6128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2100.47000", + "end": "2100.55000", + "feature": { + "word": "to" + }, + "id": 6129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2100.55000", + "end": "2100.68000", + "feature": { + "word": "be" + }, + "id": 6130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2100.68000", + "end": "2101.30000", + "feature": { + "word": "divulged" + }, + "id": 6131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2101.30000", + "end": "2101.45000", + "feature": { + "word": "whether" + }, + "id": 6132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2101.45000", + "end": "2101.51000", + "feature": { + "word": "it" + }, + "id": 6133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2101.51000", + "end": "2101.66000", + "feature": { + "word": "was" + }, + "id": 6134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2101.66000", + "end": "2102.00000", + "feature": { + "word": "true" + }, + "id": 6135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2102.00000", + "end": "2102.62000", + "feature": { + "word": "information" + }, + "id": 6136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2102.62000", + "end": "2102.79000", + "feature": { + "word": "with" + }, + "id": 6137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2102.79000", + "end": "2103.67000", + "feature": { + "word": "classification" + }, + "id": 6138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2103.67000", + "end": "2103.98000", + "feature": { + "word": "levels" + }, + "id": 6139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2103.98000", + "end": "2104.07000", + "feature": { + "word": "we" + }, + "id": 6140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2104.07000", + "end": "2104.30000", + "feature": { + "word": "don't" + }, + "id": 6141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2104.30000", + "end": "2104.48000", + "feature": { + "word": "know" + }, + "id": 6142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2104.68000", + "end": "2104.89000", + "feature": { + "word": "for" + }, + "id": 6144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2104.89000", + "end": "2105.29000", + "feature": { + "word": "instance" + }, + "id": 6145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2105.29000", + "end": "2105.66000", + "feature": { + "word": "senator" + }, + "id": 6146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2105.66000", + "end": "2106.20000", + "feature": { + "word": "mitchell" + }, + "id": 6147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2106.20000", + "end": "2106.91000", + "feature": { + "word": "the" + }, + "id": 6148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2106.94000", + "end": "2107.24000", + "feature": { + "word": "so" + }, + "id": 6150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2107.24000", + "end": "2107.65000", + "feature": { + "word": "called" + }, + "id": 6151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2107.65000", + "end": "2108.31000", + "feature": { + "word": "secret" + }, + "id": 6152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2108.31000", + "end": "2109.02000", + "feature": { + "word": "plan" + }, + "id": 6153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2109.30000", + "end": "2109.97000", + "feature": { + "word": "that" + }, + "id": 6155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2109.97000", + "end": "2110.74000", + "feature": { + "word": "mr" + }, + "id": 6156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2110.74000", + "end": "2111.06000", + "feature": { + "word": "william" + }, + "id": 6157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2111.06000", + "end": "2111.80000", + "feature": { + "word": "o'boyle" + }, + "id": 6158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2111.84000", + "end": "2112.24000", + "feature": { + "word": "said" + }, + "id": 6160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2112.24000", + "end": "2112.49000", + "feature": { + "word": "he" + }, + "id": 6161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2112.49000", + "end": "2112.98000", + "feature": { + "word": "was" + }, + "id": 6162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2113.46000", + "end": "2113.78000", + "feature": { + "word": "told" + }, + "id": 6164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2113.78000", + "end": "2114.18000", + "feature": { + "word": "about" + }, + "id": 6165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2114.18000", + "end": "2114.21000", + "feature": { + "word": "" + }, + "id": 6166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2114.21000", + "end": "2114.38000", + "feature": { + "word": "was" + }, + "id": 6167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2114.38000", + "end": "2114.57000", + "feature": { + "word": "that" + }, + "id": 6168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2114.57000", + "end": "2114.88000", + "feature": { + "word": "something" + }, + "id": 6169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2114.88000", + "end": "2114.98000", + "feature": { + "word": "that" + }, + "id": 6170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2114.98000", + "end": "2115.56000", + "feature": { + "word": "congress" + }, + "id": 6171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2115.60000", + "end": "2115.85000", + "feature": { + "word": "had" + }, + "id": 6173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2115.85000", + "end": "2116.00000", + "feature": { + "word": "been" + }, + "id": 6174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2116.00000", + "end": "2116.30000", + "feature": { + "word": "briefed" + }, + "id": 6175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2116.30000", + "end": "2116.52000", + "feature": { + "word": "on" + }, + "id": 6176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2116.52000", + "end": "2116.60000", + "feature": { + "word": "and" + }, + "id": 6177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2116.60000", + "end": "2116.81000", + "feature": { + "word": "knew" + }, + "id": 6178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2116.81000", + "end": "2117.13000", + "feature": { + "word": "about" + }, + "id": 6179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2117.42000", + "end": "2117.61000", + "feature": { + "word": "sen" + }, + "id": 6181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2117.75000", + "end": "2118.30000", + "feature": { + "word": "no" + }, + "id": 6183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2118.34000", + "end": "2118.76000", + "feature": { + "word": "and" + }, + "id": 6185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2118.92000", + "end": "2119.20000", + "feature": { + "word": "as" + }, + "id": 6187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2119.23000", + "end": "2119.79000", + "feature": { + "word": "representative" + }, + "id": 6189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2119.79000", + "end": "2120.11000", + "feature": { + "word": "courter" + }, + "id": 6190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2120.11000", + "end": "2120.38000", + "feature": { + "word": "said" + }, + "id": 6191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2120.38000", + "end": "2120.49000", + "feature": { + "word": "there" + }, + "id": 6192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2120.49000", + "end": "2120.56000", + "feature": { + "word": "s" + }, + "id": 6193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2120.56000", + "end": "2120.76000", + "feature": { + "word": "some" + }, + "id": 6194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2120.76000", + "end": "2121.20000", + "feature": { + "word": "question" + }, + "id": 6195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2121.20000", + "end": "2121.35000", + "feature": { + "word": "as" + }, + "id": 6196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2121.35000", + "end": "2121.47000", + "feature": { + "word": "to" + }, + "id": 6197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2121.47000", + "end": "2121.68000", + "feature": { + "word": "whether" + }, + "id": 6198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2121.68000", + "end": "2121.72000", + "feature": { + "word": "or" + }, + "id": 6199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2121.72000", + "end": "2121.99000", + "feature": { + "word": "not" + }, + "id": 6200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2121.99000", + "end": "2122.15000", + "feature": { + "word": "there" + }, + "id": 6201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2122.15000", + "end": "2122.56000", + "feature": { + "word": "was" + }, + "id": 6202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2122.59000", + "end": "2122.77000", + "feature": { + "word": "in" + }, + "id": 6204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2122.77000", + "end": "2123.12000", + "feature": { + "word": "fact" + }, + "id": 6205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2123.12000", + "end": "2123.49000", + "feature": { + "word": "such" + }, + "id": 6206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2123.93000", + "end": "2124.06000", + "feature": { + "word": "a" + }, + "id": 6208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2124.06000", + "end": "2124.58000", + "feature": { + "word": "formal" + }, + "id": 6209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2124.58000", + "end": "2125.04000", + "feature": { + "word": "plan" + }, + "id": 6210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2125.04000", + "end": "2125.26000", + "feature": { + "word": "by" + }, + "id": 6211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2125.26000", + "end": "2125.39000", + "feature": { + "word": "the" + }, + "id": 6212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2125.39000", + "end": "2125.90000", + "feature": { + "word": "government" + }, + "id": 6213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2125.90000", + "end": "2125.99000", + "feature": { + "word": "it" + }, + "id": 6214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2125.99000", + "end": "2126.12000", + "feature": { + "word": "is" + }, + "id": 6215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2126.12000", + "end": "2126.78000", + "feature": { + "word": "possible" + }, + "id": 6216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2127.23000", + "end": "2127.36000", + "feature": { + "word": "it" + }, + "id": 6218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2127.36000", + "end": "2127.65000", + "feature": { + "word": "can't" + }, + "id": 6219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2127.65000", + "end": "2127.77000", + "feature": { + "word": "be" + }, + "id": 6220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2127.77000", + "end": "2128.08000", + "feature": { + "word": "ruled" + }, + "id": 6221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2128.08000", + "end": "2128.37000", + "feature": { + "word": "out" + }, + "id": 6222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2128.37000", + "end": "2128.53000", + "feature": { + "word": "but" + }, + "id": 6223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2128.95000", + "end": "2129.06000", + "feature": { + "word": "the" + }, + "id": 6225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2129.06000", + "end": "2129.26000", + "feature": { + "word": "mere" + }, + "id": 6226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2129.26000", + "end": "2129.60000", + "feature": { + "word": "fact" + }, + "id": 6227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2129.60000", + "end": "2129.74000", + "feature": { + "word": "that" + }, + "id": 6228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2129.74000", + "end": "2130.02000", + "feature": { + "word": "" + }, + "id": 6229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2130.02000", + "end": "2130.29000", + "feature": { + "word": "north" + }, + "id": 6230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2130.32000", + "end": "2131.08000", + "feature": { + "word": "represented" + }, + "id": 6232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2131.08000", + "end": "2131.20000", + "feature": { + "word": "it" + }, + "id": 6233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2131.35000", + "end": "2131.55000", + "feature": { + "word": "to" + }, + "id": 6235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2131.55000", + "end": "2131.93000", + "feature": { + "word": "mr" + }, + "id": 6236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2131.93000", + "end": "2132.51000", + "feature": { + "word": "o'boyle" + }, + "id": 6237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2132.93000", + "end": "2133.09000", + "feature": { + "word": "in" + }, + "id": 6239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2133.09000", + "end": "2133.20000", + "feature": { + "word": "the" + }, + "id": 6240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2133.20000", + "end": "2133.92000", + "feature": { + "word": "context" + }, + "id": 6241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2133.92000", + "end": "2134.09000", + "feature": { + "word": "of" + }, + "id": 6242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2134.09000", + "end": "2134.23000", + "feature": { + "word": "the" + }, + "id": 6243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2134.23000", + "end": "2134.97000", + "feature": { + "word": "fundraising" + }, + "id": 6244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2134.97000", + "end": "2135.47000", + "feature": { + "word": "operation" + }, + "id": 6245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2135.47000", + "end": "2135.58000", + "feature": { + "word": "that" + }, + "id": 6246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2135.58000", + "end": "2135.75000", + "feature": { + "word": "was" + }, + "id": 6247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2135.75000", + "end": "2136.04000", + "feature": { + "word": "going" + }, + "id": 6248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2136.04000", + "end": "2136.35000", + "feature": { + "word": "on" + }, + "id": 6249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2136.68000", + "end": "2136.86000", + "feature": { + "word": "does" + }, + "id": 6251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2136.86000", + "end": "2137.07000", + "feature": { + "word": "not" + }, + "id": 6252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2137.07000", + "end": "2137.16000", + "feature": { + "word": "in" + }, + "id": 6253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2137.16000", + "end": "2137.23000", + "feature": { + "word": "and" + }, + "id": 6254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2137.23000", + "end": "2137.42000", + "feature": { + "word": "of" + }, + "id": 6255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2137.42000", + "end": "2137.78000", + "feature": { + "word": "itself" + }, + "id": 6256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2137.83000", + "end": "2138.09000", + "feature": { + "word": "prove" + }, + "id": 6258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2138.09000", + "end": "2138.28000", + "feature": { + "word": "that" + }, + "id": 6259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2138.28000", + "end": "2138.43000", + "feature": { + "word": "there" + }, + "id": 6260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2138.43000", + "end": "2138.79000", + "feature": { + "word": "was" + }, + "id": 6261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2138.79000", + "end": "2138.92000", + "feature": { + "word": "in" + }, + "id": 6262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2138.92000", + "end": "2139.21000", + "feature": { + "word": "fact" + }, + "id": 6263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2139.21000", + "end": "2139.42000", + "feature": { + "word": "such" + }, + "id": 6264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2139.42000", + "end": "2139.46000", + "feature": { + "word": "a" + }, + "id": 6265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2139.46000", + "end": "2139.81000", + "feature": { + "word": "plan" + }, + "id": 6266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2139.81000", + "end": "2139.92000", + "feature": { + "word": "by" + }, + "id": 6267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2139.92000", + "end": "2140.01000", + "feature": { + "word": "the" + }, + "id": 6268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2140.01000", + "end": "2140.35000", + "feature": { + "word": "government" + }, + "id": 6269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2140.77000", + "end": "2141.21000", + "feature": { + "word": "senator" + }, + "id": 6271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2141.21000", + "end": "2141.64000", + "feature": { + "word": "rudman" + }, + "id": 6272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2141.64000", + "end": "2141.88000", + "feature": { + "word": "said" + }, + "id": 6273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2141.88000", + "end": "2142.08000", + "feature": { + "word": "today" + }, + "id": 6274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2142.08000", + "end": "2142.14000", + "feature": { + "word": "" + }, + "id": 6275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2142.14000", + "end": "2142.27000", + "feature": { + "word": "we" + }, + "id": 6276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2142.27000", + "end": "2142.52000", + "feature": { + "word": "heard" + }, + "id": 6277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2142.52000", + "end": "2142.64000", + "feature": { + "word": "it" + }, + "id": 6278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2142.64000", + "end": "2142.76000", + "feature": { + "word": "in" + }, + "id": 6279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2142.76000", + "end": "2143.01000", + "feature": { + "word": "those" + }, + "id": 6280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2143.01000", + "end": "2143.67000", + "feature": { + "word": "excerpts" + }, + "id": 6281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2143.67000", + "end": "2144.25000", + "feature": { + "word": "" + }, + "id": 6282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2144.25000", + "end": "2144.41000", + "feature": { + "word": "that" + }, + "id": 6283, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2144.41000", + "end": "2144.56000", + "feature": { + "word": "it" + }, + "id": 6284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2144.56000", + "end": "2144.72000", + "feature": { + "word": "was" + }, + "id": 6285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2144.72000", + "end": "2144.80000", + "feature": { + "word": "a" + }, + "id": 6286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2144.80000", + "end": "2145.35000", + "feature": { + "word": "fiction" + }, + "id": 6287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2145.35000", + "end": "2145.45000", + "feature": { + "word": "to" + }, + "id": 6288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2145.45000", + "end": "2146.01000", + "feature": { + "word": "pretend" + }, + "id": 6289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2146.01000", + "end": "2146.13000", + "feature": { + "word": "that" + }, + "id": 6290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2146.13000", + "end": "2146.35000", + "feature": { + "word": "this" + }, + "id": 6291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2146.35000", + "end": "2146.52000", + "feature": { + "word": "was" + }, + "id": 6292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2146.52000", + "end": "2146.90000", + "feature": { + "word": "not" + }, + "id": 6293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2146.90000", + "end": "2147.96000", + "feature": { + "word": "solicitation" + }, + "id": 6294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2148.00000", + "end": "2148.25000", + "feature": { + "word": "by" + }, + "id": 6296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2148.25000", + "end": "2148.40000", + "feature": { + "word": "th" + }, + "id": 6297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2148.40000", + "end": "2149.12000", + "feature": { + "word": "administration" + }, + "id": 6298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2149.12000", + "end": "2149.22000", + "feature": { + "word": "do" + }, + "id": 6299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2149.22000", + "end": "2149.35000", + "feature": { + "word": "you" + }, + "id": 6300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2149.35000", + "end": "2149.60000", + "feature": { + "word": "agree" + }, + "id": 6301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2149.60000", + "end": "2149.76000", + "feature": { + "word": "with" + }, + "id": 6302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2149.76000", + "end": "2149.92000", + "feature": { + "word": "that" + }, + "id": 6303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2149.92000", + "end": "2150.33000", + "feature": { + "word": "statement" + }, + "id": 6304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2150.33000", + "end": "2150.72000", + "feature": { + "word": "senator" + }, + "id": 6305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2150.72000", + "end": "2150.91000", + "feature": { + "word": "has" + }, + "id": 6306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2150.91000", + "end": "2151.16000", + "feature": { + "word": "that" + }, + "id": 6307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2151.16000", + "end": "2151.37000", + "feature": { + "word": "been" + }, + "id": 6308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2151.68000", + "end": "2152.44000", + "feature": { + "word": "demonstrated" + }, + "id": 6310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2152.44000", + "end": "2152.59000", + "feature": { + "word": "by" + }, + "id": 6311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2152.59000", + "end": "2152.74000", + "feature": { + "word": "the" + }, + "id": 6312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2152.74000", + "end": "2153.13000", + "feature": { + "word": "evidence" + }, + "id": 6313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2153.13000", + "end": "2153.32000", + "feature": { + "word": "you've" + }, + "id": 6314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2153.32000", + "end": "2153.64000", + "feature": { + "word": "heard" + }, + "id": 6315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2153.64000", + "end": "2153.73000", + "feature": { + "word": "sen" + }, + "id": 6316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2153.73000", + "end": "2154.03000", + "feature": { + "word": "yes" + }, + "id": 6317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2154.03000", + "end": "2154.11000", + "feature": { + "word": "i" + }, + "id": 6318, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2154.11000", + "end": "2154.32000", + "feature": { + "word": "do" + }, + "id": 6319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2154.32000", + "end": "2154.38000", + "feature": { + "word": "i" + }, + "id": 6320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2154.38000", + "end": "2154.61000", + "feature": { + "word": "agree" + }, + "id": 6321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2154.61000", + "end": "2154.73000", + "feature": { + "word": "with" + }, + "id": 6322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2154.73000", + "end": "2154.96000", + "feature": { + "word": "senator" + }, + "id": 6323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2154.99000", + "end": "2155.37000", + "feature": { + "word": "rudman" + }, + "id": 6325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2155.37000", + "end": "2155.48000", + "feature": { + "word": "do" + }, + "id": 6326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2155.48000", + "end": "2155.67000", + "feature": { + "word": "you" + }, + "id": 6327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2155.67000", + "end": "2155.91000", + "feature": { + "word": "agree" + }, + "id": 6328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2155.91000", + "end": "2156.06000", + "feature": { + "word": "with" + }, + "id": 6329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2156.06000", + "end": "2156.35000", + "feature": { + "word": "that" + }, + "id": 6330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2156.35000", + "end": "2156.85000", + "feature": { + "word": "congressman" + }, + "id": 6331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2157.01000", + "end": "2157.10000", + "feature": { + "word": "rep" + }, + "id": 6333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2157.35000", + "end": "2157.55000", + "feature": { + "word": "no" + }, + "id": 6335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2157.55000", + "end": "2157.78000", + "feature": { + "word": "not" + }, + "id": 6336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2157.78000", + "end": "2158.55000", + "feature": { + "word": "necessarily" + }, + "id": 6337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2158.55000", + "end": "2158.66000", + "feature": { + "word": "i" + }, + "id": 6338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2158.66000", + "end": "2158.80000", + "feature": { + "word": "don't" + }, + "id": 6339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2158.80000", + "end": "2159.08000", + "feature": { + "word": "agree" + }, + "id": 6340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2159.08000", + "end": "2159.29000", + "feature": { + "word": "with" + }, + "id": 6341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2159.29000", + "end": "2159.42000", + "feature": { + "word": "it" + }, + "id": 6342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2159.48000", + "end": "2159.62000", + "feature": { + "word": "we're" + }, + "id": 6344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2159.62000", + "end": "2159.83000", + "feature": { + "word": "going" + }, + "id": 6345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2159.83000", + "end": "2159.89000", + "feature": { + "word": "to" + }, + "id": 6346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2159.89000", + "end": "2160.10000", + "feature": { + "word": "have" + }, + "id": 6347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2160.10000", + "end": "2160.22000", + "feature": { + "word": "to" + }, + "id": 6348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2160.22000", + "end": "2160.55000", + "feature": { + "word": "wait" + }, + "id": 6349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2160.55000", + "end": "2160.65000", + "feature": { + "word": "and" + }, + "id": 6350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2160.65000", + "end": "2161.04000", + "feature": { + "word": "find" + }, + "id": 6351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2161.04000", + "end": "2161.22000", + "feature": { + "word": "out" + }, + "id": 6352, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2161.22000", + "end": "2161.69000", + "feature": { + "word": "exactly" + }, + "id": 6353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2161.69000", + "end": "2161.87000", + "feature": { + "word": "what" + }, + "id": 6354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2161.87000", + "end": "2162.04000", + "feature": { + "word": "other" + }, + "id": 6355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2162.04000", + "end": "2162.39000", + "feature": { + "word": "people" + }, + "id": 6356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2162.39000", + "end": "2162.74000", + "feature": { + "word": "did" + }, + "id": 6357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2163.28000", + "end": "2164.16000", + "feature": { + "word": "solicitation" + }, + "id": 6359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2164.16000", + "end": "2164.42000", + "feature": { + "word": "is" + }, + "id": 6360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2164.52000", + "end": "2165.14000", + "feature": { + "word": "difficult" + }, + "id": 6362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2165.14000", + "end": "2165.28000", + "feature": { + "word": "to" + }, + "id": 6363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2165.28000", + "end": "2165.69000", + "feature": { + "word": "define" + }, + "id": 6364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2165.69000", + "end": "2165.78000", + "feature": { + "word": "in" + }, + "id": 6365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2165.78000", + "end": "2166.02000", + "feature": { + "word": "some" + }, + "id": 6366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2166.02000", + "end": "2166.80000", + "feature": { + "word": "circumstances" + }, + "id": 6367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2166.80000", + "end": "2167.11000", + "feature": { + "word": "certainly" + }, + "id": 6368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2167.11000", + "end": "2167.21000", + "feature": { + "word": "the" + }, + "id": 6369, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2167.21000", + "end": "2167.94000", + "feature": { + "word": "administration" + }, + "id": 6370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2167.94000", + "end": "2168.34000", + "feature": { + "word": "created" + }, + "id": 6371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2168.34000", + "end": "2168.38000", + "feature": { + "word": "a" + }, + "id": 6372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2168.38000", + "end": "2168.90000", + "feature": { + "word": "climate" + }, + "id": 6373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2168.90000", + "end": "2169.06000", + "feature": { + "word": "for" + }, + "id": 6374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2169.06000", + "end": "2169.27000", + "feature": { + "word": "this" + }, + "id": 6375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2169.27000", + "end": "2169.42000", + "feature": { + "word": "to" + }, + "id": 6376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2169.42000", + "end": "2169.81000", + "feature": { + "word": "occur" + }, + "id": 6377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2170.29000", + "end": "2170.53000", + "feature": { + "word": "whether" + }, + "id": 6379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2170.53000", + "end": "2170.65000", + "feature": { + "word": "there" + }, + "id": 6380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2170.65000", + "end": "2170.80000", + "feature": { + "word": "was" + }, + "id": 6381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2170.80000", + "end": "2170.88000", + "feature": { + "word": "a" + }, + "id": 6382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2170.88000", + "end": "2171.23000", + "feature": { + "word": "legal" + }, + "id": 6383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2171.23000", + "end": "2172.00000", + "feature": { + "word": "solicitation" + }, + "id": 6384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2172.00000", + "end": "2172.11000", + "feature": { + "word": "we" + }, + "id": 6385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2172.11000", + "end": "2172.45000", + "feature": { + "word": "don't" + }, + "id": 6386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2172.45000", + "end": "2172.67000", + "feature": { + "word": "know" + }, + "id": 6387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2172.67000", + "end": "2172.91000", + "feature": { + "word": "we" + }, + "id": 6388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2172.91000", + "end": "2173.22000", + "feature": { + "word": "also" + }, + "id": 6389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2173.22000", + "end": "2173.51000", + "feature": { + "word": "don't" + }, + "id": 6390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2173.51000", + "end": "2173.70000", + "feature": { + "word": "know" + }, + "id": 6391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2173.70000", + "end": "2173.93000", + "feature": { + "word": "whether" + }, + "id": 6392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2173.93000", + "end": "2174.01000", + "feature": { + "word": "in" + }, + "id": 6393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2174.01000", + "end": "2174.36000", + "feature": { + "word": "fact" + }, + "id": 6394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2174.36000", + "end": "2174.39000", + "feature": { + "word": "" + }, + "id": 6395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2174.39000", + "end": "2174.50000", + "feature": { + "word": "if" + }, + "id": 6396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2174.50000", + "end": "2174.64000", + "feature": { + "word": "there" + }, + "id": 6397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2174.64000", + "end": "2174.94000", + "feature": { + "word": "was" + }, + "id": 6398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2174.94000", + "end": "2175.27000", + "feature": { + "word": "one" + }, + "id": 6399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2175.58000", + "end": "2175.61000", + "feature": { + "word": "" + }, + "id": 6401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2175.61000", + "end": "2175.72000", + "feature": { + "word": "did" + }, + "id": 6402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2175.72000", + "end": "2175.83000", + "feature": { + "word": "it" + }, + "id": 6403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2175.83000", + "end": "2176.08000", + "feature": { + "word": "break" + }, + "id": 6404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2176.08000", + "end": "2176.18000", + "feature": { + "word": "the" + }, + "id": 6405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2176.18000", + "end": "2176.52000", + "feature": { + "word": "boland" + }, + "id": 6406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2176.52000", + "end": "2176.95000", + "feature": { + "word": "amendment" + }, + "id": 6407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2176.98000", + "end": "2177.05000", + "feature": { + "word": "we" + }, + "id": 6409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2177.05000", + "end": "2177.28000", + "feature": { + "word": "don't" + }, + "id": 6410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2177.28000", + "end": "2177.39000", + "feature": { + "word": "know" + }, + "id": 6411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2177.39000", + "end": "2177.56000", + "feature": { + "word": "whether" + }, + "id": 6412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2177.56000", + "end": "2177.62000", + "feature": { + "word": "the" + }, + "id": 6413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2177.62000", + "end": "2177.87000", + "feature": { + "word": "boland" + }, + "id": 6414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2177.87000", + "end": "2178.41000", + "feature": { + "word": "amendment" + }, + "id": 6415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2178.41000", + "end": "2178.90000", + "feature": { + "word": "actually" + }, + "id": 6416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2178.90000", + "end": "2179.40000", + "feature": { + "word": "applied" + }, + "id": 6417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2179.40000", + "end": "2180.01000", + "feature": { + "word": "to" + }, + "id": 6418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2180.04000", + "end": "2180.29000", + "feature": { + "word": "the" + }, + "id": 6420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2180.81000", + "end": "2181.00000", + "feature": { + "word": "" + }, + "id": 6422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2181.00000", + "end": "2181.14000", + "feature": { + "word": "so" + }, + "id": 6423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2181.14000", + "end": "2181.26000", + "feature": { + "word": "the" + }, + "id": 6424, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2181.26000", + "end": "2181.66000", + "feature": { + "word": "courts" + }, + "id": 6425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2181.66000", + "end": "2181.82000", + "feature": { + "word": "will" + }, + "id": 6426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2181.82000", + "end": "2182.07000", + "feature": { + "word": "have" + }, + "id": 6427, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2182.07000", + "end": "2182.38000", + "feature": { + "word": "to" + }, + "id": 6428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2182.38000", + "end": "2182.71000", + "feature": { + "word": "much" + }, + "id": 6429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2182.71000", + "end": "2183.24000", + "feature": { + "word": "determine" + }, + "id": 6430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2183.24000", + "end": "2183.31000", + "feature": { + "word": "the" + }, + "id": 6431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2183.31000", + "end": "2183.86000", + "feature": { + "word": "legality" + }, + "id": 6432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2183.86000", + "end": "2183.98000", + "feature": { + "word": "of" + }, + "id": 6433, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2183.98000", + "end": "2184.15000", + "feature": { + "word": "some" + }, + "id": 6434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2184.15000", + "end": "2184.21000", + "feature": { + "word": "of" + }, + "id": 6435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2184.21000", + "end": "2184.40000", + "feature": { + "word": "this" + }, + "id": 6436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2184.40000", + "end": "2184.81000", + "feature": { + "word": "activity" + }, + "id": 6437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2186.06000", + "end": "2187.10000", + "feature": { + "word": "congressman" + }, + "id": 6439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2187.10000", + "end": "2187.32000", + "feature": { + "word": "what" + }, + "id": 6440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2187.32000", + "end": "2187.50000", + "feature": { + "word": "has" + }, + "id": 6441, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2187.50000", + "end": "2187.85000", + "feature": { + "word": "general" + }, + "id": 6442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2187.85000", + "end": "2188.49000", + "feature": { + "word": "singlaub" + }, + "id": 6443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2188.49000", + "end": "2188.57000", + "feature": { + "word": "s" + }, + "id": 6444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2188.57000", + "end": "2189.43000", + "feature": { + "word": "testimony" + }, + "id": 6445, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2189.43000", + "end": "2189.75000", + "feature": { + "word": "over" + }, + "id": 6446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2189.75000", + "end": "2190.00000", + "feature": { + "word": "two" + }, + "id": 6447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2190.00000", + "end": "2190.33000", + "feature": { + "word": "days" + }, + "id": 6448, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2190.33000", + "end": "2190.99000", + "feature": { + "word": "contributed" + }, + "id": 6449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2190.99000", + "end": "2191.08000", + "feature": { + "word": "to" + }, + "id": 6450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2191.08000", + "end": "2191.18000", + "feature": { + "word": "the" + }, + "id": 6451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2191.18000", + "end": "2191.51000", + "feature": { + "word": "committee" + }, + "id": 6452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2191.51000", + "end": "2191.59000", + "feature": { + "word": "s" + }, + "id": 6453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2191.59000", + "end": "2192.27000", + "feature": { + "word": "understanding" + }, + "id": 6454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2192.27000", + "end": "2192.37000", + "feature": { + "word": "of" + }, + "id": 6455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2192.37000", + "end": "2192.57000", + "feature": { + "word": "all" + }, + "id": 6456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2192.57000", + "end": "2192.91000", + "feature": { + "word": "this" + }, + "id": 6457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2196.73000", + "end": "2197.13000", + "feature": { + "word": "congressman" + }, + "id": 6459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2197.13000", + "end": "2197.42000", + "feature": { + "word": "courter" + }, + "id": 6460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2197.42000", + "end": "2197.58000", + "feature": { + "word": "rep" + }, + "id": 6461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2197.58000", + "end": "2197.83000", + "feature": { + "word": "yes" + }, + "id": 6462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2197.83000", + "end": "2198.00000", + "feature": { + "word": "could" + }, + "id": 6463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2198.00000", + "end": "2198.09000", + "feature": { + "word": "you" + }, + "id": 6464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2198.09000", + "end": "2198.34000", + "feature": { + "word": "repeat" + }, + "id": 6465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2198.34000", + "end": "2198.42000", + "feature": { + "word": "the" + }, + "id": 6466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2198.42000", + "end": "2198.67000", + "feature": { + "word": "question" + }, + "id": 6467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2198.67000", + "end": "2199.28000", + "feature": { + "word": "what" + }, + "id": 6468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2199.28000", + "end": "2199.69000", + "feature": { + "word": "has" + }, + "id": 6469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2199.69000", + "end": "2200.12000", + "feature": { + "word": "general" + }, + "id": 6470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2200.12000", + "end": "2200.73000", + "feature": { + "word": "singlaub" + }, + "id": 6471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2200.73000", + "end": "2200.80000", + "feature": { + "word": "s" + }, + "id": 6472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2200.80000", + "end": "2201.45000", + "feature": { + "word": "testimony" + }, + "id": 6473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2201.45000", + "end": "2202.12000", + "feature": { + "word": "contributed" + }, + "id": 6474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2202.12000", + "end": "2202.43000", + "feature": { + "word": "to" + }, + "id": 6475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2202.46000", + "end": "2202.70000", + "feature": { + "word": "your" + }, + "id": 6477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2202.70000", + "end": "2203.33000", + "feature": { + "word": "understanding" + }, + "id": 6478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2203.33000", + "end": "2203.36000", + "feature": { + "word": "" + }, + "id": 6479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2203.36000", + "end": "2203.44000", + "feature": { + "word": "the" + }, + "id": 6480, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2203.44000", + "end": "2203.78000", + "feature": { + "word": "committee" + }, + "id": 6481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2203.78000", + "end": "2203.86000", + "feature": { + "word": "s" + }, + "id": 6482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2203.86000", + "end": "2204.44000", + "feature": { + "word": "understanding" + }, + "id": 6483, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2204.44000", + "end": "2204.48000", + "feature": { + "word": "" + }, + "id": 6484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2204.48000", + "end": "2204.57000", + "feature": { + "word": "of" + }, + "id": 6485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2204.57000", + "end": "2204.80000", + "feature": { + "word": "all" + }, + "id": 6486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2204.83000", + "end": "2205.02000", + "feature": { + "word": "this" + }, + "id": 6488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2205.11000", + "end": "2205.24000", + "feature": { + "word": "rep" + }, + "id": 6490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2205.75000", + "end": "2206.14000", + "feature": { + "word": "well" + }, + "id": 6492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2206.25000", + "end": "2206.69000", + "feature": { + "word": "he" + }, + "id": 6494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2206.69000", + "end": "2207.24000", + "feature": { + "word": "was" + }, + "id": 6495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2207.24000", + "end": "2207.34000", + "feature": { + "word": "i" + }, + "id": 6496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2207.34000", + "end": "2207.52000", + "feature": { + "word": "think" + }, + "id": 6497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2207.52000", + "end": "2207.57000", + "feature": { + "word": "a" + }, + "id": 6498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2207.57000", + "end": "2207.79000", + "feature": { + "word": "very" + }, + "id": 6499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2207.79000", + "end": "2208.39000", + "feature": { + "word": "forthright" + }, + "id": 6500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2208.39000", + "end": "2208.86000", + "feature": { + "word": "witness" + }, + "id": 6501, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2208.86000", + "end": "2208.99000", + "feature": { + "word": "there" + }, + "id": 6502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2209.03000", + "end": "2209.23000", + "feature": { + "word": "no" + }, + "id": 6504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2209.23000", + "end": "2209.43000", + "feature": { + "word": "doubt" + }, + "id": 6505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2209.43000", + "end": "2209.72000", + "feature": { + "word": "about" + }, + "id": 6506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2209.72000", + "end": "2209.82000", + "feature": { + "word": "the" + }, + "id": 6507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2209.82000", + "end": "2210.19000", + "feature": { + "word": "fact" + }, + "id": 6508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2210.19000", + "end": "2210.28000", + "feature": { + "word": "as" + }, + "id": 6509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2210.28000", + "end": "2210.46000", + "feature": { + "word": "far" + }, + "id": 6510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2210.46000", + "end": "2210.64000", + "feature": { + "word": "as" + }, + "id": 6511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2210.64000", + "end": "2210.90000", + "feature": { + "word": "i'm" + }, + "id": 6512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2210.90000", + "end": "2211.35000", + "feature": { + "word": "concerned" + }, + "id": 6513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2211.35000", + "end": "2211.52000", + "feature": { + "word": "that" + }, + "id": 6514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2211.52000", + "end": "2211.94000", + "feature": { + "word": "every" + }, + "id": 6515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2212.22000", + "end": "2212.55000", + "feature": { + "word": "member" + }, + "id": 6517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2212.55000", + "end": "2212.62000", + "feature": { + "word": "of" + }, + "id": 6518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2212.62000", + "end": "2212.73000", + "feature": { + "word": "the" + }, + "id": 6519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2212.73000", + "end": "2213.31000", + "feature": { + "word": "committee" + }, + "id": 6520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2213.31000", + "end": "2213.84000", + "feature": { + "word": "believed" + }, + "id": 6521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2213.84000", + "end": "2214.54000", + "feature": { + "word": "precisely" + }, + "id": 6522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2214.54000", + "end": "2214.73000", + "feature": { + "word": "his" + }, + "id": 6523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2214.73000", + "end": "2215.28000", + "feature": { + "word": "testimony" + }, + "id": 6524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2215.28000", + "end": "2215.50000", + "feature": { + "word": "today" + }, + "id": 6525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2215.50000", + "end": "2215.57000", + "feature": { + "word": "" + }, + "id": 6526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2215.57000", + "end": "2215.68000", + "feature": { + "word": "was" + }, + "id": 6527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2215.68000", + "end": "2215.90000", + "feature": { + "word": "very" + }, + "id": 6528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2215.90000", + "end": "2216.34000", + "feature": { + "word": "credible" + }, + "id": 6529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2216.80000", + "end": "2217.51000", + "feature": { + "word": "clearly" + }, + "id": 6531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2217.51000", + "end": "2217.72000", + "feature": { + "word": "he" + }, + "id": 6532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2217.72000", + "end": "2217.95000", + "feature": { + "word": "did" + }, + "id": 6533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2217.95000", + "end": "2218.13000", + "feature": { + "word": "what" + }, + "id": 6534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2218.13000", + "end": "2218.30000", + "feature": { + "word": "he" + }, + "id": 6535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2218.30000", + "end": "2218.51000", + "feature": { + "word": "could" + }, + "id": 6536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2218.51000", + "end": "2218.61000", + "feature": { + "word": "as" + }, + "id": 6537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2218.61000", + "end": "2218.67000", + "feature": { + "word": "a" + }, + "id": 6538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2218.67000", + "end": "2219.03000", + "feature": { + "word": "private" + }, + "id": 6539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2219.03000", + "end": "2219.50000", + "feature": { + "word": "citizen" + }, + "id": 6540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2219.50000", + "end": "2219.60000", + "feature": { + "word": "to" + }, + "id": 6541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2219.60000", + "end": "2219.87000", + "feature": { + "word": "help" + }, + "id": 6542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2219.87000", + "end": "2219.97000", + "feature": { + "word": "the" + }, + "id": 6543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2219.97000", + "end": "2220.51000", + "feature": { + "word": "democratic" + }, + "id": 6544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2220.51000", + "end": "2221.08000", + "feature": { + "word": "resistance" + }, + "id": 6545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2221.08000", + "end": "2221.16000", + "feature": { + "word": "in" + }, + "id": 6546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2221.16000", + "end": "2221.52000", + "feature": { + "word": "central" + }, + "id": 6547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2221.52000", + "end": "2222.04000", + "feature": { + "word": "america" + }, + "id": 6548, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2222.76000", + "end": "2223.03000", + "feature": { + "word": "he" + }, + "id": 6550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2223.03000", + "end": "2223.83000", + "feature": { + "word": "clarified" + }, + "id": 6551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2223.83000", + "end": "2223.93000", + "feature": { + "word": "i" + }, + "id": 6552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2223.93000", + "end": "2224.23000", + "feature": { + "word": "think" + }, + "id": 6553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2224.23000", + "end": "2224.34000", + "feature": { + "word": "a" + }, + "id": 6554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2224.34000", + "end": "2225.00000", + "feature": { + "word": "concern" + }, + "id": 6555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2225.00000", + "end": "2225.15000", + "feature": { + "word": "in" + }, + "id": 6556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2225.15000", + "end": "2225.31000", + "feature": { + "word": "the" + }, + "id": 6557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2225.31000", + "end": "2225.85000", + "feature": { + "word": "committee" + }, + "id": 6558, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2225.85000", + "end": "2226.20000", + "feature": { + "word": "that" + }, + "id": 6559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2226.51000", + "end": "2226.93000", + "feature": { + "word": "other" + }, + "id": 6561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2226.93000", + "end": "2227.45000", + "feature": { + "word": "witnesses" + }, + "id": 6562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2227.45000", + "end": "2227.51000", + "feature": { + "word": "" + }, + "id": 6563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2227.51000", + "end": "2228.25000", + "feature": { + "word": "particularly" + }, + "id": 6564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2228.39000", + "end": "2228.92000", + "feature": { + "word": "general" + }, + "id": 6566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2229.33000", + "end": "2230.04000", + "feature": { + "word": "secord" + }, + "id": 6568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2230.04000", + "end": "2230.07000", + "feature": { + "word": "" + }, + "id": 6569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2230.07000", + "end": "2230.29000", + "feature": { + "word": "was" + }, + "id": 6570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2230.29000", + "end": "2230.87000", + "feature": { + "word": "acting" + }, + "id": 6571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2231.01000", + "end": "2231.29000", + "feature": { + "word": "with" + }, + "id": 6573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2231.29000", + "end": "2231.38000", + "feature": { + "word": "a" + }, + "id": 6574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2231.38000", + "end": "2231.91000", + "feature": { + "word": "desire" + }, + "id": 6575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2231.91000", + "end": "2232.17000", + "feature": { + "word": "of" + }, + "id": 6576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2232.46000", + "end": "2232.85000", + "feature": { + "word": "getting" + }, + "id": 6578, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2232.85000", + "end": "2233.08000", + "feature": { + "word": "some" + }, + "id": 6579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2233.08000", + "end": "2233.65000", + "feature": { + "word": "profits" + }, + "id": 6580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2233.65000", + "end": "2234.22000", + "feature": { + "word": "besides" + }, + "id": 6581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2234.22000", + "end": "2234.70000", + "feature": { + "word": "just" + }, + "id": 6582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2234.70000", + "end": "2234.86000", + "feature": { + "word": "the" + }, + "id": 6583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2234.95000", + "end": "2235.47000", + "feature": { + "word": "motive" + }, + "id": 6585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2235.47000", + "end": "2235.59000", + "feature": { + "word": "of" + }, + "id": 6586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2235.59000", + "end": "2236.03000", + "feature": { + "word": "helping" + }, + "id": 6587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2236.47000", + "end": "2236.68000", + "feature": { + "word": "the" + }, + "id": 6589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2236.68000", + "end": "2237.42000", + "feature": { + "word": "resistance" + }, + "id": 6590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2237.42000", + "end": "2237.54000", + "feature": { + "word": "in" + }, + "id": 6591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2237.89000", + "end": "2238.27000", + "feature": { + "word": "central" + }, + "id": 6593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2238.27000", + "end": "2238.62000", + "feature": { + "word": "america" + }, + "id": 6594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2238.62000", + "end": "2238.80000", + "feature": { + "word": "that" + }, + "id": 6595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2238.80000", + "end": "2238.84000", + "feature": { + "word": "s" + }, + "id": 6596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2238.84000", + "end": "2238.96000", + "feature": { + "word": "what" + }, + "id": 6597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2238.96000", + "end": "2239.16000", + "feature": { + "word": "he" + }, + "id": 6598, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2239.16000", + "end": "2239.51000", + "feature": { + "word": "talked" + }, + "id": 6599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2239.51000", + "end": "2239.78000", + "feature": { + "word": "about" + }, + "id": 6600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2239.78000", + "end": "2239.82000", + "feature": { + "word": "" + }, + "id": 6601, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2239.82000", + "end": "2239.99000", + "feature": { + "word": "the" + }, + "id": 6602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2239.99000", + "end": "2240.62000", + "feature": { + "word": "operation" + }, + "id": 6603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2240.62000", + "end": "2240.75000", + "feature": { + "word": "there" + }, + "id": 6604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2240.78000", + "end": "2240.84000", + "feature": { + "word": "were" + }, + "id": 6606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2240.84000", + "end": "2240.87000", + "feature": { + "word": "a" + }, + "id": 6607, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2240.87000", + "end": "2241.13000", + "feature": { + "word": "great" + }, + "id": 6608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2241.13000", + "end": "2241.36000", + "feature": { + "word": "number" + }, + "id": 6609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2241.36000", + "end": "2241.45000", + "feature": { + "word": "of" + }, + "id": 6610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2241.45000", + "end": "2241.91000", + "feature": { + "word": "questions" + }, + "id": 6611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2241.91000", + "end": "2242.22000", + "feature": { + "word": "about" + }, + "id": 6612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2242.64000", + "end": "2242.80000", + "feature": { + "word": "the" + }, + "id": 6614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2242.80000", + "end": "2243.40000", + "feature": { + "word": "communist" + }, + "id": 6615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2243.40000", + "end": "2243.73000", + "feature": { + "word": "threat" + }, + "id": 6616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2243.73000", + "end": "2243.83000", + "feature": { + "word": "in" + }, + "id": 6617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2243.83000", + "end": "2244.19000", + "feature": { + "word": "central" + }, + "id": 6618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2244.19000", + "end": "2244.56000", + "feature": { + "word": "america" + }, + "id": 6619, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2244.56000", + "end": "2244.70000", + "feature": { + "word": "but" + }, + "id": 6620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2244.70000", + "end": "2244.86000", + "feature": { + "word": "we" + }, + "id": 6621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2244.86000", + "end": "2245.12000", + "feature": { + "word": "all" + }, + "id": 6622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2245.12000", + "end": "2245.37000", + "feature": { + "word": "know" + }, + "id": 6623, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2245.37000", + "end": "2245.72000", + "feature": { + "word": "about" + }, + "id": 6624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2245.72000", + "end": "2245.99000", + "feature": { + "word": "that" + }, + "id": 6625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2246.49000", + "end": "2247.20000", + "feature": { + "word": "his" + }, + "id": 6627, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2247.20000", + "end": "2247.81000", + "feature": { + "word": "testimony" + }, + "id": 6628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2247.81000", + "end": "2248.01000", + "feature": { + "word": "was" + }, + "id": 6629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2248.01000", + "end": "2248.72000", + "feature": { + "word": "interesting" + }, + "id": 6630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2248.72000", + "end": "2248.96000", + "feature": { + "word": "didn't" + }, + "id": 6631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2248.96000", + "end": "2249.24000", + "feature": { + "word": "really" + }, + "id": 6632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2249.24000", + "end": "2249.44000", + "feature": { + "word": "add" + }, + "id": 6633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2249.44000", + "end": "2249.50000", + "feature": { + "word": "a" + }, + "id": 6634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2249.50000", + "end": "2249.73000", + "feature": { + "word": "new" + }, + "id": 6635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2249.73000", + "end": "2250.14000", + "feature": { + "word": "angle" + }, + "id": 6636, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2250.46000", + "end": "2250.92000", + "feature": { + "word": "other" + }, + "id": 6638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2250.92000", + "end": "2251.36000", + "feature": { + "word": "than" + }, + "id": 6639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2251.58000", + "end": "2251.93000", + "feature": { + "word": "putting" + }, + "id": 6641, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2251.93000", + "end": "2252.02000", + "feature": { + "word": "a" + }, + "id": 6642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2252.02000", + "end": "2252.56000", + "feature": { + "word": "cloud" + }, + "id": 6643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2252.56000", + "end": "2252.76000", + "feature": { + "word": "on" + }, + "id": 6644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2252.76000", + "end": "2252.87000", + "feature": { + "word": "the" + }, + "id": 6645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2252.87000", + "end": "2253.59000", + "feature": { + "word": "credibility" + }, + "id": 6646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2253.59000", + "end": "2253.70000", + "feature": { + "word": "of" + }, + "id": 6647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2253.70000", + "end": "2254.00000", + "feature": { + "word": "general" + }, + "id": 6648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2254.00000", + "end": "2254.37000", + "feature": { + "word": "secord" + }, + "id": 6649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2254.37000", + "end": "2254.43000", + "feature": { + "word": "and" + }, + "id": 6650, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2254.43000", + "end": "2254.46000", + "feature": { + "word": "i" + }, + "id": 6651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2254.46000", + "end": "2254.64000", + "feature": { + "word": "think" + }, + "id": 6652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2254.64000", + "end": "2254.71000", + "feature": { + "word": "he" + }, + "id": 6653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2254.71000", + "end": "2255.04000", + "feature": { + "word": "did" + }, + "id": 6654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2255.18000", + "end": "2255.32000", + "feature": { + "word": "that" + }, + "id": 6656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2255.32000", + "end": "2255.68000", + "feature": { + "word": "senator" + }, + "id": 6657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2255.68000", + "end": "2256.05000", + "feature": { + "word": "mitchell" + }, + "id": 6658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2256.05000", + "end": "2256.42000", + "feature": { + "word": "speaking" + }, + "id": 6659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2256.42000", + "end": "2256.52000", + "feature": { + "word": "of" + }, + "id": 6660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2256.52000", + "end": "2256.92000", + "feature": { + "word": "general" + }, + "id": 6661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2256.92000", + "end": "2257.69000", + "feature": { + "word": "secord" + }, + "id": 6662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2257.69000", + "end": "2258.30000", + "feature": { + "word": "it" + }, + "id": 6663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2258.30000", + "end": "2258.41000", + "feature": { + "word": "s" + }, + "id": 6664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2258.41000", + "end": "2259.14000", + "feature": { + "word": "reported" + }, + "id": 6665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2259.17000", + "end": "2259.90000", + "feature": { + "word": "that" + }, + "id": 6667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2259.90000", + "end": "2260.26000", + "feature": { + "word": "he" + }, + "id": 6668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2260.26000", + "end": "2260.78000", + "feature": { + "word": "has" + }, + "id": 6669, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2260.93000", + "end": "2261.34000", + "feature": { + "word": "appealed" + }, + "id": 6671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2261.34000", + "end": "2261.44000", + "feature": { + "word": "to" + }, + "id": 6672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2261.44000", + "end": "2261.69000", + "feature": { + "word": "the" + }, + "id": 6673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2261.69000", + "end": "2261.98000", + "feature": { + "word": "swiss" + }, + "id": 6674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2261.98000", + "end": "2262.45000", + "feature": { + "word": "supreme" + }, + "id": 6675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2262.45000", + "end": "2262.84000", + "feature": { + "word": "court" + }, + "id": 6676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2262.84000", + "end": "2262.93000", + "feature": { + "word": "to" + }, + "id": 6677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2262.93000", + "end": "2263.39000", + "feature": { + "word": "block" + }, + "id": 6678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2263.39000", + "end": "2263.64000", + "feature": { + "word": "your" + }, + "id": 6679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2263.64000", + "end": "2264.06000", + "feature": { + "word": "committee" + }, + "id": 6680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2264.06000", + "end": "2264.16000", + "feature": { + "word": "s" + }, + "id": 6681, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2264.16000", + "end": "2264.71000", + "feature": { + "word": "access" + }, + "id": 6682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2264.71000", + "end": "2264.84000", + "feature": { + "word": "to" + }, + "id": 6683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2264.84000", + "end": "2264.94000", + "feature": { + "word": "the" + }, + "id": 6684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2264.94000", + "end": "2265.51000", + "feature": { + "word": "records" + }, + "id": 6685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2265.51000", + "end": "2265.88000", + "feature": { + "word": "which" + }, + "id": 6686, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2265.88000", + "end": "2266.03000", + "feature": { + "word": "in" + }, + "id": 6687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2266.03000", + "end": "2266.52000", + "feature": { + "word": "testimony" + }, + "id": 6688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2266.52000", + "end": "2266.98000", + "feature": { + "word": "last" + }, + "id": 6689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2266.98000", + "end": "2267.46000", + "feature": { + "word": "week" + }, + "id": 6690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2267.46000", + "end": "2267.64000", + "feature": { + "word": "he" + }, + "id": 6691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2267.64000", + "end": "2268.33000", + "feature": { + "word": "indicated" + }, + "id": 6692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2268.33000", + "end": "2268.49000", + "feature": { + "word": "he" + }, + "id": 6693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2268.49000", + "end": "2268.54000", + "feature": { + "word": "" + }, + "id": 6694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2268.54000", + "end": "2268.88000", + "feature": { + "word": "be" + }, + "id": 6695, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2269.06000", + "end": "2269.43000", + "feature": { + "word": "willing" + }, + "id": 6697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2269.43000", + "end": "2269.53000", + "feature": { + "word": "to" + }, + "id": 6698, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2269.53000", + "end": "2269.73000", + "feature": { + "word": "give" + }, + "id": 6699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2269.73000", + "end": "2270.22000", + "feature": { + "word": "access" + }, + "id": 6700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2270.22000", + "end": "2270.63000", + "feature": { + "word": "to" + }, + "id": 6701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2271.01000", + "end": "2271.81000", + "feature": { + "word": "what" + }, + "id": 6703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2271.81000", + "end": "2272.45000", + "feature": { + "word": "conclusions" + }, + "id": 6704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2272.45000", + "end": "2272.53000", + "feature": { + "word": "do" + }, + "id": 6705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2272.53000", + "end": "2272.66000", + "feature": { + "word": "you" + }, + "id": 6706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2272.66000", + "end": "2272.95000", + "feature": { + "word": "draw" + }, + "id": 6707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2272.95000", + "end": "2273.18000", + "feature": { + "word": "from" + }, + "id": 6708, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2273.18000", + "end": "2273.43000", + "feature": { + "word": "that" + }, + "id": 6709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2273.43000", + "end": "2273.54000", + "feature": { + "word": "and" + }, + "id": 6710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2273.54000", + "end": "2273.68000", + "feature": { + "word": "what" + }, + "id": 6711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2273.68000", + "end": "2273.86000", + "feature": { + "word": "does" + }, + "id": 6712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2273.86000", + "end": "2274.00000", + "feature": { + "word": "it" + }, + "id": 6713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2274.00000", + "end": "2274.13000", + "feature": { + "word": "say" + }, + "id": 6714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2274.13000", + "end": "2274.36000", + "feature": { + "word": "about" + }, + "id": 6715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2274.36000", + "end": "2274.50000", + "feature": { + "word": "his" + }, + "id": 6716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2274.50000", + "end": "2275.02000", + "feature": { + "word": "credibility" + }, + "id": 6717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2275.02000", + "end": "2275.21000", + "feature": { + "word": "as" + }, + "id": 6718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2275.21000", + "end": "2275.25000", + "feature": { + "word": "a" + }, + "id": 6719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2275.25000", + "end": "2275.70000", + "feature": { + "word": "witness" + }, + "id": 6720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2275.87000", + "end": "2275.96000", + "feature": { + "word": "sen" + }, + "id": 6722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2275.99000", + "end": "2276.11000", + "feature": { + "word": "well" + }, + "id": 6724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2276.11000", + "end": "2276.23000", + "feature": { + "word": "the" + }, + "id": 6725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2276.23000", + "end": "2276.75000", + "feature": { + "word": "conclusion" + }, + "id": 6726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2276.75000", + "end": "2276.91000", + "feature": { + "word": "that" + }, + "id": 6727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2276.91000", + "end": "2277.05000", + "feature": { + "word": "i" + }, + "id": 6728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2277.05000", + "end": "2277.37000", + "feature": { + "word": "draw" + }, + "id": 6729, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2277.37000", + "end": "2277.51000", + "feature": { + "word": "is" + }, + "id": 6730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2277.51000", + "end": "2277.71000", + "feature": { + "word": "that" + }, + "id": 6731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2277.71000", + "end": "2278.01000", + "feature": { + "word": "general" + }, + "id": 6732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2278.01000", + "end": "2278.52000", + "feature": { + "word": "secord" + }, + "id": 6733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2278.52000", + "end": "2278.65000", + "feature": { + "word": "is" + }, + "id": 6734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2278.65000", + "end": "2278.89000", + "feature": { + "word": "more" + }, + "id": 6735, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2278.89000", + "end": "2279.48000", + "feature": { + "word": "concerned" + }, + "id": 6736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2279.48000", + "end": "2279.61000", + "feature": { + "word": "with" + }, + "id": 6737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2279.61000", + "end": "2279.68000", + "feature": { + "word": "the" + }, + "id": 6738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2279.68000", + "end": "2280.44000", + "feature": { + "word": "possibility" + }, + "id": 6739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2280.44000", + "end": "2280.53000", + "feature": { + "word": "of" + }, + "id": 6740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2280.53000", + "end": "2280.64000", + "feature": { + "word": "a" + }, + "id": 6741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2280.64000", + "end": "2281.07000", + "feature": { + "word": "criminal" + }, + "id": 6742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2281.07000", + "end": "2281.83000", + "feature": { + "word": "prosecution" + }, + "id": 6743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2281.83000", + "end": "2281.97000", + "feature": { + "word": "by" + }, + "id": 6744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2281.97000", + "end": "2282.09000", + "feature": { + "word": "the" + }, + "id": 6745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2282.09000", + "end": "2282.46000", + "feature": { + "word": "special" + }, + "id": 6746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2282.46000", + "end": "2283.15000", + "feature": { + "word": "prosecutor" + }, + "id": 6747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2283.69000", + "end": "2283.82000", + "feature": { + "word": "and" + }, + "id": 6749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2283.82000", + "end": "2283.96000", + "feature": { + "word": "he" + }, + "id": 6750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2283.96000", + "end": "2284.15000", + "feature": { + "word": "will" + }, + "id": 6751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2284.15000", + "end": "2284.53000", + "feature": { + "word": "use" + }, + "id": 6752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2284.57000", + "end": "2285.15000", + "feature": { + "word": "access" + }, + "id": 6754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2285.15000", + "end": "2285.27000", + "feature": { + "word": "to" + }, + "id": 6755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2285.27000", + "end": "2285.62000", + "feature": { + "word": "those" + }, + "id": 6756, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2285.62000", + "end": "2286.19000", + "feature": { + "word": "records" + }, + "id": 6757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2286.23000", + "end": "2286.59000", + "feature": { + "word": "as" + }, + "id": 6759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2286.64000", + "end": "2287.28000", + "feature": { + "word": "leverage" + }, + "id": 6761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2287.28000", + "end": "2287.46000", + "feature": { + "word": "in" + }, + "id": 6762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2287.46000", + "end": "2288.05000", + "feature": { + "word": "bargaining" + }, + "id": 6763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2288.05000", + "end": "2288.24000", + "feature": { + "word": "with" + }, + "id": 6764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2288.24000", + "end": "2288.33000", + "feature": { + "word": "the" + }, + "id": 6765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2288.33000", + "end": "2288.71000", + "feature": { + "word": "special" + }, + "id": 6766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2288.71000", + "end": "2289.38000", + "feature": { + "word": "prosecutor" + }, + "id": 6767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2289.70000", + "end": "2289.95000", + "feature": { + "word": "over" + }, + "id": 6769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2289.95000", + "end": "2290.20000", + "feature": { + "word": "what" + }, + "id": 6770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2290.20000", + "end": "2290.40000", + "feature": { + "word": "may" + }, + "id": 6771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2290.40000", + "end": "2290.88000", + "feature": { + "word": "result" + }, + "id": 6772, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2290.88000", + "end": "2291.13000", + "feature": { + "word": "there" + }, + "id": 6773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2292.02000", + "end": "2292.40000", + "feature": { + "word": "he" + }, + "id": 6775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2292.43000", + "end": "2293.25000", + "feature": { + "word": "didn't" + }, + "id": 6777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2293.25000", + "end": "2293.48000", + "feature": { + "word": "come" + }, + "id": 6778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2293.48000", + "end": "2293.68000", + "feature": { + "word": "right" + }, + "id": 6779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2293.68000", + "end": "2293.83000", + "feature": { + "word": "out" + }, + "id": 6780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2293.83000", + "end": "2293.90000", + "feature": { + "word": "and" + }, + "id": 6781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2293.90000", + "end": "2294.13000", + "feature": { + "word": "say" + }, + "id": 6782, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2294.13000", + "end": "2294.43000", + "feature": { + "word": "before" + }, + "id": 6783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2294.43000", + "end": "2294.55000", + "feature": { + "word": "our" + }, + "id": 6784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2294.62000", + "end": "2294.86000", + "feature": { + "word": "committee" + }, + "id": 6786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2294.86000", + "end": "2295.09000", + "feature": { + "word": "that" + }, + "id": 6787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2295.09000", + "end": "2295.23000", + "feature": { + "word": "he" + }, + "id": 6788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2295.23000", + "end": "2295.45000", + "feature": { + "word": "would" + }, + "id": 6789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2295.87000", + "end": "2296.18000", + "feature": { + "word": "make" + }, + "id": 6791, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2296.18000", + "end": "2296.31000", + "feature": { + "word": "it" + }, + "id": 6792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2296.34000", + "end": "2296.89000", + "feature": { + "word": "available" + }, + "id": 6794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2296.89000", + "end": "2297.26000", + "feature": { + "word": "he" + }, + "id": 6795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2297.33000", + "end": "2297.69000", + "feature": { + "word": "hinted" + }, + "id": 6797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2297.69000", + "end": "2297.86000", + "feature": { + "word": "at" + }, + "id": 6798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2297.86000", + "end": "2298.12000", + "feature": { + "word": "that" + }, + "id": 6799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2298.32000", + "end": "2299.01000", + "feature": { + "word": "indicated" + }, + "id": 6801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2299.04000", + "end": "2299.07000", + "feature": { + "word": "" + }, + "id": 6803, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2299.25000", + "end": "2299.61000", + "feature": { + "word": "certainly" + }, + "id": 6805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2299.61000", + "end": "2300.04000", + "feature": { + "word": "implied" + }, + "id": 6806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2300.04000", + "end": "2300.07000", + "feature": { + "word": "" + }, + "id": 6807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2300.07000", + "end": "2300.20000", + "feature": { + "word": "that" + }, + "id": 6808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2300.20000", + "end": "2300.28000", + "feature": { + "word": "he" + }, + "id": 6809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2300.28000", + "end": "2300.49000", + "feature": { + "word": "would" + }, + "id": 6810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2300.49000", + "end": "2300.69000", + "feature": { + "word": "but" + }, + "id": 6811, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2300.69000", + "end": "2300.91000", + "feature": { + "word": "never" + }, + "id": 6812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2300.91000", + "end": "2301.20000", + "feature": { + "word": "came" + }, + "id": 6813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2301.20000", + "end": "2301.42000", + "feature": { + "word": "right" + }, + "id": 6814, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2301.42000", + "end": "2301.56000", + "feature": { + "word": "out" + }, + "id": 6815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2301.63000", + "end": "2301.96000", + "feature": { + "word": "and" + }, + "id": 6817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2301.99000", + "end": "2302.32000", + "feature": { + "word": "said" + }, + "id": 6819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2302.61000", + "end": "2302.75000", + "feature": { + "word": "it" + }, + "id": 6821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2303.78000", + "end": "2304.09000", + "feature": { + "word": "let" + }, + "id": 6823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2304.09000", + "end": "2304.19000", + "feature": { + "word": "me" + }, + "id": 6824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2304.19000", + "end": "2304.39000", + "feature": { + "word": "ask" + }, + "id": 6825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2304.39000", + "end": "2304.48000", + "feature": { + "word": "you" + }, + "id": 6826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2304.48000", + "end": "2304.74000", + "feature": { + "word": "both" + }, + "id": 6827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2304.74000", + "end": "2305.02000", + "feature": { + "word": "about" + }, + "id": 6828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2305.02000", + "end": "2305.46000", + "feature": { + "word": "adolfo" + }, + "id": 6829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2305.46000", + "end": "2306.13000", + "feature": { + "word": "calero" + }, + "id": 6830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2306.13000", + "end": "2306.60000", + "feature": { + "word": "the" + }, + "id": 6831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2306.63000", + "end": "2306.92000", + "feature": { + "word": "former" + }, + "id": 6833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2306.92000", + "end": "2307.33000", + "feature": { + "word": "contra" + }, + "id": 6834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2307.33000", + "end": "2307.61000", + "feature": { + "word": "leader" + }, + "id": 6835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2307.61000", + "end": "2307.78000", + "feature": { + "word": "who" + }, + "id": 6836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2307.78000", + "end": "2308.48000", + "feature": { + "word": "testified" + }, + "id": 6837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2308.48000", + "end": "2309.54000", + "feature": { + "word": "yesterday" + }, + "id": 6838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2309.60000", + "end": "2310.39000", + "feature": { + "word": "congressman" + }, + "id": 6840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2310.39000", + "end": "2310.82000", + "feature": { + "word": "courter" + }, + "id": 6841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2311.35000", + "end": "2311.47000", + "feature": { + "word": "how" + }, + "id": 6843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2311.47000", + "end": "2311.89000", + "feature": { + "word": "credible" + }, + "id": 6844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2311.89000", + "end": "2312.04000", + "feature": { + "word": "did" + }, + "id": 6845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2312.04000", + "end": "2312.15000", + "feature": { + "word": "you" + }, + "id": 6846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2312.15000", + "end": "2312.47000", + "feature": { + "word": "find" + }, + "id": 6847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2312.47000", + "end": "2312.76000", + "feature": { + "word": "him" + }, + "id": 6848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2312.79000", + "end": "2312.88000", + "feature": { + "word": "rep" + }, + "id": 6850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2313.35000", + "end": "2313.55000", + "feature": { + "word": "i" + }, + "id": 6852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2313.55000", + "end": "2313.86000", + "feature": { + "word": "found" + }, + "id": 6853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2313.86000", + "end": "2313.98000", + "feature": { + "word": "him" + }, + "id": 6854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2313.98000", + "end": "2314.54000", + "feature": { + "word": "absolutely" + }, + "id": 6855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2314.54000", + "end": "2315.09000", + "feature": { + "word": "credible" + }, + "id": 6856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2315.09000", + "end": "2315.28000", + "feature": { + "word": "he" + }, + "id": 6857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2315.28000", + "end": "2315.39000", + "feature": { + "word": "s" + }, + "id": 6858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2315.39000", + "end": "2315.57000", + "feature": { + "word": "an" + }, + "id": 6859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2315.57000", + "end": "2316.12000", + "feature": { + "word": "individual" + }, + "id": 6860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2316.12000", + "end": "2316.25000", + "feature": { + "word": "who" + }, + "id": 6861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2316.25000", + "end": "2316.60000", + "feature": { + "word": "believes" + }, + "id": 6862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2316.60000", + "end": "2317.05000", + "feature": { + "word": "deeply" + }, + "id": 6863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2317.05000", + "end": "2317.17000", + "feature": { + "word": "in" + }, + "id": 6864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2317.17000", + "end": "2317.25000", + "feature": { + "word": "the" + }, + "id": 6865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2317.25000", + "end": "2317.60000", + "feature": { + "word": "contra" + }, + "id": 6866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2317.60000", + "end": "2318.14000", + "feature": { + "word": "movement" + }, + "id": 6867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2318.14000", + "end": "2318.34000", + "feature": { + "word": "in" + }, + "id": 6868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2318.40000", + "end": "2319.14000", + "feature": { + "word": "the" + }, + "id": 6870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2319.17000", + "end": "2319.71000", + "feature": { + "word": "democratic" + }, + "id": 6872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2319.71000", + "end": "2320.28000", + "feature": { + "word": "resistance" + }, + "id": 6873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2320.70000", + "end": "2320.83000", + "feature": { + "word": "it" + }, + "id": 6875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2320.83000", + "end": "2320.88000", + "feature": { + "word": "s" + }, + "id": 6876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2320.88000", + "end": "2321.29000", + "feature": { + "word": "important" + }, + "id": 6877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2321.29000", + "end": "2321.35000", + "feature": { + "word": "to" + }, + "id": 6878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2321.35000", + "end": "2321.62000", + "feature": { + "word": "keep" + }, + "id": 6879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2321.62000", + "end": "2321.73000", + "feature": { + "word": "in" + }, + "id": 6880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2321.73000", + "end": "2322.06000", + "feature": { + "word": "mind" + }, + "id": 6881, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2322.06000", + "end": "2322.18000", + "feature": { + "word": "that" + }, + "id": 6882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2322.18000", + "end": "2322.36000", + "feature": { + "word": "he" + }, + "id": 6883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2322.36000", + "end": "2322.55000", + "feature": { + "word": "was" + }, + "id": 6884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2322.55000", + "end": "2322.75000", + "feature": { + "word": "one" + }, + "id": 6885, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2322.75000", + "end": "2322.86000", + "feature": { + "word": "of" + }, + "id": 6886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2322.86000", + "end": "2323.14000", + "feature": { + "word": "those" + }, + "id": 6887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2323.14000", + "end": "2323.29000", + "feature": { + "word": "who" + }, + "id": 6888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2323.29000", + "end": "2323.53000", + "feature": { + "word": "was" + }, + "id": 6889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2323.53000", + "end": "2323.99000", + "feature": { + "word": "jailed" + }, + "id": 6890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2323.99000", + "end": "2324.12000", + "feature": { + "word": "by" + }, + "id": 6891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2324.12000", + "end": "2324.77000", + "feature": { + "word": "" + }, + "id": 6892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2324.77000", + "end": "2324.97000", + "feature": { + "word": "so" + }, + "id": 6893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2324.97000", + "end": "2325.16000", + "feature": { + "word": "there" + }, + "id": 6894, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2325.16000", + "end": "2325.25000", + "feature": { + "word": "s" + }, + "id": 6895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2325.58000", + "end": "2325.95000", + "feature": { + "word": "added" + }, + "id": 6897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2325.95000", + "end": "2326.69000", + "feature": { + "word": "credibility" + }, + "id": 6898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2326.69000", + "end": "2326.81000", + "feature": { + "word": "to" + }, + "id": 6899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2326.81000", + "end": "2326.92000", + "feature": { + "word": "the" + }, + "id": 6900, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2326.92000", + "end": "2327.25000", + "feature": { + "word": "fact" + }, + "id": 6901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2327.25000", + "end": "2327.38000", + "feature": { + "word": "that" + }, + "id": 6902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2327.38000", + "end": "2327.60000", + "feature": { + "word": "now" + }, + "id": 6903, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2327.60000", + "end": "2327.74000", + "feature": { + "word": "he" + }, + "id": 6904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2327.74000", + "end": "2327.81000", + "feature": { + "word": "s" + }, + "id": 6905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2327.81000", + "end": "2328.16000", + "feature": { + "word": "fighting" + }, + "id": 6906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2328.16000", + "end": "2328.26000", + "feature": { + "word": "the" + }, + "id": 6907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2328.26000", + "end": "2329.02000", + "feature": { + "word": "sandinistas" + }, + "id": 6908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2329.39000", + "end": "2329.75000", + "feature": { + "word": "i" + }, + "id": 6910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2329.75000", + "end": "2329.97000", + "feature": { + "word": "think" + }, + "id": 6911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2329.97000", + "end": "2330.27000", + "feature": { + "word": "his" + }, + "id": 6912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2330.41000", + "end": "2330.95000", + "feature": { + "word": "testimony" + }, + "id": 6914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2330.95000", + "end": "2331.08000", + "feature": { + "word": "was" + }, + "id": 6915, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2331.08000", + "end": "2331.28000", + "feature": { + "word": "quite" + }, + "id": 6916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2331.28000", + "end": "2331.67000", + "feature": { + "word": "credible" + }, + "id": 6917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2331.70000", + "end": "2331.77000", + "feature": { + "word": "do" + }, + "id": 6919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2331.77000", + "end": "2331.84000", + "feature": { + "word": "you" + }, + "id": 6920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2331.84000", + "end": "2332.07000", + "feature": { + "word": "agree" + }, + "id": 6921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2332.07000", + "end": "2332.16000", + "feature": { + "word": "with" + }, + "id": 6922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2332.16000", + "end": "2332.34000", + "feature": { + "word": "that" + }, + "id": 6923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2332.34000", + "end": "2332.54000", + "feature": { + "word": "senator" + }, + "id": 6924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2332.54000", + "end": "2332.66000", + "feature": { + "word": "sen" + }, + "id": 6925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2332.73000", + "end": "2333.01000", + "feature": { + "word": "yes" + }, + "id": 6927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2333.01000", + "end": "2333.08000", + "feature": { + "word": "i" + }, + "id": 6928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2333.08000", + "end": "2333.38000", + "feature": { + "word": "do" + }, + "id": 6929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2333.41000", + "end": "2333.55000", + "feature": { + "word": "i" + }, + "id": 6931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2333.55000", + "end": "2333.75000", + "feature": { + "word": "think" + }, + "id": 6932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2333.75000", + "end": "2333.84000", + "feature": { + "word": "he" + }, + "id": 6933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2333.84000", + "end": "2334.05000", + "feature": { + "word": "was" + }, + "id": 6934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2334.05000", + "end": "2334.11000", + "feature": { + "word": "a" + }, + "id": 6935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2334.11000", + "end": "2334.51000", + "feature": { + "word": "credible" + }, + "id": 6936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2334.51000", + "end": "2334.91000", + "feature": { + "word": "witness" + }, + "id": 6937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2334.91000", + "end": "2335.00000", + "feature": { + "word": "and" + }, + "id": 6938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2335.00000", + "end": "2335.10000", + "feature": { + "word": "i" + }, + "id": 6939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2335.10000", + "end": "2335.30000", + "feature": { + "word": "think" + }, + "id": 6940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2335.30000", + "end": "2335.40000", + "feature": { + "word": "he" + }, + "id": 6941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2335.40000", + "end": "2335.61000", + "feature": { + "word": "was" + }, + "id": 6942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2335.61000", + "end": "2335.66000", + "feature": { + "word": "a" + }, + "id": 6943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2335.66000", + "end": "2336.46000", + "feature": { + "word": "" + }, + "id": 6944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2336.70000", + "end": "2337.21000", + "feature": { + "word": "advocate" + }, + "id": 6946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2337.21000", + "end": "2337.44000", + "feature": { + "word": "for" + }, + "id": 6947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2337.44000", + "end": "2337.62000", + "feature": { + "word": "his" + }, + "id": 6948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2337.62000", + "end": "2338.17000", + "feature": { + "word": "position" + }, + "id": 6949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2338.83000", + "end": "2339.10000", + "feature": { + "word": "what" + }, + "id": 6951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2339.10000", + "end": "2339.16000", + "feature": { + "word": "do" + }, + "id": 6952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2339.16000", + "end": "2339.30000", + "feature": { + "word": "you" + }, + "id": 6953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2339.30000", + "end": "2339.62000", + "feature": { + "word": "both" + }, + "id": 6954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2339.62000", + "end": "2339.91000", + "feature": { + "word": "make" + }, + "id": 6955, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2339.91000", + "end": "2340.03000", + "feature": { + "word": "of" + }, + "id": 6956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2340.03000", + "end": "2340.22000", + "feature": { + "word": "all" + }, + "id": 6957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2340.22000", + "end": "2340.28000", + "feature": { + "word": "the" + }, + "id": 6958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2340.28000", + "end": "2340.86000", + "feature": { + "word": "testimony" + }, + "id": 6959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2340.86000", + "end": "2341.05000", + "feature": { + "word": "we've" + }, + "id": 6960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2341.05000", + "end": "2341.29000", + "feature": { + "word": "heard" + }, + "id": 6961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2341.29000", + "end": "2341.49000", + "feature": { + "word": "this" + }, + "id": 6962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2341.49000", + "end": "2341.68000", + "feature": { + "word": "week" + }, + "id": 6963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2341.71000", + "end": "2341.74000", + "feature": { + "word": "" + }, + "id": 6965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2341.74000", + "end": "2342.23000", + "feature": { + "word": "principally" + }, + "id": 6966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2342.23000", + "end": "2342.47000", + "feature": { + "word": "from" + }, + "id": 6967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2342.47000", + "end": "2342.88000", + "feature": { + "word": "robert" + }, + "id": 6968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2342.91000", + "end": "2343.40000", + "feature": { + "word": "owen" + }, + "id": 6970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2343.43000", + "end": "2343.91000", + "feature": { + "word": "about" + }, + "id": 6972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2343.91000", + "end": "2344.10000", + "feature": { + "word": "the" + }, + "id": 6973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2344.10000", + "end": "2344.75000", + "feature": { + "word": "resort" + }, + "id": 6974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2344.75000", + "end": "2344.93000", + "feature": { + "word": "to" + }, + "id": 6975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2344.96000", + "end": "2345.45000", + "feature": { + "word": "" + }, + "id": 6977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2345.45000", + "end": "2345.55000", + "feature": { + "word": "s" + }, + "id": 6978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2345.55000", + "end": "2346.04000", + "feature": { + "word": "checks" + }, + "id": 6979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2346.04000", + "end": "2346.28000", + "feature": { + "word": "and" + }, + "id": 6980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2346.66000", + "end": "2346.76000", + "feature": { + "word": "the" + }, + "id": 6982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2346.76000", + "end": "2347.06000", + "feature": { + "word": "fact" + }, + "id": 6983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2347.06000", + "end": "2347.22000", + "feature": { + "word": "that" + }, + "id": 6984, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2347.22000", + "end": "2347.43000", + "feature": { + "word": "many" + }, + "id": 6985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2347.43000", + "end": "2347.50000", + "feature": { + "word": "of" + }, + "id": 6986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2347.50000", + "end": "2347.63000", + "feature": { + "word": "them" + }, + "id": 6987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2347.63000", + "end": "2347.74000", + "feature": { + "word": "were" + }, + "id": 6988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2347.74000", + "end": "2348.10000", + "feature": { + "word": "cashed" + }, + "id": 6989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2348.10000", + "end": "2348.21000", + "feature": { + "word": "by" + }, + "id": 6990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2348.21000", + "end": "2348.63000", + "feature": { + "word": "" + }, + "id": 6991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2348.63000", + "end": "2349.03000", + "feature": { + "word": "north" + }, + "id": 6992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2349.32000", + "end": "2349.74000", + "feature": { + "word": "and" + }, + "id": 6994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2349.74000", + "end": "2350.02000", + "feature": { + "word": "some" + }, + "id": 6995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2350.02000", + "end": "2350.46000", + "feature": { + "word": "parts" + }, + "id": 6996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2350.46000", + "end": "2350.59000", + "feature": { + "word": "of" + }, + "id": 6997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2350.59000", + "end": "2350.79000", + "feature": { + "word": "them" + }, + "id": 6998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2350.79000", + "end": "2350.97000", + "feature": { + "word": "were" + }, + "id": 6999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2350.97000", + "end": "2351.35000", + "feature": { + "word": "used" + }, + "id": 7000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2351.35000", + "end": "2351.43000", + "feature": { + "word": "to" + }, + "id": 7001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2351.43000", + "end": "2351.89000", + "feature": { + "word": "purchase" + }, + "id": 7002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2351.89000", + "end": "2352.05000", + "feature": { + "word": "for" + }, + "id": 7003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2352.05000", + "end": "2352.49000", + "feature": { + "word": "example" + }, + "id": 7004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2352.49000", + "end": "2352.82000", + "feature": { + "word": "things" + }, + "id": 7005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2352.82000", + "end": "2353.06000", + "feature": { + "word": "like" + }, + "id": 7006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2353.06000", + "end": "2353.40000", + "feature": { + "word": "snow" + }, + "id": 7007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2353.40000", + "end": "2353.96000", + "feature": { + "word": "tires" + }, + "id": 7008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2353.96000", + "end": "2354.22000", + "feature": { + "word": "what" + }, + "id": 7009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2354.22000", + "end": "2355.89000", + "feature": { + "word": "direction" + }, + "id": 7010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2355.89000", + "end": "2356.07000", + "feature": { + "word": "does" + }, + "id": 7011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2356.07000", + "end": "2356.30000", + "feature": { + "word": "that" + }, + "id": 7012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2356.30000", + "end": "2356.65000", + "feature": { + "word": "lead" + }, + "id": 7013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2356.65000", + "end": "2356.89000", + "feature": { + "word": "your" + }, + "id": 7014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2356.89000", + "end": "2357.33000", + "feature": { + "word": "thinking" + }, + "id": 7015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2357.33000", + "end": "2357.68000", + "feature": { + "word": "senator" + }, + "id": 7016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2357.68000", + "end": "2358.00000", + "feature": { + "word": "mitchell" + }, + "id": 7017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2358.35000", + "end": "2358.44000", + "feature": { + "word": "sen" + }, + "id": 7019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2358.47000", + "end": "2358.87000", + "feature": { + "word": "well" + }, + "id": 7021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2358.90000", + "end": "2359.05000", + "feature": { + "word": "i" + }, + "id": 7023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2359.05000", + "end": "2359.28000", + "feature": { + "word": "think" + }, + "id": 7024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2359.28000", + "end": "2359.34000", + "feature": { + "word": "you" + }, + "id": 7025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2359.34000", + "end": "2359.56000", + "feature": { + "word": "have" + }, + "id": 7026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2359.56000", + "end": "2359.63000", + "feature": { + "word": "to" + }, + "id": 7027, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2359.63000", + "end": "2360.00000", + "feature": { + "word": "reserve" + }, + "id": 7028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2360.00000", + "end": "2360.42000", + "feature": { + "word": "judgment" + }, + "id": 7029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2360.42000", + "end": "2360.56000", + "feature": { + "word": "on" + }, + "id": 7030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2360.56000", + "end": "2360.75000", + "feature": { + "word": "that" + }, + "id": 7031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2360.75000", + "end": "2361.05000", + "feature": { + "word": "until" + }, + "id": 7032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2361.05000", + "end": "2361.16000", + "feature": { + "word": "we" + }, + "id": 7033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2361.16000", + "end": "2361.35000", + "feature": { + "word": "hear" + }, + "id": 7034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2361.35000", + "end": "2361.51000", + "feature": { + "word": "from" + }, + "id": 7035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2361.54000", + "end": "2361.79000", + "feature": { + "word": "" + }, + "id": 7037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2361.79000", + "end": "2362.15000", + "feature": { + "word": "north" + }, + "id": 7038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2362.15000", + "end": "2362.27000", + "feature": { + "word": "or" + }, + "id": 7039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2362.27000", + "end": "2362.62000", + "feature": { + "word": "obtain" + }, + "id": 7040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2362.62000", + "end": "2362.67000", + "feature": { + "word": "a" + }, + "id": 7041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2362.67000", + "end": "2362.93000", + "feature": { + "word": "full" + }, + "id": 7042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2362.93000", + "end": "2363.60000", + "feature": { + "word": "explanation" + }, + "id": 7043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2363.60000", + "end": "2363.74000", + "feature": { + "word": "it" + }, + "id": 7044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2363.74000", + "end": "2364.21000", + "feature": { + "word": "obviously" + }, + "id": 7045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2364.21000", + "end": "2364.67000", + "feature": { + "word": "creates" + }, + "id": 7046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2364.67000", + "end": "2364.76000", + "feature": { + "word": "the" + }, + "id": 7047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2364.76000", + "end": "2365.56000", + "feature": { + "word": "implication" + }, + "id": 7048, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2365.98000", + "end": "2366.11000", + "feature": { + "word": "that" + }, + "id": 7050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2366.11000", + "end": "2366.18000", + "feature": { + "word": "he" + }, + "id": 7051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2366.18000", + "end": "2366.75000", + "feature": { + "word": "converted" + }, + "id": 7052, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2366.75000", + "end": "2366.97000", + "feature": { + "word": "some" + }, + "id": 7053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2366.97000", + "end": "2367.08000", + "feature": { + "word": "of" + }, + "id": 7054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2367.08000", + "end": "2367.29000", + "feature": { + "word": "this" + }, + "id": 7055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2367.29000", + "end": "2367.51000", + "feature": { + "word": "money" + }, + "id": 7056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2367.51000", + "end": "2367.63000", + "feature": { + "word": "for" + }, + "id": 7057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2367.63000", + "end": "2367.78000", + "feature": { + "word": "his" + }, + "id": 7058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2367.78000", + "end": "2367.94000", + "feature": { + "word": "own" + }, + "id": 7059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2367.94000", + "end": "2368.45000", + "feature": { + "word": "personal" + }, + "id": 7060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2368.45000", + "end": "2368.80000", + "feature": { + "word": "use" + }, + "id": 7061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2369.34000", + "end": "2369.59000", + "feature": { + "word": "but" + }, + "id": 7063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2369.59000", + "end": "2369.68000", + "feature": { + "word": "i" + }, + "id": 7064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2369.68000", + "end": "2369.90000", + "feature": { + "word": "don't" + }, + "id": 7065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2369.90000", + "end": "2370.30000", + "feature": { + "word": "think" + }, + "id": 7066, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2370.30000", + "end": "2370.49000", + "feature": { + "word": "that" + }, + "id": 7067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2370.53000", + "end": "2370.85000", + "feature": { + "word": "you" + }, + "id": 7069, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2370.85000", + "end": "2371.01000", + "feature": { + "word": "can" + }, + "id": 7070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2371.01000", + "end": "2371.20000", + "feature": { + "word": "make" + }, + "id": 7071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2371.20000", + "end": "2371.23000", + "feature": { + "word": "a" + }, + "id": 7072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2371.26000", + "end": "2371.58000", + "feature": { + "word": "final" + }, + "id": 7074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2371.58000", + "end": "2372.05000", + "feature": { + "word": "judgment" + }, + "id": 7075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2372.05000", + "end": "2372.21000", + "feature": { + "word": "on" + }, + "id": 7076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2372.21000", + "end": "2372.41000", + "feature": { + "word": "that" + }, + "id": 7077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2372.41000", + "end": "2372.71000", + "feature": { + "word": "until" + }, + "id": 7078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2372.71000", + "end": "2372.84000", + "feature": { + "word": "you" + }, + "id": 7079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2372.87000", + "end": "2373.01000", + "feature": { + "word": "hear" + }, + "id": 7081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2373.01000", + "end": "2373.20000", + "feature": { + "word": "from" + }, + "id": 7082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2373.20000", + "end": "2373.51000", + "feature": { + "word": "him" + }, + "id": 7083, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2374.01000", + "end": "2374.11000", + "feature": { + "word": "i" + }, + "id": 7085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2374.11000", + "end": "2374.32000", + "feature": { + "word": "think" + }, + "id": 7086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2374.32000", + "end": "2374.41000", + "feature": { + "word": "the" + }, + "id": 7087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2374.41000", + "end": "2375.35000", + "feature": { + "word": "significance" + }, + "id": 7088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2375.35000", + "end": "2375.67000", + "feature": { + "word": "of" + }, + "id": 7089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2375.73000", + "end": "2376.09000", + "feature": { + "word": "mr" + }, + "id": 7091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2376.09000", + "end": "2376.31000", + "feature": { + "word": "owen" + }, + "id": 7092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2376.31000", + "end": "2376.40000", + "feature": { + "word": "s" + }, + "id": 7093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2376.40000", + "end": "2377.34000", + "feature": { + "word": "testimony" + }, + "id": 7094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2377.34000", + "end": "2377.65000", + "feature": { + "word": "and" + }, + "id": 7095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2377.65000", + "end": "2378.10000", + "feature": { + "word": "also" + }, + "id": 7096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2378.10000", + "end": "2378.45000", + "feature": { + "word": "general" + }, + "id": 7097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2378.45000", + "end": "2379.05000", + "feature": { + "word": "singlaub" + }, + "id": 7098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2379.05000", + "end": "2379.10000", + "feature": { + "word": "s" + }, + "id": 7099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2379.55000", + "end": "2379.79000", + "feature": { + "word": "is" + }, + "id": 7101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2379.79000", + "end": "2379.99000", + "feature": { + "word": "that" + }, + "id": 7102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2379.99000", + "end": "2380.14000", + "feature": { + "word": "it" + }, + "id": 7103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2380.14000", + "end": "2381.01000", + "feature": { + "word": "confirms" + }, + "id": 7104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2381.01000", + "end": "2381.09000", + "feature": { + "word": "the" + }, + "id": 7105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2381.09000", + "end": "2381.51000", + "feature": { + "word": "extent" + }, + "id": 7106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2381.51000", + "end": "2381.62000", + "feature": { + "word": "to" + }, + "id": 7107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2381.62000", + "end": "2382.07000", + "feature": { + "word": "which" + }, + "id": 7108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2382.16000", + "end": "2382.42000", + "feature": { + "word": "high" + }, + "id": 7110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2382.42000", + "end": "2382.77000", + "feature": { + "word": "government" + }, + "id": 7111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2382.77000", + "end": "2383.29000", + "feature": { + "word": "officials" + }, + "id": 7112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2383.29000", + "end": "2383.42000", + "feature": { + "word": "were" + }, + "id": 7113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2383.42000", + "end": "2384.06000", + "feature": { + "word": "actively" + }, + "id": 7114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2384.06000", + "end": "2384.74000", + "feature": { + "word": "involved" + }, + "id": 7115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2384.77000", + "end": "2384.85000", + "feature": { + "word": "in" + }, + "id": 7117, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2384.85000", + "end": "2384.98000", + "feature": { + "word": "an" + }, + "id": 7118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2384.98000", + "end": "2385.23000", + "feature": { + "word": "effort" + }, + "id": 7119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2385.23000", + "end": "2385.30000", + "feature": { + "word": "to" + }, + "id": 7120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2385.30000", + "end": "2385.73000", + "feature": { + "word": "provide" + }, + "id": 7121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2385.73000", + "end": "2386.12000", + "feature": { + "word": "direct" + }, + "id": 7122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2386.12000", + "end": "2386.22000", + "feature": { + "word": "and" + }, + "id": 7123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2386.22000", + "end": "2386.61000", + "feature": { + "word": "indirect" + }, + "id": 7124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2386.61000", + "end": "2387.02000", + "feature": { + "word": "support" + }, + "id": 7125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2387.02000", + "end": "2387.09000", + "feature": { + "word": "to" + }, + "id": 7126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2387.60000", + "end": "2387.71000", + "feature": { + "word": "the" + }, + "id": 7128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2387.71000", + "end": "2388.23000", + "feature": { + "word": "contras" + }, + "id": 7129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2388.23000", + "end": "2388.37000", + "feature": { + "word": "at" + }, + "id": 7130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2388.37000", + "end": "2388.47000", + "feature": { + "word": "a" + }, + "id": 7131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2388.47000", + "end": "2389.03000", + "feature": { + "word": "time" + }, + "id": 7132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2389.44000", + "end": "2389.62000", + "feature": { + "word": "when" + }, + "id": 7134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2389.62000", + "end": "2389.83000", + "feature": { + "word": "that" + }, + "id": 7135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2389.83000", + "end": "2390.01000", + "feature": { + "word": "was" + }, + "id": 7136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2390.01000", + "end": "2390.57000", + "feature": { + "word": "prohibited" + }, + "id": 7137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2390.57000", + "end": "2390.74000", + "feature": { + "word": "by" + }, + "id": 7138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2390.74000", + "end": "2390.82000", + "feature": { + "word": "the" + }, + "id": 7139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2390.82000", + "end": "2391.18000", + "feature": { + "word": "boland" + }, + "id": 7140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2391.18000", + "end": "2391.61000", + "feature": { + "word": "amendment" + }, + "id": 7141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2391.72000", + "end": "2391.89000", + "feature": { + "word": "i" + }, + "id": 7143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2391.89000", + "end": "2392.17000", + "feature": { + "word": "agree" + }, + "id": 7144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2392.17000", + "end": "2392.48000", + "feature": { + "word": "with" + }, + "id": 7145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2392.58000", + "end": "2392.85000", + "feature": { + "word": "mr" + }, + "id": 7147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2392.85000", + "end": "2393.28000", + "feature": { + "word": "courter" + }, + "id": 7148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2393.57000", + "end": "2393.77000", + "feature": { + "word": "that" + }, + "id": 7150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2393.77000", + "end": "2393.92000", + "feature": { + "word": "that" + }, + "id": 7151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2393.92000", + "end": "2394.14000", + "feature": { + "word": "will" + }, + "id": 7152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2394.14000", + "end": "2394.80000", + "feature": { + "word": "ultimately" + }, + "id": 7153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2394.80000", + "end": "2395.05000", + "feature": { + "word": "have" + }, + "id": 7154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2395.05000", + "end": "2395.15000", + "feature": { + "word": "to" + }, + "id": 7155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2395.15000", + "end": "2395.29000", + "feature": { + "word": "be" + }, + "id": 7156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2395.29000", + "end": "2395.80000", + "feature": { + "word": "decided" + }, + "id": 7157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2395.80000", + "end": "2395.90000", + "feature": { + "word": "by" + }, + "id": 7158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2395.90000", + "end": "2396.02000", + "feature": { + "word": "a" + }, + "id": 7159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2396.02000", + "end": "2396.29000", + "feature": { + "word": "court" + }, + "id": 7160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2396.29000", + "end": "2396.40000", + "feature": { + "word": "of" + }, + "id": 7161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2396.40000", + "end": "2396.76000", + "feature": { + "word": "law" + }, + "id": 7162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2397.18000", + "end": "2397.34000", + "feature": { + "word": "there" + }, + "id": 7164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2397.34000", + "end": "2397.39000", + "feature": { + "word": "are" + }, + "id": 7165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2397.39000", + "end": "2397.79000", + "feature": { + "word": "valid" + }, + "id": 7166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2397.79000", + "end": "2398.14000", + "feature": { + "word": "legal" + }, + "id": 7167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2398.14000", + "end": "2398.67000", + "feature": { + "word": "arguments" + }, + "id": 7168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2398.71000", + "end": "2398.89000", + "feature": { + "word": "made" + }, + "id": 7170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2398.89000", + "end": "2399.05000", + "feature": { + "word": "on" + }, + "id": 7171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2399.08000", + "end": "2399.31000", + "feature": { + "word": "both" + }, + "id": 7173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2399.31000", + "end": "2399.87000", + "feature": { + "word": "sides" + }, + "id": 7174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2400.42000", + "end": "2400.66000", + "feature": { + "word": "but" + }, + "id": 7176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2400.66000", + "end": "2400.76000", + "feature": { + "word": "i" + }, + "id": 7177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2400.76000", + "end": "2400.98000", + "feature": { + "word": "do" + }, + "id": 7178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2400.98000", + "end": "2401.34000", + "feature": { + "word": "think" + }, + "id": 7179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2401.42000", + "end": "2402.27000", + "feature": { + "word": "that" + }, + "id": 7181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2402.30000", + "end": "2402.70000", + "feature": { + "word": "it" + }, + "id": 7183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2402.70000", + "end": "2402.76000", + "feature": { + "word": "s" + }, + "id": 7184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2402.76000", + "end": "2403.32000", + "feature": { + "word": "clear" + }, + "id": 7185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2403.32000", + "end": "2403.75000", + "feature": { + "word": "now" + }, + "id": 7186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2404.07000", + "end": "2404.43000", + "feature": { + "word": "that" + }, + "id": 7188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2404.43000", + "end": "2404.62000", + "feature": { + "word": "there" + }, + "id": 7189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2404.62000", + "end": "2405.05000", + "feature": { + "word": "was" + }, + "id": 7190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2405.12000", + "end": "2405.79000", + "feature": { + "word": "a" + }, + "id": 7192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2405.79000", + "end": "2406.40000", + "feature": { + "word": "major" + }, + "id": 7193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2406.40000", + "end": "2406.77000", + "feature": { + "word": "effort" + }, + "id": 7194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2406.86000", + "end": "2407.62000", + "feature": { + "word": "involving" + }, + "id": 7196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2407.62000", + "end": "2407.96000", + "feature": { + "word": "many" + }, + "id": 7197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2407.96000", + "end": "2408.36000", + "feature": { + "word": "government" + }, + "id": 7198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2408.36000", + "end": "2408.83000", + "feature": { + "word": "officials" + }, + "id": 7199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2408.83000", + "end": "2408.98000", + "feature": { + "word": "at" + }, + "id": 7200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2408.98000", + "end": "2409.23000", + "feature": { + "word": "very" + }, + "id": 7201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2409.23000", + "end": "2409.49000", + "feature": { + "word": "high" + }, + "id": 7202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2409.49000", + "end": "2409.96000", + "feature": { + "word": "levels" + }, + "id": 7203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2410.37000", + "end": "2411.12000", + "feature": { + "word": "to" + }, + "id": 7205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2411.15000", + "end": "2411.71000", + "feature": { + "word": "participate" + }, + "id": 7207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2411.71000", + "end": "2411.82000", + "feature": { + "word": "in" + }, + "id": 7208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2411.82000", + "end": "2411.88000", + "feature": { + "word": "a" + }, + "id": 7209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2411.88000", + "end": "2412.35000", + "feature": { + "word": "manner" + }, + "id": 7210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2412.35000", + "end": "2412.58000", + "feature": { + "word": "that" + }, + "id": 7211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2412.61000", + "end": "2413.16000", + "feature": { + "word": "avoided" + }, + "id": 7213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2413.16000", + "end": "2413.26000", + "feature": { + "word": "the" + }, + "id": 7214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2413.26000", + "end": "2414.07000", + "feature": { + "word": "consequences" + }, + "id": 7215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2414.07000", + "end": "2414.20000", + "feature": { + "word": "of" + }, + "id": 7216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2414.20000", + "end": "2414.27000", + "feature": { + "word": "the" + }, + "id": 7217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2414.27000", + "end": "2414.91000", + "feature": { + "word": "boland" + }, + "id": 7218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2414.94000", + "end": "2415.26000", + "feature": { + "word": "amendment" + }, + "id": 7220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2415.63000", + "end": "2416.17000", + "feature": { + "word": "congressman" + }, + "id": 7222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2416.17000", + "end": "2416.87000", + "feature": { + "word": "courter" + }, + "id": 7223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2417.13000", + "end": "2417.31000", + "feature": { + "word": "the" + }, + "id": 7225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2417.31000", + "end": "2417.60000", + "feature": { + "word": "house" + }, + "id": 7226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2417.60000", + "end": "2418.24000", + "feature": { + "word": "speaker" + }, + "id": 7227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2418.31000", + "end": "2418.41000", + "feature": { + "word": "the" + }, + "id": 7229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2418.41000", + "end": "2418.98000", + "feature": { + "word": "democratic" + }, + "id": 7230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2418.98000", + "end": "2419.16000", + "feature": { + "word": "house" + }, + "id": 7231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2419.16000", + "end": "2419.51000", + "feature": { + "word": "speaker" + }, + "id": 7232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2419.51000", + "end": "2419.54000", + "feature": { + "word": "" + }, + "id": 7233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2419.54000", + "end": "2419.71000", + "feature": { + "word": "you're" + }, + "id": 7234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2419.71000", + "end": "2419.74000", + "feature": { + "word": "a" + }, + "id": 7235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2419.74000", + "end": "2420.35000", + "feature": { + "word": "republican" + }, + "id": 7236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2420.35000", + "end": "2421.03000", + "feature": { + "word": "" + }, + "id": 7237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2421.03000", + "end": "2421.41000", + "feature": { + "word": "issued" + }, + "id": 7238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2421.41000", + "end": "2421.50000", + "feature": { + "word": "a" + }, + "id": 7239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2421.50000", + "end": "2422.04000", + "feature": { + "word": "statement" + }, + "id": 7240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2422.04000", + "end": "2422.36000", + "feature": { + "word": "saying" + }, + "id": 7241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2422.36000", + "end": "2422.86000", + "feature": { + "word": "today" + }, + "id": 7242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2422.86000", + "end": "2423.02000", + "feature": { + "word": "that" + }, + "id": 7243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2423.02000", + "end": "2423.14000", + "feature": { + "word": "it" + }, + "id": 7244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2423.14000", + "end": "2423.35000", + "feature": { + "word": "was" + }, + "id": 7245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2423.35000", + "end": "2424.21000", + "feature": { + "word": "increasingly" + }, + "id": 7246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2424.21000", + "end": "2424.65000", + "feature": { + "word": "evident" + }, + "id": 7247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2424.65000", + "end": "2424.68000", + "feature": { + "word": "" + }, + "id": 7248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2424.68000", + "end": "2424.79000", + "feature": { + "word": "to" + }, + "id": 7249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2424.79000", + "end": "2425.08000", + "feature": { + "word": "use" + }, + "id": 7250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2425.08000", + "end": "2425.32000", + "feature": { + "word": "his" + }, + "id": 7251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2425.32000", + "end": "2425.76000", + "feature": { + "word": "words" + }, + "id": 7252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2425.76000", + "end": "2425.79000", + "feature": { + "word": "" + }, + "id": 7253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2426.14000", + "end": "2426.63000", + "feature": { + "word": "that" + }, + "id": 7255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2426.63000", + "end": "2427.18000", + "feature": { + "word": "the" + }, + "id": 7256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2427.21000", + "end": "2427.61000", + "feature": { + "word": "various" + }, + "id": 7258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2427.61000", + "end": "2428.02000", + "feature": { + "word": "laws" + }, + "id": 7259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2428.02000", + "end": "2428.55000", + "feature": { + "word": "banning" + }, + "id": 7260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2428.55000", + "end": "2428.87000", + "feature": { + "word": "aid" + }, + "id": 7261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2428.87000", + "end": "2429.09000", + "feature": { + "word": "over" + }, + "id": 7262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2429.09000", + "end": "2429.17000", + "feature": { + "word": "a" + }, + "id": 7263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2429.17000", + "end": "2429.60000", + "feature": { + "word": "period" + }, + "id": 7264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2429.79000", + "end": "2430.24000", + "feature": { + "word": "were" + }, + "id": 7266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2430.27000", + "end": "2431.20000", + "feature": { + "word": "systematically" + }, + "id": 7268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2431.20000", + "end": "2431.92000", + "feature": { + "word": "violated" + }, + "id": 7269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2431.92000", + "end": "2432.10000", + "feature": { + "word": "by" + }, + "id": 7270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2432.10000", + "end": "2432.32000", + "feature": { + "word": "key" + }, + "id": 7271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2432.32000", + "end": "2432.78000", + "feature": { + "word": "members" + }, + "id": 7272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2432.78000", + "end": "2432.88000", + "feature": { + "word": "of" + }, + "id": 7273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2432.88000", + "end": "2433.00000", + "feature": { + "word": "the" + }, + "id": 7274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2433.00000", + "end": "2433.61000", + "feature": { + "word": "executive" + }, + "id": 7275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2433.61000", + "end": "2434.06000", + "feature": { + "word": "branch" + }, + "id": 7276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2434.13000", + "end": "2434.16000", + "feature": { + "word": "" + }, + "id": 7278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2434.16000", + "end": "2434.50000", + "feature": { + "word": "does" + }, + "id": 7279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2434.50000", + "end": "2434.67000", + "feature": { + "word": "the" + }, + "id": 7280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2434.67000", + "end": "2435.14000", + "feature": { + "word": "evidence" + }, + "id": 7281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2435.14000", + "end": "2435.32000", + "feature": { + "word": "you've" + }, + "id": 7282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2435.32000", + "end": "2435.60000", + "feature": { + "word": "heard" + }, + "id": 7283, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2435.60000", + "end": "2435.80000", + "feature": { + "word": "so" + }, + "id": 7284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2435.80000", + "end": "2436.05000", + "feature": { + "word": "far" + }, + "id": 7285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2436.05000", + "end": "2436.78000", + "feature": { + "word": "justify" + }, + "id": 7286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2437.38000", + "end": "2437.65000", + "feature": { + "word": "the" + }, + "id": 7288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2437.68000", + "end": "2438.03000", + "feature": { + "word": "speaker" + }, + "id": 7290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2438.03000", + "end": "2438.07000", + "feature": { + "word": "s" + }, + "id": 7291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2438.07000", + "end": "2438.51000", + "feature": { + "word": "statement" + }, + "id": 7292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2439.37000", + "end": "2439.53000", + "feature": { + "word": "rep" + }, + "id": 7294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2439.53000", + "end": "2439.90000", + "feature": { + "word": "i" + }, + "id": 7295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2439.90000", + "end": "2440.12000", + "feature": { + "word": "don't" + }, + "id": 7296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2440.12000", + "end": "2440.39000", + "feature": { + "word": "think" + }, + "id": 7297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2440.39000", + "end": "2440.54000", + "feature": { + "word": "so" + }, + "id": 7298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2440.54000", + "end": "2440.68000", + "feature": { + "word": "but" + }, + "id": 7299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2440.68000", + "end": "2440.93000", + "feature": { + "word": "once" + }, + "id": 7300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2440.93000", + "end": "2441.20000", + "feature": { + "word": "again" + }, + "id": 7301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2441.20000", + "end": "2441.32000", + "feature": { + "word": "we're" + }, + "id": 7302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2441.32000", + "end": "2441.47000", + "feature": { + "word": "going" + }, + "id": 7303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2441.47000", + "end": "2441.53000", + "feature": { + "word": "to" + }, + "id": 7304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2441.53000", + "end": "2441.68000", + "feature": { + "word": "have" + }, + "id": 7305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2441.68000", + "end": "2441.76000", + "feature": { + "word": "to" + }, + "id": 7306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2441.76000", + "end": "2441.97000", + "feature": { + "word": "have" + }, + "id": 7307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2441.97000", + "end": "2442.05000", + "feature": { + "word": "the" + }, + "id": 7308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2442.05000", + "end": "2442.57000", + "feature": { + "word": "courts" + }, + "id": 7309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2442.66000", + "end": "2443.18000", + "feature": { + "word": "decide" + }, + "id": 7311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2443.18000", + "end": "2443.33000", + "feature": { + "word": "on" + }, + "id": 7312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2443.33000", + "end": "2443.59000", + "feature": { + "word": "this" + }, + "id": 7313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2443.62000", + "end": "2443.79000", + "feature": { + "word": "the" + }, + "id": 7315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2443.79000", + "end": "2444.21000", + "feature": { + "word": "boland" + }, + "id": 7316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2444.21000", + "end": "2444.65000", + "feature": { + "word": "amendment" + }, + "id": 7317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2444.65000", + "end": "2444.88000", + "feature": { + "word": "which" + }, + "id": 7318, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2444.88000", + "end": "2445.01000", + "feature": { + "word": "we" + }, + "id": 7319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2445.01000", + "end": "2445.10000", + "feature": { + "word": "have" + }, + "id": 7320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2445.10000", + "end": "2445.49000", + "feature": { + "word": "all" + }, + "id": 7321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2445.56000", + "end": "2445.77000", + "feature": { + "word": "heard" + }, + "id": 7323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2445.77000", + "end": "2445.83000", + "feature": { + "word": "a" + }, + "id": 7324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2445.83000", + "end": "2446.08000", + "feature": { + "word": "great" + }, + "id": 7325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2446.08000", + "end": "2446.26000", + "feature": { + "word": "deal" + }, + "id": 7326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2446.26000", + "end": "2446.67000", + "feature": { + "word": "about" + }, + "id": 7327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2447.08000", + "end": "2447.29000", + "feature": { + "word": "at" + }, + "id": 7329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2447.29000", + "end": "2448.11000", + "feature": { + "word": "" + }, + "id": 7330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2448.11000", + "end": "2448.35000", + "feature": { + "word": "is" + }, + "id": 7331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2448.35000", + "end": "2448.78000", + "feature": { + "word": "a" + }, + "id": 7332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2448.83000", + "end": "2449.08000", + "feature": { + "word": "piece" + }, + "id": 7334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2449.08000", + "end": "2449.62000", + "feature": { + "word": "of" + }, + "id": 7335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2450.08000", + "end": "2450.26000", + "feature": { + "word": "" + }, + "id": 7337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2450.26000", + "end": "2450.38000", + "feature": { + "word": "i" + }, + "id": 7338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2450.38000", + "end": "2450.60000", + "feature": { + "word": "wouldn't" + }, + "id": 7339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2450.60000", + "end": "2450.80000", + "feature": { + "word": "say" + }, + "id": 7340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2450.80000", + "end": "2451.17000", + "feature": { + "word": "mush" + }, + "id": 7341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2451.17000", + "end": "2451.26000", + "feature": { + "word": "or" + }, + "id": 7342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2451.26000", + "end": "2451.58000", + "feature": { + "word": "swiss" + }, + "id": 7343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2451.58000", + "end": "2451.95000", + "feature": { + "word": "cheese" + }, + "id": 7344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2451.95000", + "end": "2452.14000", + "feature": { + "word": "but" + }, + "id": 7345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2452.14000", + "end": "2452.28000", + "feature": { + "word": "it" + }, + "id": 7346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2452.28000", + "end": "2452.40000", + "feature": { + "word": "s" + }, + "id": 7347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2452.49000", + "end": "2453.04000", + "feature": { + "word": "perhaps" + }, + "id": 7349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2453.04000", + "end": "2453.63000", + "feature": { + "word": "open" + }, + "id": 7350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2453.63000", + "end": "2453.95000", + "feature": { + "word": "to" + }, + "id": 7351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2453.98000", + "end": "2454.50000", + "feature": { + "word": "various" + }, + "id": 7353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2454.50000", + "end": "2454.82000", + "feature": { + "word": "types" + }, + "id": 7354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2454.82000", + "end": "2454.92000", + "feature": { + "word": "of" + }, + "id": 7355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2454.92000", + "end": "2455.78000", + "feature": { + "word": "interpretation" + }, + "id": 7356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2456.12000", + "end": "2456.36000", + "feature": { + "word": "i" + }, + "id": 7358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2456.36000", + "end": "2456.53000", + "feature": { + "word": "would" + }, + "id": 7359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2456.53000", + "end": "2456.78000", + "feature": { + "word": "say" + }, + "id": 7360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2456.78000", + "end": "2457.05000", + "feature": { + "word": "that" + }, + "id": 7361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2457.05000", + "end": "2457.16000", + "feature": { + "word": "the" + }, + "id": 7362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2457.16000", + "end": "2457.33000", + "feature": { + "word": "good" + }, + "id": 7363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2457.33000", + "end": "2457.84000", + "feature": { + "word": "attorneys" + }, + "id": 7364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2457.84000", + "end": "2458.00000", + "feature": { + "word": "on" + }, + "id": 7365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2458.00000", + "end": "2458.24000", + "feature": { + "word": "both" + }, + "id": 7366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2458.24000", + "end": "2458.73000", + "feature": { + "word": "sides" + }, + "id": 7367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2458.73000", + "end": "2458.89000", + "feature": { + "word": "could" + }, + "id": 7368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2458.89000", + "end": "2459.23000", + "feature": { + "word": "make" + }, + "id": 7369, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2459.23000", + "end": "2459.56000", + "feature": { + "word": "different" + }, + "id": 7370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2459.56000", + "end": "2459.91000", + "feature": { + "word": "things" + }, + "id": 7371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2459.91000", + "end": "2460.14000", + "feature": { + "word": "of" + }, + "id": 7372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2460.14000", + "end": "2460.34000", + "feature": { + "word": "it" + }, + "id": 7373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2460.88000", + "end": "2461.25000", + "feature": { + "word": "it" + }, + "id": 7375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2461.39000", + "end": "2461.76000", + "feature": { + "word": "clearly" + }, + "id": 7377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2461.76000", + "end": "2461.95000", + "feature": { + "word": "was" + }, + "id": 7378, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2461.95000", + "end": "2462.13000", + "feature": { + "word": "not" + }, + "id": 7379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2462.13000", + "end": "2462.17000", + "feature": { + "word": "a" + }, + "id": 7380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2462.17000", + "end": "2462.90000", + "feature": { + "word": "broadbase" + }, + "id": 7381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2463.07000", + "end": "2463.82000", + "feature": { + "word": "prohibition" + }, + "id": 7383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2463.82000", + "end": "2464.26000", + "feature": { + "word": "against" + }, + "id": 7384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2464.26000", + "end": "2464.34000", + "feature": { + "word": "the" + }, + "id": 7385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2464.37000", + "end": "2464.63000", + "feature": { + "word": "united" + }, + "id": 7387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2464.63000", + "end": "2464.90000", + "feature": { + "word": "states" + }, + "id": 7388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2464.90000", + "end": "2465.51000", + "feature": { + "word": "government" + }, + "id": 7389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2465.51000", + "end": "2465.71000", + "feature": { + "word": "from" + }, + "id": 7390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2465.71000", + "end": "2466.15000", + "feature": { + "word": "assisting" + }, + "id": 7391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2466.15000", + "end": "2466.26000", + "feature": { + "word": "the" + }, + "id": 7392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2466.26000", + "end": "2466.71000", + "feature": { + "word": "contras" + }, + "id": 7393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2466.71000", + "end": "2467.07000", + "feature": { + "word": "otherwise" + }, + "id": 7394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2467.07000", + "end": "2467.15000", + "feature": { + "word": "it" + }, + "id": 7395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2467.15000", + "end": "2467.26000", + "feature": { + "word": "would" + }, + "id": 7396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2467.26000", + "end": "2467.35000", + "feature": { + "word": "have" + }, + "id": 7397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2467.35000", + "end": "2467.55000", + "feature": { + "word": "said" + }, + "id": 7398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2467.55000", + "end": "2467.61000", + "feature": { + "word": "the" + }, + "id": 7399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2467.61000", + "end": "2467.94000", + "feature": { + "word": "united" + }, + "id": 7400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2467.94000", + "end": "2468.18000", + "feature": { + "word": "states" + }, + "id": 7401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2468.18000", + "end": "2468.61000", + "feature": { + "word": "government" + }, + "id": 7402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2468.61000", + "end": "2468.85000", + "feature": { + "word": "shall" + }, + "id": 7403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2468.85000", + "end": "2469.21000", + "feature": { + "word": "not" + }, + "id": 7404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2469.63000", + "end": "2469.76000", + "feature": { + "word": "it" + }, + "id": 7406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2469.76000", + "end": "2470.16000", + "feature": { + "word": "referred" + }, + "id": 7407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2470.16000", + "end": "2470.25000", + "feature": { + "word": "to" + }, + "id": 7408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2470.25000", + "end": "2470.51000", + "feature": { + "word": "two" + }, + "id": 7409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2470.51000", + "end": "2471.18000", + "feature": { + "word": "agencies" + }, + "id": 7410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2471.18000", + "end": "2471.28000", + "feature": { + "word": "and" + }, + "id": 7411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2471.28000", + "end": "2471.35000", + "feature": { + "word": "of" + }, + "id": 7412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2471.35000", + "end": "2471.66000", + "feature": { + "word": "course" + }, + "id": 7413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2471.66000", + "end": "2471.76000", + "feature": { + "word": "an" + }, + "id": 7414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2471.76000", + "end": "2472.17000", + "feature": { + "word": "agency" + }, + "id": 7415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2472.17000", + "end": "2472.59000", + "feature": { + "word": "involved" + }, + "id": 7416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2472.59000", + "end": "2472.67000", + "feature": { + "word": "in" + }, + "id": 7417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2472.67000", + "end": "2473.23000", + "feature": { + "word": "intelligence" + }, + "id": 7418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2473.23000", + "end": "2473.81000", + "feature": { + "word": "activities" + }, + "id": 7419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2474.08000", + "end": "2474.20000", + "feature": { + "word": "it" + }, + "id": 7421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2474.20000", + "end": "2474.74000", + "feature": { + "word": "remains" + }, + "id": 7422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2474.74000", + "end": "2474.84000", + "feature": { + "word": "to" + }, + "id": 7423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2474.84000", + "end": "2474.98000", + "feature": { + "word": "be" + }, + "id": 7424, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2474.98000", + "end": "2475.73000", + "feature": { + "word": "seen" + }, + "id": 7425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2475.78000", + "end": "2475.90000", + "feature": { + "word": "it" + }, + "id": 7427, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2475.90000", + "end": "2476.10000", + "feature": { + "word": "was" + }, + "id": 7428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2476.13000", + "end": "2476.87000", + "feature": { + "word": "unclear" + }, + "id": 7430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2476.87000", + "end": "2477.09000", + "feature": { + "word": "as" + }, + "id": 7431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2477.09000", + "end": "2477.76000", + "feature": { + "word": "written" + }, + "id": 7432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2478.09000", + "end": "2478.41000", + "feature": { + "word": "there" + }, + "id": 7434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2478.41000", + "end": "2478.56000", + "feature": { + "word": "were" + }, + "id": 7435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2478.56000", + "end": "2478.80000", + "feature": { + "word": "two" + }, + "id": 7436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2478.80000", + "end": "2479.62000", + "feature": { + "word": "interpretations" + }, + "id": 7437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2479.62000", + "end": "2479.99000", + "feature": { + "word": "within" + }, + "id": 7438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2479.99000", + "end": "2480.10000", + "feature": { + "word": "the" + }, + "id": 7439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2480.10000", + "end": "2480.98000", + "feature": { + "word": "administration" + }, + "id": 7440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2481.01000", + "end": "2481.49000", + "feature": { + "word": "perhaps" + }, + "id": 7442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2482.80000", + "end": "2483.13000", + "feature": { + "word": "mr" + }, + "id": 7444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2483.13000", + "end": "2483.55000", + "feature": { + "word": "north" + }, + "id": 7445, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2483.55000", + "end": "2483.65000", + "feature": { + "word": "is" + }, + "id": 7446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2483.65000", + "end": "2483.84000", + "feature": { + "word": "going" + }, + "id": 7447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2483.84000", + "end": "2483.93000", + "feature": { + "word": "to" + }, + "id": 7448, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2483.93000", + "end": "2484.61000", + "feature": { + "word": "testify" + }, + "id": 7449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2484.61000", + "end": "2484.89000", + "feature": { + "word": "that" + }, + "id": 7450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2484.89000", + "end": "2485.17000", + "feature": { + "word": "he" + }, + "id": 7451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2485.17000", + "end": "2485.49000", + "feature": { + "word": "read" + }, + "id": 7452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2485.49000", + "end": "2485.84000", + "feature": { + "word": "one" + }, + "id": 7453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2485.84000", + "end": "2485.99000", + "feature": { + "word": "that" + }, + "id": 7454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2485.99000", + "end": "2486.38000", + "feature": { + "word": "allowed" + }, + "id": 7455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2486.38000", + "end": "2486.63000", + "feature": { + "word": "his" + }, + "id": 7456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2486.63000", + "end": "2487.28000", + "feature": { + "word": "activity" + }, + "id": 7457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2487.71000", + "end": "2488.01000", + "feature": { + "word": "it" + }, + "id": 7459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.01000", + "end": "2488.05000", + "feature": { + "word": "s" + }, + "id": 7460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.05000", + "end": "2488.39000", + "feature": { + "word": "something" + }, + "id": 7461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.39000", + "end": "2488.48000", + "feature": { + "word": "that" + }, + "id": 7462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.48000", + "end": "2488.56000", + "feature": { + "word": "we're" + }, + "id": 7463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.56000", + "end": "2488.77000", + "feature": { + "word": "just" + }, + "id": 7464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.77000", + "end": "2488.91000", + "feature": { + "word": "going" + }, + "id": 7465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.91000", + "end": "2488.97000", + "feature": { + "word": "to" + }, + "id": 7466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2488.97000", + "end": "2489.18000", + "feature": { + "word": "have" + }, + "id": 7467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2489.18000", + "end": "2489.26000", + "feature": { + "word": "to" + }, + "id": 7468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2489.26000", + "end": "2489.53000", + "feature": { + "word": "wait" + }, + "id": 7469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2489.53000", + "end": "2489.69000", + "feature": { + "word": "on" + }, + "id": 7470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2489.69000", + "end": "2490.18000", + "feature": { + "word": "clearly" + }, + "id": 7471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2490.18000", + "end": "2490.65000", + "feature": { + "word": "however" + }, + "id": 7472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2490.65000", + "end": "2490.88000", + "feature": { + "word": "the" + }, + "id": 7473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2491.29000", + "end": "2491.69000", + "feature": { + "word": "" + }, + "id": 7475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2491.69000", + "end": "2492.63000", + "feature": { + "word": "" + }, + "id": 7476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2493.02000", + "end": "2493.29000", + "feature": { + "word": "north" + }, + "id": 7478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2493.29000", + "end": "2493.43000", + "feature": { + "word": "did" + }, + "id": 7479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2493.43000", + "end": "2493.65000", + "feature": { + "word": "not" + }, + "id": 7480, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2493.65000", + "end": "2493.97000", + "feature": { + "word": "follow" + }, + "id": 7481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2493.97000", + "end": "2494.13000", + "feature": { + "word": "the" + }, + "id": 7482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2494.13000", + "end": "2494.75000", + "feature": { + "word": "intent" + }, + "id": 7483, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2494.87000", + "end": "2495.03000", + "feature": { + "word": "of" + }, + "id": 7485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2495.03000", + "end": "2495.19000", + "feature": { + "word": "that" + }, + "id": 7486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2495.19000", + "end": "2495.70000", + "feature": { + "word": "amendment" + }, + "id": 7487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2495.70000", + "end": "2495.84000", + "feature": { + "word": "but" + }, + "id": 7488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2495.84000", + "end": "2496.06000", + "feature": { + "word": "whether" + }, + "id": 7489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2496.06000", + "end": "2496.26000", + "feature": { + "word": "that" + }, + "id": 7490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2496.26000", + "end": "2496.33000", + "feature": { + "word": "s" + }, + "id": 7491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2496.33000", + "end": "2496.77000", + "feature": { + "word": "" + }, + "id": 7492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2496.77000", + "end": "2497.15000", + "feature": { + "word": "or" + }, + "id": 7493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2497.15000", + "end": "2497.71000", + "feature": { + "word": "criminal" + }, + "id": 7494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2497.71000", + "end": "2497.78000", + "feature": { + "word": "we" + }, + "id": 7495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2497.78000", + "end": "2497.84000", + "feature": { + "word": "" + }, + "id": 7496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2497.84000", + "end": "2497.98000", + "feature": { + "word": "just" + }, + "id": 7497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2497.98000", + "end": "2498.14000", + "feature": { + "word": "have" + }, + "id": 7498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2498.14000", + "end": "2498.24000", + "feature": { + "word": "to" + }, + "id": 7499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2498.24000", + "end": "2498.62000", + "feature": { + "word": "wait" + }, + "id": 7500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2498.94000", + "end": "2499.52000", + "feature": { + "word": "and" + }, + "id": 7502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2499.55000", + "end": "2499.61000", + "feature": { + "word": "see" + }, + "id": 7504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2499.61000", + "end": "2500.24000", + "feature": { + "word": "beyond" + }, + "id": 7505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2500.24000", + "end": "2500.44000", + "feature": { + "word": "the" + }, + "id": 7506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2500.44000", + "end": "2500.86000", + "feature": { + "word": "boland" + }, + "id": 7507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2500.86000", + "end": "2501.59000", + "feature": { + "word": "amendment" + }, + "id": 7508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2501.59000", + "end": "2502.02000", + "feature": { + "word": "speaker" + }, + "id": 7509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2502.02000", + "end": "2502.27000", + "feature": { + "word": "wright" + }, + "id": 7510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2502.27000", + "end": "2502.30000", + "feature": { + "word": "s" + }, + "id": 7511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2502.30000", + "end": "2502.70000", + "feature": { + "word": "statement" + }, + "id": 7512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2502.70000", + "end": "2502.73000", + "feature": { + "word": "" + }, + "id": 7513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2502.73000", + "end": "2502.76000", + "feature": { + "word": "i" + }, + "id": 7514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2502.76000", + "end": "2502.87000", + "feature": { + "word": "have" + }, + "id": 7515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2502.87000", + "end": "2503.04000", + "feature": { + "word": "a" + }, + "id": 7516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2503.11000", + "end": "2503.43000", + "feature": { + "word": "copy" + }, + "id": 7518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2503.43000", + "end": "2503.53000", + "feature": { + "word": "of" + }, + "id": 7519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2503.53000", + "end": "2503.65000", + "feature": { + "word": "it" + }, + "id": 7520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2503.65000", + "end": "2504.01000", + "feature": { + "word": "here" + }, + "id": 7521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2504.08000", + "end": "2504.11000", + "feature": { + "word": "" + }, + "id": 7523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2504.19000", + "end": "2504.45000", + "feature": { + "word": "says" + }, + "id": 7525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2504.45000", + "end": "2504.57000", + "feature": { + "word": "it" + }, + "id": 7526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2504.57000", + "end": "2504.63000", + "feature": { + "word": "s" + }, + "id": 7527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2504.63000", + "end": "2505.19000", + "feature": { + "word": "increasingly" + }, + "id": 7528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2505.19000", + "end": "2505.69000", + "feature": { + "word": "evident" + }, + "id": 7529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2505.69000", + "end": "2506.10000", + "feature": { + "word": "sections" + }, + "id": 7530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2506.10000", + "end": "2506.88000", + "feature": { + "word": "" + }, + "id": 7531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2506.88000", + "end": "2507.06000", + "feature": { + "word": "and" + }, + "id": 7532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2507.09000", + "end": "2507.80000", + "feature": { + "word": "" + }, + "id": 7534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2507.80000", + "end": "2507.96000", + "feature": { + "word": "of" + }, + "id": 7535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2507.96000", + "end": "2508.04000", + "feature": { + "word": "the" + }, + "id": 7536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2508.04000", + "end": "2508.46000", + "feature": { + "word": "national" + }, + "id": 7537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2508.46000", + "end": "2509.13000", + "feature": { + "word": "security" + }, + "id": 7538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2509.13000", + "end": "2509.62000", + "feature": { + "word": "act" + }, + "id": 7539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2509.62000", + "end": "2510.19000", + "feature": { + "word": "sections" + }, + "id": 7540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2510.19000", + "end": "2511.21000", + "feature": { + "word": "" + }, + "id": 7541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2511.21000", + "end": "2511.31000", + "feature": { + "word": "of" + }, + "id": 7542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2511.31000", + "end": "2511.41000", + "feature": { + "word": "the" + }, + "id": 7543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2511.41000", + "end": "2512.01000", + "feature": { + "word": "continuing" + }, + "id": 7544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2512.01000", + "end": "2512.81000", + "feature": { + "word": "appropriation" + }, + "id": 7545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2512.81000", + "end": "2513.01000", + "feature": { + "word": "for" + }, + "id": 7546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2513.01000", + "end": "2514.35000", + "feature": { + "word": "" + }, + "id": 7547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2514.59000", + "end": "2514.86000", + "feature": { + "word": "and" + }, + "id": 7549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2514.86000", + "end": "2514.94000", + "feature": { + "word": "the" + }, + "id": 7550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2514.94000", + "end": "2515.20000", + "feature": { + "word": "boland" + }, + "id": 7551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2515.20000", + "end": "2515.62000", + "feature": { + "word": "amendment" + }, + "id": 7552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2515.62000", + "end": "2515.72000", + "feature": { + "word": "were" + }, + "id": 7553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2515.72000", + "end": "2516.43000", + "feature": { + "word": "systematically" + }, + "id": 7554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2516.43000", + "end": "2517.10000", + "feature": { + "word": "violated" + }, + "id": 7555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2517.35000", + "end": "2517.38000", + "feature": { + "word": "" + }, + "id": 7557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2517.41000", + "end": "2517.52000", + "feature": { + "word": "do" + }, + "id": 7559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2517.52000", + "end": "2517.70000", + "feature": { + "word": "you" + }, + "id": 7560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2517.70000", + "end": "2517.97000", + "feature": { + "word": "think" + }, + "id": 7561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2518.14000", + "end": "2519.26000", + "feature": { + "word": "senator" + }, + "id": 7563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2519.26000", + "end": "2519.67000", + "feature": { + "word": "mitchell" + }, + "id": 7564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2519.67000", + "end": "2519.82000", + "feature": { + "word": "that" + }, + "id": 7565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2519.82000", + "end": "2519.98000", + "feature": { + "word": "the" + }, + "id": 7566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2519.98000", + "end": "2520.37000", + "feature": { + "word": "evidence" + }, + "id": 7567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2520.37000", + "end": "2520.46000", + "feature": { + "word": "the" + }, + "id": 7568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2520.46000", + "end": "2520.76000", + "feature": { + "word": "committee" + }, + "id": 7569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2520.76000", + "end": "2520.81000", + "feature": { + "word": "s" + }, + "id": 7570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2520.81000", + "end": "2521.08000", + "feature": { + "word": "heard" + }, + "id": 7571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2521.08000", + "end": "2521.30000", + "feature": { + "word": "so" + }, + "id": 7572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2521.30000", + "end": "2521.70000", + "feature": { + "word": "far" + }, + "id": 7573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2522.08000", + "end": "2523.04000", + "feature": { + "word": "justifies" + }, + "id": 7575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2523.04000", + "end": "2523.13000", + "feature": { + "word": "the" + }, + "id": 7576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2523.13000", + "end": "2523.56000", + "feature": { + "word": "speaker" + }, + "id": 7577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2523.56000", + "end": "2523.60000", + "feature": { + "word": "s" + }, + "id": 7578, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2523.60000", + "end": "2524.14000", + "feature": { + "word": "statement" + }, + "id": 7579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2524.36000", + "end": "2524.58000", + "feature": { + "word": "sen" + }, + "id": 7581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2524.58000", + "end": "2524.68000", + "feature": { + "word": "i" + }, + "id": 7582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2524.68000", + "end": "2524.86000", + "feature": { + "word": "have" + }, + "id": 7583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2524.86000", + "end": "2525.07000", + "feature": { + "word": "not" + }, + "id": 7584, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2525.07000", + "end": "2525.34000", + "feature": { + "word": "seen" + }, + "id": 7585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2525.34000", + "end": "2525.44000", + "feature": { + "word": "the" + }, + "id": 7586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2525.44000", + "end": "2525.80000", + "feature": { + "word": "speaker" + }, + "id": 7587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2525.80000", + "end": "2525.85000", + "feature": { + "word": "s" + }, + "id": 7588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2525.85000", + "end": "2526.47000", + "feature": { + "word": "statement" + }, + "id": 7589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2526.47000", + "end": "2526.83000", + "feature": { + "word": "before" + }, + "id": 7590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2526.83000", + "end": "2527.26000", + "feature": { + "word": "you" + }, + "id": 7591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2527.33000", + "end": "2527.52000", + "feature": { + "word": "read" + }, + "id": 7593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2527.52000", + "end": "2527.63000", + "feature": { + "word": "it" + }, + "id": 7594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2527.63000", + "end": "2527.98000", + "feature": { + "word": "robert" + }, + "id": 7595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2528.36000", + "end": "2528.71000", + "feature": { + "word": "i" + }, + "id": 7597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2528.71000", + "end": "2528.94000", + "feature": { + "word": "think" + }, + "id": 7598, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2528.94000", + "end": "2529.04000", + "feature": { + "word": "the" + }, + "id": 7599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2529.04000", + "end": "2529.56000", + "feature": { + "word": "broader" + }, + "id": 7600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2529.60000", + "end": "2530.01000", + "feature": { + "word": "issue" + }, + "id": 7602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2530.42000", + "end": "2530.54000", + "feature": { + "word": "the" + }, + "id": 7604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2530.54000", + "end": "2531.18000", + "feature": { + "word": "principle" + }, + "id": 7605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2531.18000", + "end": "2531.72000", + "feature": { + "word": "involved" + }, + "id": 7606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2531.72000", + "end": "2532.06000", + "feature": { + "word": "here" + }, + "id": 7607, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2532.12000", + "end": "2532.50000", + "feature": { + "word": "is" + }, + "id": 7609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2532.50000", + "end": "2532.61000", + "feature": { + "word": "the" + }, + "id": 7610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2532.61000", + "end": "2533.42000", + "feature": { + "word": "relationship" + }, + "id": 7611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2533.42000", + "end": "2533.77000", + "feature": { + "word": "between" + }, + "id": 7612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2533.77000", + "end": "2533.85000", + "feature": { + "word": "the" + }, + "id": 7613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2533.85000", + "end": "2534.48000", + "feature": { + "word": "executive" + }, + "id": 7614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2534.48000", + "end": "2534.81000", + "feature": { + "word": "and" + }, + "id": 7615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2534.99000", + "end": "2535.62000", + "feature": { + "word": "legislative" + }, + "id": 7617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2535.62000", + "end": "2536.13000", + "feature": { + "word": "branches" + }, + "id": 7618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2536.70000", + "end": "2537.15000", + "feature": { + "word": "and" + }, + "id": 7620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2537.18000", + "end": "2537.37000", + "feature": { + "word": "the" + }, + "id": 7622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2537.37000", + "end": "2537.92000", + "feature": { + "word": "intent" + }, + "id": 7623, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2538.19000", + "end": "2538.44000", + "feature": { + "word": "of" + }, + "id": 7625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2538.44000", + "end": "2538.60000", + "feature": { + "word": "the" + }, + "id": 7626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2538.60000", + "end": "2539.12000", + "feature": { + "word": "executive" + }, + "id": 7627, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2539.12000", + "end": "2539.36000", + "feature": { + "word": "branch" + }, + "id": 7628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2539.36000", + "end": "2539.46000", + "feature": { + "word": "the" + }, + "id": 7629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2539.46000", + "end": "2540.11000", + "feature": { + "word": "president" + }, + "id": 7630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2540.20000", + "end": "2540.66000", + "feature": { + "word": "swears" + }, + "id": 7632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2540.66000", + "end": "2540.78000", + "feature": { + "word": "an" + }, + "id": 7633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2540.78000", + "end": "2541.00000", + "feature": { + "word": "oath" + }, + "id": 7634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2541.00000", + "end": "2541.15000", + "feature": { + "word": "to" + }, + "id": 7635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2541.23000", + "end": "2541.81000", + "feature": { + "word": "faithfully" + }, + "id": 7637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2541.84000", + "end": "2542.44000", + "feature": { + "word": "execute" + }, + "id": 7639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2542.44000", + "end": "2542.53000", + "feature": { + "word": "the" + }, + "id": 7640, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2542.53000", + "end": "2542.94000", + "feature": { + "word": "laws" + }, + "id": 7641, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2543.51000", + "end": "2543.61000", + "feature": { + "word": "a" + }, + "id": 7643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2543.61000", + "end": "2544.15000", + "feature": { + "word": "democracy" + }, + "id": 7644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2544.15000", + "end": "2544.55000", + "feature": { + "word": "really" + }, + "id": 7645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2544.55000", + "end": "2545.03000", + "feature": { + "word": "doesn't" + }, + "id": 7646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2545.03000", + "end": "2545.59000", + "feature": { + "word": "function" + }, + "id": 7647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2545.72000", + "end": "2545.81000", + "feature": { + "word": "" + }, + "id": 7649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2545.81000", + "end": "2545.92000", + "feature": { + "word": "our" + }, + "id": 7650, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2545.92000", + "end": "2546.45000", + "feature": { + "word": "democracy" + }, + "id": 7651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2546.45000", + "end": "2546.73000", + "feature": { + "word": "really" + }, + "id": 7652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2546.73000", + "end": "2547.16000", + "feature": { + "word": "doesn't" + }, + "id": 7653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2547.16000", + "end": "2547.77000", + "feature": { + "word": "function" + }, + "id": 7654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2548.00000", + "end": "2548.26000", + "feature": { + "word": "if" + }, + "id": 7656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2548.26000", + "end": "2548.53000", + "feature": { + "word": "there" + }, + "id": 7657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2548.53000", + "end": "2548.66000", + "feature": { + "word": "is" + }, + "id": 7658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2548.66000", + "end": "2548.87000", + "feature": { + "word": "not" + }, + "id": 7659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2548.87000", + "end": "2548.95000", + "feature": { + "word": "a" + }, + "id": 7660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2548.95000", + "end": "2549.69000", + "feature": { + "word": "presumption" + }, + "id": 7661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2549.69000", + "end": "2549.87000", + "feature": { + "word": "of" + }, + "id": 7662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2549.87000", + "end": "2550.12000", + "feature": { + "word": "good" + }, + "id": 7663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2550.12000", + "end": "2550.61000", + "feature": { + "word": "faith" + }, + "id": 7664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2551.03000", + "end": "2551.21000", + "feature": { + "word": "in" + }, + "id": 7666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2551.21000", + "end": "2551.39000", + "feature": { + "word": "the" + }, + "id": 7667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2551.39000", + "end": "2552.04000", + "feature": { + "word": "enactment" + }, + "id": 7668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2552.12000", + "end": "2552.33000", + "feature": { + "word": "in" + }, + "id": 7670, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2552.33000", + "end": "2552.43000", + "feature": { + "word": "the" + }, + "id": 7671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2552.43000", + "end": "2553.16000", + "feature": { + "word": "implementation" + }, + "id": 7672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2553.16000", + "end": "2553.25000", + "feature": { + "word": "of" + }, + "id": 7673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2553.25000", + "end": "2553.33000", + "feature": { + "word": "the" + }, + "id": 7674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2553.33000", + "end": "2553.63000", + "feature": { + "word": "laws" + }, + "id": 7675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2553.63000", + "end": "2553.72000", + "feature": { + "word": "the" + }, + "id": 7676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2553.72000", + "end": "2554.18000", + "feature": { + "word": "fact" + }, + "id": 7677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2554.18000", + "end": "2554.45000", + "feature": { + "word": "is" + }, + "id": 7678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2554.92000", + "end": "2555.53000", + "feature": { + "word": "congress" + }, + "id": 7680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2555.63000", + "end": "2555.69000", + "feature": { + "word": "" + }, + "id": 7682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2555.69000", + "end": "2555.95000", + "feature": { + "word": "no" + }, + "id": 7683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2555.95000", + "end": "2556.64000", + "feature": { + "word": "legislative" + }, + "id": 7684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2556.64000", + "end": "2557.00000", + "feature": { + "word": "body" + }, + "id": 7685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2557.03000", + "end": "2557.06000", + "feature": { + "word": "" + }, + "id": 7687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2557.06000", + "end": "2557.19000", + "feature": { + "word": "is" + }, + "id": 7688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2557.22000", + "end": "2557.77000", + "feature": { + "word": "capable" + }, + "id": 7690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2557.77000", + "end": "2557.89000", + "feature": { + "word": "of" + }, + "id": 7691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2557.89000", + "end": "2558.31000", + "feature": { + "word": "writing" + }, + "id": 7692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2558.31000", + "end": "2558.38000", + "feature": { + "word": "a" + }, + "id": 7693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2558.38000", + "end": "2558.81000", + "feature": { + "word": "law" + }, + "id": 7694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2559.24000", + "end": "2559.44000", + "feature": { + "word": "that" + }, + "id": 7696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2559.44000", + "end": "2559.60000", + "feature": { + "word": "would" + }, + "id": 7697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2559.60000", + "end": "2559.96000", + "feature": { + "word": "cover" + }, + "id": 7698, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2559.99000", + "end": "2560.40000", + "feature": { + "word": "every" + }, + "id": 7700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2560.40000", + "end": "2561.10000", + "feature": { + "word": "conceivable" + }, + "id": 7701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2561.10000", + "end": "2561.90000", + "feature": { + "word": "contingency" + }, + "id": 7702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2562.30000", + "end": "2562.54000", + "feature": { + "word": "by" + }, + "id": 7704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2562.54000", + "end": "2562.63000", + "feature": { + "word": "an" + }, + "id": 7705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2562.63000", + "end": "2563.30000", + "feature": { + "word": "executive" + }, + "id": 7706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2563.30000", + "end": "2563.97000", + "feature": { + "word": "determined" + }, + "id": 7707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2564.52000", + "end": "2564.74000", + "feature": { + "word": "not" + }, + "id": 7709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2564.74000", + "end": "2564.98000", + "feature": { + "word": "only" + }, + "id": 7710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2564.98000", + "end": "2565.25000", + "feature": { + "word": "not" + }, + "id": 7711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2565.25000", + "end": "2565.34000", + "feature": { + "word": "to" + }, + "id": 7712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2565.34000", + "end": "2565.81000", + "feature": { + "word": "faithfully" + }, + "id": 7713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2565.81000", + "end": "2566.33000", + "feature": { + "word": "execute" + }, + "id": 7714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2566.33000", + "end": "2566.42000", + "feature": { + "word": "the" + }, + "id": 7715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2566.42000", + "end": "2566.72000", + "feature": { + "word": "law" + }, + "id": 7716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2567.05000", + "end": "2567.28000", + "feature": { + "word": "but" + }, + "id": 7718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2567.28000", + "end": "2567.43000", + "feature": { + "word": "to" + }, + "id": 7719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2567.43000", + "end": "2568.01000", + "feature": { + "word": "avoid" + }, + "id": 7720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2568.37000", + "end": "2568.63000", + "feature": { + "word": "it" + }, + "id": 7722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2568.63000", + "end": "2569.04000", + "feature": { + "word": "and" + }, + "id": 7723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2569.04000", + "end": "2569.16000", + "feature": { + "word": "i" + }, + "id": 7724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2569.16000", + "end": "2569.47000", + "feature": { + "word": "think" + }, + "id": 7725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2569.47000", + "end": "2569.61000", + "feature": { + "word": "that" + }, + "id": 7726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2569.61000", + "end": "2569.87000", + "feature": { + "word": "that" + }, + "id": 7727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2569.87000", + "end": "2570.01000", + "feature": { + "word": "s" + }, + "id": 7728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2570.01000", + "end": "2570.30000", + "feature": { + "word": "really" + }, + "id": 7729, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2570.30000", + "end": "2570.42000", + "feature": { + "word": "the" + }, + "id": 7730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2570.42000", + "end": "2570.87000", + "feature": { + "word": "broader" + }, + "id": 7731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2570.87000", + "end": "2571.39000", + "feature": { + "word": "principle" + }, + "id": 7732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2571.39000", + "end": "2571.84000", + "feature": { + "word": "involved" + }, + "id": 7733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2571.84000", + "end": "2571.97000", + "feature": { + "word": "here" + }, + "id": 7734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2572.02000", + "end": "2572.26000", + "feature": { + "word": "there" + }, + "id": 7736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2572.26000", + "end": "2572.31000", + "feature": { + "word": "are" + }, + "id": 7737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2572.31000", + "end": "2572.71000", + "feature": { + "word": "many" + }, + "id": 7738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2572.71000", + "end": "2573.04000", + "feature": { + "word": "good" + }, + "id": 7739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2573.09000", + "end": "2573.76000", + "feature": { + "word": "arguments" + }, + "id": 7741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2573.76000", + "end": "2573.87000", + "feature": { + "word": "to" + }, + "id": 7742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2573.87000", + "end": "2574.01000", + "feature": { + "word": "be" + }, + "id": 7743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2574.01000", + "end": "2574.46000", + "feature": { + "word": "made" + }, + "id": 7744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2574.77000", + "end": "2575.00000", + "feature": { + "word": "in" + }, + "id": 7746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2575.00000", + "end": "2575.49000", + "feature": { + "word": "behalf" + }, + "id": 7747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2575.49000", + "end": "2575.56000", + "feature": { + "word": "of" + }, + "id": 7748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2575.56000", + "end": "2575.63000", + "feature": { + "word": "the" + }, + "id": 7749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2575.63000", + "end": "2576.11000", + "feature": { + "word": "president" + }, + "id": 7750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2576.11000", + "end": "2576.15000", + "feature": { + "word": "s" + }, + "id": 7751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2576.15000", + "end": "2576.66000", + "feature": { + "word": "policy" + }, + "id": 7752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2576.66000", + "end": "2576.76000", + "feature": { + "word": "in" + }, + "id": 7753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2576.76000", + "end": "2577.12000", + "feature": { + "word": "central" + }, + "id": 7754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2577.12000", + "end": "2577.47000", + "feature": { + "word": "america" + }, + "id": 7755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2577.50000", + "end": "2577.63000", + "feature": { + "word": "i" + }, + "id": 7757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2577.63000", + "end": "2578.11000", + "feature": { + "word": "personally" + }, + "id": 7758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2578.11000", + "end": "2578.21000", + "feature": { + "word": "do" + }, + "id": 7759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2578.21000", + "end": "2578.42000", + "feature": { + "word": "not" + }, + "id": 7760, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2578.42000", + "end": "2578.68000", + "feature": { + "word": "agree" + }, + "id": 7761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2578.68000", + "end": "2578.80000", + "feature": { + "word": "with" + }, + "id": 7762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2578.80000", + "end": "2578.90000", + "feature": { + "word": "it" + }, + "id": 7763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2578.90000", + "end": "2579.04000", + "feature": { + "word": "and" + }, + "id": 7764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2579.04000", + "end": "2579.28000", + "feature": { + "word": "voted" + }, + "id": 7765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2579.28000", + "end": "2579.65000", + "feature": { + "word": "against" + }, + "id": 7766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2579.65000", + "end": "2579.75000", + "feature": { + "word": "it" + }, + "id": 7767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2580.20000", + "end": "2580.39000", + "feature": { + "word": "but" + }, + "id": 7769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2580.39000", + "end": "2580.63000", + "feature": { + "word": "this" + }, + "id": 7770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2580.63000", + "end": "2580.82000", + "feature": { + "word": "is" + }, + "id": 7771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2580.96000", + "end": "2581.36000", + "feature": { + "word": "public" + }, + "id": 7773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2581.36000", + "end": "2581.84000", + "feature": { + "word": "policy" + }, + "id": 7774, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2581.84000", + "end": "2582.16000", + "feature": { + "word": "debate" + }, + "id": 7775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2582.16000", + "end": "2582.28000", + "feature": { + "word": "in" + }, + "id": 7776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2582.28000", + "end": "2582.44000", + "feature": { + "word": "our" + }, + "id": 7777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2582.44000", + "end": "2582.80000", + "feature": { + "word": "society" + }, + "id": 7778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2582.80000", + "end": "2583.10000", + "feature": { + "word": "but" + }, + "id": 7779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2583.10000", + "end": "2583.46000", + "feature": { + "word": "those" + }, + "id": 7780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2583.46000", + "end": "2584.02000", + "feature": { + "word": "arguments" + }, + "id": 7781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2584.02000", + "end": "2584.16000", + "feature": { + "word": "it" + }, + "id": 7782, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2584.16000", + "end": "2584.51000", + "feature": { + "word": "seems" + }, + "id": 7783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2584.51000", + "end": "2584.61000", + "feature": { + "word": "to" + }, + "id": 7784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2584.61000", + "end": "2584.96000", + "feature": { + "word": "me" + }, + "id": 7785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2585.48000", + "end": "2585.67000", + "feature": { + "word": "are" + }, + "id": 7787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2585.67000", + "end": "2586.32000", + "feature": { + "word": "arguments" + }, + "id": 7788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2586.32000", + "end": "2586.45000", + "feature": { + "word": "to" + }, + "id": 7789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2586.45000", + "end": "2586.99000", + "feature": { + "word": "change" + }, + "id": 7790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2586.99000", + "end": "2587.15000", + "feature": { + "word": "the" + }, + "id": 7791, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2587.15000", + "end": "2587.51000", + "feature": { + "word": "law" + }, + "id": 7792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2587.95000", + "end": "2588.45000", + "feature": { + "word": "not" + }, + "id": 7794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2588.45000", + "end": "2588.60000", + "feature": { + "word": "to" + }, + "id": 7795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2588.60000", + "end": "2589.00000", + "feature": { + "word": "evade" + }, + "id": 7796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2589.00000", + "end": "2589.17000", + "feature": { + "word": "them" + }, + "id": 7797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2589.17000", + "end": "2589.25000", + "feature": { + "word": "and" + }, + "id": 7798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2589.25000", + "end": "2589.35000", + "feature": { + "word": "i" + }, + "id": 7799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2589.35000", + "end": "2589.61000", + "feature": { + "word": "think" + }, + "id": 7800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2589.61000", + "end": "2589.78000", + "feature": { + "word": "that" + }, + "id": 7801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2589.78000", + "end": "2589.91000", + "feature": { + "word": "is" + }, + "id": 7802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2589.91000", + "end": "2590.51000", + "feature": { + "word": "particularly" + }, + "id": 7803, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2590.51000", + "end": "2590.63000", + "feature": { + "word": "the" + }, + "id": 7804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2590.63000", + "end": "2591.00000", + "feature": { + "word": "case" + }, + "id": 7805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2591.29000", + "end": "2591.45000", + "feature": { + "word": "with" + }, + "id": 7807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2591.45000", + "end": "2592.16000", + "feature": { + "word": "respect" + }, + "id": 7808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2592.16000", + "end": "2592.24000", + "feature": { + "word": "to" + }, + "id": 7809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2592.24000", + "end": "2592.32000", + "feature": { + "word": "the" + }, + "id": 7810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2592.32000", + "end": "2592.96000", + "feature": { + "word": "president" + }, + "id": 7811, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2593.02000", + "end": "2593.26000", + "feature": { + "word": "and" + }, + "id": 7813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2593.26000", + "end": "2593.36000", + "feature": { + "word": "the" + }, + "id": 7814, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2593.36000", + "end": "2593.94000", + "feature": { + "word": "executive" + }, + "id": 7815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2593.94000", + "end": "2594.25000", + "feature": { + "word": "branch" + }, + "id": 7816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2594.25000", + "end": "2594.36000", + "feature": { + "word": "of" + }, + "id": 7817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2594.36000", + "end": "2594.85000", + "feature": { + "word": "government" + }, + "id": 7818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2594.85000", + "end": "2595.26000", + "feature": { + "word": "speaker" + }, + "id": 7819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2595.26000", + "end": "2595.57000", + "feature": { + "word": "wright" + }, + "id": 7820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2595.57000", + "end": "2595.86000", + "feature": { + "word": "says" + }, + "id": 7821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2595.86000", + "end": "2596.06000", + "feature": { + "word": "he" + }, + "id": 7822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2596.06000", + "end": "2596.16000", + "feature": { + "word": "is" + }, + "id": 7823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2596.16000", + "end": "2596.41000", + "feature": { + "word": "not" + }, + "id": 7824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2596.41000", + "end": "2596.88000", + "feature": { + "word": "seeking" + }, + "id": 7825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2596.88000", + "end": "2597.02000", + "feature": { + "word": "a" + }, + "id": 7826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2597.02000", + "end": "2597.87000", + "feature": { + "word": "constitutional" + }, + "id": 7827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2597.87000", + "end": "2598.61000", + "feature": { + "word": "crisis" + }, + "id": 7828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2598.61000", + "end": "2599.01000", + "feature": { + "word": "but" + }, + "id": 7829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2599.01000", + "end": "2599.39000", + "feature": { + "word": "how" + }, + "id": 7830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2599.39000", + "end": "2599.70000", + "feature": { + "word": "do" + }, + "id": 7831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2599.70000", + "end": "2599.98000", + "feature": { + "word": "you" + }, + "id": 7832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2599.98000", + "end": "2600.68000", + "feature": { + "word": "resolve" + }, + "id": 7833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2600.68000", + "end": "2600.78000", + "feature": { + "word": "the" + }, + "id": 7834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2600.78000", + "end": "2601.57000", + "feature": { + "word": "constitutional" + }, + "id": 7835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2601.57000", + "end": "2602.04000", + "feature": { + "word": "questions" + }, + "id": 7836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2602.04000", + "end": "2602.19000", + "feature": { + "word": "do" + }, + "id": 7837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2602.22000", + "end": "2602.37000", + "feature": { + "word": "you" + }, + "id": 7839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2602.37000", + "end": "2602.65000", + "feature": { + "word": "agree" + }, + "id": 7840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2602.65000", + "end": "2603.00000", + "feature": { + "word": "senator" + }, + "id": 7841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2603.00000", + "end": "2603.31000", + "feature": { + "word": "mitchell" + }, + "id": 7842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2603.31000", + "end": "2603.45000", + "feature": { + "word": "with" + }, + "id": 7843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2603.45000", + "end": "2603.90000", + "feature": { + "word": "congressman" + }, + "id": 7844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2603.90000", + "end": "2604.27000", + "feature": { + "word": "courter" + }, + "id": 7845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2604.27000", + "end": "2604.55000", + "feature": { + "word": "that" + }, + "id": 7846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2604.55000", + "end": "2604.66000", + "feature": { + "word": "the" + }, + "id": 7847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2604.66000", + "end": "2605.12000", + "feature": { + "word": "courts" + }, + "id": 7848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2605.12000", + "end": "2605.31000", + "feature": { + "word": "will" + }, + "id": 7849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2605.31000", + "end": "2605.50000", + "feature": { + "word": "have" + }, + "id": 7850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2605.50000", + "end": "2605.60000", + "feature": { + "word": "to" + }, + "id": 7851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2605.60000", + "end": "2606.04000", + "feature": { + "word": "resolve" + }, + "id": 7852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2606.04000", + "end": "2606.33000", + "feature": { + "word": "that" + }, + "id": 7853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2606.64000", + "end": "2606.73000", + "feature": { + "word": "sen" + }, + "id": 7855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2606.76000", + "end": "2607.27000", + "feature": { + "word": "ultimately" + }, + "id": 7857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2607.27000", + "end": "2607.38000", + "feature": { + "word": "of" + }, + "id": 7858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2607.38000", + "end": "2607.72000", + "feature": { + "word": "course" + }, + "id": 7859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2607.72000", + "end": "2607.81000", + "feature": { + "word": "in" + }, + "id": 7860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2607.81000", + "end": "2607.96000", + "feature": { + "word": "our" + }, + "id": 7861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2607.96000", + "end": "2608.45000", + "feature": { + "word": "system" + }, + "id": 7862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2608.48000", + "end": "2608.80000", + "feature": { + "word": "that" + }, + "id": 7864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2608.83000", + "end": "2609.08000", + "feature": { + "word": "is" + }, + "id": 7866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2609.08000", + "end": "2609.34000", + "feature": { + "word": "what" + }, + "id": 7867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2609.34000", + "end": "2609.42000", + "feature": { + "word": "the" + }, + "id": 7868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2609.42000", + "end": "2609.87000", + "feature": { + "word": "decision" + }, + "id": 7869, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2609.87000", + "end": "2609.90000", + "feature": { + "word": "" + }, + "id": 7870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2609.90000", + "end": "2610.08000", + "feature": { + "word": "that" + }, + "id": 7871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2610.08000", + "end": "2610.20000", + "feature": { + "word": "is" + }, + "id": 7872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2610.20000", + "end": "2610.43000", + "feature": { + "word": "where" + }, + "id": 7873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2610.43000", + "end": "2610.56000", + "feature": { + "word": "the" + }, + "id": 7874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2610.56000", + "end": "2610.95000", + "feature": { + "word": "decision" + }, + "id": 7875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2610.95000", + "end": "2611.08000", + "feature": { + "word": "will" + }, + "id": 7876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2611.08000", + "end": "2611.46000", + "feature": { + "word": "be" + }, + "id": 7877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2611.64000", + "end": "2611.89000", + "feature": { + "word": "that" + }, + "id": 7879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2611.89000", + "end": "2612.03000", + "feature": { + "word": "is" + }, + "id": 7880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2612.03000", + "end": "2612.89000", + "feature": { + "word": "providing" + }, + "id": 7881, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2612.92000", + "end": "2613.23000", + "feature": { + "word": "that" + }, + "id": 7883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2613.23000", + "end": "2613.37000", + "feature": { + "word": "the" + }, + "id": 7884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2613.37000", + "end": "2613.80000", + "feature": { + "word": "special" + }, + "id": 7885, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2613.80000", + "end": "2614.61000", + "feature": { + "word": "prosecutor" + }, + "id": 7886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2614.61000", + "end": "2615.22000", + "feature": { + "word": "brings" + }, + "id": 7887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2615.22000", + "end": "2615.41000", + "feature": { + "word": "an" + }, + "id": 7888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2615.41000", + "end": "2616.04000", + "feature": { + "word": "action" + }, + "id": 7889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2616.07000", + "end": "2616.65000", + "feature": { + "word": "against" + }, + "id": 7891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2616.68000", + "end": "2617.40000", + "feature": { + "word": "persons" + }, + "id": 7893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2617.78000", + "end": "2617.81000", + "feature": { + "word": "" + }, + "id": 7895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2617.84000", + "end": "2618.46000", + "feature": { + "word": "allegedly" + }, + "id": 7897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2618.46000", + "end": "2618.60000", + "feature": { + "word": "he" + }, + "id": 7898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2618.60000", + "end": "2618.73000", + "feature": { + "word": "s" + }, + "id": 7899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2618.93000", + "end": "2619.38000", + "feature": { + "word": "thinking" + }, + "id": 7901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2619.38000", + "end": "2619.77000", + "feature": { + "word": "about" + }, + "id": 7902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2619.77000", + "end": "2619.96000", + "feature": { + "word": "the" + }, + "id": 7903, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2619.96000", + "end": "2620.92000", + "feature": { + "word": "conspiracy" + }, + "id": 7904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2621.20000", + "end": "2621.37000", + "feature": { + "word": "to" + }, + "id": 7906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2621.37000", + "end": "2621.76000", + "feature": { + "word": "avoid" + }, + "id": 7907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2621.76000", + "end": "2621.86000", + "feature": { + "word": "the" + }, + "id": 7908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2621.86000", + "end": "2622.17000", + "feature": { + "word": "law" + }, + "id": 7909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2622.17000", + "end": "2622.41000", + "feature": { + "word": "in" + }, + "id": 7910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2622.41000", + "end": "2622.64000", + "feature": { + "word": "that" + }, + "id": 7911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2622.64000", + "end": "2622.97000", + "feature": { + "word": "event" + }, + "id": 7912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2623.03000", + "end": "2623.32000", + "feature": { + "word": "all" + }, + "id": 7914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2623.32000", + "end": "2623.45000", + "feature": { + "word": "of" + }, + "id": 7915, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2623.45000", + "end": "2623.55000", + "feature": { + "word": "the" + }, + "id": 7916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2623.55000", + "end": "2624.09000", + "feature": { + "word": "defenses" + }, + "id": 7917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2624.09000", + "end": "2624.22000", + "feature": { + "word": "that" + }, + "id": 7918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2624.22000", + "end": "2624.31000", + "feature": { + "word": "have" + }, + "id": 7919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2624.31000", + "end": "2624.49000", + "feature": { + "word": "been" + }, + "id": 7920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2624.49000", + "end": "2625.28000", + "feature": { + "word": "suggested" + }, + "id": 7921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2625.28000", + "end": "2625.49000", + "feature": { + "word": "will" + }, + "id": 7922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2625.49000", + "end": "2625.63000", + "feature": { + "word": "be" + }, + "id": 7923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2625.63000", + "end": "2626.00000", + "feature": { + "word": "raised" + }, + "id": 7924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2626.48000", + "end": "2626.62000", + "feature": { + "word": "but" + }, + "id": 7926, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2626.62000", + "end": "2626.70000", + "feature": { + "word": "the" + }, + "id": 7927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2626.70000", + "end": "2627.32000", + "feature": { + "word": "reality" + }, + "id": 7928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2627.32000", + "end": "2627.56000", + "feature": { + "word": "is" + }, + "id": 7929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2627.56000", + "end": "2627.69000", + "feature": { + "word": "that" + }, + "id": 7930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2627.69000", + "end": "2627.89000", + "feature": { + "word": "our" + }, + "id": 7931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2627.89000", + "end": "2628.32000", + "feature": { + "word": "system" + }, + "id": 7932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2628.32000", + "end": "2628.49000", + "feature": { + "word": "has" + }, + "id": 7933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2628.49000", + "end": "2629.10000", + "feature": { + "word": "benefited" + }, + "id": 7934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2629.10000", + "end": "2629.81000", + "feature": { + "word": "enormously" + }, + "id": 7935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2629.81000", + "end": "2629.98000", + "feature": { + "word": "from" + }, + "id": 7936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2629.98000", + "end": "2630.06000", + "feature": { + "word": "the" + }, + "id": 7937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2630.06000", + "end": "2630.55000", + "feature": { + "word": "fact" + }, + "id": 7938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2630.93000", + "end": "2631.20000", + "feature": { + "word": "that" + }, + "id": 7940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2631.20000", + "end": "2631.36000", + "feature": { + "word": "we" + }, + "id": 7941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2631.36000", + "end": "2631.69000", + "feature": { + "word": "seek" + }, + "id": 7942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2631.69000", + "end": "2631.89000", + "feature": { + "word": "to" + }, + "id": 7943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2631.92000", + "end": "2632.64000", + "feature": { + "word": "avoid" + }, + "id": 7945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2632.88000", + "end": "2633.74000", + "feature": { + "word": "constitutional" + }, + "id": 7947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2633.74000", + "end": "2634.58000", + "feature": { + "word": "confrontation" + }, + "id": 7948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2635.02000", + "end": "2635.30000", + "feature": { + "word": "there" + }, + "id": 7950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2635.30000", + "end": "2635.35000", + "feature": { + "word": "are" + }, + "id": 7951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2635.35000", + "end": "2635.77000", + "feature": { + "word": "many" + }, + "id": 7952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2635.77000", + "end": "2636.54000", + "feature": { + "word": "provisions" + }, + "id": 7953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2636.54000", + "end": "2636.62000", + "feature": { + "word": "in" + }, + "id": 7954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2636.62000", + "end": "2636.70000", + "feature": { + "word": "the" + }, + "id": 7955, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2636.70000", + "end": "2637.38000", + "feature": { + "word": "constitution" + }, + "id": 7956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2637.38000", + "end": "2637.57000", + "feature": { + "word": "which" + }, + "id": 7957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2637.57000", + "end": "2637.75000", + "feature": { + "word": "have" + }, + "id": 7958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2637.75000", + "end": "2638.05000", + "feature": { + "word": "not" + }, + "id": 7959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2638.05000", + "end": "2638.17000", + "feature": { + "word": "been" + }, + "id": 7960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2638.17000", + "end": "2638.83000", + "feature": { + "word": "interpreted" + }, + "id": 7961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2639.17000", + "end": "2639.47000", + "feature": { + "word": "there" + }, + "id": 7963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2639.90000", + "end": "2640.02000", + "feature": { + "word": "is" + }, + "id": 7965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2640.02000", + "end": "2640.11000", + "feature": { + "word": "a" + }, + "id": 7966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2640.11000", + "end": "2640.49000", + "feature": { + "word": "rule" + }, + "id": 7967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2640.49000", + "end": "2640.59000", + "feature": { + "word": "of" + }, + "id": 7968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2640.59000", + "end": "2640.88000", + "feature": { + "word": "law" + }, + "id": 7969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2640.88000", + "end": "2641.08000", + "feature": { + "word": "that" + }, + "id": 7970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2641.08000", + "end": "2641.34000", + "feature": { + "word": "says" + }, + "id": 7971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2641.34000", + "end": "2641.48000", + "feature": { + "word": "if" + }, + "id": 7972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2641.48000", + "end": "2641.81000", + "feature": { + "word": "a" + }, + "id": 7973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2641.84000", + "end": "2642.20000", + "feature": { + "word": "court" + }, + "id": 7975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2642.20000", + "end": "2642.38000", + "feature": { + "word": "can" + }, + "id": 7976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2642.38000", + "end": "2642.77000", + "feature": { + "word": "avoid" + }, + "id": 7977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2642.77000", + "end": "2642.85000", + "feature": { + "word": "a" + }, + "id": 7978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2642.85000", + "end": "2643.27000", + "feature": { + "word": "decision" + }, + "id": 7979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2643.27000", + "end": "2643.40000", + "feature": { + "word": "on" + }, + "id": 7980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2643.40000", + "end": "2644.04000", + "feature": { + "word": "constitutional" + }, + "id": 7981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2644.04000", + "end": "2644.38000", + "feature": { + "word": "grounds" + }, + "id": 7982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2644.38000", + "end": "2644.53000", + "feature": { + "word": "it" + }, + "id": 7983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2644.53000", + "end": "2644.73000", + "feature": { + "word": "should" + }, + "id": 7984, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2644.73000", + "end": "2644.92000", + "feature": { + "word": "do" + }, + "id": 7985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2644.92000", + "end": "2645.28000", + "feature": { + "word": "so" + }, + "id": 7986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2645.72000", + "end": "2645.96000", + "feature": { + "word": "and" + }, + "id": 7988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2645.96000", + "end": "2646.12000", + "feature": { + "word": "we" + }, + "id": 7989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2646.12000", + "end": "2646.19000", + "feature": { + "word": "are" + }, + "id": 7990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2646.19000", + "end": "2646.71000", + "feature": { + "word": "best" + }, + "id": 7991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2646.71000", + "end": "2647.02000", + "feature": { + "word": "off" + }, + "id": 7992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2647.02000", + "end": "2647.47000", + "feature": { + "word": "not" + }, + "id": 7993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2647.47000", + "end": "2648.04000", + "feature": { + "word": "pushing" + }, + "id": 7994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2648.04000", + "end": "2648.15000", + "feature": { + "word": "to" + }, + "id": 7995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2648.15000", + "end": "2648.26000", + "feature": { + "word": "the" + }, + "id": 7996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2648.26000", + "end": "2648.72000", + "feature": { + "word": "brink" + }, + "id": 7997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2649.19000", + "end": "2649.41000", + "feature": { + "word": "in" + }, + "id": 7999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2649.44000", + "end": "2649.84000", + "feature": { + "word": "every" + }, + "id": 8001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2649.84000", + "end": "2650.25000", + "feature": { + "word": "single" + }, + "id": 8002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2650.25000", + "end": "2650.84000", + "feature": { + "word": "instance" + }, + "id": 8003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2651.00000", + "end": "2651.41000", + "feature": { + "word": "merely" + }, + "id": 8005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2651.41000", + "end": "2651.55000", + "feature": { + "word": "for" + }, + "id": 8006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2651.55000", + "end": "2651.99000", + "feature": { + "word": "purpose" + }, + "id": 8007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2651.99000", + "end": "2652.07000", + "feature": { + "word": "of" + }, + "id": 8008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2652.12000", + "end": "2652.55000", + "feature": { + "word": "clarity" + }, + "id": 8010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2652.95000", + "end": "2653.25000", + "feature": { + "word": "the" + }, + "id": 8012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2653.28000", + "end": "2653.83000", + "feature": { + "word": "relationship" + }, + "id": 8014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2653.83000", + "end": "2654.11000", + "feature": { + "word": "between" + }, + "id": 8015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2654.11000", + "end": "2654.20000", + "feature": { + "word": "the" + }, + "id": 8016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2654.20000", + "end": "2654.32000", + "feature": { + "word": "two" + }, + "id": 8017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2654.32000", + "end": "2654.79000", + "feature": { + "word": "branches" + }, + "id": 8018, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2654.82000", + "end": "2654.97000", + "feature": { + "word": "all" + }, + "id": 8020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2654.97000", + "end": "2655.17000", + "feature": { + "word": "right" + }, + "id": 8021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2655.27000", + "end": "2655.63000", + "feature": { + "word": "sorry" + }, + "id": 8023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2655.63000", + "end": "2656.33000", + "feature": { + "word": "to" + }, + "id": 8024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2656.50000", + "end": "2656.80000", + "feature": { + "word": "hustle" + }, + "id": 8026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2656.80000", + "end": "2656.98000", + "feature": { + "word": "you" + }, + "id": 8027, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2656.98000", + "end": "2657.16000", + "feature": { + "word": "out" + }, + "id": 8028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2657.16000", + "end": "2657.34000", + "feature": { + "word": "there" + }, + "id": 8029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2657.34000", + "end": "2657.53000", + "feature": { + "word": "but" + }, + "id": 8030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2657.53000", + "end": "2657.70000", + "feature": { + "word": "that" + }, + "id": 8031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2657.70000", + "end": "2657.84000", + "feature": { + "word": "is" + }, + "id": 8032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2657.84000", + "end": "2657.99000", + "feature": { + "word": "the" + }, + "id": 8033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2657.99000", + "end": "2658.13000", + "feature": { + "word": "end" + }, + "id": 8034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2658.13000", + "end": "2658.21000", + "feature": { + "word": "of" + }, + "id": 8035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2658.21000", + "end": "2658.35000", + "feature": { + "word": "our" + }, + "id": 8036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2658.35000", + "end": "2658.61000", + "feature": { + "word": "time" + }, + "id": 8037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2658.61000", + "end": "2658.80000", + "feature": { + "word": "this" + }, + "id": 8038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2658.80000", + "end": "2659.18000", + "feature": { + "word": "evening" + }, + "id": 8039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2659.18000", + "end": "2659.52000", + "feature": { + "word": "senator" + }, + "id": 8040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2659.52000", + "end": "2659.79000", + "feature": { + "word": "mitchell" + }, + "id": 8041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2659.79000", + "end": "2660.22000", + "feature": { + "word": "congressman" + }, + "id": 8042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2660.22000", + "end": "2660.54000", + "feature": { + "word": "courter" + }, + "id": 8043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2660.54000", + "end": "2660.77000", + "feature": { + "word": "thank" + }, + "id": 8044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2660.77000", + "end": "2660.83000", + "feature": { + "word": "you" + }, + "id": 8045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2660.83000", + "end": "2661.20000", + "feature": { + "word": "both" + }, + "id": 8046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2663.42000", + "end": "2668.28000", + "feature": { + "word": "franz" + }, + "id": 8048, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2668.48000", + "end": "2668.61000", + "feature": { + "word": "" + }, + "id": 8050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2671.23000", + "end": "2671.65000", + "feature": { + "word": "next" + }, + "id": 8052, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2671.65000", + "end": "2671.77000", + "feature": { + "word": "a" + }, + "id": 8053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2671.77000", + "end": "2672.04000", + "feature": { + "word": "news" + }, + "id": 8054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2672.04000", + "end": "2672.45000", + "feature": { + "word": "maker" + }, + "id": 8055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2672.45000", + "end": "2672.98000", + "feature": { + "word": "interview" + }, + "id": 8056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2672.98000", + "end": "2673.11000", + "feature": { + "word": "with" + }, + "id": 8057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2673.11000", + "end": "2673.18000", + "feature": { + "word": "a" + }, + "id": 8058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2673.18000", + "end": "2673.53000", + "feature": { + "word": "man" + }, + "id": 8059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2673.53000", + "end": "2673.83000", + "feature": { + "word": "some" + }, + "id": 8060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2673.83000", + "end": "2674.22000", + "feature": { + "word": "say" + }, + "id": 8061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2674.22000", + "end": "2674.39000", + "feature": { + "word": "is" + }, + "id": 8062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2674.39000", + "end": "2674.52000", + "feature": { + "word": "in" + }, + "id": 8063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2674.52000", + "end": "2675.15000", + "feature": { + "word": "washington" + }, + "id": 8064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2675.15000", + "end": "2675.41000", + "feature": { + "word": "on" + }, + "id": 8065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2675.41000", + "end": "2675.50000", + "feature": { + "word": "a" + }, + "id": 8066, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2675.50000", + "end": "2675.94000", + "feature": { + "word": "mission" + }, + "id": 8067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2675.94000", + "end": "2676.69000", + "feature": { + "word": "impossible" + }, + "id": 8068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2676.81000", + "end": "2676.92000", + "feature": { + "word": "he" + }, + "id": 8070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2676.92000", + "end": "2676.97000", + "feature": { + "word": "s" + }, + "id": 8071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2676.97000", + "end": "2677.50000", + "feature": { + "word": "franz" + }, + "id": 8072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2677.68000", + "end": "2679.35000", + "feature": { + "word": "" + }, + "id": 8074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2679.35000", + "end": "2679.47000", + "feature": { + "word": "the" + }, + "id": 8075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2679.47000", + "end": "2680.00000", + "feature": { + "word": "chancellor" + }, + "id": 8076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2680.00000", + "end": "2680.06000", + "feature": { + "word": "of" + }, + "id": 8077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2680.06000", + "end": "2680.61000", + "feature": { + "word": "austria" + }, + "id": 8078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2680.64000", + "end": "2680.85000", + "feature": { + "word": "his" + }, + "id": 8080, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2680.85000", + "end": "2681.24000", + "feature": { + "word": "mission" + }, + "id": 8081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2681.53000", + "end": "2681.64000", + "feature": { + "word": "to" + }, + "id": 8083, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2681.64000", + "end": "2682.06000", + "feature": { + "word": "reverse" + }, + "id": 8084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2682.06000", + "end": "2682.18000", + "feature": { + "word": "the" + }, + "id": 8085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2682.18000", + "end": "2682.72000", + "feature": { + "word": "decision" + }, + "id": 8086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2682.72000", + "end": "2682.91000", + "feature": { + "word": "that" + }, + "id": 8087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2682.91000", + "end": "2683.29000", + "feature": { + "word": "bars" + }, + "id": 8088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2683.29000", + "end": "2683.86000", + "feature": { + "word": "austrian" + }, + "id": 8089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2683.86000", + "end": "2684.38000", + "feature": { + "word": "president" + }, + "id": 8090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2684.38000", + "end": "2684.63000", + "feature": { + "word": "kurt" + }, + "id": 8091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2684.63000", + "end": "2685.27000", + "feature": { + "word": "waldheim" + }, + "id": 8092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2685.27000", + "end": "2685.46000", + "feature": { + "word": "from" + }, + "id": 8093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2685.46000", + "end": "2685.83000", + "feature": { + "word": "entering" + }, + "id": 8094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2685.83000", + "end": "2685.89000", + "feature": { + "word": "the" + }, + "id": 8095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2685.89000", + "end": "2686.37000", + "feature": { + "word": "united" + }, + "id": 8096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2686.37000", + "end": "2686.89000", + "feature": { + "word": "states" + }, + "id": 8097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2687.23000", + "end": "2687.33000", + "feature": { + "word": "the" + }, + "id": 8099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2687.33000", + "end": "2687.54000", + "feature": { + "word": "u" + }, + "id": 8100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2687.54000", + "end": "2687.68000", + "feature": { + "word": "s" + }, + "id": 8101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2687.68000", + "end": "2687.91000", + "feature": { + "word": "took" + }, + "id": 8102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2687.91000", + "end": "2688.07000", + "feature": { + "word": "the" + }, + "id": 8103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2688.07000", + "end": "2688.48000", + "feature": { + "word": "action" + }, + "id": 8104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2688.48000", + "end": "2688.77000", + "feature": { + "word": "april" + }, + "id": 8105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2688.80000", + "end": "2689.50000", + "feature": { + "word": "" + }, + "id": 8107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2689.76000", + "end": "2690.07000", + "feature": { + "word": "saying" + }, + "id": 8109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2690.07000", + "end": "2690.19000", + "feature": { + "word": "there" + }, + "id": 8110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2690.19000", + "end": "2690.35000", + "feature": { + "word": "was" + }, + "id": 8111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2690.35000", + "end": "2691.12000", + "feature": { + "word": "substantial" + }, + "id": 8112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2691.12000", + "end": "2691.47000", + "feature": { + "word": "evidence" + }, + "id": 8113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2691.47000", + "end": "2691.56000", + "feature": { + "word": "that" + }, + "id": 8114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2691.56000", + "end": "2692.02000", + "feature": { + "word": "waldheim" + }, + "id": 8115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2692.02000", + "end": "2692.81000", + "feature": { + "word": "participated" + }, + "id": 8116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2692.81000", + "end": "2692.92000", + "feature": { + "word": "in" + }, + "id": 8117, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2692.92000", + "end": "2693.15000", + "feature": { + "word": "war" + }, + "id": 8118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2693.15000", + "end": "2693.66000", + "feature": { + "word": "crimes" + }, + "id": 8119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2693.89000", + "end": "2694.18000", + "feature": { + "word": "while" + }, + "id": 8121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2694.18000", + "end": "2694.54000", + "feature": { + "word": "serving" + }, + "id": 8122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2694.54000", + "end": "2694.65000", + "feature": { + "word": "in" + }, + "id": 8123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2694.65000", + "end": "2694.72000", + "feature": { + "word": "the" + }, + "id": 8124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2694.72000", + "end": "2695.14000", + "feature": { + "word": "nazi" + }, + "id": 8125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2695.14000", + "end": "2695.44000", + "feature": { + "word": "army" + }, + "id": 8126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2695.44000", + "end": "2695.54000", + "feature": { + "word": "in" + }, + "id": 8127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2695.54000", + "end": "2695.79000", + "feature": { + "word": "world" + }, + "id": 8128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2695.79000", + "end": "2696.00000", + "feature": { + "word": "war" + }, + "id": 8129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2696.00000", + "end": "2696.43000", + "feature": { + "word": "" + }, + "id": 8130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2696.72000", + "end": "2697.20000", + "feature": { + "word": "waldheim" + }, + "id": 8132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2697.20000", + "end": "2697.35000", + "feature": { + "word": "has" + }, + "id": 8133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2697.35000", + "end": "2697.79000", + "feature": { + "word": "denied" + }, + "id": 8134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2697.79000", + "end": "2697.87000", + "feature": { + "word": "the" + }, + "id": 8135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2697.87000", + "end": "2698.51000", + "feature": { + "word": "charge" + }, + "id": 8136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2698.86000", + "end": "2699.31000", + "feature": { + "word": "chancellor" + }, + "id": 8138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2699.31000", + "end": "2699.94000", + "feature": { + "word": "" + }, + "id": 8139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2699.94000", + "end": "2700.22000", + "feature": { + "word": "was" + }, + "id": 8140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2700.22000", + "end": "2700.38000", + "feature": { + "word": "" + }, + "id": 8141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2700.38000", + "end": "2700.61000", + "feature": { + "word": "years" + }, + "id": 8142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2700.61000", + "end": "2700.94000", + "feature": { + "word": "old" + }, + "id": 8143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2700.94000", + "end": "2701.06000", + "feature": { + "word": "when" + }, + "id": 8144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2701.06000", + "end": "2701.34000", + "feature": { + "word": "world" + }, + "id": 8145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2701.34000", + "end": "2701.54000", + "feature": { + "word": "war" + }, + "id": 8146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2701.54000", + "end": "2701.85000", + "feature": { + "word": "" + }, + "id": 8147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2701.85000", + "end": "2702.15000", + "feature": { + "word": "ended" + }, + "id": 8148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2702.38000", + "end": "2702.50000", + "feature": { + "word": "he" + }, + "id": 8150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2702.50000", + "end": "2702.67000", + "feature": { + "word": "is" + }, + "id": 8151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2702.67000", + "end": "2702.78000", + "feature": { + "word": "the" + }, + "id": 8152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2702.78000", + "end": "2703.17000", + "feature": { + "word": "first" + }, + "id": 8153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2703.17000", + "end": "2703.27000", + "feature": { + "word": "of" + }, + "id": 8154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2703.27000", + "end": "2703.71000", + "feature": { + "word": "austria" + }, + "id": 8155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2703.71000", + "end": "2703.78000", + "feature": { + "word": "s" + }, + "id": 8156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2703.78000", + "end": "2704.13000", + "feature": { + "word": "post" + }, + "id": 8157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2704.13000", + "end": "2704.31000", + "feature": { + "word": "war" + }, + "id": 8158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2704.31000", + "end": "2704.89000", + "feature": { + "word": "generation" + }, + "id": 8159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2704.89000", + "end": "2704.99000", + "feature": { + "word": "to" + }, + "id": 8160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2704.99000", + "end": "2705.22000", + "feature": { + "word": "lead" + }, + "id": 8161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2705.22000", + "end": "2705.42000", + "feature": { + "word": "his" + }, + "id": 8162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2705.42000", + "end": "2705.88000", + "feature": { + "word": "country" + }, + "id": 8163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2706.15000", + "end": "2706.37000", + "feature": { + "word": "he" + }, + "id": 8165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2706.37000", + "end": "2706.44000", + "feature": { + "word": "s" + }, + "id": 8166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2706.44000", + "end": "2706.51000", + "feature": { + "word": "a" + }, + "id": 8167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2706.51000", + "end": "2707.09000", + "feature": { + "word": "socialist" + }, + "id": 8168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2707.09000", + "end": "2707.14000", + "feature": { + "word": "a" + }, + "id": 8169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2707.14000", + "end": "2707.67000", + "feature": { + "word": "banker" + }, + "id": 8170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2707.67000", + "end": "2707.75000", + "feature": { + "word": "and" + }, + "id": 8171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2707.75000", + "end": "2707.79000", + "feature": { + "word": "a" + }, + "id": 8172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2707.79000", + "end": "2708.48000", + "feature": { + "word": "basketball" + }, + "id": 8173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2708.48000", + "end": "2708.92000", + "feature": { + "word": "player" + }, + "id": 8174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2709.01000", + "end": "2709.25000", + "feature": { + "word": "he" + }, + "id": 8176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2709.25000", + "end": "2709.65000", + "feature": { + "word": "became" + }, + "id": 8177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2709.65000", + "end": "2710.18000", + "feature": { + "word": "chancellor" + }, + "id": 8178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2710.18000", + "end": "2710.30000", + "feature": { + "word": "and" + }, + "id": 8179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2710.30000", + "end": "2710.46000", + "feature": { + "word": "head" + }, + "id": 8180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2710.46000", + "end": "2710.53000", + "feature": { + "word": "of" + }, + "id": 8181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2710.53000", + "end": "2711.00000", + "feature": { + "word": "government" + }, + "id": 8182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2711.28000", + "end": "2711.63000", + "feature": { + "word": "last" + }, + "id": 8184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2711.63000", + "end": "2711.94000", + "feature": { + "word": "year" + }, + "id": 8185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2712.50000", + "end": "2712.88000", + "feature": { + "word": "chancellor" + }, + "id": 8187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2712.88000", + "end": "2713.28000", + "feature": { + "word": "welcome" + }, + "id": 8188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2714.29000", + "end": "2714.44000", + "feature": { + "word": "you" + }, + "id": 8190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2714.44000", + "end": "2714.68000", + "feature": { + "word": "talked" + }, + "id": 8191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2714.68000", + "end": "2714.77000", + "feature": { + "word": "with" + }, + "id": 8192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2714.77000", + "end": "2715.13000", + "feature": { + "word": "president" + }, + "id": 8193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2715.13000", + "end": "2715.50000", + "feature": { + "word": "reagan" + }, + "id": 8194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2715.50000", + "end": "2715.77000", + "feature": { + "word": "today" + }, + "id": 8195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2715.77000", + "end": "2716.04000", + "feature": { + "word": "about" + }, + "id": 8196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2716.04000", + "end": "2716.11000", + "feature": { + "word": "the" + }, + "id": 8197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2716.11000", + "end": "2716.66000", + "feature": { + "word": "waldheim" + }, + "id": 8198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2716.66000", + "end": "2717.01000", + "feature": { + "word": "case" + }, + "id": 8199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2717.01000", + "end": "2717.15000", + "feature": { + "word": "what" + }, + "id": 8200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2717.15000", + "end": "2717.26000", + "feature": { + "word": "did" + }, + "id": 8201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2717.26000", + "end": "2717.34000", + "feature": { + "word": "he" + }, + "id": 8202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2717.34000", + "end": "2717.60000", + "feature": { + "word": "tell" + }, + "id": 8203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2717.60000", + "end": "2717.69000", + "feature": { + "word": "you" + }, + "id": 8204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2719.08000", + "end": "2719.33000", + "feature": { + "word": "well" + }, + "id": 8206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2719.33000", + "end": "2719.47000", + "feature": { + "word": "we" + }, + "id": 8207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2719.47000", + "end": "2719.79000", + "feature": { + "word": "talked" + }, + "id": 8208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2719.79000", + "end": "2720.09000", + "feature": { + "word": "about" + }, + "id": 8209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2720.09000", + "end": "2720.54000", + "feature": { + "word": "waldheim" + }, + "id": 8210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2720.54000", + "end": "2720.82000", + "feature": { + "word": "case" + }, + "id": 8211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2720.82000", + "end": "2721.25000", + "feature": { + "word": "among" + }, + "id": 8212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2721.25000", + "end": "2721.50000", + "feature": { + "word": "other" + }, + "id": 8213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2721.50000", + "end": "2722.04000", + "feature": { + "word": "topics" + }, + "id": 8214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2722.04000", + "end": "2722.15000", + "feature": { + "word": "we" + }, + "id": 8215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2722.15000", + "end": "2722.35000", + "feature": { + "word": "were" + }, + "id": 8216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2722.35000", + "end": "2722.89000", + "feature": { + "word": "interested" + }, + "id": 8217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2722.89000", + "end": "2723.17000", + "feature": { + "word": "in" + }, + "id": 8218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2723.96000", + "end": "2724.60000", + "feature": { + "word": "and" + }, + "id": 8220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2724.60000", + "end": "2724.97000", + "feature": { + "word": "i" + }, + "id": 8221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2726.00000", + "end": "2726.30000", + "feature": { + "word": "have" + }, + "id": 8223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2726.30000", + "end": "2726.43000", + "feature": { + "word": "to" + }, + "id": 8224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2726.43000", + "end": "2726.68000", + "feature": { + "word": "say" + }, + "id": 8225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2726.68000", + "end": "2727.05000", + "feature": { + "word": "that" + }, + "id": 8226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2727.05000", + "end": "2727.48000", + "feature": { + "word": "i" + }, + "id": 8227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2727.48000", + "end": "2727.77000", + "feature": { + "word": "got" + }, + "id": 8228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2727.77000", + "end": "2728.37000", + "feature": { + "word": "invitation" + }, + "id": 8229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2728.37000", + "end": "2728.62000", + "feature": { + "word": "from" + }, + "id": 8230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2728.62000", + "end": "2729.10000", + "feature": { + "word": "president" + }, + "id": 8231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2729.10000", + "end": "2729.46000", + "feature": { + "word": "reagan" + }, + "id": 8232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2729.46000", + "end": "2729.74000", + "feature": { + "word": "to" + }, + "id": 8233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2729.74000", + "end": "2730.08000", + "feature": { + "word": "visit" + }, + "id": 8234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2730.08000", + "end": "2730.26000", + "feature": { + "word": "here" + }, + "id": 8235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2730.26000", + "end": "2730.37000", + "feature": { + "word": "in" + }, + "id": 8236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2730.37000", + "end": "2731.64000", + "feature": { + "word": "washington" + }, + "id": 8237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2731.64000", + "end": "2731.83000", + "feature": { + "word": "way" + }, + "id": 8238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2731.83000", + "end": "2732.08000", + "feature": { + "word": "back" + }, + "id": 8239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2732.08000", + "end": "2732.44000", + "feature": { + "word": "last" + }, + "id": 8240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2732.44000", + "end": "2732.77000", + "feature": { + "word": "year" + }, + "id": 8241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2733.13000", + "end": "2733.28000", + "feature": { + "word": "so" + }, + "id": 8243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2733.28000", + "end": "2733.38000", + "feature": { + "word": "the" + }, + "id": 8244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2733.38000", + "end": "2733.80000", + "feature": { + "word": "waldheim" + }, + "id": 8245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2733.80000", + "end": "2734.22000", + "feature": { + "word": "affair" + }, + "id": 8246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2734.22000", + "end": "2734.47000", + "feature": { + "word": "came" + }, + "id": 8247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2734.47000", + "end": "2734.62000", + "feature": { + "word": "on" + }, + "id": 8248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2734.62000", + "end": "2735.12000", + "feature": { + "word": "top" + }, + "id": 8249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2735.12000", + "end": "2735.56000", + "feature": { + "word": "of" + }, + "id": 8250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2735.59000", + "end": "2735.98000", + "feature": { + "word": "that" + }, + "id": 8252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2735.98000", + "end": "2736.14000", + "feature": { + "word": "so" + }, + "id": 8253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2736.14000", + "end": "2736.30000", + "feature": { + "word": "we" + }, + "id": 8254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2736.30000", + "end": "2736.47000", + "feature": { + "word": "would" + }, + "id": 8255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2736.47000", + "end": "2736.86000", + "feature": { + "word": "have" + }, + "id": 8256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2736.86000", + "end": "2737.12000", + "feature": { + "word": "had" + }, + "id": 8257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2737.15000", + "end": "2737.38000", + "feature": { + "word": "other" + }, + "id": 8259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2737.38000", + "end": "2737.95000", + "feature": { + "word": "topics" + }, + "id": 8260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2737.95000", + "end": "2738.23000", + "feature": { + "word": "too" + }, + "id": 8261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2738.72000", + "end": "2738.87000", + "feature": { + "word": "but" + }, + "id": 8263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2738.87000", + "end": "2738.97000", + "feature": { + "word": "to" + }, + "id": 8264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2738.97000", + "end": "2739.09000", + "feature": { + "word": "your" + }, + "id": 8265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2739.09000", + "end": "2739.70000", + "feature": { + "word": "question" + }, + "id": 8266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2740.37000", + "end": "2741.10000", + "feature": { + "word": "i" + }, + "id": 8268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2741.13000", + "end": "2741.79000", + "feature": { + "word": "came" + }, + "id": 8270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2741.79000", + "end": "2742.15000", + "feature": { + "word": "among" + }, + "id": 8271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2742.15000", + "end": "2742.38000", + "feature": { + "word": "other" + }, + "id": 8272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2742.43000", + "end": "2742.86000", + "feature": { + "word": "things" + }, + "id": 8274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2742.86000", + "end": "2743.17000", + "feature": { + "word": "with" + }, + "id": 8275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2743.17000", + "end": "2743.48000", + "feature": { + "word": "a" + }, + "id": 8276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2744.62000", + "end": "2745.03000", + "feature": { + "word": "question" + }, + "id": 8278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2745.03000", + "end": "2745.18000", + "feature": { + "word": "in" + }, + "id": 8279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2745.18000", + "end": "2746.05000", + "feature": { + "word": "my" + }, + "id": 8280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2746.08000", + "end": "2746.59000", + "feature": { + "word": "package" + }, + "id": 8282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2746.59000", + "end": "2747.07000", + "feature": { + "word": "to" + }, + "id": 8283, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2747.41000", + "end": "2747.93000", + "feature": { + "word": "urge" + }, + "id": 8285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2747.96000", + "end": "2748.04000", + "feature": { + "word": "the" + }, + "id": 8287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2748.04000", + "end": "2748.36000", + "feature": { + "word": "united" + }, + "id": 8288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2748.36000", + "end": "2748.70000", + "feature": { + "word": "states" + }, + "id": 8289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2748.70000", + "end": "2749.39000", + "feature": { + "word": "government" + }, + "id": 8290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2749.39000", + "end": "2749.73000", + "feature": { + "word": "" + }, + "id": 8291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2750.45000", + "end": "2750.89000", + "feature": { + "word": "what" + }, + "id": 8293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2750.92000", + "end": "2751.10000", + "feature": { + "word": "and" + }, + "id": 8295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2751.10000", + "end": "2751.28000", + "feature": { + "word": "if" + }, + "id": 8296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2751.28000", + "end": "2751.38000", + "feature": { + "word": "they" + }, + "id": 8297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2751.38000", + "end": "2751.62000", + "feature": { + "word": "can" + }, + "id": 8298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2751.62000", + "end": "2751.75000", + "feature": { + "word": "do" + }, + "id": 8299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2751.75000", + "end": "2752.14000", + "feature": { + "word": "anything" + }, + "id": 8300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2752.17000", + "end": "2752.29000", + "feature": { + "word": "to" + }, + "id": 8302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2752.29000", + "end": "2752.93000", + "feature": { + "word": "reverse" + }, + "id": 8303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2752.93000", + "end": "2753.06000", + "feature": { + "word": "the" + }, + "id": 8304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2753.06000", + "end": "2753.64000", + "feature": { + "word": "decision" + }, + "id": 8305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2753.96000", + "end": "2754.65000", + "feature": { + "word": "having" + }, + "id": 8307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2754.65000", + "end": "2755.10000", + "feature": { + "word": "waldheim" + }, + "id": 8308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2755.10000", + "end": "2755.56000", + "feature": { + "word": "on" + }, + "id": 8309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2755.59000", + "end": "2755.65000", + "feature": { + "word": "the" + }, + "id": 8311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2755.65000", + "end": "2755.99000", + "feature": { + "word": "watch" + }, + "id": 8312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2755.99000", + "end": "2756.34000", + "feature": { + "word": "list" + }, + "id": 8313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2757.16000", + "end": "2757.96000", + "feature": { + "word": "well" + }, + "id": 8315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2757.96000", + "end": "2758.10000", + "feature": { + "word": "the" + }, + "id": 8316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2758.10000", + "end": "2758.62000", + "feature": { + "word": "answer" + }, + "id": 8317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2759.26000", + "end": "2759.79000", + "feature": { + "word": "by" + }, + "id": 8319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2759.97000", + "end": "2760.46000", + "feature": { + "word": "president" + }, + "id": 8321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2760.46000", + "end": "2760.90000", + "feature": { + "word": "reagan" + }, + "id": 8322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2760.90000", + "end": "2761.26000", + "feature": { + "word": "by" + }, + "id": 8323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2761.26000", + "end": "2761.76000", + "feature": { + "word": "secretary" + }, + "id": 8324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2761.76000", + "end": "2762.15000", + "feature": { + "word": "shultz" + }, + "id": 8325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2762.15000", + "end": "2762.30000", + "feature": { + "word": "and" + }, + "id": 8326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2762.30000", + "end": "2762.55000", + "feature": { + "word": "by" + }, + "id": 8327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2762.55000", + "end": "2763.01000", + "feature": { + "word": "others" + }, + "id": 8328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2763.01000", + "end": "2763.48000", + "feature": { + "word": "was" + }, + "id": 8329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2763.48000", + "end": "2764.11000", + "feature": { + "word": "that" + }, + "id": 8330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2764.11000", + "end": "2764.31000", + "feature": { + "word": "this" + }, + "id": 8331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2764.31000", + "end": "2764.63000", + "feature": { + "word": "measure" + }, + "id": 8332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2764.63000", + "end": "2764.82000", + "feature": { + "word": "was" + }, + "id": 8333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2764.82000", + "end": "2765.04000", + "feature": { + "word": "not" + }, + "id": 8334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2765.04000", + "end": "2765.65000", + "feature": { + "word": "directed" + }, + "id": 8335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2766.06000", + "end": "2766.44000", + "feature": { + "word": "against" + }, + "id": 8337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2766.44000", + "end": "2766.55000", + "feature": { + "word": "the" + }, + "id": 8338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2766.55000", + "end": "2766.99000", + "feature": { + "word": "austrian" + }, + "id": 8339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2767.02000", + "end": "2767.32000", + "feature": { + "word": "people" + }, + "id": 8341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2767.32000", + "end": "2767.44000", + "feature": { + "word": "the" + }, + "id": 8342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2767.44000", + "end": "2767.84000", + "feature": { + "word": "austrian" + }, + "id": 8343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2767.84000", + "end": "2768.36000", + "feature": { + "word": "government" + }, + "id": 8344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2768.36000", + "end": "2768.40000", + "feature": { + "word": "" + }, + "id": 8345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2768.40000", + "end": "2768.57000", + "feature": { + "word": "not" + }, + "id": 8346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2768.57000", + "end": "2768.83000", + "feature": { + "word": "even" + }, + "id": 8347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2768.83000", + "end": "2768.98000", + "feature": { + "word": "the" + }, + "id": 8348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2768.98000", + "end": "2769.42000", + "feature": { + "word": "austrian" + }, + "id": 8349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2769.42000", + "end": "2769.78000", + "feature": { + "word": "federal" + }, + "id": 8350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2769.81000", + "end": "2770.42000", + "feature": { + "word": "president" + }, + "id": 8352, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2770.50000", + "end": "2770.53000", + "feature": { + "word": "" + }, + "id": 8354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2770.90000", + "end": "2771.07000", + "feature": { + "word": "but" + }, + "id": 8356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2771.07000", + "end": "2771.35000", + "feature": { + "word": "that" + }, + "id": 8357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2771.35000", + "end": "2771.72000", + "feature": { + "word": "it" + }, + "id": 8358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2771.72000", + "end": "2772.01000", + "feature": { + "word": "was" + }, + "id": 8359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2772.01000", + "end": "2772.25000", + "feature": { + "word": "a" + }, + "id": 8360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2772.25000", + "end": "2772.73000", + "feature": { + "word": "step" + }, + "id": 8361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2773.14000", + "end": "2773.41000", + "feature": { + "word": "which" + }, + "id": 8363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2773.41000", + "end": "2774.31000", + "feature": { + "word": "americans" + }, + "id": 8364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2774.34000", + "end": "2774.78000", + "feature": { + "word": "think" + }, + "id": 8366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2774.78000", + "end": "2774.99000", + "feature": { + "word": "they" + }, + "id": 8367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2774.99000", + "end": "2775.42000", + "feature": { + "word": "had" + }, + "id": 8368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2775.45000", + "end": "2775.79000", + "feature": { + "word": "to" + }, + "id": 8370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2775.82000", + "end": "2776.18000", + "feature": { + "word": "take" + }, + "id": 8372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2776.51000", + "end": "2776.73000", + "feature": { + "word": "in" + }, + "id": 8374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2776.73000", + "end": "2777.34000", + "feature": { + "word": "fulfilling" + }, + "id": 8375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2777.34000", + "end": "2777.50000", + "feature": { + "word": "their" + }, + "id": 8376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2777.50000", + "end": "2777.88000", + "feature": { + "word": "law" + }, + "id": 8377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2778.97000", + "end": "2779.52000", + "feature": { + "word": "secretary" + }, + "id": 8379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2779.52000", + "end": "2780.13000", + "feature": { + "word": "shultz" + }, + "id": 8380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2780.29000", + "end": "2780.65000", + "feature": { + "word": "told" + }, + "id": 8382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2780.65000", + "end": "2780.87000", + "feature": { + "word": "you" + }, + "id": 8383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2780.90000", + "end": "2781.41000", + "feature": { + "word": "yesterday" + }, + "id": 8385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2781.41000", + "end": "2781.59000", + "feature": { + "word": "did" + }, + "id": 8386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2781.59000", + "end": "2781.75000", + "feature": { + "word": "he" + }, + "id": 8387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2781.75000", + "end": "2782.17000", + "feature": { + "word": "not" + }, + "id": 8388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2782.17000", + "end": "2782.39000", + "feature": { + "word": "that" + }, + "id": 8389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2782.39000", + "end": "2782.60000", + "feature": { + "word": "the" + }, + "id": 8390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2782.60000", + "end": "2783.31000", + "feature": { + "word": "evidence" + }, + "id": 8391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2783.36000", + "end": "2783.80000", + "feature": { + "word": "against" + }, + "id": 8393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2783.80000", + "end": "2784.41000", + "feature": { + "word": "waldheim" + }, + "id": 8394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2784.41000", + "end": "2784.62000", + "feature": { + "word": "was" + }, + "id": 8395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2784.66000", + "end": "2785.18000", + "feature": { + "word": "totally" + }, + "id": 8397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2785.18000", + "end": "2785.88000", + "feature": { + "word": "convincing" + }, + "id": 8398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2786.76000", + "end": "2787.26000", + "feature": { + "word": "chancellor" + }, + "id": 8400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2787.35000", + "end": "2788.08000", + "feature": { + "word": "yes" + }, + "id": 8402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2788.08000", + "end": "2788.17000", + "feature": { + "word": "that" + }, + "id": 8403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2788.17000", + "end": "2788.20000", + "feature": { + "word": "s" + }, + "id": 8404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2788.20000", + "end": "2788.40000", + "feature": { + "word": "what" + }, + "id": 8405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2788.40000", + "end": "2788.54000", + "feature": { + "word": "he" + }, + "id": 8406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2788.54000", + "end": "2789.27000", + "feature": { + "word": "expressed" + }, + "id": 8407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2789.27000", + "end": "2789.48000", + "feature": { + "word": "and" + }, + "id": 8408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2789.48000", + "end": "2789.78000", + "feature": { + "word": "that" + }, + "id": 8409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2789.81000", + "end": "2790.20000", + "feature": { + "word": "" + }, + "id": 8411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2790.20000", + "end": "2790.53000", + "feature": { + "word": "what" + }, + "id": 8412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2790.53000", + "end": "2790.66000", + "feature": { + "word": "we" + }, + "id": 8413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2790.66000", + "end": "2791.07000", + "feature": { + "word": "knew" + }, + "id": 8414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2791.07000", + "end": "2791.50000", + "feature": { + "word": "already" + }, + "id": 8415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2791.50000", + "end": "2792.26000", + "feature": { + "word": "from" + }, + "id": 8416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2793.03000", + "end": "2793.32000", + "feature": { + "word": "some" + }, + "id": 8418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2793.38000", + "end": "2794.18000", + "feature": { + "word": "experts" + }, + "id": 8420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2794.18000", + "end": "2794.56000", + "feature": { + "word": "the" + }, + "id": 8421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2794.59000", + "end": "2794.83000", + "feature": { + "word": "u" + }, + "id": 8423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2794.83000", + "end": "2795.07000", + "feature": { + "word": "s" + }, + "id": 8424, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2795.07000", + "end": "2795.47000", + "feature": { + "word": "justice" + }, + "id": 8425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2795.47000", + "end": "2796.33000", + "feature": { + "word": "department" + }, + "id": 8426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2796.58000", + "end": "2796.87000", + "feature": { + "word": "has" + }, + "id": 8428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2796.87000", + "end": "2797.20000", + "feature": { + "word": "sent" + }, + "id": 8429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2797.20000", + "end": "2797.43000", + "feature": { + "word": "to" + }, + "id": 8430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2797.43000", + "end": "2797.81000", + "feature": { + "word": "austria" + }, + "id": 8431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2797.81000", + "end": "2797.86000", + "feature": { + "word": "a" + }, + "id": 8432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2797.86000", + "end": "2798.08000", + "feature": { + "word": "few" + }, + "id": 8433, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2798.08000", + "end": "2798.37000", + "feature": { + "word": "days" + }, + "id": 8434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2798.37000", + "end": "2798.87000", + "feature": { + "word": "ago" + }, + "id": 8435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2799.60000", + "end": "2800.10000", + "feature": { + "word": "but" + }, + "id": 8437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2800.10000", + "end": "2800.25000", + "feature": { + "word": "i" + }, + "id": 8438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2800.25000", + "end": "2800.58000", + "feature": { + "word": "was" + }, + "id": 8439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2800.58000", + "end": "2801.30000", + "feature": { + "word": "actually" + }, + "id": 8440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2801.92000", + "end": "2803.01000", + "feature": { + "word": "directing" + }, + "id": 8442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2803.01000", + "end": "2803.27000", + "feature": { + "word": "my" + }, + "id": 8443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2803.27000", + "end": "2804.08000", + "feature": { + "word": "discussion" + }, + "id": 8444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2804.58000", + "end": "2804.64000", + "feature": { + "word": "at" + }, + "id": 8446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2804.64000", + "end": "2805.29000", + "feature": { + "word": "the" + }, + "id": 8447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2806.15000", + "end": "2806.81000", + "feature": { + "word": "political" + }, + "id": 8449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2806.81000", + "end": "2807.48000", + "feature": { + "word": "content" + }, + "id": 8450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2807.48000", + "end": "2808.83000", + "feature": { + "word": "of" + }, + "id": 8451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2808.86000", + "end": "2809.04000", + "feature": { + "word": "the" + }, + "id": 8453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2809.04000", + "end": "2809.54000", + "feature": { + "word": "issue" + }, + "id": 8454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2810.15000", + "end": "2811.10000", + "feature": { + "word": "and" + }, + "id": 8456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2811.17000", + "end": "2811.29000", + "feature": { + "word": "i" + }, + "id": 8458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2811.29000", + "end": "2811.60000", + "feature": { + "word": "was" + }, + "id": 8459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2811.60000", + "end": "2812.19000", + "feature": { + "word": "making" + }, + "id": 8460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2812.19000", + "end": "2812.38000", + "feature": { + "word": "my" + }, + "id": 8461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2812.38000", + "end": "2812.95000", + "feature": { + "word": "point" + }, + "id": 8462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2812.98000", + "end": "2813.37000", + "feature": { + "word": "that" + }, + "id": 8464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2813.95000", + "end": "2814.24000", + "feature": { + "word": "from" + }, + "id": 8466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2814.24000", + "end": "2814.33000", + "feature": { + "word": "a" + }, + "id": 8467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2814.33000", + "end": "2814.91000", + "feature": { + "word": "political" + }, + "id": 8468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2814.91000", + "end": "2815.30000", + "feature": { + "word": "point" + }, + "id": 8469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2815.30000", + "end": "2815.91000", + "feature": { + "word": "of" + }, + "id": 8470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2816.37000", + "end": "2817.25000", + "feature": { + "word": "view" + }, + "id": 8472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2817.45000", + "end": "2817.91000", + "feature": { + "word": "based" + }, + "id": 8474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2817.91000", + "end": "2818.34000", + "feature": { + "word": "on" + }, + "id": 8475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2818.37000", + "end": "2818.73000", + "feature": { + "word": "a" + }, + "id": 8477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2819.07000", + "end": "2819.71000", + "feature": { + "word": "decade" + }, + "id": 8479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2819.75000", + "end": "2820.42000", + "feature": { + "word": "old" + }, + "id": 8481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2820.42000", + "end": "2821.23000", + "feature": { + "word": "relationship" + }, + "id": 8482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2821.23000", + "end": "2821.72000", + "feature": { + "word": "friendly" + }, + "id": 8483, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2821.72000", + "end": "2822.45000", + "feature": { + "word": "relationship" + }, + "id": 8484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2822.45000", + "end": "2822.90000", + "feature": { + "word": "between" + }, + "id": 8485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2822.90000", + "end": "2823.01000", + "feature": { + "word": "the" + }, + "id": 8486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2823.01000", + "end": "2823.21000", + "feature": { + "word": "u" + }, + "id": 8487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2823.21000", + "end": "2823.46000", + "feature": { + "word": "s" + }, + "id": 8488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2823.46000", + "end": "2823.63000", + "feature": { + "word": "and" + }, + "id": 8489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2823.63000", + "end": "2824.22000", + "feature": { + "word": "austria" + }, + "id": 8490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2824.79000", + "end": "2825.46000", + "feature": { + "word": "i" + }, + "id": 8492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2825.49000", + "end": "2826.46000", + "feature": { + "word": "didn't" + }, + "id": 8494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2827.01000", + "end": "2827.83000", + "feature": { + "word": "execute" + }, + "id": 8496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2827.83000", + "end": "2828.12000", + "feature": { + "word": "and" + }, + "id": 8497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2828.12000", + "end": "2828.20000", + "feature": { + "word": "i" + }, + "id": 8498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2828.20000", + "end": "2828.39000", + "feature": { + "word": "did" + }, + "id": 8499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2828.39000", + "end": "2828.58000", + "feature": { + "word": "not" + }, + "id": 8500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2828.58000", + "end": "2828.94000", + "feature": { + "word": "wipe" + }, + "id": 8501, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2828.94000", + "end": "2829.24000", + "feature": { + "word": "out" + }, + "id": 8502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2829.24000", + "end": "2829.80000", + "feature": { + "word": "the" + }, + "id": 8503, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2829.83000", + "end": "2830.78000", + "feature": { + "word": "expectation" + }, + "id": 8505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2830.78000", + "end": "2830.87000", + "feature": { + "word": "or" + }, + "id": 8506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2830.87000", + "end": "2831.01000", + "feature": { + "word": "the" + }, + "id": 8507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2831.01000", + "end": "2831.48000", + "feature": { + "word": "hope" + }, + "id": 8508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2831.48000", + "end": "2831.56000", + "feature": { + "word": "or" + }, + "id": 8509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2831.56000", + "end": "2831.68000", + "feature": { + "word": "the" + }, + "id": 8510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2831.68000", + "end": "2832.13000", + "feature": { + "word": "wish" + }, + "id": 8511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2832.55000", + "end": "2833.17000", + "feature": { + "word": "that" + }, + "id": 8513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2833.17000", + "end": "2834.65000", + "feature": { + "word": "political" + }, + "id": 8514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2835.51000", + "end": "2836.09000", + "feature": { + "word": "points" + }, + "id": 8516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2836.09000", + "end": "2836.43000", + "feature": { + "word": "might" + }, + "id": 8517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2836.43000", + "end": "2836.89000", + "feature": { + "word": "weigh" + }, + "id": 8518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2836.99000", + "end": "2837.37000", + "feature": { + "word": "more" + }, + "id": 8520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2837.37000", + "end": "2837.68000", + "feature": { + "word": "heavy" + }, + "id": 8521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2837.68000", + "end": "2838.23000", + "feature": { + "word": "than" + }, + "id": 8522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2838.49000", + "end": "2838.81000", + "feature": { + "word": "legal" + }, + "id": 8524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2838.81000", + "end": "2839.10000", + "feature": { + "word": "ones" + }, + "id": 8525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2840.55000", + "end": "2840.73000", + "feature": { + "word": "well" + }, + "id": 8527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2840.73000", + "end": "2841.16000", + "feature": { + "word": "what" + }, + "id": 8528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2841.16000", + "end": "2841.66000", + "feature": { + "word": "happens" + }, + "id": 8529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2841.66000", + "end": "2842.07000", + "feature": { + "word": "now" + }, + "id": 8530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2842.65000", + "end": "2843.12000", + "feature": { + "word": "chancellor" + }, + "id": 8532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2843.12000", + "end": "2843.23000", + "feature": { + "word": "you" + }, + "id": 8533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2843.23000", + "end": "2843.40000", + "feature": { + "word": "go" + }, + "id": 8534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2843.40000", + "end": "2843.67000", + "feature": { + "word": "back" + }, + "id": 8535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2843.67000", + "end": "2843.75000", + "feature": { + "word": "to" + }, + "id": 8536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2843.75000", + "end": "2844.36000", + "feature": { + "word": "austria" + }, + "id": 8537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2844.36000", + "end": "2844.46000", + "feature": { + "word": "and" + }, + "id": 8538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2844.46000", + "end": "2844.59000", + "feature": { + "word": "you" + }, + "id": 8539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2844.59000", + "end": "2845.12000", + "feature": { + "word": "report" + }, + "id": 8540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2845.12000", + "end": "2845.45000", + "feature": { + "word": "to" + }, + "id": 8541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2845.98000", + "end": "2846.58000", + "feature": { + "word": "the" + }, + "id": 8543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2846.58000", + "end": "2846.97000", + "feature": { + "word": "austrian" + }, + "id": 8544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2846.97000", + "end": "2847.41000", + "feature": { + "word": "people" + }, + "id": 8545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2847.41000", + "end": "2847.80000", + "feature": { + "word": "that" + }, + "id": 8546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2847.80000", + "end": "2848.59000", + "feature": { + "word": "no" + }, + "id": 8547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2848.62000", + "end": "2849.01000", + "feature": { + "word": "dice" + }, + "id": 8549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2849.01000", + "end": "2849.17000", + "feature": { + "word": "and" + }, + "id": 8550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2849.17000", + "end": "2849.33000", + "feature": { + "word": "then" + }, + "id": 8551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2849.33000", + "end": "2849.52000", + "feature": { + "word": "what" + }, + "id": 8552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2849.52000", + "end": "2849.97000", + "feature": { + "word": "happens" + }, + "id": 8553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2849.97000", + "end": "2850.24000", + "feature": { + "word": "chancellor" + }, + "id": 8554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2850.53000", + "end": "2850.62000", + "feature": { + "word": "well" + }, + "id": 8556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2850.62000", + "end": "2850.88000", + "feature": { + "word": "first" + }, + "id": 8557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2850.88000", + "end": "2851.03000", + "feature": { + "word": "of" + }, + "id": 8558, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2851.03000", + "end": "2851.65000", + "feature": { + "word": "all" + }, + "id": 8559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2851.65000", + "end": "2851.73000", + "feature": { + "word": "i" + }, + "id": 8560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2851.73000", + "end": "2852.09000", + "feature": { + "word": "have" + }, + "id": 8561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2852.09000", + "end": "2852.99000", + "feature": { + "word": "to" + }, + "id": 8562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2853.59000", + "end": "2853.73000", + "feature": { + "word": "say" + }, + "id": 8564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2853.73000", + "end": "2853.82000", + "feature": { + "word": "that" + }, + "id": 8565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2853.82000", + "end": "2854.05000", + "feature": { + "word": "my" + }, + "id": 8566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2854.05000", + "end": "2855.01000", + "feature": { + "word": "expectation" + }, + "id": 8567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2855.01000", + "end": "2855.48000", + "feature": { + "word": "to" + }, + "id": 8568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2855.48000", + "end": "2855.76000", + "feature": { + "word": "really" + }, + "id": 8569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2855.76000", + "end": "2856.00000", + "feature": { + "word": "get" + }, + "id": 8570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2856.00000", + "end": "2856.13000", + "feature": { + "word": "the" + }, + "id": 8571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2856.13000", + "end": "2856.65000", + "feature": { + "word": "reversal" + }, + "id": 8572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2856.65000", + "end": "2856.82000", + "feature": { + "word": "of" + }, + "id": 8573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2856.82000", + "end": "2856.89000", + "feature": { + "word": "the" + }, + "id": 8574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2856.89000", + "end": "2857.01000", + "feature": { + "word": "u" + }, + "id": 8575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2857.01000", + "end": "2857.18000", + "feature": { + "word": "s" + }, + "id": 8576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2857.18000", + "end": "2857.72000", + "feature": { + "word": "decision" + }, + "id": 8577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2857.72000", + "end": "2858.09000", + "feature": { + "word": "before" + }, + "id": 8578, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2858.09000", + "end": "2858.23000", + "feature": { + "word": "i" + }, + "id": 8579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2858.23000", + "end": "2858.60000", + "feature": { + "word": "came" + }, + "id": 8580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2858.60000", + "end": "2858.76000", + "feature": { + "word": "here" + }, + "id": 8581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2858.76000", + "end": "2858.97000", + "feature": { + "word": "was" + }, + "id": 8582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2858.97000", + "end": "2859.70000", + "feature": { + "word": "very" + }, + "id": 8583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2860.66000", + "end": "2861.17000", + "feature": { + "word": "low" + }, + "id": 8585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2861.17000", + "end": "2862.04000", + "feature": { + "word": "so" + }, + "id": 8586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2862.07000", + "end": "2862.14000", + "feature": { + "word": "it" + }, + "id": 8588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2862.14000", + "end": "2862.24000", + "feature": { + "word": "s" + }, + "id": 8589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2862.24000", + "end": "2862.50000", + "feature": { + "word": "not" + }, + "id": 8590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2862.50000", + "end": "2862.73000", + "feature": { + "word": "much" + }, + "id": 8591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2862.73000", + "end": "2862.87000", + "feature": { + "word": "of" + }, + "id": 8592, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2862.87000", + "end": "2862.94000", + "feature": { + "word": "a" + }, + "id": 8593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2862.94000", + "end": "2863.66000", + "feature": { + "word": "surprise" + }, + "id": 8594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2863.66000", + "end": "2863.76000", + "feature": { + "word": "what" + }, + "id": 8595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2863.76000", + "end": "2863.85000", + "feature": { + "word": "i" + }, + "id": 8596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2863.85000", + "end": "2863.96000", + "feature": { + "word": "am" + }, + "id": 8597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2863.99000", + "end": "2864.31000", + "feature": { + "word": "bringing" + }, + "id": 8599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2864.34000", + "end": "2864.63000", + "feature": { + "word": "back" + }, + "id": 8601, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2864.63000", + "end": "2864.99000", + "feature": { + "word": "home" + }, + "id": 8602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2864.99000", + "end": "2865.18000", + "feature": { + "word": "and" + }, + "id": 8603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2865.18000", + "end": "2865.35000", + "feature": { + "word": "i" + }, + "id": 8604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2865.81000", + "end": "2866.34000", + "feature": { + "word": "phoned" + }, + "id": 8606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2866.37000", + "end": "2866.76000", + "feature": { + "word": "to" + }, + "id": 8608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2866.79000", + "end": "2867.03000", + "feature": { + "word": "mr" + }, + "id": 8610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2867.03000", + "end": "2867.74000", + "feature": { + "word": "waldheim" + }, + "id": 8611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2868.19000", + "end": "2868.41000", + "feature": { + "word": "this" + }, + "id": 8613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2868.41000", + "end": "2869.27000", + "feature": { + "word": "afternoon" + }, + "id": 8614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2869.61000", + "end": "2870.23000", + "feature": { + "word": "conveyed" + }, + "id": 8616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2871.11000", + "end": "2872.20000", + "feature": { + "word": "the" + }, + "id": 8618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2872.23000", + "end": "2873.00000", + "feature": { + "word": "unpleasant" + }, + "id": 8620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2873.34000", + "end": "2873.81000", + "feature": { + "word": "message" + }, + "id": 8622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2873.81000", + "end": "2873.98000", + "feature": { + "word": "to" + }, + "id": 8623, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2873.98000", + "end": "2874.27000", + "feature": { + "word": "him" + }, + "id": 8624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2874.96000", + "end": "2875.52000", + "feature": { + "word": "well" + }, + "id": 8626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2875.52000", + "end": "2875.68000", + "feature": { + "word": "what" + }, + "id": 8627, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2875.75000", + "end": "2875.94000", + "feature": { + "word": "we" + }, + "id": 8629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2875.94000", + "end": "2876.03000", + "feature": { + "word": "are" + }, + "id": 8630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2876.03000", + "end": "2876.26000", + "feature": { + "word": "going" + }, + "id": 8631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2876.26000", + "end": "2876.38000", + "feature": { + "word": "to" + }, + "id": 8632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2876.38000", + "end": "2876.49000", + "feature": { + "word": "do" + }, + "id": 8633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2876.49000", + "end": "2876.89000", + "feature": { + "word": "we" + }, + "id": 8634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2876.89000", + "end": "2877.66000", + "feature": { + "word": "will" + }, + "id": 8635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2877.69000", + "end": "2878.05000", + "feature": { + "word": "think" + }, + "id": 8637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2878.05000", + "end": "2878.17000", + "feature": { + "word": "it" + }, + "id": 8638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2878.17000", + "end": "2878.87000", + "feature": { + "word": "over" + }, + "id": 8639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2879.43000", + "end": "2879.70000", + "feature": { + "word": "but" + }, + "id": 8641, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2882.15000", + "end": "2882.47000", + "feature": { + "word": "this" + }, + "id": 8643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2882.47000", + "end": "2882.80000", + "feature": { + "word": "as" + }, + "id": 8644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2882.80000", + "end": "2882.95000", + "feature": { + "word": "i" + }, + "id": 8645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2882.95000", + "end": "2883.25000", + "feature": { + "word": "said" + }, + "id": 8646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2883.25000", + "end": "2883.44000", + "feature": { + "word": "this" + }, + "id": 8647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2883.44000", + "end": "2883.63000", + "feature": { + "word": "is" + }, + "id": 8648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2883.63000", + "end": "2884.24000", + "feature": { + "word": "a" + }, + "id": 8649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2884.36000", + "end": "2884.82000", + "feature": { + "word": "serious" + }, + "id": 8651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2884.82000", + "end": "2885.28000", + "feature": { + "word": "case" + }, + "id": 8652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2885.28000", + "end": "2885.31000", + "feature": { + "word": "a" + }, + "id": 8653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2885.31000", + "end": "2885.61000", + "feature": { + "word": "very" + }, + "id": 8654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2885.61000", + "end": "2886.15000", + "feature": { + "word": "important" + }, + "id": 8655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2886.24000", + "end": "2886.57000", + "feature": { + "word": "one" + }, + "id": 8657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2886.61000", + "end": "2886.95000", + "feature": { + "word": "but" + }, + "id": 8659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2886.95000", + "end": "2887.40000", + "feature": { + "word": "not" + }, + "id": 8660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2887.40000", + "end": "2887.57000", + "feature": { + "word": "the" + }, + "id": 8661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2887.57000", + "end": "2887.90000", + "feature": { + "word": "only" + }, + "id": 8662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2887.90000", + "end": "2888.30000", + "feature": { + "word": "point" + }, + "id": 8663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2888.30000", + "end": "2888.52000", + "feature": { + "word": "of" + }, + "id": 8664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2888.52000", + "end": "2888.68000", + "feature": { + "word": "our" + }, + "id": 8665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2888.68000", + "end": "2889.43000", + "feature": { + "word": "relationship" + }, + "id": 8666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2889.43000", + "end": "2889.52000", + "feature": { + "word": "with" + }, + "id": 8667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2889.52000", + "end": "2889.62000", + "feature": { + "word": "the" + }, + "id": 8668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2889.65000", + "end": "2890.07000", + "feature": { + "word": "united" + }, + "id": 8670, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2890.07000", + "end": "2890.56000", + "feature": { + "word": "states" + }, + "id": 8671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2891.16000", + "end": "2891.33000", + "feature": { + "word": "there" + }, + "id": 8673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2891.33000", + "end": "2891.55000", + "feature": { + "word": "have" + }, + "id": 8674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2891.55000", + "end": "2891.76000", + "feature": { + "word": "been" + }, + "id": 8675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2891.76000", + "end": "2892.55000", + "feature": { + "word": "stories" + }, + "id": 8676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2892.90000", + "end": "2893.01000", + "feature": { + "word": "in" + }, + "id": 8678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2893.01000", + "end": "2894.53000", + "feature": { + "word": "advance" + }, + "id": 8679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2894.53000", + "end": "2894.66000", + "feature": { + "word": "of" + }, + "id": 8680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2894.66000", + "end": "2894.81000", + "feature": { + "word": "your" + }, + "id": 8681, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2894.81000", + "end": "2895.19000", + "feature": { + "word": "visit" + }, + "id": 8682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2895.52000", + "end": "2895.70000", + "feature": { + "word": "that" + }, + "id": 8684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2895.70000", + "end": "2895.90000", + "feature": { + "word": "if" + }, + "id": 8685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2895.90000", + "end": "2896.03000", + "feature": { + "word": "you" + }, + "id": 8686, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2896.03000", + "end": "2896.20000", + "feature": { + "word": "were" + }, + "id": 8687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2896.20000", + "end": "2897.12000", + "feature": { + "word": "unsuccessful" + }, + "id": 8688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2897.23000", + "end": "2897.38000", + "feature": { + "word": "in" + }, + "id": 8690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2897.38000", + "end": "2897.95000", + "feature": { + "word": "getting" + }, + "id": 8691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2898.17000", + "end": "2898.37000", + "feature": { + "word": "this" + }, + "id": 8693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2898.37000", + "end": "2899.08000", + "feature": { + "word": "decision" + }, + "id": 8694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2899.08000", + "end": "2899.52000", + "feature": { + "word": "reversed" + }, + "id": 8695, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2899.52000", + "end": "2899.86000", + "feature": { + "word": "that" + }, + "id": 8696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2899.86000", + "end": "2900.79000", + "feature": { + "word": "waldheim" + }, + "id": 8697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2901.18000", + "end": "2901.32000", + "feature": { + "word": "would" + }, + "id": 8699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2901.32000", + "end": "2901.96000", + "feature": { + "word": "probably" + }, + "id": 8700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2901.96000", + "end": "2902.60000", + "feature": { + "word": "resign" + }, + "id": 8701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2902.60000", + "end": "2902.75000", + "feature": { + "word": "as" + }, + "id": 8702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2902.75000", + "end": "2903.28000", + "feature": { + "word": "president" + }, + "id": 8703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2903.31000", + "end": "2903.47000", + "feature": { + "word": "is" + }, + "id": 8705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2903.47000", + "end": "2903.67000", + "feature": { + "word": "that" + }, + "id": 8706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2903.67000", + "end": "2904.11000", + "feature": { + "word": "correct" + }, + "id": 8707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2904.74000", + "end": "2905.04000", + "feature": { + "word": "chancellor" + }, + "id": 8709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2905.04000", + "end": "2905.22000", + "feature": { + "word": "that" + }, + "id": 8710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2905.22000", + "end": "2905.35000", + "feature": { + "word": "is" + }, + "id": 8711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2905.35000", + "end": "2905.60000", + "feature": { + "word": "not" + }, + "id": 8712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2905.60000", + "end": "2906.16000", + "feature": { + "word": "correct" + }, + "id": 8713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2906.16000", + "end": "2906.94000", + "feature": { + "word": "no" + }, + "id": 8714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2906.97000", + "end": "2907.06000", + "feature": { + "word": "i" + }, + "id": 8716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2907.06000", + "end": "2907.36000", + "feature": { + "word": "heard" + }, + "id": 8717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2907.36000", + "end": "2907.63000", + "feature": { + "word": "those" + }, + "id": 8718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2907.63000", + "end": "2908.11000", + "feature": { + "word": "rumors" + }, + "id": 8719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2908.11000", + "end": "2908.49000", + "feature": { + "word": "but" + }, + "id": 8720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2910.39000", + "end": "2910.73000", + "feature": { + "word": "just" + }, + "id": 8722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2910.73000", + "end": "2911.32000", + "feature": { + "word": "rumors" + }, + "id": 8723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2911.32000", + "end": "2911.74000", + "feature": { + "word": "and" + }, + "id": 8724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2911.74000", + "end": "2912.13000", + "feature": { + "word": "it" + }, + "id": 8725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2912.13000", + "end": "2912.23000", + "feature": { + "word": "s" + }, + "id": 8726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2912.23000", + "end": "2912.45000", + "feature": { + "word": "not" + }, + "id": 8727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2912.45000", + "end": "2912.50000", + "feature": { + "word": "a" + }, + "id": 8728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2912.50000", + "end": "2912.86000", + "feature": { + "word": "point" + }, + "id": 8729, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2912.86000", + "end": "2912.99000", + "feature": { + "word": "of" + }, + "id": 8730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2912.99000", + "end": "2913.56000", + "feature": { + "word": "discussion" + }, + "id": 8731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2913.56000", + "end": "2914.39000", + "feature": { + "word": "between" + }, + "id": 8732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2914.42000", + "end": "2914.79000", + "feature": { + "word": "the" + }, + "id": 8734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2914.83000", + "end": "2915.46000", + "feature": { + "word": "government" + }, + "id": 8736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2915.46000", + "end": "2915.75000", + "feature": { + "word": "i'm" + }, + "id": 8737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2915.75000", + "end": "2916.27000", + "feature": { + "word": "leading" + }, + "id": 8738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2916.30000", + "end": "2916.49000", + "feature": { + "word": "and" + }, + "id": 8740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2916.49000", + "end": "2916.56000", + "feature": { + "word": "the" + }, + "id": 8741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2916.56000", + "end": "2917.26000", + "feature": { + "word": "president" + }, + "id": 8742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2917.96000", + "end": "2918.22000", + "feature": { + "word": "how" + }, + "id": 8744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2918.22000", + "end": "2918.81000", + "feature": { + "word": "serious" + }, + "id": 8745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2918.81000", + "end": "2918.86000", + "feature": { + "word": "a" + }, + "id": 8746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2918.86000", + "end": "2919.25000", + "feature": { + "word": "matter" + }, + "id": 8747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2919.25000", + "end": "2919.54000", + "feature": { + "word": "is" + }, + "id": 8748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2919.54000", + "end": "2919.74000", + "feature": { + "word": "this" + }, + "id": 8749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2919.74000", + "end": "2919.93000", + "feature": { + "word": "for" + }, + "id": 8750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2919.93000", + "end": "2920.11000", + "feature": { + "word": "your" + }, + "id": 8751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2920.11000", + "end": "2920.62000", + "feature": { + "word": "government" + }, + "id": 8752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2920.62000", + "end": "2920.65000", + "feature": { + "word": "" + }, + "id": 8753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2920.89000", + "end": "2921.01000", + "feature": { + "word": "the" + }, + "id": 8755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2921.01000", + "end": "2921.38000", + "feature": { + "word": "fact" + }, + "id": 8756, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2921.38000", + "end": "2921.57000", + "feature": { + "word": "that" + }, + "id": 8757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2921.57000", + "end": "2921.74000", + "feature": { + "word": "your" + }, + "id": 8758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2921.74000", + "end": "2922.36000", + "feature": { + "word": "president" + }, + "id": 8759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2922.36000", + "end": "2922.75000", + "feature": { + "word": "cannot" + }, + "id": 8760, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2922.75000", + "end": "2923.04000", + "feature": { + "word": "come" + }, + "id": 8761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2923.04000", + "end": "2923.17000", + "feature": { + "word": "to" + }, + "id": 8762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2923.17000", + "end": "2923.26000", + "feature": { + "word": "the" + }, + "id": 8763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2923.26000", + "end": "2923.74000", + "feature": { + "word": "united" + }, + "id": 8764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2923.74000", + "end": "2924.12000", + "feature": { + "word": "states" + }, + "id": 8765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2924.12000", + "end": "2924.25000", + "feature": { + "word": "and" + }, + "id": 8766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2924.25000", + "end": "2924.45000", + "feature": { + "word": "this" + }, + "id": 8767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2924.45000", + "end": "2924.78000", + "feature": { + "word": "action" + }, + "id": 8768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2924.78000", + "end": "2924.87000", + "feature": { + "word": "that" + }, + "id": 8769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2924.87000", + "end": "2924.92000", + "feature": { + "word": "s" + }, + "id": 8770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2924.92000", + "end": "2925.13000", + "feature": { + "word": "been" + }, + "id": 8771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2925.17000", + "end": "2925.32000", + "feature": { + "word": "taken" + }, + "id": 8773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2925.45000", + "end": "2925.63000", + "feature": { + "word": "chancellor" + }, + "id": 8775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2925.86000", + "end": "2926.02000", + "feature": { + "word": "well" + }, + "id": 8777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2926.02000", + "end": "2926.19000", + "feature": { + "word": "it" + }, + "id": 8778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2926.19000", + "end": "2926.36000", + "feature": { + "word": "s" + }, + "id": 8779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2926.36000", + "end": "2926.79000", + "feature": { + "word": "a" + }, + "id": 8780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2926.82000", + "end": "2927.15000", + "feature": { + "word": "very" + }, + "id": 8782, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2927.15000", + "end": "2927.64000", + "feature": { + "word": "serious" + }, + "id": 8783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2927.64000", + "end": "2928.21000", + "feature": { + "word": "matter" + }, + "id": 8784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2928.55000", + "end": "2929.30000", + "feature": { + "word": "and" + }, + "id": 8786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2929.99000", + "end": "2930.45000", + "feature": { + "word": "a" + }, + "id": 8788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2930.48000", + "end": "2930.80000", + "feature": { + "word": "very" + }, + "id": 8790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2930.80000", + "end": "2931.36000", + "feature": { + "word": "unusual" + }, + "id": 8791, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2931.36000", + "end": "2931.84000", + "feature": { + "word": "matter" + }, + "id": 8792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2932.33000", + "end": "2932.37000", + "feature": { + "word": "i" + }, + "id": 8794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2932.37000", + "end": "2932.77000", + "feature": { + "word": "think" + }, + "id": 8795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2932.77000", + "end": "2932.93000", + "feature": { + "word": "he" + }, + "id": 8796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2932.93000", + "end": "2933.05000", + "feature": { + "word": "s" + }, + "id": 8797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2933.08000", + "end": "2933.17000", + "feature": { + "word": "the" + }, + "id": 8799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2933.17000", + "end": "2933.54000", + "feature": { + "word": "first" + }, + "id": 8800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2933.54000", + "end": "2933.79000", + "feature": { + "word": "head" + }, + "id": 8801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2933.79000", + "end": "2933.98000", + "feature": { + "word": "of" + }, + "id": 8802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2933.98000", + "end": "2934.15000", + "feature": { + "word": "a" + }, + "id": 8803, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2934.18000", + "end": "2934.68000", + "feature": { + "word": "state" + }, + "id": 8805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2934.68000", + "end": "2935.08000", + "feature": { + "word": "to" + }, + "id": 8806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2935.42000", + "end": "2935.72000", + "feature": { + "word": "be" + }, + "id": 8808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2935.72000", + "end": "2936.01000", + "feature": { + "word": "put" + }, + "id": 8809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2936.01000", + "end": "2936.19000", + "feature": { + "word": "on" + }, + "id": 8810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2936.19000", + "end": "2936.25000", + "feature": { + "word": "the" + }, + "id": 8811, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2936.25000", + "end": "2936.62000", + "feature": { + "word": "watch" + }, + "id": 8812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2936.62000", + "end": "2936.94000", + "feature": { + "word": "list" + }, + "id": 8813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2937.77000", + "end": "2938.89000", + "feature": { + "word": "and" + }, + "id": 8815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2939.50000", + "end": "2939.67000", + "feature": { + "word": "we" + }, + "id": 8817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2939.67000", + "end": "2940.01000", + "feature": { + "word": "had" + }, + "id": 8818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2940.01000", + "end": "2940.06000", + "feature": { + "word": "a" + }, + "id": 8819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2940.06000", + "end": "2940.25000", + "feature": { + "word": "lot" + }, + "id": 8820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2940.25000", + "end": "2940.38000", + "feature": { + "word": "of" + }, + "id": 8821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2940.41000", + "end": "2941.02000", + "feature": { + "word": "discussion" + }, + "id": 8823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2941.02000", + "end": "2941.43000", + "feature": { + "word": "about" + }, + "id": 8824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2941.43000", + "end": "2941.87000", + "feature": { + "word": "that" + }, + "id": 8825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2942.50000", + "end": "2942.72000", + "feature": { + "word": "but" + }, + "id": 8827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2942.85000", + "end": "2943.48000", + "feature": { + "word": "you" + }, + "id": 8829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2943.87000", + "end": "2944.37000", + "feature": { + "word": "see" + }, + "id": 8831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2944.56000", + "end": "2945.01000", + "feature": { + "word": "my" + }, + "id": 8833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2945.01000", + "end": "2945.90000", + "feature": { + "word": "approach" + }, + "id": 8834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2945.90000", + "end": "2946.36000", + "feature": { + "word": "to" + }, + "id": 8835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2946.59000", + "end": "2946.87000", + "feature": { + "word": "this" + }, + "id": 8837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2946.87000", + "end": "2947.67000", + "feature": { + "word": "issue" + }, + "id": 8838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2947.67000", + "end": "2947.87000", + "feature": { + "word": "is" + }, + "id": 8839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2947.90000", + "end": "2948.24000", + "feature": { + "word": "that" + }, + "id": 8841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2948.24000", + "end": "2948.55000", + "feature": { + "word": "the" + }, + "id": 8842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2949.80000", + "end": "2951.01000", + "feature": { + "word": "relationship" + }, + "id": 8844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2951.01000", + "end": "2951.40000", + "feature": { + "word": "between" + }, + "id": 8845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2951.40000", + "end": "2951.46000", + "feature": { + "word": "the" + }, + "id": 8846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2951.46000", + "end": "2951.85000", + "feature": { + "word": "united" + }, + "id": 8847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2951.85000", + "end": "2952.23000", + "feature": { + "word": "states" + }, + "id": 8848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2952.23000", + "end": "2952.47000", + "feature": { + "word": "and" + }, + "id": 8849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2952.47000", + "end": "2953.06000", + "feature": { + "word": "austria" + }, + "id": 8850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2953.06000", + "end": "2953.92000", + "feature": { + "word": "superpower" + }, + "id": 8851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2953.92000", + "end": "2954.30000", + "feature": { + "word": "with" + }, + "id": 8852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2954.33000", + "end": "2954.65000", + "feature": { + "word": "a" + }, + "id": 8854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2954.65000", + "end": "2954.96000", + "feature": { + "word": "small" + }, + "id": 8855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2954.96000", + "end": "2955.41000", + "feature": { + "word": "neutral" + }, + "id": 8856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2955.41000", + "end": "2955.99000", + "feature": { + "word": "country" + }, + "id": 8857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2955.99000", + "end": "2956.13000", + "feature": { + "word": "in" + }, + "id": 8858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2956.13000", + "end": "2956.24000", + "feature": { + "word": "the" + }, + "id": 8859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2956.24000", + "end": "2956.54000", + "feature": { + "word": "middle" + }, + "id": 8860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2956.54000", + "end": "2956.74000", + "feature": { + "word": "of" + }, + "id": 8861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2956.74000", + "end": "2957.14000", + "feature": { + "word": "europe" + }, + "id": 8862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2957.52000", + "end": "2957.66000", + "feature": { + "word": "on" + }, + "id": 8864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2957.66000", + "end": "2957.73000", + "feature": { + "word": "the" + }, + "id": 8865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2957.73000", + "end": "2958.66000", + "feature": { + "word": "borderline" + }, + "id": 8866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2958.66000", + "end": "2959.17000", + "feature": { + "word": "of" + }, + "id": 8867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2959.20000", + "end": "2959.52000", + "feature": { + "word": "east" + }, + "id": 8869, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2959.52000", + "end": "2959.90000", + "feature": { + "word": "west" + }, + "id": 8870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2961.14000", + "end": "2962.48000", + "feature": { + "word": "" + }, + "id": 8872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2963.40000", + "end": "2963.70000", + "feature": { + "word": "that" + }, + "id": 8874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2963.70000", + "end": "2964.15000", + "feature": { + "word": "we" + }, + "id": 8875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2964.18000", + "end": "2964.61000", + "feature": { + "word": "must" + }, + "id": 8877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2964.61000", + "end": "2965.10000", + "feature": { + "word": "not" + }, + "id": 8878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2965.13000", + "end": "2965.77000", + "feature": { + "word": "go" + }, + "id": 8880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2966.38000", + "end": "2967.02000", + "feature": { + "word": "into" + }, + "id": 8882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2967.02000", + "end": "2967.88000", + "feature": { + "word": "resignation" + }, + "id": 8883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2967.88000", + "end": "2968.03000", + "feature": { + "word": "or" + }, + "id": 8884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2968.03000", + "end": "2968.30000", + "feature": { + "word": "into" + }, + "id": 8885, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2968.30000", + "end": "2969.10000", + "feature": { + "word": "isolation" + }, + "id": 8886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2969.10000", + "end": "2969.20000", + "feature": { + "word": "or" + }, + "id": 8887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2969.20000", + "end": "2969.57000", + "feature": { + "word": "anything" + }, + "id": 8888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2969.57000", + "end": "2969.83000", + "feature": { + "word": "like" + }, + "id": 8889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2969.83000", + "end": "2970.10000", + "feature": { + "word": "that" + }, + "id": 8890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2970.10000", + "end": "2970.23000", + "feature": { + "word": "we" + }, + "id": 8891, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2970.23000", + "end": "2970.57000", + "feature": { + "word": "have" + }, + "id": 8892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2970.57000", + "end": "2970.71000", + "feature": { + "word": "to" + }, + "id": 8893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2970.74000", + "end": "2971.10000", + "feature": { + "word": "work" + }, + "id": 8895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2971.10000", + "end": "2971.29000", + "feature": { + "word": "on" + }, + "id": 8896, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2971.29000", + "end": "2971.50000", + "feature": { + "word": "our" + }, + "id": 8897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2971.50000", + "end": "2972.26000", + "feature": { + "word": "relationship" + }, + "id": 8898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2972.26000", + "end": "2972.41000", + "feature": { + "word": "to" + }, + "id": 8899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2972.41000", + "end": "2972.49000", + "feature": { + "word": "the" + }, + "id": 8900, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2972.49000", + "end": "2972.94000", + "feature": { + "word": "united" + }, + "id": 8901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2972.94000", + "end": "2973.41000", + "feature": { + "word": "states" + }, + "id": 8902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2973.57000", + "end": "2973.73000", + "feature": { + "word": "but" + }, + "id": 8904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2973.73000", + "end": "2973.88000", + "feature": { + "word": "is" + }, + "id": 8905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2973.88000", + "end": "2974.10000", + "feature": { + "word": "that" + }, + "id": 8906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2974.10000", + "end": "2974.76000", + "feature": { + "word": "possible" + }, + "id": 8907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2974.83000", + "end": "2975.12000", + "feature": { + "word": "as" + }, + "id": 8909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2975.12000", + "end": "2975.48000", + "feature": { + "word": "long" + }, + "id": 8910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2975.48000", + "end": "2975.72000", + "feature": { + "word": "as" + }, + "id": 8911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2975.72000", + "end": "2975.91000", + "feature": { + "word": "your" + }, + "id": 8912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2975.91000", + "end": "2976.48000", + "feature": { + "word": "president" + }, + "id": 8913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2976.48000", + "end": "2976.81000", + "feature": { + "word": "is" + }, + "id": 8914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2976.81000", + "end": "2976.97000", + "feature": { + "word": "on" + }, + "id": 8915, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2976.97000", + "end": "2977.06000", + "feature": { + "word": "the" + }, + "id": 8916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2977.06000", + "end": "2977.42000", + "feature": { + "word": "watch" + }, + "id": 8917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2977.42000", + "end": "2977.88000", + "feature": { + "word": "list" + }, + "id": 8918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2978.05000", + "end": "2978.51000", + "feature": { + "word": "persona" + }, + "id": 8920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2978.51000", + "end": "2978.75000", + "feature": { + "word": "non" + }, + "id": 8921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2978.75000", + "end": "2979.09000", + "feature": { + "word": "grata" + }, + "id": 8922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2979.09000", + "end": "2979.15000", + "feature": { + "word": "in" + }, + "id": 8923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2979.15000", + "end": "2979.21000", + "feature": { + "word": "the" + }, + "id": 8924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2979.21000", + "end": "2980.01000", + "feature": { + "word": "united" + }, + "id": 8925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2980.44000", + "end": "2980.59000", + "feature": { + "word": "states" + }, + "id": 8927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2980.91000", + "end": "2981.60000", + "feature": { + "word": "chancellor" + }, + "id": 8929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2981.63000", + "end": "2981.69000", + "feature": { + "word": "i" + }, + "id": 8931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2981.69000", + "end": "2982.02000", + "feature": { + "word": "think" + }, + "id": 8932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2982.02000", + "end": "2982.09000", + "feature": { + "word": "we" + }, + "id": 8933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2982.09000", + "end": "2982.29000", + "feature": { + "word": "will" + }, + "id": 8934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2982.29000", + "end": "2982.60000", + "feature": { + "word": "have" + }, + "id": 8935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2982.60000", + "end": "2982.70000", + "feature": { + "word": "to" + }, + "id": 8936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2982.70000", + "end": "2983.06000", + "feature": { + "word": "make" + }, + "id": 8937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2983.06000", + "end": "2983.53000", + "feature": { + "word": "it" + }, + "id": 8938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2984.63000", + "end": "2985.13000", + "feature": { + "word": "possible" + }, + "id": 8940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2985.13000", + "end": "2985.89000", + "feature": { + "word": "because" + }, + "id": 8941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2985.92000", + "end": "2986.05000", + "feature": { + "word": "there" + }, + "id": 8943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2986.05000", + "end": "2986.37000", + "feature": { + "word": "are" + }, + "id": 8944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2987.01000", + "end": "2987.20000", + "feature": { + "word": "so" + }, + "id": 8946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2987.32000", + "end": "2987.70000", + "feature": { + "word": "many" + }, + "id": 8948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2987.74000", + "end": "2988.00000", + "feature": { + "word": "other" + }, + "id": 8950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2988.00000", + "end": "2988.68000", + "feature": { + "word": "items" + }, + "id": 8951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2988.71000", + "end": "2988.92000", + "feature": { + "word": "that" + }, + "id": 8953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2989.02000", + "end": "2989.56000", + "feature": { + "word": "even" + }, + "id": 8955, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2990.27000", + "end": "2991.16000", + "feature": { + "word": "with" + }, + "id": 8957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2991.16000", + "end": "2991.88000", + "feature": { + "word": "that" + }, + "id": 8958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2991.88000", + "end": "2992.21000", + "feature": { + "word": "dark" + }, + "id": 8959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2992.21000", + "end": "2993.38000", + "feature": { + "word": "shadow" + }, + "id": 8960, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2993.38000", + "end": "2993.81000", + "feature": { + "word": "above" + }, + "id": 8961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2993.81000", + "end": "2994.07000", + "feature": { + "word": "our" + }, + "id": 8962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2994.07000", + "end": "2994.77000", + "feature": { + "word": "heads" + }, + "id": 8963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2995.47000", + "end": "2995.57000", + "feature": { + "word": "i" + }, + "id": 8965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2995.57000", + "end": "2995.73000", + "feature": { + "word": "really" + }, + "id": 8966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2995.73000", + "end": "2996.17000", + "feature": { + "word": "do" + }, + "id": 8967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2996.40000", + "end": "2997.24000", + "feature": { + "word": "not" + }, + "id": 8969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2997.24000", + "end": "2997.79000", + "feature": { + "word": "think" + }, + "id": 8970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2997.79000", + "end": "2998.11000", + "feature": { + "word": "that" + }, + "id": 8971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2998.11000", + "end": "2998.39000", + "feature": { + "word": "a" + }, + "id": 8972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2998.98000", + "end": "2999.69000", + "feature": { + "word": "" + }, + "id": 8974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2999.69000", + "end": "2999.95000", + "feature": { + "word": "year" + }, + "id": 8975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "2999.95000", + "end": "3000.40000", + "feature": { + "word": "old" + }, + "id": 8976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3000.40000", + "end": "3001.03000", + "feature": { + "word": "friendship" + }, + "id": 8977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3001.06000", + "end": "3001.54000", + "feature": { + "word": "between" + }, + "id": 8979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3001.57000", + "end": "3001.71000", + "feature": { + "word": "two" + }, + "id": 8981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3001.71000", + "end": "3002.64000", + "feature": { + "word": "countries" + }, + "id": 8982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3003.57000", + "end": "3003.92000", + "feature": { + "word": "should" + }, + "id": 8984, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3003.92000", + "end": "3004.19000", + "feature": { + "word": "come" + }, + "id": 8985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3004.22000", + "end": "3004.49000", + "feature": { + "word": "to" + }, + "id": 8987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3004.58000", + "end": "3005.04000", + "feature": { + "word": "an" + }, + "id": 8989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3005.08000", + "end": "3005.45000", + "feature": { + "word": "end" + }, + "id": 8991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3005.80000", + "end": "3006.43000", + "feature": { + "word": "without" + }, + "id": 8993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3006.54000", + "end": "3007.12000", + "feature": { + "word": "trying" + }, + "id": 8995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3007.19000", + "end": "3007.39000", + "feature": { + "word": "to" + }, + "id": 8997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3007.39000", + "end": "3007.71000", + "feature": { + "word": "use" + }, + "id": 8998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3007.71000", + "end": "3008.24000", + "feature": { + "word": "all" + }, + "id": 8999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3008.75000", + "end": "3009.82000", + "feature": { + "word": "possibilities" + }, + "id": 9001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3009.82000", + "end": "3010.21000", + "feature": { + "word": "to" + }, + "id": 9002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3010.78000", + "end": "3010.97000", + "feature": { + "word": "go" + }, + "id": 9004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3010.97000", + "end": "3011.19000", + "feature": { + "word": "on" + }, + "id": 9005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3011.19000", + "end": "3011.45000", + "feature": { + "word": "with" + }, + "id": 9006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3011.45000", + "end": "3011.70000", + "feature": { + "word": "this" + }, + "id": 9007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3011.70000", + "end": "3012.48000", + "feature": { + "word": "partnership" + }, + "id": 9008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3013.62000", + "end": "3013.76000", + "feature": { + "word": "what" + }, + "id": 9010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3013.76000", + "end": "3013.93000", + "feature": { + "word": "is" + }, + "id": 9011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3013.93000", + "end": "3014.11000", + "feature": { + "word": "your" + }, + "id": 9012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3014.11000", + "end": "3014.33000", + "feature": { + "word": "own" + }, + "id": 9013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3014.33000", + "end": "3014.81000", + "feature": { + "word": "view" + }, + "id": 9014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3014.88000", + "end": "3015.14000", + "feature": { + "word": "of" + }, + "id": 9016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3015.14000", + "end": "3015.55000", + "feature": { + "word": "this" + }, + "id": 9017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3015.58000", + "end": "3015.71000", + "feature": { + "word": "do" + }, + "id": 9019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3015.71000", + "end": "3015.87000", + "feature": { + "word": "you" + }, + "id": 9020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3015.87000", + "end": "3016.34000", + "feature": { + "word": "believe" + }, + "id": 9021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3016.34000", + "end": "3016.66000", + "feature": { + "word": "that" + }, + "id": 9022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3016.66000", + "end": "3017.41000", + "feature": { + "word": "mr" + }, + "id": 9023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3017.44000", + "end": "3018.49000", + "feature": { + "word": "waldheim" + }, + "id": 9025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3018.49000", + "end": "3018.66000", + "feature": { + "word": "and" + }, + "id": 9026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3018.66000", + "end": "3018.82000", + "feature": { + "word": "your" + }, + "id": 9027, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3018.82000", + "end": "3019.29000", + "feature": { + "word": "country" + }, + "id": 9028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3019.29000", + "end": "3019.43000", + "feature": { + "word": "has" + }, + "id": 9029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3019.43000", + "end": "3019.66000", + "feature": { + "word": "been" + }, + "id": 9030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3019.66000", + "end": "3020.02000", + "feature": { + "word": "treated" + }, + "id": 9031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3020.02000", + "end": "3020.65000", + "feature": { + "word": "unfairly" + }, + "id": 9032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3020.65000", + "end": "3020.84000", + "feature": { + "word": "by" + }, + "id": 9033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3020.84000", + "end": "3020.95000", + "feature": { + "word": "the" + }, + "id": 9034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3020.95000", + "end": "3021.30000", + "feature": { + "word": "united" + }, + "id": 9035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3021.30000", + "end": "3021.71000", + "feature": { + "word": "states" + }, + "id": 9036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3023.23000", + "end": "3024.10000", + "feature": { + "word": "chancellor" + }, + "id": 9038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3024.55000", + "end": "3024.64000", + "feature": { + "word": "i" + }, + "id": 9040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3024.64000", + "end": "3024.91000", + "feature": { + "word": "wouldn't" + }, + "id": 9041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3024.91000", + "end": "3025.24000", + "feature": { + "word": "use" + }, + "id": 9042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3025.24000", + "end": "3025.37000", + "feature": { + "word": "the" + }, + "id": 9043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3025.37000", + "end": "3025.94000", + "feature": { + "word": "expression" + }, + "id": 9044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3025.94000", + "end": "3026.67000", + "feature": { + "word": "" + }, + "id": 9045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3027.34000", + "end": "3027.74000", + "feature": { + "word": "but" + }, + "id": 9047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3027.74000", + "end": "3028.07000", + "feature": { + "word": "i" + }, + "id": 9048, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3028.07000", + "end": "3028.24000", + "feature": { + "word": "would" + }, + "id": 9049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3028.24000", + "end": "3028.51000", + "feature": { + "word": "like" + }, + "id": 9050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3028.51000", + "end": "3028.65000", + "feature": { + "word": "to" + }, + "id": 9051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3028.65000", + "end": "3029.23000", + "feature": { + "word": "repeat" + }, + "id": 9052, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3029.37000", + "end": "3029.62000", + "feature": { + "word": "that" + }, + "id": 9054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3029.70000", + "end": "3029.97000", + "feature": { + "word": "from" + }, + "id": 9056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3030.08000", + "end": "3030.33000", + "feature": { + "word": "the" + }, + "id": 9058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3030.38000", + "end": "3030.70000", + "feature": { + "word": "point" + }, + "id": 9060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3030.70000", + "end": "3030.85000", + "feature": { + "word": "of" + }, + "id": 9061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3030.88000", + "end": "3031.36000", + "feature": { + "word": "view" + }, + "id": 9063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3031.39000", + "end": "3031.77000", + "feature": { + "word": "of" + }, + "id": 9065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3032.30000", + "end": "3032.60000", + "feature": { + "word": "the" + }, + "id": 9067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3032.60000", + "end": "3033.81000", + "feature": { + "word": "importance" + }, + "id": 9068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3034.31000", + "end": "3034.77000", + "feature": { + "word": "of" + }, + "id": 9070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3034.82000", + "end": "3034.88000", + "feature": { + "word": "a" + }, + "id": 9072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3034.88000", + "end": "3035.22000", + "feature": { + "word": "well" + }, + "id": 9073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3035.22000", + "end": "3036.04000", + "feature": { + "word": "functioning" + }, + "id": 9074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3036.07000", + "end": "3036.94000", + "feature": { + "word": "relationship" + }, + "id": 9076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3036.94000", + "end": "3037.97000", + "feature": { + "word": "between" + }, + "id": 9077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3038.71000", + "end": "3039.00000", + "feature": { + "word": "the" + }, + "id": 9079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3039.66000", + "end": "3040.39000", + "feature": { + "word": "superpower" + }, + "id": 9081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3040.39000", + "end": "3040.72000", + "feature": { + "word": "which" + }, + "id": 9082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3040.72000", + "end": "3041.04000", + "feature": { + "word": "gave" + }, + "id": 9083, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3041.04000", + "end": "3041.37000", + "feature": { + "word": "us" + }, + "id": 9084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3041.37000", + "end": "3041.62000", + "feature": { + "word": "our" + }, + "id": 9085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3041.62000", + "end": "3042.18000", + "feature": { + "word": "freedom" + }, + "id": 9086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3042.18000", + "end": "3042.40000", + "feature": { + "word": "by" + }, + "id": 9087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3042.43000", + "end": "3042.90000", + "feature": { + "word": "signing" + }, + "id": 9089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3042.90000", + "end": "3043.13000", + "feature": { + "word": "our" + }, + "id": 9090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3043.13000", + "end": "3043.51000", + "feature": { + "word": "state" + }, + "id": 9091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3043.51000", + "end": "3043.84000", + "feature": { + "word": "treaty" + }, + "id": 9092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3043.84000", + "end": "3044.32000", + "feature": { + "word": "in" + }, + "id": 9093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3044.37000", + "end": "3045.11000", + "feature": { + "word": "" + }, + "id": 9095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3045.92000", + "end": "3046.14000", + "feature": { + "word": "and" + }, + "id": 9097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3046.14000", + "end": "3046.32000", + "feature": { + "word": "which" + }, + "id": 9098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3046.39000", + "end": "3047.02000", + "feature": { + "word": "" + }, + "id": 9100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3047.77000", + "end": "3048.38000", + "feature": { + "word": "two" + }, + "id": 9102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3048.41000", + "end": "3049.02000", + "feature": { + "word": "presidents" + }, + "id": 9104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3049.02000", + "end": "3049.15000", + "feature": { + "word": "of" + }, + "id": 9105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3049.15000", + "end": "3049.57000", + "feature": { + "word": "which" + }, + "id": 9106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3049.57000", + "end": "3049.71000", + "feature": { + "word": "were" + }, + "id": 9107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3049.71000", + "end": "3050.18000", + "feature": { + "word": "hosted" + }, + "id": 9108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3050.18000", + "end": "3050.45000", + "feature": { + "word": "by" + }, + "id": 9109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3050.45000", + "end": "3050.78000", + "feature": { + "word": "us" + }, + "id": 9110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3050.78000", + "end": "3051.02000", + "feature": { + "word": "when" + }, + "id": 9111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3051.02000", + "end": "3051.30000", + "feature": { + "word": "they" + }, + "id": 9112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3051.30000", + "end": "3051.69000", + "feature": { + "word": "met" + }, + "id": 9113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3051.69000", + "end": "3051.97000", + "feature": { + "word": "their" + }, + "id": 9114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3051.97000", + "end": "3052.43000", + "feature": { + "word": "soviet" + }, + "id": 9115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3052.43000", + "end": "3052.85000", + "feature": { + "word": "opposite" + }, + "id": 9116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3052.92000", + "end": "3053.54000", + "feature": { + "word": "numbers" + }, + "id": 9118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3054.05000", + "end": "3055.37000", + "feature": { + "word": "" + }, + "id": 9120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3055.51000", + "end": "3055.57000", + "feature": { + "word": "it" + }, + "id": 9122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3055.86000", + "end": "3055.98000", + "feature": { + "word": "was" + }, + "id": 9124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3055.98000", + "end": "3056.13000", + "feature": { + "word": "my" + }, + "id": 9125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3056.13000", + "end": "3056.94000", + "feature": { + "word": "thinking" + }, + "id": 9126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3056.98000", + "end": "3057.37000", + "feature": { + "word": "and" + }, + "id": 9128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3057.96000", + "end": "3058.21000", + "feature": { + "word": "my" + }, + "id": 9130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3058.21000", + "end": "3058.57000", + "feature": { + "word": "way" + }, + "id": 9131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3058.57000", + "end": "3058.82000", + "feature": { + "word": "how" + }, + "id": 9132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3058.82000", + "end": "3058.99000", + "feature": { + "word": "to" + }, + "id": 9133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3058.99000", + "end": "3059.67000", + "feature": { + "word": "approach" + }, + "id": 9134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3059.67000", + "end": "3059.83000", + "feature": { + "word": "the" + }, + "id": 9135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3059.87000", + "end": "3060.41000", + "feature": { + "word": "topic" + }, + "id": 9137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3060.41000", + "end": "3060.80000", + "feature": { + "word": "that" + }, + "id": 9138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3061.98000", + "end": "3062.43000", + "feature": { + "word": "this" + }, + "id": 9140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3062.43000", + "end": "3063.19000", + "feature": { + "word": "politic" + }, + "id": 9141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3063.19000", + "end": "3063.30000", + "feature": { + "word": "i" + }, + "id": 9142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3063.30000", + "end": "3064.10000", + "feature": { + "word": "mention" + }, + "id": 9143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3064.18000", + "end": "3064.55000", + "feature": { + "word": "would" + }, + "id": 9145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3064.55000", + "end": "3064.73000", + "feature": { + "word": "be" + }, + "id": 9146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3064.73000", + "end": "3065.01000", + "feature": { + "word": "more" + }, + "id": 9147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3065.01000", + "end": "3065.77000", + "feature": { + "word": "important" + }, + "id": 9148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3065.77000", + "end": "3066.52000", + "feature": { + "word": "than" + }, + "id": 9149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3067.25000", + "end": "3067.59000", + "feature": { + "word": "just" + }, + "id": 9151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3067.59000", + "end": "3068.17000", + "feature": { + "word": "fulfilling" + }, + "id": 9152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3068.17000", + "end": "3068.28000", + "feature": { + "word": "an" + }, + "id": 9153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3068.28000", + "end": "3068.91000", + "feature": { + "word": "american" + }, + "id": 9154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3068.91000", + "end": "3069.19000", + "feature": { + "word": "law" + }, + "id": 9155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3069.55000", + "end": "3069.71000", + "feature": { + "word": "but" + }, + "id": 9157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3069.83000", + "end": "3070.09000", + "feature": { + "word": "what" + }, + "id": 9159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3070.09000", + "end": "3070.59000", + "feature": { + "word": "if" + }, + "id": 9160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3071.02000", + "end": "3071.05000", + "feature": { + "word": "" + }, + "id": 9162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3071.05000", + "end": "3071.20000", + "feature": { + "word": "what" + }, + "id": 9163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3071.20000", + "end": "3071.36000", + "feature": { + "word": "would" + }, + "id": 9164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3071.36000", + "end": "3071.49000", + "feature": { + "word": "you" + }, + "id": 9165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3071.49000", + "end": "3071.99000", + "feature": { + "word": "suggest" + }, + "id": 9166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3071.99000", + "end": "3072.07000", + "feature": { + "word": "the" + }, + "id": 9167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3072.07000", + "end": "3072.45000", + "feature": { + "word": "united" + }, + "id": 9168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3072.45000", + "end": "3072.76000", + "feature": { + "word": "states" + }, + "id": 9169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3072.76000", + "end": "3073.29000", + "feature": { + "word": "government" + }, + "id": 9170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3073.29000", + "end": "3073.66000", + "feature": { + "word": "do" + }, + "id": 9171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3073.69000", + "end": "3074.42000", + "feature": { + "word": "if" + }, + "id": 9173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3074.42000", + "end": "3074.98000", + "feature": { + "word": "secretary" + }, + "id": 9174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3074.98000", + "end": "3075.34000", + "feature": { + "word": "shultz" + }, + "id": 9175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3075.34000", + "end": "3075.46000", + "feature": { + "word": "is" + }, + "id": 9176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3075.46000", + "end": "3076.06000", + "feature": { + "word": "correct" + }, + "id": 9177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3076.10000", + "end": "3076.13000", + "feature": { + "word": "" + }, + "id": 9179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3076.16000", + "end": "3076.30000", + "feature": { + "word": "that" + }, + "id": 9181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3076.30000", + "end": "3076.45000", + "feature": { + "word": "the" + }, + "id": 9182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3076.45000", + "end": "3076.88000", + "feature": { + "word": "evidence" + }, + "id": 9183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3076.88000", + "end": "3076.98000", + "feature": { + "word": "that" + }, + "id": 9184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3076.98000", + "end": "3077.04000", + "feature": { + "word": "s" + }, + "id": 9185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3077.04000", + "end": "3077.25000", + "feature": { + "word": "been" + }, + "id": 9186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3077.25000", + "end": "3077.73000", + "feature": { + "word": "gathered" + }, + "id": 9187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3077.73000", + "end": "3077.95000", + "feature": { + "word": "by" + }, + "id": 9188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3077.95000", + "end": "3078.11000", + "feature": { + "word": "u" + }, + "id": 9189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3078.11000", + "end": "3078.28000", + "feature": { + "word": "s" + }, + "id": 9190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3078.28000", + "end": "3079.23000", + "feature": { + "word": "investigators" + }, + "id": 9191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3079.23000", + "end": "3079.41000", + "feature": { + "word": "is" + }, + "id": 9192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3079.48000", + "end": "3079.98000", + "feature": { + "word": "totally" + }, + "id": 9194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3079.98000", + "end": "3080.64000", + "feature": { + "word": "convincing" + }, + "id": 9195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3081.23000", + "end": "3081.40000", + "feature": { + "word": "that" + }, + "id": 9197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3081.40000", + "end": "3081.48000", + "feature": { + "word": "the" + }, + "id": 9198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3081.48000", + "end": "3081.91000", + "feature": { + "word": "president" + }, + "id": 9199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3081.91000", + "end": "3082.00000", + "feature": { + "word": "of" + }, + "id": 9200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3082.00000", + "end": "3082.17000", + "feature": { + "word": "your" + }, + "id": 9201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3082.17000", + "end": "3082.60000", + "feature": { + "word": "country" + }, + "id": 9202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3082.60000", + "end": "3083.52000", + "feature": { + "word": "participated" + }, + "id": 9203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3083.52000", + "end": "3083.67000", + "feature": { + "word": "in" + }, + "id": 9204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3083.67000", + "end": "3083.91000", + "feature": { + "word": "war" + }, + "id": 9205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3083.91000", + "end": "3084.48000", + "feature": { + "word": "crimes" + }, + "id": 9206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3084.48000", + "end": "3084.67000", + "feature": { + "word": "in" + }, + "id": 9207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3084.67000", + "end": "3084.88000", + "feature": { + "word": "world" + }, + "id": 9208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3084.88000", + "end": "3085.13000", + "feature": { + "word": "war" + }, + "id": 9209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3085.13000", + "end": "3085.59000", + "feature": { + "word": "" + }, + "id": 9210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3085.59000", + "end": "3085.68000", + "feature": { + "word": "and" + }, + "id": 9211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3085.68000", + "end": "3085.77000", + "feature": { + "word": "the" + }, + "id": 9212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3085.77000", + "end": "3086.18000", + "feature": { + "word": "laws" + }, + "id": 9213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3086.18000", + "end": "3086.28000", + "feature": { + "word": "are" + }, + "id": 9214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3086.28000", + "end": "3086.39000", + "feature": { + "word": "on" + }, + "id": 9215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3086.39000", + "end": "3086.46000", + "feature": { + "word": "the" + }, + "id": 9216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3086.46000", + "end": "3086.81000", + "feature": { + "word": "books" + }, + "id": 9217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3086.81000", + "end": "3086.96000", + "feature": { + "word": "say" + }, + "id": 9218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3086.96000", + "end": "3087.19000", + "feature": { + "word": "those" + }, + "id": 9219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3087.19000", + "end": "3087.39000", + "feature": { + "word": "kind" + }, + "id": 9220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3087.39000", + "end": "3087.47000", + "feature": { + "word": "of" + }, + "id": 9221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3087.47000", + "end": "3087.82000", + "feature": { + "word": "people" + }, + "id": 9222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3087.82000", + "end": "3087.87000", + "feature": { + "word": "are" + }, + "id": 9223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3087.87000", + "end": "3088.06000", + "feature": { + "word": "not" + }, + "id": 9224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3088.06000", + "end": "3088.42000", + "feature": { + "word": "allowed" + }, + "id": 9225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3088.42000", + "end": "3088.53000", + "feature": { + "word": "in" + }, + "id": 9226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3088.53000", + "end": "3088.61000", + "feature": { + "word": "the" + }, + "id": 9227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3088.61000", + "end": "3089.08000", + "feature": { + "word": "united" + }, + "id": 9228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3089.08000", + "end": "3089.48000", + "feature": { + "word": "states" + }, + "id": 9229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3089.94000", + "end": "3090.20000", + "feature": { + "word": "what" + }, + "id": 9231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3090.20000", + "end": "3090.36000", + "feature": { + "word": "should" + }, + "id": 9232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3090.36000", + "end": "3090.44000", + "feature": { + "word": "the" + }, + "id": 9233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3090.44000", + "end": "3090.60000", + "feature": { + "word": "u" + }, + "id": 9234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3090.60000", + "end": "3090.71000", + "feature": { + "word": "s" + }, + "id": 9235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3090.71000", + "end": "3091.13000", + "feature": { + "word": "government" + }, + "id": 9236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3091.13000", + "end": "3091.32000", + "feature": { + "word": "do" + }, + "id": 9237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3091.32000", + "end": "3091.39000", + "feature": { + "word": "in" + }, + "id": 9238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3091.39000", + "end": "3091.55000", + "feature": { + "word": "that" + }, + "id": 9239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3091.55000", + "end": "3091.75000", + "feature": { + "word": "kind" + }, + "id": 9240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3091.75000", + "end": "3091.85000", + "feature": { + "word": "of" + }, + "id": 9241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3091.85000", + "end": "3092.51000", + "feature": { + "word": "situation" + }, + "id": 9242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3092.51000", + "end": "3092.71000", + "feature": { + "word": "chancellor" + }, + "id": 9243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3092.71000", + "end": "3092.74000", + "feature": { + "word": "i" + }, + "id": 9244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3092.74000", + "end": "3093.10000", + "feature": { + "word": "think" + }, + "id": 9245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3093.10000", + "end": "3093.27000", + "feature": { + "word": "we" + }, + "id": 9246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3093.27000", + "end": "3093.55000", + "feature": { + "word": "should" + }, + "id": 9247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3093.55000", + "end": "3093.66000", + "feature": { + "word": "make" + }, + "id": 9248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3093.66000", + "end": "3094.65000", + "feature": { + "word": "a" + }, + "id": 9249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3095.58000", + "end": "3096.30000", + "feature": { + "word": "very" + }, + "id": 9251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3096.30000", + "end": "3096.61000", + "feature": { + "word": "clear" + }, + "id": 9252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3096.61000", + "end": "3097.35000", + "feature": { + "word": "distinction" + }, + "id": 9253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3097.38000", + "end": "3098.08000", + "feature": { + "word": "between" + }, + "id": 9255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3098.87000", + "end": "3099.80000", + "feature": { + "word": "accusations" + }, + "id": 9257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3099.80000", + "end": "3100.02000", + "feature": { + "word": "and" + }, + "id": 9258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3100.02000", + "end": "3100.92000", + "feature": { + "word": "allegations" + }, + "id": 9259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3100.92000", + "end": "3101.01000", + "feature": { + "word": "i" + }, + "id": 9260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3101.04000", + "end": "3101.17000", + "feature": { + "word": "was" + }, + "id": 9262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3101.17000", + "end": "3101.34000", + "feature": { + "word": "just" + }, + "id": 9263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3101.34000", + "end": "3101.51000", + "feature": { + "word": "saying" + }, + "id": 9264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3101.51000", + "end": "3101.66000", + "feature": { + "word": "what" + }, + "id": 9265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3101.66000", + "end": "3101.74000", + "feature": { + "word": "the" + }, + "id": 9266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3101.74000", + "end": "3102.48000", + "feature": { + "word": "secretary" + }, + "id": 9267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3102.48000", + "end": "3102.60000", + "feature": { + "word": "of" + }, + "id": 9268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3102.60000", + "end": "3102.76000", + "feature": { + "word": "state" + }, + "id": 9269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3102.76000", + "end": "3103.19000", + "feature": { + "word": "" + }, + "id": 9270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3103.46000", + "end": "3104.10000", + "feature": { + "word": "chancellor" + }, + "id": 9272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3104.10000", + "end": "3104.44000", + "feature": { + "word": "yes" + }, + "id": 9273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3104.57000", + "end": "3104.66000", + "feature": { + "word": "yes" + }, + "id": 9275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3104.90000", + "end": "3105.08000", + "feature": { + "word": "well" + }, + "id": 9277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3105.08000", + "end": "3105.22000", + "feature": { + "word": "we" + }, + "id": 9278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3105.22000", + "end": "3105.35000", + "feature": { + "word": "are" + }, + "id": 9279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3105.35000", + "end": "3105.46000", + "feature": { + "word": "at" + }, + "id": 9280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3105.46000", + "end": "3105.62000", + "feature": { + "word": "the" + }, + "id": 9281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3105.62000", + "end": "3105.87000", + "feature": { + "word": "end" + }, + "id": 9282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3105.87000", + "end": "3106.02000", + "feature": { + "word": "of" + }, + "id": 9283, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3106.02000", + "end": "3106.06000", + "feature": { + "word": "a" + }, + "id": 9284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3106.06000", + "end": "3106.26000", + "feature": { + "word": "very" + }, + "id": 9285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3106.26000", + "end": "3106.50000", + "feature": { + "word": "long" + }, + "id": 9286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3106.50000", + "end": "3106.95000", + "feature": { + "word": "talk" + }, + "id": 9287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3106.95000", + "end": "3107.09000", + "feature": { + "word": "with" + }, + "id": 9288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3107.09000", + "end": "3107.60000", + "feature": { + "word": "american" + }, + "id": 9289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3107.60000", + "end": "3108.41000", + "feature": { + "word": "authorities" + }, + "id": 9290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3108.96000", + "end": "3109.42000", + "feature": { + "word": "and" + }, + "id": 9292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3109.42000", + "end": "3110.07000", + "feature": { + "word": "those" + }, + "id": 9293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3110.07000", + "end": "3110.44000", + "feature": { + "word": "people" + }, + "id": 9294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3110.44000", + "end": "3110.67000", + "feature": { + "word": "from" + }, + "id": 9295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3110.67000", + "end": "3110.75000", + "feature": { + "word": "the" + }, + "id": 9296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3110.75000", + "end": "3111.13000", + "feature": { + "word": "justice" + }, + "id": 9297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3111.13000", + "end": "3111.79000", + "feature": { + "word": "department" + }, + "id": 9298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3111.82000", + "end": "3112.01000", + "feature": { + "word": "who" + }, + "id": 9300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3112.01000", + "end": "3112.57000", + "feature": { + "word": "visited" + }, + "id": 9301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3112.57000", + "end": "3112.93000", + "feature": { + "word": "in" + }, + "id": 9302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3112.96000", + "end": "3113.45000", + "feature": { + "word": "austria" + }, + "id": 9304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3113.45000", + "end": "3113.75000", + "feature": { + "word": "only" + }, + "id": 9305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3113.75000", + "end": "3113.79000", + "feature": { + "word": "a" + }, + "id": 9306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3113.79000", + "end": "3113.97000", + "feature": { + "word": "few" + }, + "id": 9307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3113.97000", + "end": "3114.23000", + "feature": { + "word": "days" + }, + "id": 9308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3114.23000", + "end": "3114.60000", + "feature": { + "word": "ago" + }, + "id": 9309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3115.01000", + "end": "3115.20000", + "feature": { + "word": "they" + }, + "id": 9311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3115.20000", + "end": "3115.42000", + "feature": { + "word": "did" + }, + "id": 9312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3115.42000", + "end": "3115.71000", + "feature": { + "word": "not" + }, + "id": 9313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3115.71000", + "end": "3115.97000", + "feature": { + "word": "say" + }, + "id": 9314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3115.97000", + "end": "3116.58000", + "feature": { + "word": "that" + }, + "id": 9315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3116.58000", + "end": "3116.77000", + "feature": { + "word": "they" + }, + "id": 9316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3116.77000", + "end": "3116.97000", + "feature": { + "word": "would" + }, + "id": 9317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3117.11000", + "end": "3117.68000", + "feature": { + "word": "blame" + }, + "id": 9319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3117.68000", + "end": "3118.26000", + "feature": { + "word": "waldheim" + }, + "id": 9320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3118.26000", + "end": "3118.58000", + "feature": { + "word": "being" + }, + "id": 9321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3118.58000", + "end": "3118.64000", + "feature": { + "word": "a" + }, + "id": 9322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3118.64000", + "end": "3118.88000", + "feature": { + "word": "war" + }, + "id": 9323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3118.88000", + "end": "3119.49000", + "feature": { + "word": "criminal" + }, + "id": 9324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3120.08000", + "end": "3121.35000", + "feature": { + "word": "and" + }, + "id": 9326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3121.38000", + "end": "3121.53000", + "feature": { + "word": "they" + }, + "id": 9328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3121.53000", + "end": "3121.84000", + "feature": { + "word": "also" + }, + "id": 9329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3121.84000", + "end": "3122.13000", + "feature": { + "word": "said" + }, + "id": 9330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3122.13000", + "end": "3122.24000", + "feature": { + "word": "he" + }, + "id": 9331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3122.24000", + "end": "3122.62000", + "feature": { + "word": "never" + }, + "id": 9332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3123.23000", + "end": "3123.60000", + "feature": { + "word": "was" + }, + "id": 9334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3123.88000", + "end": "3124.40000", + "feature": { + "word": "committed" + }, + "id": 9336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3124.40000", + "end": "3125.12000", + "feature": { + "word": "directly" + }, + "id": 9337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3125.12000", + "end": "3125.23000", + "feature": { + "word": "and" + }, + "id": 9338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3125.23000", + "end": "3126.00000", + "feature": { + "word": "personally" + }, + "id": 9339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3126.79000", + "end": "3127.94000", + "feature": { + "word": "but" + }, + "id": 9341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3127.94000", + "end": "3128.14000", + "feature": { + "word": "their" + }, + "id": 9342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3128.14000", + "end": "3128.63000", + "feature": { + "word": "reading" + }, + "id": 9343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3128.63000", + "end": "3129.04000", + "feature": { + "word": "was" + }, + "id": 9344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3129.04000", + "end": "3129.35000", + "feature": { + "word": "that" + }, + "id": 9345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3129.35000", + "end": "3129.53000", + "feature": { + "word": "he" + }, + "id": 9346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3129.53000", + "end": "3130.21000", + "feature": { + "word": "belonged" + }, + "id": 9347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3130.24000", + "end": "3131.46000", + "feature": { + "word": "to" + }, + "id": 9349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3131.49000", + "end": "3131.55000", + "feature": { + "word": "the" + }, + "id": 9351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3131.55000", + "end": "3132.19000", + "feature": { + "word": "unit" + }, + "id": 9352, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3132.22000", + "end": "3132.56000", + "feature": { + "word": "which" + }, + "id": 9354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3132.56000", + "end": "3133.02000", + "feature": { + "word": "committed" + }, + "id": 9355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3133.02000", + "end": "3134.32000", + "feature": { + "word": "the" + }, + "id": 9356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3134.39000", + "end": "3134.94000", + "feature": { + "word": "crimes" + }, + "id": 9358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3134.94000", + "end": "3135.12000", + "feature": { + "word": "so" + }, + "id": 9359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3135.15000", + "end": "3135.47000", + "feature": { + "word": "this" + }, + "id": 9361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3135.47000", + "end": "3135.67000", + "feature": { + "word": "would" + }, + "id": 9362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3135.67000", + "end": "3135.97000", + "feature": { + "word": "make" + }, + "id": 9363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3135.97000", + "end": "3136.02000", + "feature": { + "word": "a" + }, + "id": 9364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3136.02000", + "end": "3136.21000", + "feature": { + "word": "lot" + }, + "id": 9365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3136.21000", + "end": "3136.45000", + "feature": { + "word": "of" + }, + "id": 9366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3136.45000", + "end": "3136.93000", + "feature": { + "word": "difference" + }, + "id": 9367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3136.93000", + "end": "3137.59000", + "feature": { + "word": "from" + }, + "id": 9368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3138.04000", + "end": "3138.13000", + "feature": { + "word": "our" + }, + "id": 9370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3138.13000", + "end": "3139.34000", + "feature": { + "word": "legal" + }, + "id": 9371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3139.34000", + "end": "3139.96000", + "feature": { + "word": "system" + }, + "id": 9372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3140.84000", + "end": "3141.06000", + "feature": { + "word": "but" + }, + "id": 9374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3141.06000", + "end": "3141.16000", + "feature": { + "word": "we" + }, + "id": 9375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3141.16000", + "end": "3141.44000", + "feature": { + "word": "don't" + }, + "id": 9376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3141.44000", + "end": "3141.87000", + "feature": { + "word": "have" + }, + "id": 9377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3141.87000", + "end": "3141.95000", + "feature": { + "word": "the" + }, + "id": 9378, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3141.95000", + "end": "3142.45000", + "feature": { + "word": "institution" + }, + "id": 9379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3142.45000", + "end": "3142.56000", + "feature": { + "word": "of" + }, + "id": 9380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3142.56000", + "end": "3142.62000", + "feature": { + "word": "a" + }, + "id": 9381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3142.62000", + "end": "3142.94000", + "feature": { + "word": "watch" + }, + "id": 9382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3142.94000", + "end": "3143.24000", + "feature": { + "word": "list" + }, + "id": 9383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3143.24000", + "end": "3143.30000", + "feature": { + "word": "we" + }, + "id": 9384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3143.30000", + "end": "3143.55000", + "feature": { + "word": "don't" + }, + "id": 9385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3143.55000", + "end": "3143.91000", + "feature": { + "word": "have" + }, + "id": 9386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3143.95000", + "end": "3144.34000", + "feature": { + "word": "anything" + }, + "id": 9388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3144.34000", + "end": "3144.54000", + "feature": { + "word": "like" + }, + "id": 9389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3144.54000", + "end": "3144.59000", + "feature": { + "word": "a" + }, + "id": 9390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3144.59000", + "end": "3145.06000", + "feature": { + "word": "holtzman" + }, + "id": 9391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3145.06000", + "end": "3145.73000", + "feature": { + "word": "amendment" + }, + "id": 9392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3146.20000", + "end": "3146.56000", + "feature": { + "word": "and" + }, + "id": 9394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3146.59000", + "end": "3147.06000", + "feature": { + "word": "therefore" + }, + "id": 9396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3147.41000", + "end": "3147.56000", + "feature": { + "word": "it" + }, + "id": 9398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3147.85000", + "end": "3147.93000", + "feature": { + "word": "s" + }, + "id": 9400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3148.04000", + "end": "3148.46000", + "feature": { + "word": "also" + }, + "id": 9402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3148.46000", + "end": "3148.53000", + "feature": { + "word": "a" + }, + "id": 9403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3148.53000", + "end": "3149.29000", + "feature": { + "word": "confrontation" + }, + "id": 9404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3149.29000", + "end": "3149.80000", + "feature": { + "word": "between" + }, + "id": 9405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3149.83000", + "end": "3149.98000", + "feature": { + "word": "two" + }, + "id": 9407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3149.98000", + "end": "3150.61000", + "feature": { + "word": "legal" + }, + "id": 9408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3150.61000", + "end": "3151.34000", + "feature": { + "word": "systems" + }, + "id": 9409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3152.05000", + "end": "3153.06000", + "feature": { + "word": "and" + }, + "id": 9411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3153.66000", + "end": "3153.86000", + "feature": { + "word": "i" + }, + "id": 9413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3153.86000", + "end": "3154.12000", + "feature": { + "word": "really" + }, + "id": 9414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3154.12000", + "end": "3154.59000", + "feature": { + "word": "think" + }, + "id": 9415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3154.59000", + "end": "3154.82000", + "feature": { + "word": "that" + }, + "id": 9416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3154.89000", + "end": "3156.32000", + "feature": { + "word": "" + }, + "id": 9418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3156.32000", + "end": "3156.44000", + "feature": { + "word": "i" + }, + "id": 9419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3156.44000", + "end": "3156.68000", + "feature": { + "word": "still" + }, + "id": 9420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3156.68000", + "end": "3156.87000", + "feature": { + "word": "have" + }, + "id": 9421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3156.87000", + "end": "3156.98000", + "feature": { + "word": "to" + }, + "id": 9422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3156.98000", + "end": "3157.29000", + "feature": { + "word": "think" + }, + "id": 9423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3157.29000", + "end": "3157.41000", + "feature": { + "word": "it" + }, + "id": 9424, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3157.41000", + "end": "3157.71000", + "feature": { + "word": "over" + }, + "id": 9425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3157.71000", + "end": "3158.08000", + "feature": { + "word": "but" + }, + "id": 9426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3158.68000", + "end": "3159.48000", + "feature": { + "word": "my" + }, + "id": 9428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3159.48000", + "end": "3159.82000", + "feature": { + "word": "first" + }, + "id": 9429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3159.82000", + "end": "3160.33000", + "feature": { + "word": "impression" + }, + "id": 9430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3160.33000", + "end": "3160.54000", + "feature": { + "word": "and" + }, + "id": 9431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3160.54000", + "end": "3160.75000", + "feature": { + "word": "i" + }, + "id": 9432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3160.79000", + "end": "3160.97000", + "feature": { + "word": "don't" + }, + "id": 9434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3160.97000", + "end": "3161.24000", + "feature": { + "word": "think" + }, + "id": 9435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3161.24000", + "end": "3161.37000", + "feature": { + "word": "it" + }, + "id": 9436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3161.37000", + "end": "3161.50000", + "feature": { + "word": "will" + }, + "id": 9437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3161.50000", + "end": "3161.89000", + "feature": { + "word": "change" + }, + "id": 9438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3161.89000", + "end": "3162.10000", + "feature": { + "word": "very" + }, + "id": 9439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3162.10000", + "end": "3162.45000", + "feature": { + "word": "much" + }, + "id": 9440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3162.94000", + "end": "3163.42000", + "feature": { + "word": "is" + }, + "id": 9442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3163.42000", + "end": "3163.58000", + "feature": { + "word": "that" + }, + "id": 9443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3163.58000", + "end": "3163.68000", + "feature": { + "word": "it" + }, + "id": 9444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3163.74000", + "end": "3163.80000", + "feature": { + "word": "is" + }, + "id": 9446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3163.80000", + "end": "3164.14000", + "feature": { + "word": "no" + }, + "id": 9447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3164.87000", + "end": "3166.21000", + "feature": { + "word": "longer" + }, + "id": 9449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3166.71000", + "end": "3167.89000", + "feature": { + "word": "a" + }, + "id": 9451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3167.92000", + "end": "3169.09000", + "feature": { + "word": "judicial" + }, + "id": 9453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3170.06000", + "end": "3170.56000", + "feature": { + "word": "topic" + }, + "id": 9455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3170.56000", + "end": "3170.76000", + "feature": { + "word": "but" + }, + "id": 9456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3170.76000", + "end": "3170.94000", + "feature": { + "word": "it" + }, + "id": 9457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3170.94000", + "end": "3170.99000", + "feature": { + "word": "s" + }, + "id": 9458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3170.99000", + "end": "3171.09000", + "feature": { + "word": "a" + }, + "id": 9459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3171.13000", + "end": "3171.59000", + "feature": { + "word": "political" + }, + "id": 9461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3171.59000", + "end": "3172.07000", + "feature": { + "word": "topic" + }, + "id": 9462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3172.07000", + "end": "3172.48000", + "feature": { + "word": "and" + }, + "id": 9463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3172.51000", + "end": "3173.18000", + "feature": { + "word": "politicians" + }, + "id": 9465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3173.18000", + "end": "3173.44000", + "feature": { + "word": "have" + }, + "id": 9466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3173.44000", + "end": "3173.55000", + "feature": { + "word": "to" + }, + "id": 9467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3173.55000", + "end": "3173.92000", + "feature": { + "word": "work" + }, + "id": 9468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3173.92000", + "end": "3174.05000", + "feature": { + "word": "on" + }, + "id": 9469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3174.09000", + "end": "3174.56000", + "feature": { + "word": "political" + }, + "id": 9471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3174.56000", + "end": "3175.02000", + "feature": { + "word": "topics" + }, + "id": 9472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3175.81000", + "end": "3176.17000", + "feature": { + "word": "chancellor" + }, + "id": 9474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3176.17000", + "end": "3176.46000", + "feature": { + "word": "thank" + }, + "id": 9475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3176.46000", + "end": "3176.52000", + "feature": { + "word": "you" + }, + "id": 9476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3176.52000", + "end": "3176.69000", + "feature": { + "word": "very" + }, + "id": 9477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3176.69000", + "end": "3176.90000", + "feature": { + "word": "much" + }, + "id": 9478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3176.90000", + "end": "3177.01000", + "feature": { + "word": "for" + }, + "id": 9479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3177.01000", + "end": "3177.20000", + "feature": { + "word": "being" + }, + "id": 9480, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3177.20000", + "end": "3177.38000", + "feature": { + "word": "with" + }, + "id": 9481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3177.38000", + "end": "3177.58000", + "feature": { + "word": "us" + }, + "id": 9482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3177.74000", + "end": "3178.31000", + "feature": { + "word": "delusions" + }, + "id": 9484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3180.74000", + "end": "3180.83000", + "feature": { + "word": "of" + }, + "id": 9486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3181.58000", + "end": "3186.64000", + "feature": { + "word": "grandeur" + }, + "id": 9488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3187.99000", + "end": "3188.35000", + "feature": { + "word": "finally" + }, + "id": 9490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3188.35000", + "end": "3188.77000", + "feature": { + "word": "tonight" + }, + "id": 9491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3188.77000", + "end": "3188.96000", + "feature": { + "word": "our" + }, + "id": 9492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3188.96000", + "end": "3189.38000", + "feature": { + "word": "regular" + }, + "id": 9493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3189.38000", + "end": "3189.95000", + "feature": { + "word": "washington" + }, + "id": 9494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3189.95000", + "end": "3190.45000", + "feature": { + "word": "essayist" + }, + "id": 9495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3190.45000", + "end": "3190.79000", + "feature": { + "word": "roger" + }, + "id": 9496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3190.79000", + "end": "3191.12000", + "feature": { + "word": "mudd" + }, + "id": 9497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3191.12000", + "end": "3191.33000", + "feature": { + "word": "has" + }, + "id": 9498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3191.33000", + "end": "3191.50000", + "feature": { + "word": "some" + }, + "id": 9499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3191.50000", + "end": "3191.95000", + "feature": { + "word": "thoughts" + }, + "id": 9500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3191.95000", + "end": "3192.13000", + "feature": { + "word": "on" + }, + "id": 9501, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3192.13000", + "end": "3192.77000", + "feature": { + "word": "attitudes" + }, + "id": 9502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3192.77000", + "end": "3193.20000", + "feature": { + "word": "common" + }, + "id": 9503, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3193.20000", + "end": "3193.40000", + "feature": { + "word": "to" + }, + "id": 9504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3193.40000", + "end": "3193.59000", + "feature": { + "word": "all" + }, + "id": 9505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3193.59000", + "end": "3194.24000", + "feature": { + "word": "presidents" + }, + "id": 9506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3194.81000", + "end": "3195.15000", + "feature": { + "word": "call" + }, + "id": 9508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3195.15000", + "end": "3195.57000", + "feature": { + "word": "living" + }, + "id": 9509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3195.57000", + "end": "3195.73000", + "feature": { + "word": "in" + }, + "id": 9510, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3195.73000", + "end": "3195.82000", + "feature": { + "word": "the" + }, + "id": 9511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3195.82000", + "end": "3196.05000", + "feature": { + "word": "white" + }, + "id": 9512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3196.05000", + "end": "3196.33000", + "feature": { + "word": "house" + }, + "id": 9513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3196.33000", + "end": "3196.56000", + "feature": { + "word": "what" + }, + "id": 9514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3196.56000", + "end": "3196.64000", + "feature": { + "word": "you" + }, + "id": 9515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3196.64000", + "end": "3197.15000", + "feature": { + "word": "will" + }, + "id": 9516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3197.32000", + "end": "3197.40000", + "feature": { + "word": "" + }, + "id": 9518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3197.40000", + "end": "3198.02000", + "feature": { + "word": "splendid" + }, + "id": 9519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3198.02000", + "end": "3198.34000", + "feature": { + "word": "or" + }, + "id": 9520, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3198.34000", + "end": "3199.10000", + "feature": { + "word": "miserable" + }, + "id": 9521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3199.10000", + "end": "3199.13000", + "feature": { + "word": "" + }, + "id": 9522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3199.13000", + "end": "3199.24000", + "feature": { + "word": "or" + }, + "id": 9523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3199.24000", + "end": "3199.91000", + "feature": { + "word": "frustrating" + }, + "id": 9524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3200.45000", + "end": "3200.48000", + "feature": { + "word": "" + }, + "id": 9526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3200.48000", + "end": "3200.80000", + "feature": { + "word": "ronald" + }, + "id": 9527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3200.80000", + "end": "3201.22000", + "feature": { + "word": "reagan" + }, + "id": 9528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3201.25000", + "end": "3201.47000", + "feature": { + "word": "is" + }, + "id": 9530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3201.47000", + "end": "3201.71000", + "feature": { + "word": "now" + }, + "id": 9531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3201.71000", + "end": "3202.09000", + "feature": { + "word": "learning" + }, + "id": 9532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3202.09000", + "end": "3202.30000", + "feature": { + "word": "what" + }, + "id": 9533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3202.34000", + "end": "3202.66000", + "feature": { + "word": "each" + }, + "id": 9535, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3202.66000", + "end": "3202.78000", + "feature": { + "word": "of" + }, + "id": 9536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3202.78000", + "end": "3203.21000", + "feature": { + "word": "his" + }, + "id": 9537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3203.28000", + "end": "3203.93000", + "feature": { + "word": "predecessors" + }, + "id": 9539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3203.93000", + "end": "3204.44000", + "feature": { + "word": "discovered" + }, + "id": 9540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3204.98000", + "end": "3205.13000", + "feature": { + "word": "they" + }, + "id": 9542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3205.13000", + "end": "3205.44000", + "feature": { + "word": "came" + }, + "id": 9543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3205.44000", + "end": "3205.69000", + "feature": { + "word": "into" + }, + "id": 9544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3205.69000", + "end": "3206.07000", + "feature": { + "word": "office" + }, + "id": 9545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3206.07000", + "end": "3206.39000", + "feature": { + "word": "feeling" + }, + "id": 9546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3206.39000", + "end": "3207.06000", + "feature": { + "word": "powerful" + }, + "id": 9547, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3207.44000", + "end": "3207.63000", + "feature": { + "word": "but" + }, + "id": 9549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3207.63000", + "end": "3207.77000", + "feature": { + "word": "they" + }, + "id": 9550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3207.77000", + "end": "3208.20000", + "feature": { + "word": "left" + }, + "id": 9551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3208.20000", + "end": "3208.53000", + "feature": { + "word": "feeling" + }, + "id": 9552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3208.53000", + "end": "3209.11000", + "feature": { + "word": "isolated" + }, + "id": 9553, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3209.79000", + "end": "3210.20000", + "feature": { + "word": "ronald" + }, + "id": 9555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3210.20000", + "end": "3210.59000", + "feature": { + "word": "reagan" + }, + "id": 9556, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3210.59000", + "end": "3210.82000", + "feature": { + "word": "is" + }, + "id": 9557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3210.82000", + "end": "3211.11000", + "feature": { + "word": "now" + }, + "id": 9558, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3211.11000", + "end": "3211.31000", + "feature": { + "word": "in" + }, + "id": 9559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3211.36000", + "end": "3211.96000", + "feature": { + "word": "danger" + }, + "id": 9561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3211.96000", + "end": "3212.10000", + "feature": { + "word": "of" + }, + "id": 9562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3212.10000", + "end": "3212.52000", + "feature": { + "word": "becoming" + }, + "id": 9563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3212.52000", + "end": "3213.04000", + "feature": { + "word": "isolated" + }, + "id": 9564, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3213.57000", + "end": "3213.78000", + "feature": { + "word": "not" + }, + "id": 9566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3213.78000", + "end": "3213.85000", + "feature": { + "word": "the" + }, + "id": 9567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3213.85000", + "end": "3214.01000", + "feature": { + "word": "way" + }, + "id": 9568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3214.01000", + "end": "3214.38000", + "feature": { + "word": "lyndon" + }, + "id": 9569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3214.38000", + "end": "3214.75000", + "feature": { + "word": "johnson" + }, + "id": 9570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3214.75000", + "end": "3215.02000", + "feature": { + "word": "was" + }, + "id": 9571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3215.02000", + "end": "3215.12000", + "feature": { + "word": "in" + }, + "id": 9572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3215.12000", + "end": "3215.86000", + "feature": { + "word": "" + }, + "id": 9573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3215.86000", + "end": "3215.98000", + "feature": { + "word": "and" + }, + "id": 9574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3215.98000", + "end": "3216.70000", + "feature": { + "word": "" + }, + "id": 9575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3217.17000", + "end": "3217.33000", + "feature": { + "word": "when" + }, + "id": 9577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3217.33000", + "end": "3217.46000", + "feature": { + "word": "the" + }, + "id": 9578, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3217.46000", + "end": "3217.70000", + "feature": { + "word": "only" + }, + "id": 9579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3217.70000", + "end": "3217.93000", + "feature": { + "word": "way" + }, + "id": 9580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3217.93000", + "end": "3218.02000", + "feature": { + "word": "he" + }, + "id": 9581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3218.02000", + "end": "3218.18000", + "feature": { + "word": "could" + }, + "id": 9582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3218.18000", + "end": "3218.50000", + "feature": { + "word": "avoid" + }, + "id": 9583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3218.50000", + "end": "3219.34000", + "feature": { + "word": "demonstrations" + }, + "id": 9584, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3219.34000", + "end": "3219.57000", + "feature": { + "word": "was" + }, + "id": 9585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3219.57000", + "end": "3219.82000", + "feature": { + "word": "to" + }, + "id": 9586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3219.82000", + "end": "3220.19000", + "feature": { + "word": "appear" + }, + "id": 9587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3220.19000", + "end": "3220.28000", + "feature": { + "word": "on" + }, + "id": 9588, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3220.28000", + "end": "3220.56000", + "feature": { + "word": "federal" + }, + "id": 9589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3220.56000", + "end": "3220.94000", + "feature": { + "word": "property" + }, + "id": 9590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3221.45000", + "end": "3221.63000", + "feature": { + "word": "but" + }, + "id": 9592, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3221.63000", + "end": "3221.74000", + "feature": { + "word": "the" + }, + "id": 9593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3221.83000", + "end": "3222.30000", + "feature": { + "word": "danger" + }, + "id": 9595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3222.30000", + "end": "3222.41000", + "feature": { + "word": "for" + }, + "id": 9596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3222.41000", + "end": "3222.52000", + "feature": { + "word": "the" + }, + "id": 9597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3222.52000", + "end": "3223.02000", + "feature": { + "word": "president" + }, + "id": 9598, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3223.02000", + "end": "3223.15000", + "feature": { + "word": "is" + }, + "id": 9599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3223.15000", + "end": "3223.53000", + "feature": { + "word": "there" + }, + "id": 9600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3224.32000", + "end": "3224.63000", + "feature": { + "word": "mr" + }, + "id": 9602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3224.63000", + "end": "3225.00000", + "feature": { + "word": "reagan" + }, + "id": 9603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3225.00000", + "end": "3225.59000", + "feature": { + "word": "insists" + }, + "id": 9604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3225.59000", + "end": "3225.70000", + "feature": { + "word": "he" + }, + "id": 9605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3225.70000", + "end": "3225.91000", + "feature": { + "word": "has" + }, + "id": 9606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3225.91000", + "end": "3226.25000", + "feature": { + "word": "not" + }, + "id": 9607, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3226.25000", + "end": "3226.42000", + "feature": { + "word": "been" + }, + "id": 9608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3226.42000", + "end": "3226.90000", + "feature": { + "word": "politically" + }, + "id": 9609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3226.90000", + "end": "3227.45000", + "feature": { + "word": "damaged" + }, + "id": 9610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3227.45000", + "end": "3227.59000", + "feature": { + "word": "and" + }, + "id": 9611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3227.59000", + "end": "3227.73000", + "feature": { + "word": "he" + }, + "id": 9612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3227.73000", + "end": "3228.11000", + "feature": { + "word": "cites" + }, + "id": 9613, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3228.11000", + "end": "3228.34000", + "feature": { + "word": "his" + }, + "id": 9614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3228.34000", + "end": "3228.85000", + "feature": { + "word": "travels" + }, + "id": 9615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3228.85000", + "end": "3229.14000", + "feature": { + "word": "around" + }, + "id": 9616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3229.14000", + "end": "3229.22000", + "feature": { + "word": "the" + }, + "id": 9617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3229.22000", + "end": "3229.66000", + "feature": { + "word": "country" + }, + "id": 9618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3229.66000", + "end": "3229.80000", + "feature": { + "word": "as" + }, + "id": 9619, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3229.80000", + "end": "3230.27000", + "feature": { + "word": "proof" + }, + "id": 9620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3230.98000", + "end": "3231.12000", + "feature": { + "word": "but" + }, + "id": 9622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3231.19000", + "end": "3231.82000", + "feature": { + "word": "presidential" + }, + "id": 9624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3231.82000", + "end": "3232.36000", + "feature": { + "word": "travel" + }, + "id": 9625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3232.36000", + "end": "3232.49000", + "feature": { + "word": "is" + }, + "id": 9626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3232.49000", + "end": "3233.06000", + "feature": { + "word": "designed" + }, + "id": 9627, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3233.06000", + "end": "3233.17000", + "feature": { + "word": "to" + }, + "id": 9628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3233.17000", + "end": "3233.57000", + "feature": { + "word": "convince" + }, + "id": 9629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3233.57000", + "end": "3233.63000", + "feature": { + "word": "a" + }, + "id": 9630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3233.63000", + "end": "3234.16000", + "feature": { + "word": "president" + }, + "id": 9631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3234.16000", + "end": "3234.24000", + "feature": { + "word": "he" + }, + "id": 9632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3234.24000", + "end": "3234.42000", + "feature": { + "word": "is" + }, + "id": 9633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3234.42000", + "end": "3234.66000", + "feature": { + "word": "not" + }, + "id": 9634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3234.66000", + "end": "3235.27000", + "feature": { + "word": "isolated" + }, + "id": 9635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3235.34000", + "end": "3235.57000", + "feature": { + "word": "or" + }, + "id": 9637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3235.57000", + "end": "3236.10000", + "feature": { + "word": "unpopular" + }, + "id": 9638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3236.86000", + "end": "3237.02000", + "feature": { + "word": "and" + }, + "id": 9640, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3237.02000", + "end": "3237.17000", + "feature": { + "word": "his" + }, + "id": 9641, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3237.17000", + "end": "3237.60000", + "feature": { + "word": "design" + }, + "id": 9642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3237.60000", + "end": "3237.71000", + "feature": { + "word": "to" + }, + "id": 9643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3237.71000", + "end": "3238.10000", + "feature": { + "word": "convince" + }, + "id": 9644, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3238.10000", + "end": "3238.20000", + "feature": { + "word": "the" + }, + "id": 9645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3238.20000", + "end": "3238.63000", + "feature": { + "word": "people" + }, + "id": 9646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3238.75000", + "end": "3238.95000", + "feature": { + "word": "that" + }, + "id": 9648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3238.95000", + "end": "3239.06000", + "feature": { + "word": "he" + }, + "id": 9649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3239.06000", + "end": "3239.22000", + "feature": { + "word": "is" + }, + "id": 9650, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3239.22000", + "end": "3239.35000", + "feature": { + "word": "in" + }, + "id": 9651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3239.35000", + "end": "3239.70000", + "feature": { + "word": "charge" + }, + "id": 9652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3240.04000", + "end": "3240.35000", + "feature": { + "word": "and" + }, + "id": 9654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3240.35000", + "end": "3240.53000", + "feature": { + "word": "on" + }, + "id": 9655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3240.53000", + "end": "3241.11000", + "feature": { + "word": "exactly" + }, + "id": 9656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3241.11000", + "end": "3241.21000", + "feature": { + "word": "the" + }, + "id": 9657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3241.21000", + "end": "3241.52000", + "feature": { + "word": "right" + }, + "id": 9658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3241.52000", + "end": "3241.81000", + "feature": { + "word": "track" + }, + "id": 9659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3242.87000", + "end": "3243.28000", + "feature": { + "word": "certainly" + }, + "id": 9661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3243.28000", + "end": "3243.55000", + "feature": { + "word": "mr" + }, + "id": 9662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3243.55000", + "end": "3243.89000", + "feature": { + "word": "reagan" + }, + "id": 9663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3243.89000", + "end": "3243.93000", + "feature": { + "word": "s" + }, + "id": 9664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3243.93000", + "end": "3244.32000", + "feature": { + "word": "travel" + }, + "id": 9665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3244.32000", + "end": "3244.76000", + "feature": { + "word": "schedule" + }, + "id": 9666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3244.76000", + "end": "3244.99000", + "feature": { + "word": "since" + }, + "id": 9667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3244.99000", + "end": "3245.26000", + "feature": { + "word": "last" + }, + "id": 9668, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3245.26000", + "end": "3245.80000", + "feature": { + "word": "november" + }, + "id": 9669, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3245.80000", + "end": "3245.97000", + "feature": { + "word": "when" + }, + "id": 9670, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3245.97000", + "end": "3246.13000", + "feature": { + "word": "his" + }, + "id": 9671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3246.13000", + "end": "3246.46000", + "feature": { + "word": "party" + }, + "id": 9672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3246.46000", + "end": "3246.80000", + "feature": { + "word": "lost" + }, + "id": 9673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3246.80000", + "end": "3246.90000", + "feature": { + "word": "the" + }, + "id": 9674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3246.90000", + "end": "3247.26000", + "feature": { + "word": "senate" + }, + "id": 9675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3247.75000", + "end": "3247.91000", + "feature": { + "word": "and" + }, + "id": 9677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3247.91000", + "end": "3248.08000", + "feature": { + "word": "when" + }, + "id": 9678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3248.08000", + "end": "3248.23000", + "feature": { + "word": "the" + }, + "id": 9679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3248.23000", + "end": "3248.58000", + "feature": { + "word": "iran" + }, + "id": 9680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3248.58000", + "end": "3249.03000", + "feature": { + "word": "scandal" + }, + "id": 9681, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3249.03000", + "end": "3249.40000", + "feature": { + "word": "broke" + }, + "id": 9682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3249.81000", + "end": "3249.98000", + "feature": { + "word": "would" + }, + "id": 9684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3249.98000", + "end": "3250.42000", + "feature": { + "word": "hardly" + }, + "id": 9685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3250.42000", + "end": "3250.58000", + "feature": { + "word": "have" + }, + "id": 9686, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3250.58000", + "end": "3251.03000", + "feature": { + "word": "convinced" + }, + "id": 9687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3251.03000", + "end": "3251.12000", + "feature": { + "word": "him" + }, + "id": 9688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3251.12000", + "end": "3251.89000", + "feature": { + "word": "otherwise" + }, + "id": 9689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3252.77000", + "end": "3253.13000", + "feature": { + "word": "two" + }, + "id": 9691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3253.16000", + "end": "3253.71000", + "feature": { + "word": "california" + }, + "id": 9693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3253.71000", + "end": "3254.50000", + "feature": { + "word": "vacations" + }, + "id": 9694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3255.36000", + "end": "3255.52000", + "feature": { + "word": "an" + }, + "id": 9696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3255.52000", + "end": "3256.04000", + "feature": { + "word": "elementary" + }, + "id": 9697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3256.04000", + "end": "3256.34000", + "feature": { + "word": "school" + }, + "id": 9698, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3256.34000", + "end": "3256.45000", + "feature": { + "word": "in" + }, + "id": 9699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3256.45000", + "end": "3257.00000", + "feature": { + "word": "missouri" + }, + "id": 9700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3257.92000", + "end": "3258.23000", + "feature": { + "word": "some" + }, + "id": 9702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3258.23000", + "end": "3258.69000", + "feature": { + "word": "doctors" + }, + "id": 9703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3258.69000", + "end": "3258.79000", + "feature": { + "word": "in" + }, + "id": 9704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3258.79000", + "end": "3259.41000", + "feature": { + "word": "philadelphia" + }, + "id": 9705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3260.41000", + "end": "3260.57000", + "feature": { + "word": "a" + }, + "id": 9707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3260.57000", + "end": "3260.88000", + "feature": { + "word": "prime" + }, + "id": 9708, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3260.88000", + "end": "3261.31000", + "feature": { + "word": "minister" + }, + "id": 9709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3261.31000", + "end": "3261.41000", + "feature": { + "word": "in" + }, + "id": 9710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3261.41000", + "end": "3261.78000", + "feature": { + "word": "ottawa" + }, + "id": 9711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3262.88000", + "end": "3263.01000", + "feature": { + "word": "a" + }, + "id": 9713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3263.01000", + "end": "3263.68000", + "feature": { + "word": "motorcycle" + }, + "id": 9714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3263.68000", + "end": "3264.14000", + "feature": { + "word": "factory" + }, + "id": 9715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3264.14000", + "end": "3264.24000", + "feature": { + "word": "in" + }, + "id": 9716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3264.24000", + "end": "3264.96000", + "feature": { + "word": "pennsylvania" + }, + "id": 9717, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3265.82000", + "end": "3265.95000", + "feature": { + "word": "a" + }, + "id": 9719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3265.95000", + "end": "3266.42000", + "feature": { + "word": "college" + }, + "id": 9720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3266.42000", + "end": "3266.51000", + "feature": { + "word": "in" + }, + "id": 9721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3266.51000", + "end": "3267.36000", + "feature": { + "word": "alabama" + }, + "id": 9722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3268.24000", + "end": "3268.56000", + "feature": { + "word": "william" + }, + "id": 9724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3268.56000", + "end": "3268.94000", + "feature": { + "word": "casey" + }, + "id": 9725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3268.94000", + "end": "3269.03000", + "feature": { + "word": "s" + }, + "id": 9726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3269.03000", + "end": "3269.47000", + "feature": { + "word": "funeral" + }, + "id": 9727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3269.47000", + "end": "3269.53000", + "feature": { + "word": "on" + }, + "id": 9728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3269.53000", + "end": "3269.77000", + "feature": { + "word": "long" + }, + "id": 9729, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3269.77000", + "end": "3270.20000", + "feature": { + "word": "island" + }, + "id": 9730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3270.84000", + "end": "3271.07000", + "feature": { + "word": "and" + }, + "id": 9732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3271.07000", + "end": "3271.35000", + "feature": { + "word": "just" + }, + "id": 9733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3271.35000", + "end": "3271.52000", + "feature": { + "word": "this" + }, + "id": 9734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3271.52000", + "end": "3271.74000", + "feature": { + "word": "week" + }, + "id": 9735, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3271.85000", + "end": "3271.97000", + "feature": { + "word": "a" + }, + "id": 9737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3271.97000", + "end": "3272.16000", + "feature": { + "word": "high" + }, + "id": 9738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3272.16000", + "end": "3272.43000", + "feature": { + "word": "school" + }, + "id": 9739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3272.43000", + "end": "3272.94000", + "feature": { + "word": "commencement" + }, + "id": 9740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3272.94000", + "end": "3273.07000", + "feature": { + "word": "in" + }, + "id": 9741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3273.07000", + "end": "3273.55000", + "feature": { + "word": "tennessee" + }, + "id": 9742, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3275.11000", + "end": "3275.41000", + "feature": { + "word": "mr" + }, + "id": 9744, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3275.41000", + "end": "3275.76000", + "feature": { + "word": "reagan" + }, + "id": 9745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3275.76000", + "end": "3276.19000", + "feature": { + "word": "insists" + }, + "id": 9746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3276.19000", + "end": "3276.34000", + "feature": { + "word": "that" + }, + "id": 9747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3276.34000", + "end": "3276.50000", + "feature": { + "word": "his" + }, + "id": 9748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3276.50000", + "end": "3276.86000", + "feature": { + "word": "public" + }, + "id": 9749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3276.86000", + "end": "3277.29000", + "feature": { + "word": "support" + }, + "id": 9750, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3277.29000", + "end": "3277.61000", + "feature": { + "word": "still" + }, + "id": 9751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3277.61000", + "end": "3277.76000", + "feature": { + "word": "is" + }, + "id": 9752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3277.76000", + "end": "3278.32000", + "feature": { + "word": "high" + }, + "id": 9753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3278.76000", + "end": "3278.97000", + "feature": { + "word": "and" + }, + "id": 9755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3278.97000", + "end": "3279.07000", + "feature": { + "word": "to" + }, + "id": 9756, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3279.12000", + "end": "3279.39000", + "feature": { + "word": "prove" + }, + "id": 9758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3279.39000", + "end": "3279.52000", + "feature": { + "word": "it" + }, + "id": 9759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3279.52000", + "end": "3279.62000", + "feature": { + "word": "he" + }, + "id": 9760, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3279.62000", + "end": "3279.96000", + "feature": { + "word": "cites" + }, + "id": 9761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3279.96000", + "end": "3280.03000", + "feature": { + "word": "the" + }, + "id": 9762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3280.03000", + "end": "3280.67000", + "feature": { + "word": "polls" + }, + "id": 9763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3281.09000", + "end": "3281.31000", + "feature": { + "word": "his" + }, + "id": 9765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3281.31000", + "end": "3281.62000", + "feature": { + "word": "own" + }, + "id": 9766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3281.62000", + "end": "3281.86000", + "feature": { + "word": "poll" + }, + "id": 9767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3282.43000", + "end": "3282.79000", + "feature": { + "word": "showing" + }, + "id": 9769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3282.79000", + "end": "3282.99000", + "feature": { + "word": "him" + }, + "id": 9770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3282.99000", + "end": "3283.17000", + "feature": { + "word": "with" + }, + "id": 9771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3283.17000", + "end": "3283.26000", + "feature": { + "word": "a" + }, + "id": 9772, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3283.26000", + "end": "3284.42000", + "feature": { + "word": "" + }, + "id": 9773, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3284.61000", + "end": "3285.13000", + "feature": { + "word": "approval" + }, + "id": 9775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3285.13000", + "end": "3285.38000", + "feature": { + "word": "rating" + }, + "id": 9776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3286.54000", + "end": "3286.70000", + "feature": { + "word": "but" + }, + "id": 9778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3286.70000", + "end": "3286.98000", + "feature": { + "word": "over" + }, + "id": 9779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3286.98000", + "end": "3287.07000", + "feature": { + "word": "the" + }, + "id": 9780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3287.07000", + "end": "3287.58000", + "feature": { + "word": "years" + }, + "id": 9781, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3287.62000", + "end": "3288.15000", + "feature": { + "word": "presidents" + }, + "id": 9783, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3288.15000", + "end": "3288.29000", + "feature": { + "word": "and" + }, + "id": 9784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3288.29000", + "end": "3288.49000", + "feature": { + "word": "their" + }, + "id": 9785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3288.49000", + "end": "3289.09000", + "feature": { + "word": "advisors" + }, + "id": 9786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3289.09000", + "end": "3289.23000", + "feature": { + "word": "who" + }, + "id": 9787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3289.23000", + "end": "3289.63000", + "feature": { + "word": "rely" + }, + "id": 9788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3289.63000", + "end": "3289.77000", + "feature": { + "word": "on" + }, + "id": 9789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3289.77000", + "end": "3289.84000", + "feature": { + "word": "the" + }, + "id": 9790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3289.84000", + "end": "3290.42000", + "feature": { + "word": "polls" + }, + "id": 9791, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3290.42000", + "end": "3290.50000", + "feature": { + "word": "to" + }, + "id": 9792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3290.50000", + "end": "3290.76000", + "feature": { + "word": "prove" + }, + "id": 9793, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3290.76000", + "end": "3291.54000", + "feature": { + "word": "popularity" + }, + "id": 9794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3292.13000", + "end": "3292.48000", + "feature": { + "word": "only" + }, + "id": 9796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3292.48000", + "end": "3292.84000", + "feature": { + "word": "prove" + }, + "id": 9797, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3292.84000", + "end": "3293.00000", + "feature": { + "word": "they" + }, + "id": 9798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3293.00000", + "end": "3293.18000", + "feature": { + "word": "have" + }, + "id": 9799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3293.18000", + "end": "3293.55000", + "feature": { + "word": "stopped" + }, + "id": 9800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3293.55000", + "end": "3293.87000", + "feature": { + "word": "listening" + }, + "id": 9801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3293.87000", + "end": "3293.93000", + "feature": { + "word": "" + }, + "id": 9802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3294.34000", + "end": "3294.90000", + "feature": { + "word": "except" + }, + "id": 9804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3294.90000", + "end": "3294.99000", + "feature": { + "word": "to" + }, + "id": 9805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3294.99000", + "end": "3295.76000", + "feature": { + "word": "themselves" + }, + "id": 9806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3296.96000", + "end": "3297.13000", + "feature": { + "word": "how" + }, + "id": 9808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3297.13000", + "end": "3297.36000", + "feature": { + "word": "do" + }, + "id": 9809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3297.36000", + "end": "3297.54000", + "feature": { + "word": "our" + }, + "id": 9810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3297.54000", + "end": "3298.18000", + "feature": { + "word": "presidents" + }, + "id": 9811, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3298.18000", + "end": "3298.29000", + "feature": { + "word": "in" + }, + "id": 9812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3298.29000", + "end": "3298.42000", + "feature": { + "word": "an" + }, + "id": 9813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3298.42000", + "end": "3298.69000", + "feature": { + "word": "age" + }, + "id": 9814, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3298.69000", + "end": "3298.78000", + "feature": { + "word": "of" + }, + "id": 9815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3298.83000", + "end": "3299.27000", + "feature": { + "word": "public" + }, + "id": 9817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3299.27000", + "end": "3299.88000", + "feature": { + "word": "politics" + }, + "id": 9818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3299.88000", + "end": "3300.05000", + "feature": { + "word": "and" + }, + "id": 9819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3300.09000", + "end": "3300.74000", + "feature": { + "word": "televised" + }, + "id": 9821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3300.74000", + "end": "3301.23000", + "feature": { + "word": "governing" + }, + "id": 9822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3301.48000", + "end": "3301.87000", + "feature": { + "word": "become" + }, + "id": 9824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3301.87000", + "end": "3302.21000", + "feature": { + "word": "so" + }, + "id": 9825, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3302.21000", + "end": "3303.00000", + "feature": { + "word": "encapsulated" + }, + "id": 9826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3303.57000", + "end": "3303.83000", + "feature": { + "word": "why" + }, + "id": 9828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3303.83000", + "end": "3303.95000", + "feature": { + "word": "do" + }, + "id": 9829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3303.95000", + "end": "3304.49000", + "feature": { + "word": "presidents" + }, + "id": 9830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3304.49000", + "end": "3304.58000", + "feature": { + "word": "and" + }, + "id": 9831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3304.58000", + "end": "3304.77000", + "feature": { + "word": "their" + }, + "id": 9832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3304.77000", + "end": "3305.31000", + "feature": { + "word": "advisors" + }, + "id": 9833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3305.31000", + "end": "3305.47000", + "feature": { + "word": "so" + }, + "id": 9834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3305.47000", + "end": "3306.11000", + "feature": { + "word": "frequently" + }, + "id": 9835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3306.11000", + "end": "3306.46000", + "feature": { + "word": "appear" + }, + "id": 9836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3306.46000", + "end": "3306.63000", + "feature": { + "word": "out" + }, + "id": 9837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3306.63000", + "end": "3306.73000", + "feature": { + "word": "of" + }, + "id": 9838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3306.76000", + "end": "3307.23000", + "feature": { + "word": "touch" + }, + "id": 9840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3307.51000", + "end": "3307.68000", + "feature": { + "word": "and" + }, + "id": 9842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3307.68000", + "end": "3308.15000", + "feature": { + "word": "unable" + }, + "id": 9843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3308.15000", + "end": "3308.25000", + "feature": { + "word": "to" + }, + "id": 9844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3308.25000", + "end": "3308.50000", + "feature": { + "word": "come" + }, + "id": 9845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3308.50000", + "end": "3308.59000", + "feature": { + "word": "to" + }, + "id": 9846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3308.59000", + "end": "3308.92000", + "feature": { + "word": "grips" + }, + "id": 9847, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3308.92000", + "end": "3309.07000", + "feature": { + "word": "with" + }, + "id": 9848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3309.07000", + "end": "3309.55000", + "feature": { + "word": "political" + }, + "id": 9849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3309.55000", + "end": "3310.05000", + "feature": { + "word": "reality" + }, + "id": 9850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3310.79000", + "end": "3310.97000", + "feature": { + "word": "the" + }, + "id": 9852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3310.97000", + "end": "3311.32000", + "feature": { + "word": "answer" + }, + "id": 9853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3311.32000", + "end": "3311.82000", + "feature": { + "word": "probably" + }, + "id": 9854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3311.82000", + "end": "3312.19000", + "feature": { + "word": "is" + }, + "id": 9855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3312.19000", + "end": "3312.42000", + "feature": { + "word": "that" + }, + "id": 9856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3312.42000", + "end": "3312.98000", + "feature": { + "word": "presidents" + }, + "id": 9857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3312.98000", + "end": "3313.15000", + "feature": { + "word": "do" + }, + "id": 9858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3313.15000", + "end": "3313.45000", + "feature": { + "word": "not" + }, + "id": 9859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3313.45000", + "end": "3313.91000", + "feature": { + "word": "like" + }, + "id": 9860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3313.91000", + "end": "3314.20000", + "feature": { + "word": "bad" + }, + "id": 9861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3314.20000", + "end": "3314.77000", + "feature": { + "word": "news" + }, + "id": 9862, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3315.20000", + "end": "3315.38000", + "feature": { + "word": "and" + }, + "id": 9864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3315.38000", + "end": "3315.44000", + "feature": { + "word": "the" + }, + "id": 9865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3315.44000", + "end": "3315.75000", + "feature": { + "word": "bad" + }, + "id": 9866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3315.75000", + "end": "3316.02000", + "feature": { + "word": "news" + }, + "id": 9867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3316.02000", + "end": "3316.49000", + "feature": { + "word": "is" + }, + "id": 9868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3316.64000", + "end": "3316.83000", + "feature": { + "word": "they" + }, + "id": 9870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3316.83000", + "end": "3317.05000", + "feature": { + "word": "are" + }, + "id": 9871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3317.05000", + "end": "3317.35000", + "feature": { + "word": "not" + }, + "id": 9872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3317.39000", + "end": "3317.58000", + "feature": { + "word": "as" + }, + "id": 9874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3317.58000", + "end": "3318.16000", + "feature": { + "word": "powerful" + }, + "id": 9875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3318.16000", + "end": "3318.27000", + "feature": { + "word": "as" + }, + "id": 9876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3318.27000", + "end": "3318.40000", + "feature": { + "word": "they" + }, + "id": 9877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3318.40000", + "end": "3318.65000", + "feature": { + "word": "thought" + }, + "id": 9878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3318.65000", + "end": "3318.77000", + "feature": { + "word": "they" + }, + "id": 9879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3318.77000", + "end": "3319.08000", + "feature": { + "word": "were" + }, + "id": 9880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3322.10000", + "end": "3322.19000", + "feature": { + "word": "the" + }, + "id": 9882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3322.19000", + "end": "3322.71000", + "feature": { + "word": "country" + }, + "id": 9883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3322.71000", + "end": "3323.26000", + "feature": { + "word": "expects" + }, + "id": 9884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3323.26000", + "end": "3323.37000", + "feature": { + "word": "a" + }, + "id": 9885, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3323.37000", + "end": "3323.66000", + "feature": { + "word": "great" + }, + "id": 9886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3323.66000", + "end": "3323.90000", + "feature": { + "word": "deal" + }, + "id": 9887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3323.90000", + "end": "3324.08000", + "feature": { + "word": "from" + }, + "id": 9888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3324.08000", + "end": "3324.22000", + "feature": { + "word": "its" + }, + "id": 9889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3324.22000", + "end": "3324.87000", + "feature": { + "word": "presidents" + }, + "id": 9890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3325.02000", + "end": "3325.24000", + "feature": { + "word": "it" + }, + "id": 9892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3325.24000", + "end": "3325.50000", + "feature": { + "word": "wants" + }, + "id": 9893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3325.50000", + "end": "3325.74000", + "feature": { + "word": "quick" + }, + "id": 9894, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3325.74000", + "end": "3326.31000", + "feature": { + "word": "solutions" + }, + "id": 9895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3326.31000", + "end": "3326.38000", + "feature": { + "word": "" + }, + "id": 9896, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3326.38000", + "end": "3326.63000", + "feature": { + "word": "not" + }, + "id": 9897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3326.63000", + "end": "3327.35000", + "feature": { + "word": "excuses" + }, + "id": 9898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3327.85000", + "end": "3327.96000", + "feature": { + "word": "it" + }, + "id": 9900, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3327.96000", + "end": "3328.39000", + "feature": { + "word": "expects" + }, + "id": 9901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3328.39000", + "end": "3328.80000", + "feature": { + "word": "action" + }, + "id": 9902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3329.12000", + "end": "3329.24000", + "feature": { + "word": "it" + }, + "id": 9904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3329.24000", + "end": "3329.67000", + "feature": { + "word": "expects" + }, + "id": 9905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3329.67000", + "end": "3330.28000", + "feature": { + "word": "results" + }, + "id": 9906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3331.08000", + "end": "3331.62000", + "feature": { + "word": "presidential" + }, + "id": 9908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3331.62000", + "end": "3332.16000", + "feature": { + "word": "candidates" + }, + "id": 9909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3332.16000", + "end": "3332.51000", + "feature": { + "word": "become" + }, + "id": 9910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3332.51000", + "end": "3333.04000", + "feature": { + "word": "expert" + }, + "id": 9911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3333.04000", + "end": "3333.21000", + "feature": { + "word": "at" + }, + "id": 9912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3333.21000", + "end": "3333.73000", + "feature": { + "word": "promising" + }, + "id": 9913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3333.73000", + "end": "3334.12000", + "feature": { + "word": "easy" + }, + "id": 9914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3334.12000", + "end": "3334.63000", + "feature": { + "word": "answers" + }, + "id": 9915, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3334.63000", + "end": "3334.74000", + "feature": { + "word": "to" + }, + "id": 9916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3334.74000", + "end": "3334.82000", + "feature": { + "word": "the" + }, + "id": 9917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3334.82000", + "end": "3335.60000", + "feature": { + "word": "complexities" + }, + "id": 9918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3335.60000", + "end": "3335.70000", + "feature": { + "word": "of" + }, + "id": 9919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3335.70000", + "end": "3336.00000", + "feature": { + "word": "modern" + }, + "id": 9920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3336.00000", + "end": "3336.41000", + "feature": { + "word": "life" + }, + "id": 9921, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3337.13000", + "end": "3337.32000", + "feature": { + "word": "and" + }, + "id": 9923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3337.32000", + "end": "3337.64000", + "feature": { + "word": "once" + }, + "id": 9924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3337.64000", + "end": "3338.35000", + "feature": { + "word": "inaugurated" + }, + "id": 9925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3338.35000", + "end": "3338.52000", + "feature": { + "word": "they" + }, + "id": 9926, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3338.52000", + "end": "3338.82000", + "feature": { + "word": "feel" + }, + "id": 9927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3338.82000", + "end": "3338.92000", + "feature": { + "word": "the" + }, + "id": 9928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3338.92000", + "end": "3339.29000", + "feature": { + "word": "pressure" + }, + "id": 9929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3339.29000", + "end": "3339.47000", + "feature": { + "word": "to" + }, + "id": 9930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3339.47000", + "end": "3339.85000", + "feature": { + "word": "act" + }, + "id": 9931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3340.92000", + "end": "3341.06000", + "feature": { + "word": "a" + }, + "id": 9933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3341.06000", + "end": "3341.95000", + "feature": { + "word": "dispassionate" + }, + "id": 9934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3341.95000", + "end": "3342.63000", + "feature": { + "word": "analysis" + }, + "id": 9935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3342.63000", + "end": "3342.78000", + "feature": { + "word": "of" + }, + "id": 9936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3342.78000", + "end": "3342.86000", + "feature": { + "word": "an" + }, + "id": 9937, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3342.86000", + "end": "3343.54000", + "feature": { + "word": "intractable" + }, + "id": 9938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3343.54000", + "end": "3344.00000", + "feature": { + "word": "problem" + }, + "id": 9939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3344.00000", + "end": "3344.63000", + "feature": { + "word": "requiring" + }, + "id": 9940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3344.63000", + "end": "3344.75000", + "feature": { + "word": "a" + }, + "id": 9941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3344.79000", + "end": "3345.03000", + "feature": { + "word": "" + }, + "id": 9943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3345.03000", + "end": "3345.21000", + "feature": { + "word": "year" + }, + "id": 9944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3345.21000", + "end": "3345.87000", + "feature": { + "word": "response" + }, + "id": 9945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3346.18000", + "end": "3346.79000", + "feature": { + "word": "simply" + }, + "id": 9947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3346.79000", + "end": "3347.08000", + "feature": { + "word": "will" + }, + "id": 9948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3347.08000", + "end": "3347.40000", + "feature": { + "word": "not" + }, + "id": 9949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3347.40000", + "end": "3347.76000", + "feature": { + "word": "do" + }, + "id": 9950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3347.76000", + "end": "3347.93000", + "feature": { + "word": "in" + }, + "id": 9951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3347.93000", + "end": "3348.15000", + "feature": { + "word": "our" + }, + "id": 9952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3348.15000", + "end": "3348.61000", + "feature": { + "word": "political" + }, + "id": 9953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3348.61000", + "end": "3348.96000", + "feature": { + "word": "system" + }, + "id": 9954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3349.78000", + "end": "3349.89000", + "feature": { + "word": "a" + }, + "id": 9956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3349.89000", + "end": "3350.38000", + "feature": { + "word": "nation" + }, + "id": 9957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3350.38000", + "end": "3350.75000", + "feature": { + "word": "geared" + }, + "id": 9958, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3350.75000", + "end": "3350.92000", + "feature": { + "word": "to" + }, + "id": 9959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3350.96000", + "end": "3351.58000", + "feature": { + "word": "microwave" + }, + "id": 9961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3351.58000", + "end": "3351.99000", + "feature": { + "word": "ovens" + }, + "id": 9962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3351.99000", + "end": "3352.19000", + "feature": { + "word": "and" + }, + "id": 9963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3352.19000", + "end": "3352.48000", + "feature": { + "word": "" + }, + "id": 9964, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3352.48000", + "end": "3352.73000", + "feature": { + "word": "minute" + }, + "id": 9965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3352.73000", + "end": "3353.60000", + "feature": { + "word": "newscasts" + }, + "id": 9966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3353.95000", + "end": "3354.28000", + "feature": { + "word": "even" + }, + "id": 9968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3354.28000", + "end": "3354.61000", + "feature": { + "word": "our" + }, + "id": 9969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3354.61000", + "end": "3355.49000", + "feature": { + "word": "newscasts" + }, + "id": 9970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3355.71000", + "end": "3355.87000", + "feature": { + "word": "will" + }, + "id": 9972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3355.87000", + "end": "3356.11000", + "feature": { + "word": "not" + }, + "id": 9973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3356.11000", + "end": "3356.30000", + "feature": { + "word": "wait" + }, + "id": 9974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3356.30000", + "end": "3356.52000", + "feature": { + "word": "that" + }, + "id": 9975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3356.52000", + "end": "3356.73000", + "feature": { + "word": "long" + }, + "id": 9976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3357.69000", + "end": "3357.87000", + "feature": { + "word": "so" + }, + "id": 9978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3357.87000", + "end": "3358.45000", + "feature": { + "word": "presidents" + }, + "id": 9979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3358.45000", + "end": "3358.74000", + "feature": { + "word": "find" + }, + "id": 9980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3358.74000", + "end": "3359.24000", + "feature": { + "word": "themselves" + }, + "id": 9981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3359.24000", + "end": "3359.55000", + "feature": { + "word": "having" + }, + "id": 9982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3359.55000", + "end": "3359.67000", + "feature": { + "word": "to" + }, + "id": 9983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3359.67000", + "end": "3360.11000", + "feature": { + "word": "resort" + }, + "id": 9984, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3360.11000", + "end": "3360.23000", + "feature": { + "word": "to" + }, + "id": 9985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3360.23000", + "end": "3360.48000", + "feature": { + "word": "quick" + }, + "id": 9986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3360.48000", + "end": "3361.13000", + "feature": { + "word": "fixes" + }, + "id": 9987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3361.62000", + "end": "3362.11000", + "feature": { + "word": "secret" + }, + "id": 9989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3362.11000", + "end": "3362.78000", + "feature": { + "word": "plans" + }, + "id": 9990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3363.22000", + "end": "3363.55000", + "feature": { + "word": "half" + }, + "id": 9992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3363.55000", + "end": "3363.84000", + "feature": { + "word": "baked" + }, + "id": 9993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3363.84000", + "end": "3364.46000", + "feature": { + "word": "ideas" + }, + "id": 9994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3364.46000", + "end": "3364.74000", + "feature": { + "word": "and" + }, + "id": 9995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3364.74000", + "end": "3365.15000", + "feature": { + "word": "phony" + }, + "id": 9996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3365.15000", + "end": "3365.95000", + "feature": { + "word": "programs" + }, + "id": 9997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3366.87000", + "end": "3367.19000", + "feature": { + "word": "john" + }, + "id": 9999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3367.19000", + "end": "3367.62000", + "feature": { + "word": "kennedy" + }, + "id": 10000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3367.62000", + "end": "3367.88000", + "feature": { + "word": "thought" + }, + "id": 10001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3367.88000", + "end": "3367.96000", + "feature": { + "word": "he" + }, + "id": 10002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3367.96000", + "end": "3368.11000", + "feature": { + "word": "could" + }, + "id": 10003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3368.11000", + "end": "3368.39000", + "feature": { + "word": "solve" + }, + "id": 10004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3368.39000", + "end": "3368.56000", + "feature": { + "word": "his" + }, + "id": 10005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3368.56000", + "end": "3368.94000", + "feature": { + "word": "cuban" + }, + "id": 10006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3368.94000", + "end": "3369.40000", + "feature": { + "word": "problem" + }, + "id": 10007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3369.73000", + "end": "3369.89000", + "feature": { + "word": "with" + }, + "id": 10009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3369.89000", + "end": "3369.97000", + "feature": { + "word": "a" + }, + "id": 10010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3369.97000", + "end": "3370.67000", + "feature": { + "word": "clandestine" + }, + "id": 10011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3370.67000", + "end": "3371.19000", + "feature": { + "word": "invasion" + }, + "id": 10012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3371.19000", + "end": "3371.29000", + "feature": { + "word": "of" + }, + "id": 10013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3371.29000", + "end": "3371.36000", + "feature": { + "word": "the" + }, + "id": 10014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3371.36000", + "end": "3371.56000", + "feature": { + "word": "bay" + }, + "id": 10015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3371.56000", + "end": "3371.65000", + "feature": { + "word": "of" + }, + "id": 10016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3371.65000", + "end": "3372.21000", + "feature": { + "word": "pigs" + }, + "id": 10017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3373.27000", + "end": "3373.67000", + "feature": { + "word": "lyndon" + }, + "id": 10019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3373.67000", + "end": "3374.14000", + "feature": { + "word": "johnson" + }, + "id": 10020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3374.14000", + "end": "3374.39000", + "feature": { + "word": "thought" + }, + "id": 10021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3374.39000", + "end": "3374.47000", + "feature": { + "word": "he" + }, + "id": 10022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3374.47000", + "end": "3374.64000", + "feature": { + "word": "could" + }, + "id": 10023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3374.64000", + "end": "3374.91000", + "feature": { + "word": "solve" + }, + "id": 10024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3374.91000", + "end": "3375.12000", + "feature": { + "word": "his" + }, + "id": 10025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3375.12000", + "end": "3375.69000", + "feature": { + "word": "vietnam" + }, + "id": 10026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3375.69000", + "end": "3376.18000", + "feature": { + "word": "problem" + }, + "id": 10027, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3376.54000", + "end": "3376.72000", + "feature": { + "word": "by" + }, + "id": 10029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3376.72000", + "end": "3377.20000", + "feature": { + "word": "conning" + }, + "id": 10030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3377.20000", + "end": "3377.30000", + "feature": { + "word": "the" + }, + "id": 10031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3377.30000", + "end": "3377.66000", + "feature": { + "word": "people" + }, + "id": 10032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3377.66000", + "end": "3377.85000", + "feature": { + "word": "into" + }, + "id": 10033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3377.85000", + "end": "3378.50000", + "feature": { + "word": "believing" + }, + "id": 10034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3378.50000", + "end": "3378.64000", + "feature": { + "word": "they" + }, + "id": 10035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3378.64000", + "end": "3378.78000", + "feature": { + "word": "were" + }, + "id": 10036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3378.78000", + "end": "3379.16000", + "feature": { + "word": "winning" + }, + "id": 10037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3380.42000", + "end": "3380.82000", + "feature": { + "word": "richard" + }, + "id": 10039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3380.82000", + "end": "3381.19000", + "feature": { + "word": "nixon" + }, + "id": 10040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3381.19000", + "end": "3381.45000", + "feature": { + "word": "thought" + }, + "id": 10041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3381.45000", + "end": "3381.53000", + "feature": { + "word": "he" + }, + "id": 10042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3381.53000", + "end": "3381.70000", + "feature": { + "word": "could" + }, + "id": 10043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3381.70000", + "end": "3382.00000", + "feature": { + "word": "solve" + }, + "id": 10044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3382.00000", + "end": "3382.15000", + "feature": { + "word": "his" + }, + "id": 10045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3382.15000", + "end": "3382.66000", + "feature": { + "word": "watergate" + }, + "id": 10046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3382.66000", + "end": "3383.09000", + "feature": { + "word": "problem" + }, + "id": 10047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3383.09000", + "end": "3383.37000", + "feature": { + "word": "with" + }, + "id": 10048, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3383.71000", + "end": "3384.23000", + "feature": { + "word": "deliberate" + }, + "id": 10050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3384.23000", + "end": "3384.73000", + "feature": { + "word": "deception" + }, + "id": 10051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3385.72000", + "end": "3386.11000", + "feature": { + "word": "gerald" + }, + "id": 10053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3386.11000", + "end": "3386.53000", + "feature": { + "word": "ford" + }, + "id": 10054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3386.53000", + "end": "3386.78000", + "feature": { + "word": "thought" + }, + "id": 10055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3386.78000", + "end": "3386.86000", + "feature": { + "word": "he" + }, + "id": 10056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3386.86000", + "end": "3387.03000", + "feature": { + "word": "could" + }, + "id": 10057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3387.03000", + "end": "3387.32000", + "feature": { + "word": "solve" + }, + "id": 10058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3387.32000", + "end": "3387.50000", + "feature": { + "word": "his" + }, + "id": 10059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3387.50000", + "end": "3388.06000", + "feature": { + "word": "inflation" + }, + "id": 10060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3388.06000", + "end": "3388.48000", + "feature": { + "word": "problem" + }, + "id": 10061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3388.48000", + "end": "3388.67000", + "feature": { + "word": "with" + }, + "id": 10062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3388.67000", + "end": "3388.95000", + "feature": { + "word": "big" + }, + "id": 10063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3389.09000", + "end": "3389.26000", + "feature": { + "word": "" + }, + "id": 10065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3389.36000", + "end": "3389.94000", + "feature": { + "word": "inflation" + }, + "id": 10067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3389.94000", + "end": "3390.20000", + "feature": { + "word": "now" + }, + "id": 10068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3390.20000", + "end": "3390.81000", + "feature": { + "word": "buttons" + }, + "id": 10069, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3391.48000", + "end": "3391.76000", + "feature": { + "word": "jimmy" + }, + "id": 10071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3391.76000", + "end": "3392.18000", + "feature": { + "word": "carter" + }, + "id": 10072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3392.18000", + "end": "3392.42000", + "feature": { + "word": "thought" + }, + "id": 10073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3392.42000", + "end": "3392.51000", + "feature": { + "word": "he" + }, + "id": 10074, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3392.51000", + "end": "3392.69000", + "feature": { + "word": "could" + }, + "id": 10075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3392.69000", + "end": "3392.97000", + "feature": { + "word": "solve" + }, + "id": 10076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3392.97000", + "end": "3393.16000", + "feature": { + "word": "his" + }, + "id": 10077, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3393.16000", + "end": "3393.54000", + "feature": { + "word": "iran" + }, + "id": 10078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3393.54000", + "end": "3394.02000", + "feature": { + "word": "hostage" + }, + "id": 10079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3394.02000", + "end": "3394.49000", + "feature": { + "word": "problem" + }, + "id": 10080, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3394.79000", + "end": "3394.98000", + "feature": { + "word": "with" + }, + "id": 10082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3394.98000", + "end": "3395.10000", + "feature": { + "word": "a" + }, + "id": 10083, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3395.13000", + "end": "3395.80000", + "feature": { + "word": "" + }, + "id": 10085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3395.87000", + "end": "3396.31000", + "feature": { + "word": "rescue" + }, + "id": 10087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3396.31000", + "end": "3396.60000", + "feature": { + "word": "mission" + }, + "id": 10088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3397.41000", + "end": "3397.61000", + "feature": { + "word": "and" + }, + "id": 10090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3397.61000", + "end": "3397.99000", + "feature": { + "word": "ronald" + }, + "id": 10091, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3397.99000", + "end": "3398.33000", + "feature": { + "word": "reagan" + }, + "id": 10092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3398.33000", + "end": "3398.88000", + "feature": { + "word": "apparently" + }, + "id": 10093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3398.88000", + "end": "3399.14000", + "feature": { + "word": "thought" + }, + "id": 10094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3399.14000", + "end": "3399.22000", + "feature": { + "word": "he" + }, + "id": 10095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3399.22000", + "end": "3399.39000", + "feature": { + "word": "could" + }, + "id": 10096, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3399.39000", + "end": "3399.70000", + "feature": { + "word": "solve" + }, + "id": 10097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3399.70000", + "end": "3399.88000", + "feature": { + "word": "his" + }, + "id": 10098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3399.88000", + "end": "3400.32000", + "feature": { + "word": "hostage" + }, + "id": 10099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3400.32000", + "end": "3400.78000", + "feature": { + "word": "problem" + }, + "id": 10100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3401.16000", + "end": "3401.32000", + "feature": { + "word": "by" + }, + "id": 10102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3401.32000", + "end": "3401.86000", + "feature": { + "word": "secretly" + }, + "id": 10103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3401.86000", + "end": "3402.21000", + "feature": { + "word": "selling" + }, + "id": 10104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3402.21000", + "end": "3402.62000", + "feature": { + "word": "missiles" + }, + "id": 10105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3402.62000", + "end": "3402.80000", + "feature": { + "word": "to" + }, + "id": 10106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3402.80000", + "end": "3403.29000", + "feature": { + "word": "iran" + }, + "id": 10107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3404.19000", + "end": "3404.45000", + "feature": { + "word": "but" + }, + "id": 10109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3404.45000", + "end": "3404.62000", + "feature": { + "word": "none" + }, + "id": 10110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3404.62000", + "end": "3404.73000", + "feature": { + "word": "of" + }, + "id": 10111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3404.73000", + "end": "3404.88000", + "feature": { + "word": "it" + }, + "id": 10112, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3404.88000", + "end": "3405.28000", + "feature": { + "word": "worked" + }, + "id": 10113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3405.85000", + "end": "3406.09000", + "feature": { + "word": "it" + }, + "id": 10115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3406.09000", + "end": "3406.54000", + "feature": { + "word": "produced" + }, + "id": 10116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3406.54000", + "end": "3406.90000", + "feature": { + "word": "only" + }, + "id": 10117, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3406.90000", + "end": "3407.39000", + "feature": { + "word": "national" + }, + "id": 10118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3407.39000", + "end": "3408.14000", + "feature": { + "word": "impatience" + }, + "id": 10119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3408.61000", + "end": "3409.09000", + "feature": { + "word": "political" + }, + "id": 10121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3409.09000", + "end": "3409.62000", + "feature": { + "word": "trouble" + }, + "id": 10122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3410.15000", + "end": "3410.57000", + "feature": { + "word": "growing" + }, + "id": 10124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3410.57000", + "end": "3411.40000", + "feature": { + "word": "frustrations" + }, + "id": 10125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3411.64000", + "end": "3411.88000", + "feature": { + "word": "and" + }, + "id": 10127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3411.88000", + "end": "3412.26000", + "feature": { + "word": "bad" + }, + "id": 10128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3412.26000", + "end": "3412.56000", + "feature": { + "word": "news" + }, + "id": 10129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3412.56000", + "end": "3412.70000", + "feature": { + "word": "for" + }, + "id": 10130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3412.70000", + "end": "3413.35000", + "feature": { + "word": "presidents" + }, + "id": 10131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3414.09000", + "end": "3414.24000", + "feature": { + "word": "the" + }, + "id": 10133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3414.24000", + "end": "3414.47000", + "feature": { + "word": "old" + }, + "id": 10134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3414.47000", + "end": "3414.87000", + "feature": { + "word": "problem" + }, + "id": 10135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3414.96000", + "end": "3415.07000", + "feature": { + "word": "" + }, + "id": 10137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3415.07000", + "end": "3415.45000", + "feature": { + "word": "papered" + }, + "id": 10138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3415.45000", + "end": "3415.74000", + "feature": { + "word": "over" + }, + "id": 10139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3415.74000", + "end": "3415.90000", + "feature": { + "word": "with" + }, + "id": 10140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3415.90000", + "end": "3416.10000", + "feature": { + "word": "all" + }, + "id": 10141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3416.10000", + "end": "3416.29000", + "feature": { + "word": "those" + }, + "id": 10142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3416.29000", + "end": "3416.56000", + "feature": { + "word": "press" + }, + "id": 10143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3416.56000", + "end": "3417.13000", + "feature": { + "word": "releases" + }, + "id": 10144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3417.51000", + "end": "3418.07000", + "feature": { + "word": "smothered" + }, + "id": 10146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3418.07000", + "end": "3418.25000", + "feature": { + "word": "by" + }, + "id": 10147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3418.25000", + "end": "3418.46000", + "feature": { + "word": "all" + }, + "id": 10148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3418.46000", + "end": "3418.70000", + "feature": { + "word": "those" + }, + "id": 10149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3418.70000", + "end": "3419.03000", + "feature": { + "word": "photo" + }, + "id": 10150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3419.03000", + "end": "3419.44000", + "feature": { + "word": "ops" + }, + "id": 10151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3419.44000", + "end": "3419.47000", + "feature": { + "word": "" + }, + "id": 10152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3419.78000", + "end": "3420.28000", + "feature": { + "word": "simply" + }, + "id": 10154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3420.28000", + "end": "3420.44000", + "feature": { + "word": "do" + }, + "id": 10155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3420.44000", + "end": "3420.73000", + "feature": { + "word": "not" + }, + "id": 10156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3420.73000", + "end": "3421.00000", + "feature": { + "word": "go" + }, + "id": 10157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3421.00000", + "end": "3421.24000", + "feature": { + "word": "away" + }, + "id": 10158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3421.84000", + "end": "3422.46000", + "feature": { + "word": "revealing" + }, + "id": 10160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3422.46000", + "end": "3422.61000", + "feature": { + "word": "the" + }, + "id": 10161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3422.61000", + "end": "3422.95000", + "feature": { + "word": "real" + }, + "id": 10162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3422.95000", + "end": "3423.48000", + "feature": { + "word": "limits" + }, + "id": 10163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3423.54000", + "end": "3423.70000", + "feature": { + "word": "of" + }, + "id": 10165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3423.70000", + "end": "3424.30000", + "feature": { + "word": "presidential" + }, + "id": 10166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3424.30000", + "end": "3424.61000", + "feature": { + "word": "power" + }, + "id": 10167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3426.17000", + "end": "3426.39000", + "feature": { + "word": "but" + }, + "id": 10169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3426.39000", + "end": "3426.95000", + "feature": { + "word": "presidents" + }, + "id": 10170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3426.95000", + "end": "3427.21000", + "feature": { + "word": "won't" + }, + "id": 10171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3427.21000", + "end": "3427.49000", + "feature": { + "word": "listen" + }, + "id": 10172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3427.49000", + "end": "3427.58000", + "feature": { + "word": "to" + }, + "id": 10173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3427.58000", + "end": "3427.89000", + "feature": { + "word": "bad" + }, + "id": 10174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3427.89000", + "end": "3428.44000", + "feature": { + "word": "news" + }, + "id": 10175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3428.82000", + "end": "3428.98000", + "feature": { + "word": "they" + }, + "id": 10177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3428.98000", + "end": "3429.26000", + "feature": { + "word": "won't" + }, + "id": 10178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3429.26000", + "end": "3429.62000", + "feature": { + "word": "listen" + }, + "id": 10179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3429.62000", + "end": "3430.04000", + "feature": { + "word": "because" + }, + "id": 10180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3430.04000", + "end": "3430.21000", + "feature": { + "word": "they" + }, + "id": 10181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3430.21000", + "end": "3430.36000", + "feature": { + "word": "are" + }, + "id": 10182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3430.36000", + "end": "3430.85000", + "feature": { + "word": "convinced" + }, + "id": 10183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3430.85000", + "end": "3430.91000", + "feature": { + "word": "they" + }, + "id": 10184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3430.91000", + "end": "3430.97000", + "feature": { + "word": "are" + }, + "id": 10185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3430.97000", + "end": "3431.64000", + "feature": { + "word": "powerful" + }, + "id": 10186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3432.00000", + "end": "3432.18000", + "feature": { + "word": "their" + }, + "id": 10188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3432.18000", + "end": "3432.58000", + "feature": { + "word": "staffs" + }, + "id": 10189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3432.58000", + "end": "3432.79000", + "feature": { + "word": "tell" + }, + "id": 10190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3432.79000", + "end": "3432.94000", + "feature": { + "word": "them" + }, + "id": 10191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3432.94000", + "end": "3433.31000", + "feature": { + "word": "that" + }, + "id": 10192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3433.85000", + "end": "3434.01000", + "feature": { + "word": "they're" + }, + "id": 10194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3434.01000", + "end": "3434.51000", + "feature": { + "word": "convinced" + }, + "id": 10195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3434.51000", + "end": "3434.63000", + "feature": { + "word": "they're" + }, + "id": 10196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3434.63000", + "end": "3435.21000", + "feature": { + "word": "popular" + }, + "id": 10197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3435.37000", + "end": "3435.54000", + "feature": { + "word": "their" + }, + "id": 10199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3435.54000", + "end": "3436.04000", + "feature": { + "word": "travels" + }, + "id": 10200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3436.04000", + "end": "3436.32000", + "feature": { + "word": "around" + }, + "id": 10201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3436.32000", + "end": "3436.40000", + "feature": { + "word": "the" + }, + "id": 10202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3436.40000", + "end": "3436.80000", + "feature": { + "word": "country" + }, + "id": 10203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3436.80000", + "end": "3437.02000", + "feature": { + "word": "tell" + }, + "id": 10204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3437.02000", + "end": "3437.17000", + "feature": { + "word": "them" + }, + "id": 10205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3437.17000", + "end": "3437.53000", + "feature": { + "word": "that" + }, + "id": 10206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3438.03000", + "end": "3438.19000", + "feature": { + "word": "they're" + }, + "id": 10208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3438.19000", + "end": "3438.64000", + "feature": { + "word": "convinced" + }, + "id": 10209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3438.64000", + "end": "3438.81000", + "feature": { + "word": "they're" + }, + "id": 10210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3438.81000", + "end": "3439.23000", + "feature": { + "word": "right" + }, + "id": 10211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3439.45000", + "end": "3439.64000", + "feature": { + "word": "their" + }, + "id": 10213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3439.64000", + "end": "3440.19000", + "feature": { + "word": "polls" + }, + "id": 10214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3440.19000", + "end": "3440.39000", + "feature": { + "word": "tell" + }, + "id": 10215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3440.39000", + "end": "3440.55000", + "feature": { + "word": "them" + }, + "id": 10216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3440.55000", + "end": "3440.89000", + "feature": { + "word": "that" + }, + "id": 10217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3441.45000", + "end": "3442.06000", + "feature": { + "word": "everything" + }, + "id": 10219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3442.06000", + "end": "3442.47000", + "feature": { + "word": "around" + }, + "id": 10220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3442.47000", + "end": "3442.60000", + "feature": { + "word": "them" + }, + "id": 10221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3442.69000", + "end": "3443.13000", + "feature": { + "word": "causes" + }, + "id": 10223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3443.13000", + "end": "3443.33000", + "feature": { + "word": "them" + }, + "id": 10224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3443.33000", + "end": "3443.45000", + "feature": { + "word": "to" + }, + "id": 10225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3443.45000", + "end": "3443.94000", + "feature": { + "word": "believe" + }, + "id": 10226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3443.94000", + "end": "3444.09000", + "feature": { + "word": "they" + }, + "id": 10227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3444.09000", + "end": "3444.33000", + "feature": { + "word": "can" + }, + "id": 10228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3444.33000", + "end": "3444.48000", + "feature": { + "word": "be" + }, + "id": 10229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3444.48000", + "end": "3444.92000", + "feature": { + "word": "bigger" + }, + "id": 10230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3444.92000", + "end": "3445.07000", + "feature": { + "word": "than" + }, + "id": 10231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3445.07000", + "end": "3445.53000", + "feature": { + "word": "life" + }, + "id": 10232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3446.16000", + "end": "3446.67000", + "feature": { + "word": "nothing" + }, + "id": 10234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3446.67000", + "end": "3447.05000", + "feature": { + "word": "around" + }, + "id": 10235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3447.05000", + "end": "3447.23000", + "feature": { + "word": "them" + }, + "id": 10236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3447.23000", + "end": "3447.63000", + "feature": { + "word": "causes" + }, + "id": 10237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3447.63000", + "end": "3447.82000", + "feature": { + "word": "them" + }, + "id": 10238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3447.82000", + "end": "3447.94000", + "feature": { + "word": "to" + }, + "id": 10239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3447.94000", + "end": "3448.34000", + "feature": { + "word": "believe" + }, + "id": 10240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3448.34000", + "end": "3448.46000", + "feature": { + "word": "they" + }, + "id": 10241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3448.46000", + "end": "3449.02000", + "feature": { + "word": "" + }, + "id": 10242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3449.02000", + "end": "3449.23000", + "feature": { + "word": "be" + }, + "id": 10243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3449.23000", + "end": "3449.83000", + "feature": { + "word": "victims" + }, + "id": 10244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3449.83000", + "end": "3450.00000", + "feature": { + "word": "of" + }, + "id": 10245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3450.27000", + "end": "3450.62000", + "feature": { + "word": "self" + }, + "id": 10247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3450.62000", + "end": "3451.11000", + "feature": { + "word": "delusion" + }, + "id": 10248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3452.96000", + "end": "3453.11000", + "feature": { + "word": "again" + }, + "id": 10250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3453.14000", + "end": "3457.13000", + "feature": { + "word": "the" + }, + "id": 10252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3458.91000", + "end": "3459.35000", + "feature": { + "word": "major" + }, + "id": 10254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3459.35000", + "end": "3459.79000", + "feature": { + "word": "stories" + }, + "id": 10255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3459.79000", + "end": "3459.89000", + "feature": { + "word": "of" + }, + "id": 10256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3459.89000", + "end": "3460.11000", + "feature": { + "word": "this" + }, + "id": 10257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3460.11000", + "end": "3460.80000", + "feature": { + "word": "thursday" + }, + "id": 10258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3460.80000", + "end": "3460.96000", + "feature": { + "word": "a" + }, + "id": 10259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3460.96000", + "end": "3461.35000", + "feature": { + "word": "navy" + }, + "id": 10260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3461.35000", + "end": "3461.64000", + "feature": { + "word": "board" + }, + "id": 10261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3461.64000", + "end": "3461.75000", + "feature": { + "word": "of" + }, + "id": 10262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3461.75000", + "end": "3462.38000", + "feature": { + "word": "inquiry" + }, + "id": 10263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3462.38000", + "end": "3462.79000", + "feature": { + "word": "began" + }, + "id": 10264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3462.79000", + "end": "3462.96000", + "feature": { + "word": "its" + }, + "id": 10265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3462.96000", + "end": "3463.77000", + "feature": { + "word": "investigation" + }, + "id": 10266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3463.77000", + "end": "3463.87000", + "feature": { + "word": "of" + }, + "id": 10267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3463.87000", + "end": "3463.93000", + "feature": { + "word": "the" + }, + "id": 10268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3463.93000", + "end": "3464.13000", + "feature": { + "word": "u" + }, + "id": 10269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3464.13000", + "end": "3464.34000", + "feature": { + "word": "s" + }, + "id": 10270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3464.34000", + "end": "3464.51000", + "feature": { + "word": "s" + }, + "id": 10271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3464.51000", + "end": "3464.88000", + "feature": { + "word": "stark" + }, + "id": 10272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3464.88000", + "end": "3465.38000", + "feature": { + "word": "incident" + }, + "id": 10273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3465.65000", + "end": "3465.82000", + "feature": { + "word": "in" + }, + "id": 10275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3465.82000", + "end": "3466.11000", + "feature": { + "word": "which" + }, + "id": 10276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3466.14000", + "end": "3466.71000", + "feature": { + "word": "" + }, + "id": 10278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3466.71000", + "end": "3467.21000", + "feature": { + "word": "american" + }, + "id": 10279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3467.21000", + "end": "3467.69000", + "feature": { + "word": "sailors" + }, + "id": 10280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3467.69000", + "end": "3468.12000", + "feature": { + "word": "died" + }, + "id": 10281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3468.32000", + "end": "3468.65000", + "feature": { + "word": "and" + }, + "id": 10283, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3468.65000", + "end": "3469.04000", + "feature": { + "word": "president" + }, + "id": 10284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3469.04000", + "end": "3469.43000", + "feature": { + "word": "reagan" + }, + "id": 10285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3469.43000", + "end": "3469.65000", + "feature": { + "word": "said" + }, + "id": 10286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3469.65000", + "end": "3470.09000", + "feature": { + "word": "despite" + }, + "id": 10287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3470.09000", + "end": "3470.18000", + "feature": { + "word": "the" + }, + "id": 10288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3470.18000", + "end": "3470.71000", + "feature": { + "word": "tragedy" + }, + "id": 10289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3470.71000", + "end": "3470.81000", + "feature": { + "word": "the" + }, + "id": 10290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3470.81000", + "end": "3471.23000", + "feature": { + "word": "united" + }, + "id": 10291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3471.23000", + "end": "3471.66000", + "feature": { + "word": "states" + }, + "id": 10292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3471.66000", + "end": "3471.86000", + "feature": { + "word": "would" + }, + "id": 10293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3471.86000", + "end": "3472.10000", + "feature": { + "word": "keep" + }, + "id": 10294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3472.10000", + "end": "3472.19000", + "feature": { + "word": "the" + }, + "id": 10295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3472.19000", + "end": "3472.53000", + "feature": { + "word": "shipping" + }, + "id": 10296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3472.53000", + "end": "3472.86000", + "feature": { + "word": "lanes" + }, + "id": 10297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3472.86000", + "end": "3473.16000", + "feature": { + "word": "open" + }, + "id": 10298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3473.16000", + "end": "3473.27000", + "feature": { + "word": "through" + }, + "id": 10299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3473.27000", + "end": "3473.40000", + "feature": { + "word": "the" + }, + "id": 10300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3473.40000", + "end": "3473.80000", + "feature": { + "word": "persian" + }, + "id": 10301, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3473.80000", + "end": "3474.15000", + "feature": { + "word": "gulf" + }, + "id": 10302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3474.34000", + "end": "3474.45000", + "feature": { + "word": "good" + }, + "id": 10304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3474.45000", + "end": "3474.62000", + "feature": { + "word": "night" + }, + "id": 10305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3474.62000", + "end": "3474.91000", + "feature": { + "word": "robin" + }, + "id": 10306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3475.46000", + "end": "3475.58000", + "feature": { + "word": "good" + }, + "id": 10308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3475.58000", + "end": "3475.74000", + "feature": { + "word": "night" + }, + "id": 10309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3475.74000", + "end": "3476.03000", + "feature": { + "word": "jim" + }, + "id": 10310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3476.03000", + "end": "3476.20000", + "feature": { + "word": "that" + }, + "id": 10311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3476.20000", + "end": "3476.25000", + "feature": { + "word": "s" + }, + "id": 10312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3476.25000", + "end": "3476.33000", + "feature": { + "word": "the" + }, + "id": 10313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3476.33000", + "end": "3476.90000", + "feature": { + "word": "newshour" + }, + "id": 10314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3476.90000", + "end": "3477.13000", + "feature": { + "word": "and" + }, + "id": 10315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3477.13000", + "end": "3477.22000", + "feature": { + "word": "we" + }, + "id": 10316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3477.22000", + "end": "3503.30000", + "feature": { + "word": "" + }, + "id": 10317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3503.33000", + "end": "3503.59000", + "feature": { + "word": "be" + }, + "id": 10319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3504.66000", + "end": "3504.75000", + "feature": { + "word": "back" + }, + "id": 10321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3504.75000", + "end": "3505.07000", + "feature": { + "word": "tomorrow" + }, + "id": 10322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3505.07000", + "end": "3505.25000", + "feature": { + "word": "night" + }, + "id": 10323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3505.56000", + "end": "3534.49000", + "feature": { + "word": "i'm" + }, + "id": 10325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3536.60000", + "end": "3537.33000", + "feature": { + "word": "robert" + }, + "id": 10327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3537.33000", + "end": "3539.29000", + "feature": { + "word": "macneil" + }, + "id": 10328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3539.60000", + "end": "3539.77000", + "feature": { + "word": "good" + }, + "id": 10330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "3539.83000", + "end": "3539.96000", + "feature": { + "word": "night" + }, + "id": 10332, + "attype": "vanilla-forced-alignment" + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/video-transcript-demux-fa.short.json b/tests/mmif-examples/others/video-transcript-demux-fa.short.json new file mode 100644 index 00000000..cb33d318 --- /dev/null +++ b/tests/mmif-examples/others/video-transcript-demux-fa.short.json @@ -0,0 +1,11884 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.mp4", + "metadata": {} + }, + { + "id": "1", + "type": "text", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.lab", + "metadata": {} + }, + { + "id": "2", + "type": "audio-only", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.wav", + "metadata": {} + } + ], + "contains": { + "vanilla-forced-alignment": "v_0" + }, + "views": [ + { + "id": "v_0", + "contains": { + "vanilla-forced-alignment": { + "producer": "FilteredMontrealForcedAligner", + "gen_time": "2018-10-08T06:05:33.183134" + } + }, + "annotations": [ + { + "start": "82.00000", + "end": "82.15000", + "feature": { + "word": "intro" + }, + "id": 0, + "attype": "vanilla-forced-alignment" + }, + { + "start": "82.15000", + "end": "82.24000", + "feature": { + "word": "good" + }, + "id": 1, + "attype": "vanilla-forced-alignment" + }, + { + "start": "82.24000", + "end": "83.19000", + "feature": { + "word": "evening" + }, + "id": 2, + "attype": "vanilla-forced-alignment" + }, + { + "start": "83.39000", + "end": "84.24000", + "feature": { + "word": "leading" + }, + "id": 3, + "attype": "vanilla-forced-alignment" + }, + { + "start": "84.44000", + "end": "84.59000", + "feature": { + "word": "the" + }, + "id": 4, + "attype": "vanilla-forced-alignment" + }, + { + "start": "84.64000", + "end": "85.02000", + "feature": { + "word": "news" + }, + "id": 6, + "attype": "vanilla-forced-alignment" + }, + { + "start": "85.42000", + "end": "86.97000", + "feature": { + "word": "this" + }, + "id": 8, + "attype": "vanilla-forced-alignment" + }, + { + "start": "87.43000", + "end": "88.05000", + "feature": { + "word": "thursday" + }, + "id": 10, + "attype": "vanilla-forced-alignment" + }, + { + "start": "88.43000", + "end": "88.96000", + "feature": { + "word": "three" + }, + "id": 12, + "attype": "vanilla-forced-alignment" + }, + { + "start": "86.69000", + "end": "89.67000", + "feature": { + "word": "private" + }, + "id": 14, + "attype": "vanilla-forced-alignment" + }, + { + "start": "89.67000", + "end": "90.40000", + "feature": { + "word": "contributors" + }, + "id": 15, + "attype": "vanilla-forced-alignment" + }, + { + "start": "90.40000", + "end": "90.53000", + "feature": { + "word": "of" + }, + "id": 16, + "attype": "vanilla-forced-alignment" + }, + { + "start": "90.53000", + "end": "90.94000", + "feature": { + "word": "contra" + }, + "id": 17, + "attype": "vanilla-forced-alignment" + }, + { + "start": "90.94000", + "end": "91.32000", + "feature": { + "word": "money" + }, + "id": 18, + "attype": "vanilla-forced-alignment" + }, + { + "start": "91.32000", + "end": "91.59000", + "feature": { + "word": "told" + }, + "id": 19, + "attype": "vanilla-forced-alignment" + }, + { + "start": "91.59000", + "end": "91.79000", + "feature": { + "word": "their" + }, + "id": 20, + "attype": "vanilla-forced-alignment" + }, + { + "start": "91.79000", + "end": "92.27000", + "feature": { + "word": "stories" + }, + "id": 21, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.27000", + "end": "92.41000", + "feature": { + "word": "to" + }, + "id": 22, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.41000", + "end": "92.59000", + "feature": { + "word": "the" + }, + "id": 23, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.59000", + "end": "92.92000", + "feature": { + "word": "iran" + }, + "id": 24, + "attype": "vanilla-forced-alignment" + }, + { + "start": "92.92000", + "end": "93.33000", + "feature": { + "word": "contra" + }, + "id": 25, + "attype": "vanilla-forced-alignment" + }, + { + "start": "93.33000", + "end": "93.73000", + "feature": { + "word": "hearing" + }, + "id": 26, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.26000", + "end": "94.38000", + "feature": { + "word": "a" + }, + "id": 28, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.38000", + "end": "94.73000", + "feature": { + "word": "navy" + }, + "id": 29, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.73000", + "end": "94.95000", + "feature": { + "word": "board" + }, + "id": 30, + "attype": "vanilla-forced-alignment" + }, + { + "start": "94.95000", + "end": "95.05000", + "feature": { + "word": "of" + }, + "id": 31, + "attype": "vanilla-forced-alignment" + }, + { + "start": "95.05000", + "end": "95.64000", + "feature": { + "word": "inquiry" + }, + "id": 32, + "attype": "vanilla-forced-alignment" + }, + { + "start": "95.64000", + "end": "96.06000", + "feature": { + "word": "began" + }, + "id": 33, + "attype": "vanilla-forced-alignment" + }, + { + "start": "96.06000", + "end": "96.23000", + "feature": { + "word": "its" + }, + "id": 34, + "attype": "vanilla-forced-alignment" + }, + { + "start": "96.23000", + "end": "97.05000", + "feature": { + "word": "investigation" + }, + "id": 35, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.05000", + "end": "97.14000", + "feature": { + "word": "of" + }, + "id": 36, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.14000", + "end": "97.21000", + "feature": { + "word": "the" + }, + "id": 37, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.21000", + "end": "97.39000", + "feature": { + "word": "u" + }, + "id": 38, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.39000", + "end": "97.59000", + "feature": { + "word": "s" + }, + "id": 39, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.59000", + "end": "97.73000", + "feature": { + "word": "s" + }, + "id": 40, + "attype": "vanilla-forced-alignment" + }, + { + "start": "97.73000", + "end": "98.12000", + "feature": { + "word": "stark" + }, + "id": 41, + "attype": "vanilla-forced-alignment" + }, + { + "start": "98.12000", + "end": "98.73000", + "feature": { + "word": "tragedy" + }, + "id": 42, + "attype": "vanilla-forced-alignment" + }, + { + "start": "98.95000", + "end": "99.34000", + "feature": { + "word": "and" + }, + "id": 44, + "attype": "vanilla-forced-alignment" + }, + { + "start": "99.34000", + "end": "99.76000", + "feature": { + "word": "president" + }, + "id": 45, + "attype": "vanilla-forced-alignment" + }, + { + "start": "99.76000", + "end": "100.17000", + "feature": { + "word": "reagan" + }, + "id": 46, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.17000", + "end": "100.42000", + "feature": { + "word": "vowed" + }, + "id": 47, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.42000", + "end": "100.49000", + "feature": { + "word": "to" + }, + "id": 48, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.49000", + "end": "100.71000", + "feature": { + "word": "keep" + }, + "id": 49, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.71000", + "end": "100.99000", + "feature": { + "word": "open" + }, + "id": 50, + "attype": "vanilla-forced-alignment" + }, + { + "start": "100.99000", + "end": "101.07000", + "feature": { + "word": "the" + }, + "id": 51, + "attype": "vanilla-forced-alignment" + }, + { + "start": "101.07000", + "end": "101.50000", + "feature": { + "word": "persian" + }, + "id": 52, + "attype": "vanilla-forced-alignment" + }, + { + "start": "101.50000", + "end": "101.76000", + "feature": { + "word": "gulf" + }, + "id": 53, + "attype": "vanilla-forced-alignment" + }, + { + "start": "101.76000", + "end": "102.19000", + "feature": { + "word": "shipping" + }, + "id": 54, + "attype": "vanilla-forced-alignment" + }, + { + "start": "102.19000", + "end": "102.67000", + "feature": { + "word": "lanes" + }, + "id": 55, + "attype": "vanilla-forced-alignment" + }, + { + "start": "102.88000", + "end": "103.01000", + "feature": { + "word": "we" + }, + "id": 57, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.01000", + "end": "103.05000", + "feature": { + "word": "" + }, + "id": 58, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.05000", + "end": "103.20000", + "feature": { + "word": "have" + }, + "id": 59, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.20000", + "end": "103.29000", + "feature": { + "word": "the" + }, + "id": 60, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.29000", + "end": "103.79000", + "feature": { + "word": "details" + }, + "id": 61, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.79000", + "end": "103.86000", + "feature": { + "word": "in" + }, + "id": 62, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.86000", + "end": "103.98000", + "feature": { + "word": "our" + }, + "id": 63, + "attype": "vanilla-forced-alignment" + }, + { + "start": "103.98000", + "end": "104.20000", + "feature": { + "word": "news" + }, + "id": 64, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.20000", + "end": "104.54000", + "feature": { + "word": "summary" + }, + "id": 65, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.54000", + "end": "104.61000", + "feature": { + "word": "in" + }, + "id": 66, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.61000", + "end": "104.66000", + "feature": { + "word": "a" + }, + "id": 67, + "attype": "vanilla-forced-alignment" + }, + { + "start": "104.66000", + "end": "105.02000", + "feature": { + "word": "moment" + }, + "id": 68, + "attype": "vanilla-forced-alignment" + }, + { + "start": "105.21000", + "end": "105.54000", + "feature": { + "word": "robin" + }, + "id": 70, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.24000", + "end": "106.58000", + "feature": { + "word": "after" + }, + "id": 72, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.58000", + "end": "106.67000", + "feature": { + "word": "the" + }, + "id": 73, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.67000", + "end": "106.88000", + "feature": { + "word": "news" + }, + "id": 74, + "attype": "vanilla-forced-alignment" + }, + { + "start": "106.88000", + "end": "107.18000", + "feature": { + "word": "summary" + }, + "id": 75, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.18000", + "end": "107.33000", + "feature": { + "word": "we" + }, + "id": 76, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.33000", + "end": "107.79000", + "feature": { + "word": "continue" + }, + "id": 77, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.79000", + "end": "107.97000", + "feature": { + "word": "our" + }, + "id": 78, + "attype": "vanilla-forced-alignment" + }, + { + "start": "107.97000", + "end": "108.41000", + "feature": { + "word": "special" + }, + "id": 79, + "attype": "vanilla-forced-alignment" + }, + { + "start": "108.41000", + "end": "108.87000", + "feature": { + "word": "coverage" + }, + "id": 80, + "attype": "vanilla-forced-alignment" + }, + { + "start": "108.87000", + "end": "108.97000", + "feature": { + "word": "of" + }, + "id": 81, + "attype": "vanilla-forced-alignment" + }, + { + "start": "108.97000", + "end": "109.09000", + "feature": { + "word": "the" + }, + "id": 82, + "attype": "vanilla-forced-alignment" + }, + { + "start": "109.09000", + "end": "109.45000", + "feature": { + "word": "iran" + }, + "id": 83, + "attype": "vanilla-forced-alignment" + }, + { + "start": "109.45000", + "end": "109.84000", + "feature": { + "word": "contra" + }, + "id": 84, + "attype": "vanilla-forced-alignment" + }, + { + "start": "109.84000", + "end": "110.29000", + "feature": { + "word": "hearings" + }, + "id": 85, + "attype": "vanilla-forced-alignment" + }, + { + "start": "110.29000", + "end": "110.44000", + "feature": { + "word": "with" + }, + "id": 86, + "attype": "vanilla-forced-alignment" + }, + { + "start": "110.44000", + "end": "110.96000", + "feature": { + "word": "extended" + }, + "id": 87, + "attype": "vanilla-forced-alignment" + }, + { + "start": "110.96000", + "end": "111.49000", + "feature": { + "word": "excerpts" + }, + "id": 88, + "attype": "vanilla-forced-alignment" + }, + { + "start": "111.49000", + "end": "111.71000", + "feature": { + "word": "from" + }, + "id": 89, + "attype": "vanilla-forced-alignment" + }, + { + "start": "111.71000", + "end": "111.97000", + "feature": { + "word": "today" + }, + "id": 90, + "attype": "vanilla-forced-alignment" + }, + { + "start": "111.97000", + "end": "112.09000", + "feature": { + "word": "s" + }, + "id": 91, + "attype": "vanilla-forced-alignment" + }, + { + "start": "112.09000", + "end": "112.67000", + "feature": { + "word": "testimony" + }, + "id": 92, + "attype": "vanilla-forced-alignment" + }, + { + "start": "112.67000", + "end": "113.03000", + "feature": { + "word": "followed" + }, + "id": 93, + "attype": "vanilla-forced-alignment" + }, + { + "start": "113.03000", + "end": "113.25000", + "feature": { + "word": "by" + }, + "id": 94, + "attype": "vanilla-forced-alignment" + }, + { + "start": "113.25000", + "end": "113.89000", + "feature": { + "word": "analysis" + }, + "id": 95, + "attype": "vanilla-forced-alignment" + }, + { + "start": "113.89000", + "end": "114.09000", + "feature": { + "word": "by" + }, + "id": 96, + "attype": "vanilla-forced-alignment" + }, + { + "start": "114.09000", + "end": "114.46000", + "feature": { + "word": "two" + }, + "id": 97, + "attype": "vanilla-forced-alignment" + }, + { + "start": "114.46000", + "end": "114.86000", + "feature": { + "word": "committee" + }, + "id": 98, + "attype": "vanilla-forced-alignment" + }, + { + "start": "114.86000", + "end": "115.39000", + "feature": { + "word": "members" + }, + "id": 99, + "attype": "vanilla-forced-alignment" + }, + { + "start": "115.87000", + "end": "116.25000", + "feature": { + "word": "next" + }, + "id": 101, + "attype": "vanilla-forced-alignment" + }, + { + "start": "116.25000", + "end": "116.36000", + "feature": { + "word": "a" + }, + "id": 102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "116.36000", + "end": "116.64000", + "feature": { + "word": "news" + }, + "id": 103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "116.64000", + "end": "117.01000", + "feature": { + "word": "maker" + }, + "id": 104, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.01000", + "end": "117.43000", + "feature": { + "word": "interview" + }, + "id": 105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.43000", + "end": "117.65000", + "feature": { + "word": "with" + }, + "id": 106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.65000", + "end": "117.78000", + "feature": { + "word": "the" + }, + "id": 107, + "attype": "vanilla-forced-alignment" + }, + { + "start": "117.78000", + "end": "118.36000", + "feature": { + "word": "austrian" + }, + "id": 108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "118.36000", + "end": "118.92000", + "feature": { + "word": "chancellor" + }, + "id": 109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "118.92000", + "end": "119.31000", + "feature": { + "word": "franz" + }, + "id": 110, + "attype": "vanilla-forced-alignment" + }, + { + "start": "119.31000", + "end": "119.94000", + "feature": { + "word": "" + }, + "id": 111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.10000", + "end": "120.33000", + "feature": { + "word": "on" + }, + "id": 113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.33000", + "end": "120.39000", + "feature": { + "word": "the" + }, + "id": 114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.39000", + "end": "120.95000", + "feature": { + "word": "waldheim" + }, + "id": 115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "120.95000", + "end": "121.59000", + "feature": { + "word": "controversy" + }, + "id": 116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.02000", + "end": "122.45000", + "feature": { + "word": "finally" + }, + "id": 118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.45000", + "end": "122.57000", + "feature": { + "word": "a" + }, + "id": 119, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.57000", + "end": "122.96000", + "feature": { + "word": "roger" + }, + "id": 120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "122.96000", + "end": "123.25000", + "feature": { + "word": "mudd" + }, + "id": 121, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.25000", + "end": "123.76000", + "feature": { + "word": "essay" + }, + "id": 122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.76000", + "end": "123.86000", + "feature": { + "word": "on" + }, + "id": 123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.86000", + "end": "123.93000", + "feature": { + "word": "the" + }, + "id": 124, + "attype": "vanilla-forced-alignment" + }, + { + "start": "123.93000", + "end": "124.45000", + "feature": { + "word": "powers" + }, + "id": 125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "124.45000", + "end": "124.55000", + "feature": { + "word": "of" + }, + "id": 126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "124.55000", + "end": "124.63000", + "feature": { + "word": "the" + }, + "id": 127, + "attype": "vanilla-forced-alignment" + }, + { + "start": "124.63000", + "end": "125.27000", + "feature": { + "word": "presidency" + }, + "id": 128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "125.27000", + "end": "125.36000", + "feature": { + "word": "news" + }, + "id": 129, + "attype": "vanilla-forced-alignment" + }, + { + "start": "127.23000", + "end": "127.60000", + "feature": { + "word": "summary" + }, + "id": 131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "127.60000", + "end": "127.85000", + "feature": { + "word": "wealthy" + }, + "id": 132, + "attype": "vanilla-forced-alignment" + }, + { + "start": "127.85000", + "end": "128.25000", + "feature": { + "word": "americans" + }, + "id": 133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.25000", + "end": "128.55000", + "feature": { + "word": "testified" + }, + "id": 134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.55000", + "end": "128.67000", + "feature": { + "word": "today" + }, + "id": 135, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.67000", + "end": "128.76000", + "feature": { + "word": "that" + }, + "id": 136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.76000", + "end": "128.82000", + "feature": { + "word": "they" + }, + "id": 137, + "attype": "vanilla-forced-alignment" + }, + { + "start": "128.82000", + "end": "129.02000", + "feature": { + "word": "gave" + }, + "id": 138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.02000", + "end": "129.44000", + "feature": { + "word": "large" + }, + "id": 139, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.58000", + "end": "129.71000", + "feature": { + "word": "sums" + }, + "id": 141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.71000", + "end": "129.77000", + "feature": { + "word": "to" + }, + "id": 142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.77000", + "end": "129.83000", + "feature": { + "word": "the" + }, + "id": 143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "129.83000", + "end": "130.24000", + "feature": { + "word": "nicaraguan" + }, + "id": 144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "130.24000", + "end": "130.71000", + "feature": { + "word": "contras" + }, + "id": 145, + "attype": "vanilla-forced-alignment" + }, + { + "start": "130.71000", + "end": "130.83000", + "feature": { + "word": "after" + }, + "id": 146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "130.83000", + "end": "131.14000", + "feature": { + "word": "briefings" + }, + "id": 147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "131.14000", + "end": "131.21000", + "feature": { + "word": "by" + }, + "id": 148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "131.21000", + "end": "131.90000", + "feature": { + "word": "administration" + }, + "id": 149, + "attype": "vanilla-forced-alignment" + }, + { + "start": "131.97000", + "end": "132.21000", + "feature": { + "word": "officials" + }, + "id": 151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "132.21000", + "end": "132.37000", + "feature": { + "word": "like" + }, + "id": 152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "132.37000", + "end": "150.96000", + "feature": { + "word": "" + }, + "id": 153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "153.69000", + "end": "162.22000", + "feature": { + "word": "" + }, + "id": 155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "162.22000", + "end": "162.59000", + "feature": { + "word": "oliver" + }, + "id": 156, + "attype": "vanilla-forced-alignment" + }, + { + "start": "162.59000", + "end": "163.05000", + "feature": { + "word": "north" + }, + "id": 157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "163.35000", + "end": "163.82000", + "feature": { + "word": "one" + }, + "id": 159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "163.82000", + "end": "164.28000", + "feature": { + "word": "witness" + }, + "id": 160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "164.28000", + "end": "164.74000", + "feature": { + "word": "brewery" + }, + "id": 161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "164.74000", + "end": "165.27000", + "feature": { + "word": "executive" + }, + "id": 162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "165.27000", + "end": "165.72000", + "feature": { + "word": "joseph" + }, + "id": 163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "165.72000", + "end": "166.19000", + "feature": { + "word": "coors" + }, + "id": 164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.19000", + "end": "166.42000", + "feature": { + "word": "said" + }, + "id": 165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.42000", + "end": "166.57000", + "feature": { + "word": "he" + }, + "id": 166, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.57000", + "end": "166.78000", + "feature": { + "word": "was" + }, + "id": 167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "166.78000", + "end": "167.05000", + "feature": { + "word": "sent" + }, + "id": 168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.05000", + "end": "167.15000", + "feature": { + "word": "to" + }, + "id": 169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.15000", + "end": "167.56000", + "feature": { + "word": "north" + }, + "id": 170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.56000", + "end": "167.76000", + "feature": { + "word": "by" + }, + "id": 171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "167.76000", + "end": "168.09000", + "feature": { + "word": "then" + }, + "id": 172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "168.09000", + "end": "168.66000", + "feature": { + "word": "cia" + }, + "id": 173, + "attype": "vanilla-forced-alignment" + }, + { + "start": "168.66000", + "end": "169.16000", + "feature": { + "word": "director" + }, + "id": 174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "169.16000", + "end": "169.47000", + "feature": { + "word": "william" + }, + "id": 175, + "attype": "vanilla-forced-alignment" + }, + { + "start": "169.47000", + "end": "169.91000", + "feature": { + "word": "casey" + }, + "id": 176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "170.60000", + "end": "170.76000", + "feature": { + "word": "did" + }, + "id": 178, + "attype": "vanilla-forced-alignment" + }, + { + "start": "170.76000", + "end": "171.13000", + "feature": { + "word": "you" + }, + "id": 179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "171.69000", + "end": "171.96000", + "feature": { + "word": "tell" + }, + "id": 181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "171.96000", + "end": "172.39000", + "feature": { + "word": "casey" + }, + "id": 182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.39000", + "end": "172.52000", + "feature": { + "word": "that" + }, + "id": 183, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.52000", + "end": "172.66000", + "feature": { + "word": "you" + }, + "id": 184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.66000", + "end": "172.79000", + "feature": { + "word": "were" + }, + "id": 185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "172.79000", + "end": "173.28000", + "feature": { + "word": "interested" + }, + "id": 186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "173.28000", + "end": "173.40000", + "feature": { + "word": "in" + }, + "id": 187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "173.40000", + "end": "173.89000", + "feature": { + "word": "providing" + }, + "id": 188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "173.89000", + "end": "174.52000", + "feature": { + "word": "monetary" + }, + "id": 189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "174.52000", + "end": "175.04000", + "feature": { + "word": "support" + }, + "id": 190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.04000", + "end": "175.23000", + "feature": { + "word": "for" + }, + "id": 191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.23000", + "end": "175.31000", + "feature": { + "word": "the" + }, + "id": 192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.31000", + "end": "175.63000", + "feature": { + "word": "freedom" + }, + "id": 193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "175.63000", + "end": "176.07000", + "feature": { + "word": "fighters" + }, + "id": 194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "176.21000", + "end": "176.53000", + "feature": { + "word": "yes" + }, + "id": 196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "176.53000", + "end": "176.61000", + "feature": { + "word": "i" + }, + "id": 197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "176.61000", + "end": "176.96000", + "feature": { + "word": "did" + }, + "id": 198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.00000", + "end": "177.20000", + "feature": { + "word": "mr" + }, + "id": 200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.20000", + "end": "177.40000", + "feature": { + "word": "and" + }, + "id": 201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.43000", + "end": "177.63000", + "feature": { + "word": "what" + }, + "id": 203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.63000", + "end": "177.81000", + "feature": { + "word": "was" + }, + "id": 204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "177.81000", + "end": "178.04000", + "feature": { + "word": "his" + }, + "id": 205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.04000", + "end": "178.61000", + "feature": { + "word": "response" + }, + "id": 206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.61000", + "end": "178.73000", + "feature": { + "word": "to" + }, + "id": 207, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.73000", + "end": "178.97000", + "feature": { + "word": "your" + }, + "id": 208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "178.97000", + "end": "179.48000", + "feature": { + "word": "expressed" + }, + "id": 209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "179.48000", + "end": "179.95000", + "feature": { + "word": "interest" + }, + "id": 210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "179.95000", + "end": "180.10000", + "feature": { + "word": "mr" + }, + "id": 211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.10000", + "end": "180.21000", + "feature": { + "word": "well" + }, + "id": 212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.21000", + "end": "180.45000", + "feature": { + "word": "his" + }, + "id": 213, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.45000", + "end": "180.99000", + "feature": { + "word": "response" + }, + "id": 214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "180.99000", + "end": "181.18000", + "feature": { + "word": "was" + }, + "id": 215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "181.18000", + "end": "181.29000", + "feature": { + "word": "that" + }, + "id": 216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "181.29000", + "end": "181.95000", + "feature": { + "word": "he" + }, + "id": 217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "182.72000", + "end": "183.51000", + "feature": { + "word": "couldn't" + }, + "id": 219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "183.51000", + "end": "183.72000", + "feature": { + "word": "do" + }, + "id": 220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "183.72000", + "end": "184.08000", + "feature": { + "word": "anything" + }, + "id": 221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.08000", + "end": "184.37000", + "feature": { + "word": "for" + }, + "id": 222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.37000", + "end": "184.46000", + "feature": { + "word": "me" + }, + "id": 223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.46000", + "end": "184.87000", + "feature": { + "word": "along" + }, + "id": 224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "184.87000", + "end": "185.12000", + "feature": { + "word": "those" + }, + "id": 225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "185.12000", + "end": "186.01000", + "feature": { + "word": "lines" + }, + "id": 226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "186.06000", + "end": "186.63000", + "feature": { + "word": "but" + }, + "id": 228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "186.63000", + "end": "186.91000", + "feature": { + "word": "that" + }, + "id": 229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "186.96000", + "end": "187.10000", + "feature": { + "word": "he" + }, + "id": 231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "187.10000", + "end": "187.73000", + "feature": { + "word": "knew" + }, + "id": 232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "188.27000", + "end": "188.47000", + "feature": { + "word": "of" + }, + "id": 234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "188.53000", + "end": "188.72000", + "feature": { + "word": "a" + }, + "id": 236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "188.72000", + "end": "189.20000", + "feature": { + "word": "person" + }, + "id": 237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "189.20000", + "end": "189.93000", + "feature": { + "word": "" + }, + "id": 238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "189.93000", + "end": "190.00000", + "feature": { + "word": "a" + }, + "id": 239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "190.00000", + "end": "190.56000", + "feature": { + "word": "mutual" + }, + "id": 240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "190.56000", + "end": "190.96000", + "feature": { + "word": "person" + }, + "id": 241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "190.96000", + "end": "191.09000", + "feature": { + "word": "that" + }, + "id": 242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "191.09000", + "end": "191.22000", + "feature": { + "word": "we" + }, + "id": 243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "191.22000", + "end": "192.12000", + "feature": { + "word": "knew" + }, + "id": 244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "192.19000", + "end": "192.41000", + "feature": { + "word": "that" + }, + "id": 246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "192.41000", + "end": "192.66000", + "feature": { + "word": "could" + }, + "id": 247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "193.30000", + "end": "193.56000", + "feature": { + "word": "help" + }, + "id": 249, + "attype": "vanilla-forced-alignment" + }, + { + "start": "193.56000", + "end": "193.84000", + "feature": { + "word": "me" + }, + "id": 250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.18000", + "end": "194.32000", + "feature": { + "word": "and" + }, + "id": 252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.32000", + "end": "194.50000", + "feature": { + "word": "that" + }, + "id": 253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.50000", + "end": "194.69000", + "feature": { + "word": "was" + }, + "id": 254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "194.69000", + "end": "195.05000", + "feature": { + "word": "" + }, + "id": 255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "195.05000", + "end": "195.35000", + "feature": { + "word": "oliver" + }, + "id": 256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "195.35000", + "end": "196.08000", + "feature": { + "word": "north" + }, + "id": 257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "196.40000", + "end": "196.74000", + "feature": { + "word": "mr" + }, + "id": 259, + "attype": "vanilla-forced-alignment" + }, + { + "start": "196.90000", + "end": "197.12000", + "feature": { + "word": "did" + }, + "id": 261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.12000", + "end": "197.33000", + "feature": { + "word": "he" + }, + "id": 262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.33000", + "end": "197.60000", + "feature": { + "word": "tell" + }, + "id": 263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.60000", + "end": "197.79000", + "feature": { + "word": "you" + }, + "id": 264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "197.79000", + "end": "198.15000", + "feature": { + "word": "why" + }, + "id": 265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "198.15000", + "end": "198.49000", + "feature": { + "word": "he" + }, + "id": 266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "198.49000", + "end": "198.83000", + "feature": { + "word": "couldn't" + }, + "id": 267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "198.83000", + "end": "199.01000", + "feature": { + "word": "do" + }, + "id": 268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "199.01000", + "end": "199.43000", + "feature": { + "word": "anything" + }, + "id": 269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "199.43000", + "end": "199.74000", + "feature": { + "word": "along" + }, + "id": 270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "199.74000", + "end": "200.01000", + "feature": { + "word": "those" + }, + "id": 271, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.01000", + "end": "200.13000", + "feature": { + "word": "lines" + }, + "id": 272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.13000", + "end": "200.31000", + "feature": { + "word": "" + }, + "id": 273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.31000", + "end": "200.53000", + "feature": { + "word": "that" + }, + "id": 274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.53000", + "end": "200.68000", + "feature": { + "word": "is" + }, + "id": 275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.68000", + "end": "200.98000", + "feature": { + "word": "mr" + }, + "id": 276, + "attype": "vanilla-forced-alignment" + }, + { + "start": "200.98000", + "end": "201.10000", + "feature": { + "word": "casey" + }, + "id": 277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.10000", + "end": "201.35000", + "feature": { + "word": "mr" + }, + "id": 278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.35000", + "end": "201.41000", + "feature": { + "word": "no" + }, + "id": 279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.41000", + "end": "201.53000", + "feature": { + "word": "he" + }, + "id": 280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.53000", + "end": "201.80000", + "feature": { + "word": "didn't" + }, + "id": 281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.80000", + "end": "201.92000", + "feature": { + "word": "he" + }, + "id": 282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "201.95000", + "end": "202.29000", + "feature": { + "word": "just" + }, + "id": 284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "202.41000", + "end": "202.61000", + "feature": { + "word": "made" + }, + "id": 286, + "attype": "vanilla-forced-alignment" + }, + { + "start": "202.61000", + "end": "202.93000", + "feature": { + "word": "point" + }, + "id": 287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "202.93000", + "end": "203.24000", + "feature": { + "word": "blank" + }, + "id": 288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "203.24000", + "end": "203.33000", + "feature": { + "word": "he" + }, + "id": 289, + "attype": "vanilla-forced-alignment" + }, + { + "start": "203.37000", + "end": "203.67000", + "feature": { + "word": "said" + }, + "id": 291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "203.67000", + "end": "204.89000", + "feature": { + "word": "" + }, + "id": 292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "204.89000", + "end": "205.21000", + "feature": { + "word": "north" + }, + "id": 293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.21000", + "end": "205.24000", + "feature": { + "word": "s" + }, + "id": 294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.24000", + "end": "205.31000", + "feature": { + "word": "the" + }, + "id": 295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.31000", + "end": "205.51000", + "feature": { + "word": "guy" + }, + "id": 296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.51000", + "end": "205.62000", + "feature": { + "word": "to" + }, + "id": 297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "205.62000", + "end": "205.97000", + "feature": { + "word": "see" + }, + "id": 298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "206.04000", + "end": "206.08000", + "feature": { + "word": "" + }, + "id": 300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "207.11000", + "end": "207.79000", + "feature": { + "word": "independent" + }, + "id": 302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "207.79000", + "end": "208.18000", + "feature": { + "word": "counsel" + }, + "id": 303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "208.18000", + "end": "208.56000", + "feature": { + "word": "lawrence" + }, + "id": 304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "208.56000", + "end": "208.94000", + "feature": { + "word": "walsh" + }, + "id": 305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "208.94000", + "end": "209.02000", + "feature": { + "word": "who" + }, + "id": 306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.02000", + "end": "209.12000", + "feature": { + "word": "is" + }, + "id": 307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.12000", + "end": "209.66000", + "feature": { + "word": "conducting" + }, + "id": 308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.66000", + "end": "209.77000", + "feature": { + "word": "a" + }, + "id": 309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "209.77000", + "end": "210.15000", + "feature": { + "word": "criminal" + }, + "id": 310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "210.15000", + "end": "210.98000", + "feature": { + "word": "investigation" + }, + "id": 311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "211.17000", + "end": "211.54000", + "feature": { + "word": "issued" + }, + "id": 313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "211.54000", + "end": "211.62000", + "feature": { + "word": "a" + }, + "id": 314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "211.62000", + "end": "212.21000", + "feature": { + "word": "subpoena" + }, + "id": 315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "212.21000", + "end": "212.38000", + "feature": { + "word": "to" + }, + "id": 316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "212.38000", + "end": "212.74000", + "feature": { + "word": "david" + }, + "id": 317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "212.74000", + "end": "213.22000", + "feature": { + "word": "kimche" + }, + "id": 318, + "attype": "vanilla-forced-alignment" + }, + { + "start": "213.22000", + "end": "213.59000", + "feature": { + "word": "former" + }, + "id": 319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "213.59000", + "end": "214.11000", + "feature": { + "word": "director" + }, + "id": 320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.11000", + "end": "214.18000", + "feature": { + "word": "of" + }, + "id": 321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.18000", + "end": "214.36000", + "feature": { + "word": "the" + }, + "id": 322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.36000", + "end": "214.75000", + "feature": { + "word": "israeli" + }, + "id": 323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "214.75000", + "end": "215.05000", + "feature": { + "word": "foreign" + }, + "id": 324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.05000", + "end": "215.55000", + "feature": { + "word": "ministry" + }, + "id": 325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.55000", + "end": "215.67000", + "feature": { + "word": "who" + }, + "id": 326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.67000", + "end": "215.88000", + "feature": { + "word": "was" + }, + "id": 327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "215.88000", + "end": "216.31000", + "feature": { + "word": "involved" + }, + "id": 328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "216.31000", + "end": "216.42000", + "feature": { + "word": "in" + }, + "id": 329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "216.42000", + "end": "216.71000", + "feature": { + "word": "arms" + }, + "id": 330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "216.71000", + "end": "217.13000", + "feature": { + "word": "shipments" + }, + "id": 331, + "attype": "vanilla-forced-alignment" + }, + { + "start": "217.13000", + "end": "217.30000", + "feature": { + "word": "to" + }, + "id": 332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "217.30000", + "end": "217.76000", + "feature": { + "word": "iran" + }, + "id": 333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "218.37000", + "end": "218.67000", + "feature": { + "word": "and" + }, + "id": 335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "218.67000", + "end": "218.94000", + "feature": { + "word": "house" + }, + "id": 336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "218.94000", + "end": "219.31000", + "feature": { + "word": "speaker" + }, + "id": 337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "219.31000", + "end": "219.60000", + "feature": { + "word": "jim" + }, + "id": 338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "219.60000", + "end": "219.92000", + "feature": { + "word": "wright" + }, + "id": 339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "219.92000", + "end": "220.15000", + "feature": { + "word": "said" + }, + "id": 340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "220.15000", + "end": "220.48000", + "feature": { + "word": "today" + }, + "id": 341, + "attype": "vanilla-forced-alignment" + }, + { + "start": "220.77000", + "end": "220.92000", + "feature": { + "word": "it" + }, + "id": 343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "220.92000", + "end": "221.07000", + "feature": { + "word": "is" + }, + "id": 344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "221.07000", + "end": "221.74000", + "feature": { + "word": "increasingly" + }, + "id": 345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "221.74000", + "end": "222.13000", + "feature": { + "word": "evident" + }, + "id": 346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "222.13000", + "end": "222.28000", + "feature": { + "word": "that" + }, + "id": 347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "222.28000", + "end": "222.78000", + "feature": { + "word": "laws" + }, + "id": 348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "222.78000", + "end": "223.29000", + "feature": { + "word": "banning" + }, + "id": 349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "223.29000", + "end": "223.48000", + "feature": { + "word": "u" + }, + "id": 350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "223.48000", + "end": "223.66000", + "feature": { + "word": "s" + }, + "id": 351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "223.66000", + "end": "224.26000", + "feature": { + "word": "military" + }, + "id": 352, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.26000", + "end": "224.48000", + "feature": { + "word": "aid" + }, + "id": 353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.48000", + "end": "224.58000", + "feature": { + "word": "to" + }, + "id": 354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.58000", + "end": "224.71000", + "feature": { + "word": "the" + }, + "id": 355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "224.71000", + "end": "225.25000", + "feature": { + "word": "contras" + }, + "id": 356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "225.25000", + "end": "225.42000", + "feature": { + "word": "were" + }, + "id": 357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "225.42000", + "end": "226.22000", + "feature": { + "word": "systematically" + }, + "id": 358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "226.22000", + "end": "226.83000", + "feature": { + "word": "violated" + }, + "id": 359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "226.83000", + "end": "226.97000", + "feature": { + "word": "by" + }, + "id": 360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "226.97000", + "end": "227.38000", + "feature": { + "word": "members" + }, + "id": 361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "227.38000", + "end": "227.51000", + "feature": { + "word": "of" + }, + "id": 362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "227.51000", + "end": "227.62000", + "feature": { + "word": "the" + }, + "id": 363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "227.62000", + "end": "228.12000", + "feature": { + "word": "executive" + }, + "id": 364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.12000", + "end": "228.41000", + "feature": { + "word": "branch" + }, + "id": 365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.41000", + "end": "228.51000", + "feature": { + "word": "of" + }, + "id": 366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.51000", + "end": "228.95000", + "feature": { + "word": "government" + }, + "id": 367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "228.95000", + "end": "228.98000", + "feature": { + "word": "" + }, + "id": 368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "229.40000", + "end": "229.69000", + "feature": { + "word": "mr" + }, + "id": 370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "229.69000", + "end": "229.97000", + "feature": { + "word": "reagan" + }, + "id": 371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "229.97000", + "end": "230.14000", + "feature": { + "word": "has" + }, + "id": 372, + "attype": "vanilla-forced-alignment" + }, + { + "start": "230.14000", + "end": "230.60000", + "feature": { + "word": "recently" + }, + "id": 373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "230.60000", + "end": "230.89000", + "feature": { + "word": "said" + }, + "id": 374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "230.89000", + "end": "231.01000", + "feature": { + "word": "that" + }, + "id": 375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.01000", + "end": "231.09000", + "feature": { + "word": "the" + }, + "id": 376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.09000", + "end": "231.44000", + "feature": { + "word": "laws" + }, + "id": 377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.44000", + "end": "231.95000", + "feature": { + "word": "prohibiting" + }, + "id": 378, + "attype": "vanilla-forced-alignment" + }, + { + "start": "231.95000", + "end": "232.09000", + "feature": { + "word": "the" + }, + "id": 379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.09000", + "end": "232.34000", + "feature": { + "word": "aid" + }, + "id": 380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.34000", + "end": "232.50000", + "feature": { + "word": "did" + }, + "id": 381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.50000", + "end": "232.69000", + "feature": { + "word": "not" + }, + "id": 382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "232.69000", + "end": "233.03000", + "feature": { + "word": "apply" + }, + "id": 383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "233.03000", + "end": "233.14000", + "feature": { + "word": "to" + }, + "id": 384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "233.14000", + "end": "233.51000", + "feature": { + "word": "him" + }, + "id": 385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "233.93000", + "end": "234.38000", + "feature": { + "word": "speaker" + }, + "id": 387, + "attype": "vanilla-forced-alignment" + }, + { + "start": "234.38000", + "end": "234.72000", + "feature": { + "word": "wright" + }, + "id": 388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "234.72000", + "end": "234.97000", + "feature": { + "word": "said" + }, + "id": 389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "234.97000", + "end": "235.09000", + "feature": { + "word": "in" + }, + "id": 390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "235.09000", + "end": "235.15000", + "feature": { + "word": "a" + }, + "id": 391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "235.15000", + "end": "235.64000", + "feature": { + "word": "statement" + }, + "id": 392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "235.88000", + "end": "236.04000", + "feature": { + "word": "if" + }, + "id": 394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.04000", + "end": "236.27000", + "feature": { + "word": "any" + }, + "id": 395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.27000", + "end": "236.75000", + "feature": { + "word": "president" + }, + "id": 396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.75000", + "end": "236.90000", + "feature": { + "word": "were" + }, + "id": 397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "236.90000", + "end": "237.11000", + "feature": { + "word": "free" + }, + "id": 398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.11000", + "end": "237.25000", + "feature": { + "word": "to" + }, + "id": 399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.25000", + "end": "237.53000", + "feature": { + "word": "pick" + }, + "id": 400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.53000", + "end": "237.68000", + "feature": { + "word": "and" + }, + "id": 401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "237.68000", + "end": "238.13000", + "feature": { + "word": "choose" + }, + "id": 402, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.13000", + "end": "238.39000", + "feature": { + "word": "which" + }, + "id": 403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.39000", + "end": "238.75000", + "feature": { + "word": "laws" + }, + "id": 404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.75000", + "end": "238.87000", + "feature": { + "word": "he" + }, + "id": 405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "238.87000", + "end": "239.08000", + "feature": { + "word": "would" + }, + "id": 406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "239.08000", + "end": "239.58000", + "feature": { + "word": "faithfully" + }, + "id": 407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "239.58000", + "end": "240.15000", + "feature": { + "word": "execute" + }, + "id": 408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.15000", + "end": "240.29000", + "feature": { + "word": "and" + }, + "id": 409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.29000", + "end": "240.47000", + "feature": { + "word": "which" + }, + "id": 410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.47000", + "end": "240.58000", + "feature": { + "word": "he" + }, + "id": 411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.58000", + "end": "240.81000", + "feature": { + "word": "would" + }, + "id": 412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "240.81000", + "end": "241.21000", + "feature": { + "word": "not" + }, + "id": 413, + "attype": "vanilla-forced-alignment" + }, + { + "start": "241.26000", + "end": "241.66000", + "feature": { + "word": "ours" + }, + "id": 415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "241.66000", + "end": "241.83000", + "feature": { + "word": "would" + }, + "id": 416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "241.83000", + "end": "242.09000", + "feature": { + "word": "cease" + }, + "id": 417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.09000", + "end": "242.21000", + "feature": { + "word": "to" + }, + "id": 418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.21000", + "end": "242.42000", + "feature": { + "word": "be" + }, + "id": 419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.42000", + "end": "242.51000", + "feature": { + "word": "a" + }, + "id": 420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.51000", + "end": "242.90000", + "feature": { + "word": "government" + }, + "id": 421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.90000", + "end": "242.99000", + "feature": { + "word": "of" + }, + "id": 422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "242.99000", + "end": "243.36000", + "feature": { + "word": "law" + }, + "id": 423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "243.65000", + "end": "243.68000", + "feature": { + "word": "" + }, + "id": 425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "243.68000", + "end": "243.94000", + "feature": { + "word": "jim" + }, + "id": 426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "244.79000", + "end": "244.92000", + "feature": { + "word": "the" + }, + "id": 428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "244.92000", + "end": "245.27000", + "feature": { + "word": "search" + }, + "id": 429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "245.27000", + "end": "245.44000", + "feature": { + "word": "for" + }, + "id": 430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "245.44000", + "end": "245.92000", + "feature": { + "word": "answers" + }, + "id": 431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "245.92000", + "end": "246.32000", + "feature": { + "word": "began" + }, + "id": 432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "246.32000", + "end": "246.43000", + "feature": { + "word": "in" + }, + "id": 433, + "attype": "vanilla-forced-alignment" + }, + { + "start": "246.43000", + "end": "246.81000", + "feature": { + "word": "earnest" + }, + "id": 434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "246.81000", + "end": "247.24000", + "feature": { + "word": "today" + }, + "id": 435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "247.24000", + "end": "247.36000", + "feature": { + "word": "for" + }, + "id": 436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "247.36000", + "end": "247.60000", + "feature": { + "word": "what" + }, + "id": 437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "247.60000", + "end": "248.07000", + "feature": { + "word": "happened" + }, + "id": 438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.07000", + "end": "248.17000", + "feature": { + "word": "to" + }, + "id": 439, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.17000", + "end": "248.24000", + "feature": { + "word": "the" + }, + "id": 440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.24000", + "end": "248.48000", + "feature": { + "word": "u" + }, + "id": 441, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.48000", + "end": "248.70000", + "feature": { + "word": "s" + }, + "id": 442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.70000", + "end": "248.91000", + "feature": { + "word": "s" + }, + "id": 443, + "attype": "vanilla-forced-alignment" + }, + { + "start": "248.91000", + "end": "249.49000", + "feature": { + "word": "stark" + }, + "id": 444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "249.78000", + "end": "249.90000", + "feature": { + "word": "a" + }, + "id": 446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "249.90000", + "end": "250.10000", + "feature": { + "word": "u" + }, + "id": 447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.10000", + "end": "250.27000", + "feature": { + "word": "s" + }, + "id": 448, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.27000", + "end": "250.57000", + "feature": { + "word": "navy" + }, + "id": 449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.57000", + "end": "250.82000", + "feature": { + "word": "board" + }, + "id": 450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.82000", + "end": "250.93000", + "feature": { + "word": "of" + }, + "id": 451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "250.93000", + "end": "251.55000", + "feature": { + "word": "inquiry" + }, + "id": 452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "251.55000", + "end": "251.97000", + "feature": { + "word": "started" + }, + "id": 453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "251.97000", + "end": "252.13000", + "feature": { + "word": "its" + }, + "id": 454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.13000", + "end": "252.39000", + "feature": { + "word": "work" + }, + "id": 455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.39000", + "end": "252.53000", + "feature": { + "word": "on" + }, + "id": 456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.53000", + "end": "252.63000", + "feature": { + "word": "the" + }, + "id": 457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.63000", + "end": "252.98000", + "feature": { + "word": "ground" + }, + "id": 458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "252.98000", + "end": "253.16000", + "feature": { + "word": "in" + }, + "id": 459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.16000", + "end": "253.71000", + "feature": { + "word": "bahrain" + }, + "id": 460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.71000", + "end": "253.83000", + "feature": { + "word": "with" + }, + "id": 461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.83000", + "end": "253.91000", + "feature": { + "word": "the" + }, + "id": 462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "253.91000", + "end": "254.57000", + "feature": { + "word": "surviving" + }, + "id": 463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "254.57000", + "end": "254.89000", + "feature": { + "word": "crew" + }, + "id": 464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "254.89000", + "end": "254.99000", + "feature": { + "word": "of" + }, + "id": 465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "254.99000", + "end": "255.07000", + "feature": { + "word": "the" + }, + "id": 466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "255.07000", + "end": "255.56000", + "feature": { + "word": "stark" + }, + "id": 467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "255.69000", + "end": "256.09000", + "feature": { + "word": "thirty" + }, + "id": 469, + "attype": "vanilla-forced-alignment" + }, + { + "start": "256.09000", + "end": "256.43000", + "feature": { + "word": "seven" + }, + "id": 470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "256.43000", + "end": "256.91000", + "feature": { + "word": "american" + }, + "id": 471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "256.91000", + "end": "257.33000", + "feature": { + "word": "sailors" + }, + "id": 472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "257.33000", + "end": "257.69000", + "feature": { + "word": "died" + }, + "id": 473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "257.69000", + "end": "258.16000", + "feature": { + "word": "sunday" + }, + "id": 474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "258.26000", + "end": "258.48000", + "feature": { + "word": "when" + }, + "id": 476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "258.48000", + "end": "258.59000", + "feature": { + "word": "an" + }, + "id": 477, + "attype": "vanilla-forced-alignment" + }, + { + "start": "258.59000", + "end": "259.04000", + "feature": { + "word": "iraqi" + }, + "id": 478, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.04000", + "end": "259.43000", + "feature": { + "word": "missile" + }, + "id": 479, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.43000", + "end": "259.67000", + "feature": { + "word": "hit" + }, + "id": 480, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.67000", + "end": "259.78000", + "feature": { + "word": "the" + }, + "id": 481, + "attype": "vanilla-forced-alignment" + }, + { + "start": "259.78000", + "end": "260.25000", + "feature": { + "word": "ship" + }, + "id": 482, + "attype": "vanilla-forced-alignment" + }, + { + "start": "260.50000", + "end": "260.68000", + "feature": { + "word": "in" + }, + "id": 484, + "attype": "vanilla-forced-alignment" + }, + { + "start": "260.68000", + "end": "261.20000", + "feature": { + "word": "washington" + }, + "id": 485, + "attype": "vanilla-forced-alignment" + }, + { + "start": "261.20000", + "end": "261.55000", + "feature": { + "word": "defense" + }, + "id": 486, + "attype": "vanilla-forced-alignment" + }, + { + "start": "261.55000", + "end": "262.04000", + "feature": { + "word": "secretary" + }, + "id": 487, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.04000", + "end": "262.67000", + "feature": { + "word": "weinberger" + }, + "id": 488, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.67000", + "end": "262.79000", + "feature": { + "word": "and" + }, + "id": 489, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.79000", + "end": "262.91000", + "feature": { + "word": "some" + }, + "id": 490, + "attype": "vanilla-forced-alignment" + }, + { + "start": "262.91000", + "end": "263.26000", + "feature": { + "word": "members" + }, + "id": 491, + "attype": "vanilla-forced-alignment" + }, + { + "start": "263.26000", + "end": "263.39000", + "feature": { + "word": "of" + }, + "id": 492, + "attype": "vanilla-forced-alignment" + }, + { + "start": "263.39000", + "end": "263.89000", + "feature": { + "word": "congress" + }, + "id": 493, + "attype": "vanilla-forced-alignment" + }, + { + "start": "263.89000", + "end": "264.44000", + "feature": { + "word": "demanded" + }, + "id": 494, + "attype": "vanilla-forced-alignment" + }, + { + "start": "264.44000", + "end": "264.56000", + "feature": { + "word": "that" + }, + "id": 495, + "attype": "vanilla-forced-alignment" + }, + { + "start": "264.56000", + "end": "265.05000", + "feature": { + "word": "iraq" + }, + "id": 496, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.05000", + "end": "265.25000", + "feature": { + "word": "let" + }, + "id": 497, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.25000", + "end": "265.40000", + "feature": { + "word": "u" + }, + "id": 498, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.40000", + "end": "265.56000", + "feature": { + "word": "s" + }, + "id": 499, + "attype": "vanilla-forced-alignment" + }, + { + "start": "265.56000", + "end": "266.43000", + "feature": { + "word": "investigators" + }, + "id": 500, + "attype": "vanilla-forced-alignment" + }, + { + "start": "266.72000", + "end": "267.18000", + "feature": { + "word": "question" + }, + "id": 502, + "attype": "vanilla-forced-alignment" + }, + { + "start": "267.18000", + "end": "267.30000", + "feature": { + "word": "the" + }, + "id": 503, + "attype": "vanilla-forced-alignment" + }, + { + "start": "267.30000", + "end": "267.72000", + "feature": { + "word": "iraqi" + }, + "id": 504, + "attype": "vanilla-forced-alignment" + }, + { + "start": "267.72000", + "end": "268.11000", + "feature": { + "word": "pilot" + }, + "id": 505, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.11000", + "end": "268.24000", + "feature": { + "word": "who" + }, + "id": 506, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.24000", + "end": "268.56000", + "feature": { + "word": "fired" + }, + "id": 507, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.56000", + "end": "268.62000", + "feature": { + "word": "the" + }, + "id": 508, + "attype": "vanilla-forced-alignment" + }, + { + "start": "268.62000", + "end": "269.13000", + "feature": { + "word": "missiles" + }, + "id": 509, + "attype": "vanilla-forced-alignment" + }, + { + "start": "269.47000", + "end": "269.96000", + "feature": { + "word": "meanwhile" + }, + "id": 511, + "attype": "vanilla-forced-alignment" + }, + { + "start": "269.96000", + "end": "270.36000", + "feature": { + "word": "president" + }, + "id": 512, + "attype": "vanilla-forced-alignment" + }, + { + "start": "270.36000", + "end": "270.76000", + "feature": { + "word": "reagan" + }, + "id": 513, + "attype": "vanilla-forced-alignment" + }, + { + "start": "270.76000", + "end": "270.99000", + "feature": { + "word": "told" + }, + "id": 514, + "attype": "vanilla-forced-alignment" + }, + { + "start": "270.99000", + "end": "271.05000", + "feature": { + "word": "a" + }, + "id": 515, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.05000", + "end": "271.29000", + "feature": { + "word": "group" + }, + "id": 516, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.29000", + "end": "271.40000", + "feature": { + "word": "of" + }, + "id": 517, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.40000", + "end": "271.73000", + "feature": { + "word": "energy" + }, + "id": 518, + "attype": "vanilla-forced-alignment" + }, + { + "start": "271.73000", + "end": "272.43000", + "feature": { + "word": "executives" + }, + "id": 519, + "attype": "vanilla-forced-alignment" + }, + { + "start": "272.52000", + "end": "272.83000", + "feature": { + "word": "he" + }, + "id": 521, + "attype": "vanilla-forced-alignment" + }, + { + "start": "272.83000", + "end": "272.99000", + "feature": { + "word": "did" + }, + "id": 522, + "attype": "vanilla-forced-alignment" + }, + { + "start": "272.99000", + "end": "273.25000", + "feature": { + "word": "not" + }, + "id": 523, + "attype": "vanilla-forced-alignment" + }, + { + "start": "273.25000", + "end": "273.69000", + "feature": { + "word": "intend" + }, + "id": 524, + "attype": "vanilla-forced-alignment" + }, + { + "start": "273.69000", + "end": "273.85000", + "feature": { + "word": "to" + }, + "id": 525, + "attype": "vanilla-forced-alignment" + }, + { + "start": "273.85000", + "end": "274.34000", + "feature": { + "word": "abandon" + }, + "id": 526, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.34000", + "end": "274.43000", + "feature": { + "word": "the" + }, + "id": 527, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.43000", + "end": "274.64000", + "feature": { + "word": "u" + }, + "id": 528, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.64000", + "end": "274.79000", + "feature": { + "word": "s" + }, + "id": 529, + "attype": "vanilla-forced-alignment" + }, + { + "start": "274.79000", + "end": "275.35000", + "feature": { + "word": "military" + }, + "id": 530, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.35000", + "end": "275.75000", + "feature": { + "word": "mission" + }, + "id": 531, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.75000", + "end": "275.87000", + "feature": { + "word": "in" + }, + "id": 532, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.87000", + "end": "275.98000", + "feature": { + "word": "the" + }, + "id": 533, + "attype": "vanilla-forced-alignment" + }, + { + "start": "275.98000", + "end": "276.31000", + "feature": { + "word": "gulf" + }, + "id": 534, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.22000", + "end": "277.48000", + "feature": { + "word": "let" + }, + "id": 536, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.48000", + "end": "277.59000", + "feature": { + "word": "no" + }, + "id": 537, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.59000", + "end": "277.87000", + "feature": { + "word": "one" + }, + "id": 538, + "attype": "vanilla-forced-alignment" + }, + { + "start": "277.87000", + "end": "278.16000", + "feature": { + "word": "doubt" + }, + "id": 539, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.16000", + "end": "278.30000", + "feature": { + "word": "our" + }, + "id": 540, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.30000", + "end": "278.82000", + "feature": { + "word": "resolve" + }, + "id": 541, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.82000", + "end": "278.93000", + "feature": { + "word": "to" + }, + "id": 542, + "attype": "vanilla-forced-alignment" + }, + { + "start": "278.93000", + "end": "279.45000", + "feature": { + "word": "protect" + }, + "id": 543, + "attype": "vanilla-forced-alignment" + }, + { + "start": "279.45000", + "end": "279.59000", + "feature": { + "word": "our" + }, + "id": 544, + "attype": "vanilla-forced-alignment" + }, + { + "start": "279.59000", + "end": "279.96000", + "feature": { + "word": "vital" + }, + "id": 545, + "attype": "vanilla-forced-alignment" + }, + { + "start": "279.96000", + "end": "280.48000", + "feature": { + "word": "interests" + }, + "id": 546, + "attype": "vanilla-forced-alignment" + }, + { + "start": "280.70000", + "end": "280.82000", + "feature": { + "word": "in" + }, + "id": 548, + "attype": "vanilla-forced-alignment" + }, + { + "start": "280.82000", + "end": "280.91000", + "feature": { + "word": "the" + }, + "id": 549, + "attype": "vanilla-forced-alignment" + }, + { + "start": "280.91000", + "end": "281.36000", + "feature": { + "word": "persian" + }, + "id": 550, + "attype": "vanilla-forced-alignment" + }, + { + "start": "281.36000", + "end": "281.75000", + "feature": { + "word": "gulf" + }, + "id": 551, + "attype": "vanilla-forced-alignment" + }, + { + "start": "281.75000", + "end": "281.93000", + "feature": { + "word": "or" + }, + "id": 552, + "attype": "vanilla-forced-alignment" + }, + { + "start": "281.97000", + "end": "282.40000", + "feature": { + "word": "anywhere" + }, + "id": 554, + "attype": "vanilla-forced-alignment" + }, + { + "start": "282.40000", + "end": "282.83000", + "feature": { + "word": "else" + }, + "id": 555, + "attype": "vanilla-forced-alignment" + }, + { + "start": "283.98000", + "end": "284.12000", + "feature": { + "word": "the" + }, + "id": 557, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.12000", + "end": "284.44000", + "feature": { + "word": "gulf" + }, + "id": 558, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.44000", + "end": "284.55000", + "feature": { + "word": "is" + }, + "id": 559, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.55000", + "end": "284.65000", + "feature": { + "word": "a" + }, + "id": 560, + "attype": "vanilla-forced-alignment" + }, + { + "start": "284.65000", + "end": "285.26000", + "feature": { + "word": "particularly" + }, + "id": 561, + "attype": "vanilla-forced-alignment" + }, + { + "start": "285.26000", + "end": "285.81000", + "feature": { + "word": "volatile" + }, + "id": 562, + "attype": "vanilla-forced-alignment" + }, + { + "start": "285.81000", + "end": "286.27000", + "feature": { + "word": "area" + }, + "id": 563, + "attype": "vanilla-forced-alignment" + }, + { + "start": "287.83000", + "end": "287.96000", + "feature": { + "word": "but" + }, + "id": 565, + "attype": "vanilla-forced-alignment" + }, + { + "start": "287.96000", + "end": "288.08000", + "feature": { + "word": "an" + }, + "id": 566, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.08000", + "end": "288.32000", + "feature": { + "word": "area" + }, + "id": 567, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.32000", + "end": "288.43000", + "feature": { + "word": "of" + }, + "id": 568, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.43000", + "end": "288.84000", + "feature": { + "word": "utmost" + }, + "id": 569, + "attype": "vanilla-forced-alignment" + }, + { + "start": "288.84000", + "end": "289.35000", + "feature": { + "word": "importance" + }, + "id": 570, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.35000", + "end": "289.55000", + "feature": { + "word": "to" + }, + "id": 571, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.55000", + "end": "289.76000", + "feature": { + "word": "us" + }, + "id": 572, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.76000", + "end": "289.82000", + "feature": { + "word": "and" + }, + "id": 573, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.82000", + "end": "289.88000", + "feature": { + "word": "to" + }, + "id": 574, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.88000", + "end": "289.98000", + "feature": { + "word": "the" + }, + "id": 575, + "attype": "vanilla-forced-alignment" + }, + { + "start": "289.98000", + "end": "290.23000", + "feature": { + "word": "free" + }, + "id": 576, + "attype": "vanilla-forced-alignment" + }, + { + "start": "290.23000", + "end": "290.62000", + "feature": { + "word": "world" + }, + "id": 577, + "attype": "vanilla-forced-alignment" + }, + { + "start": "291.64000", + "end": "291.80000", + "feature": { + "word": "our" + }, + "id": 579, + "attype": "vanilla-forced-alignment" + }, + { + "start": "291.80000", + "end": "292.08000", + "feature": { + "word": "fleet" + }, + "id": 580, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.08000", + "end": "292.25000", + "feature": { + "word": "has" + }, + "id": 581, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.25000", + "end": "292.43000", + "feature": { + "word": "been" + }, + "id": 582, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.43000", + "end": "292.63000", + "feature": { + "word": "there" + }, + "id": 583, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.63000", + "end": "292.79000", + "feature": { + "word": "for" + }, + "id": 584, + "attype": "vanilla-forced-alignment" + }, + { + "start": "292.79000", + "end": "293.14000", + "feature": { + "word": "almost" + }, + "id": 585, + "attype": "vanilla-forced-alignment" + }, + { + "start": "293.14000", + "end": "293.42000", + "feature": { + "word": "" + }, + "id": 586, + "attype": "vanilla-forced-alignment" + }, + { + "start": "293.42000", + "end": "294.09000", + "feature": { + "word": "years" + }, + "id": 587, + "attype": "vanilla-forced-alignment" + }, + { + "start": "294.67000", + "end": "295.02000", + "feature": { + "word": "helping" + }, + "id": 589, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.02000", + "end": "295.15000", + "feature": { + "word": "to" + }, + "id": 590, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.15000", + "end": "295.50000", + "feature": { + "word": "ensure" + }, + "id": 591, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.50000", + "end": "295.87000", + "feature": { + "word": "freedom" + }, + "id": 592, + "attype": "vanilla-forced-alignment" + }, + { + "start": "295.87000", + "end": "296.00000", + "feature": { + "word": "of" + }, + "id": 593, + "attype": "vanilla-forced-alignment" + }, + { + "start": "296.00000", + "end": "296.66000", + "feature": { + "word": "navigation" + }, + "id": 594, + "attype": "vanilla-forced-alignment" + }, + { + "start": "296.66000", + "end": "296.82000", + "feature": { + "word": "and" + }, + "id": 595, + "attype": "vanilla-forced-alignment" + }, + { + "start": "296.82000", + "end": "297.23000", + "feature": { + "word": "protect" + }, + "id": 596, + "attype": "vanilla-forced-alignment" + }, + { + "start": "297.23000", + "end": "297.83000", + "feature": { + "word": "commerce" + }, + "id": 597, + "attype": "vanilla-forced-alignment" + }, + { + "start": "298.73000", + "end": "299.26000", + "feature": { + "word": "achieving" + }, + "id": 599, + "attype": "vanilla-forced-alignment" + }, + { + "start": "299.26000", + "end": "299.51000", + "feature": { + "word": "this" + }, + "id": 600, + "attype": "vanilla-forced-alignment" + }, + { + "start": "299.51000", + "end": "300.01000", + "feature": { + "word": "requires" + }, + "id": 601, + "attype": "vanilla-forced-alignment" + }, + { + "start": "300.01000", + "end": "300.72000", + "feature": { + "word": "american" + }, + "id": 602, + "attype": "vanilla-forced-alignment" + }, + { + "start": "300.72000", + "end": "301.37000", + "feature": { + "word": "military" + }, + "id": 603, + "attype": "vanilla-forced-alignment" + }, + { + "start": "301.37000", + "end": "301.55000", + "feature": { + "word": "and" + }, + "id": 604, + "attype": "vanilla-forced-alignment" + }, + { + "start": "301.55000", + "end": "301.93000", + "feature": { + "word": "political" + }, + "id": 605, + "attype": "vanilla-forced-alignment" + }, + { + "start": "301.93000", + "end": "302.44000", + "feature": { + "word": "strength" + }, + "id": 606, + "attype": "vanilla-forced-alignment" + }, + { + "start": "303.21000", + "end": "303.32000", + "feature": { + "word": "the" + }, + "id": 608, + "attype": "vanilla-forced-alignment" + }, + { + "start": "303.32000", + "end": "304.05000", + "feature": { + "word": "cooperation" + }, + "id": 609, + "attype": "vanilla-forced-alignment" + }, + { + "start": "304.05000", + "end": "304.17000", + "feature": { + "word": "of" + }, + "id": 610, + "attype": "vanilla-forced-alignment" + }, + { + "start": "304.17000", + "end": "304.34000", + "feature": { + "word": "our" + }, + "id": 611, + "attype": "vanilla-forced-alignment" + }, + { + "start": "304.34000", + "end": "305.02000", + "feature": { + "word": "allies" + }, + "id": 612, + "attype": "vanilla-forced-alignment" + }, + { + "start": "305.74000", + "end": "306.02000", + "feature": { + "word": "as" + }, + "id": 614, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.02000", + "end": "306.25000", + "feature": { + "word": "well" + }, + "id": 615, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.25000", + "end": "306.38000", + "feature": { + "word": "as" + }, + "id": 616, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.38000", + "end": "306.89000", + "feature": { + "word": "economic" + }, + "id": 617, + "attype": "vanilla-forced-alignment" + }, + { + "start": "306.89000", + "end": "307.29000", + "feature": { + "word": "strength" + }, + "id": 618, + "attype": "vanilla-forced-alignment" + }, + { + "start": "307.29000", + "end": "307.39000", + "feature": { + "word": "and" + }, + "id": 619, + "attype": "vanilla-forced-alignment" + }, + { + "start": "307.39000", + "end": "308.01000", + "feature": { + "word": "independence" + }, + "id": 620, + "attype": "vanilla-forced-alignment" + }, + { + "start": "308.01000", + "end": "308.64000", + "feature": { + "word": "especially" + }, + "id": 621, + "attype": "vanilla-forced-alignment" + }, + { + "start": "308.64000", + "end": "308.86000", + "feature": { + "word": "on" + }, + "id": 622, + "attype": "vanilla-forced-alignment" + }, + { + "start": "309.13000", + "end": "309.55000", + "feature": { + "word": "matters" + }, + "id": 624, + "attype": "vanilla-forced-alignment" + }, + { + "start": "309.55000", + "end": "310.06000", + "feature": { + "word": "concerning" + }, + "id": 625, + "attype": "vanilla-forced-alignment" + }, + { + "start": "310.06000", + "end": "310.50000", + "feature": { + "word": "energy" + }, + "id": 626, + "attype": "vanilla-forced-alignment" + }, + { + "start": "311.07000", + "end": "311.49000", + "feature": { + "word": "one" + }, + "id": 628, + "attype": "vanilla-forced-alignment" + }, + { + "start": "311.49000", + "end": "312.02000", + "feature": { + "word": "political" + }, + "id": 629, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.02000", + "end": "312.45000", + "feature": { + "word": "victim" + }, + "id": 630, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.45000", + "end": "312.56000", + "feature": { + "word": "of" + }, + "id": 631, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.56000", + "end": "312.64000", + "feature": { + "word": "the" + }, + "id": 632, + "attype": "vanilla-forced-alignment" + }, + { + "start": "312.64000", + "end": "313.03000", + "feature": { + "word": "stark" + }, + "id": 633, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.03000", + "end": "313.50000", + "feature": { + "word": "attack" + }, + "id": 634, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.50000", + "end": "313.69000", + "feature": { + "word": "may" + }, + "id": 635, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.69000", + "end": "313.88000", + "feature": { + "word": "be" + }, + "id": 636, + "attype": "vanilla-forced-alignment" + }, + { + "start": "313.88000", + "end": "314.19000", + "feature": { + "word": "a" + }, + "id": 637, + "attype": "vanilla-forced-alignment" + }, + { + "start": "314.19000", + "end": "314.71000", + "feature": { + "word": "planned" + }, + "id": 638, + "attype": "vanilla-forced-alignment" + }, + { + "start": "314.71000", + "end": "315.22000", + "feature": { + "word": "sale" + }, + "id": 639, + "attype": "vanilla-forced-alignment" + }, + { + "start": "315.22000", + "end": "315.33000", + "feature": { + "word": "of" + }, + "id": 640, + "attype": "vanilla-forced-alignment" + }, + { + "start": "315.36000", + "end": "315.92000", + "feature": { + "word": "" + }, + "id": 642, + "attype": "vanilla-forced-alignment" + }, + { + "start": "315.92000", + "end": "316.12000", + "feature": { + "word": "f" + }, + "id": 643, + "attype": "vanilla-forced-alignment" + }, + { + "start": "316.15000", + "end": "316.62000", + "feature": { + "word": "" + }, + "id": 645, + "attype": "vanilla-forced-alignment" + }, + { + "start": "316.62000", + "end": "317.14000", + "feature": { + "word": "fighters" + }, + "id": 646, + "attype": "vanilla-forced-alignment" + }, + { + "start": "317.14000", + "end": "317.27000", + "feature": { + "word": "to" + }, + "id": 647, + "attype": "vanilla-forced-alignment" + }, + { + "start": "317.27000", + "end": "317.61000", + "feature": { + "word": "saudi" + }, + "id": 648, + "attype": "vanilla-forced-alignment" + }, + { + "start": "317.61000", + "end": "318.11000", + "feature": { + "word": "arabia" + }, + "id": 649, + "attype": "vanilla-forced-alignment" + }, + { + "start": "318.39000", + "end": "318.68000", + "feature": { + "word": "white" + }, + "id": 651, + "attype": "vanilla-forced-alignment" + }, + { + "start": "318.68000", + "end": "318.87000", + "feature": { + "word": "house" + }, + "id": 652, + "attype": "vanilla-forced-alignment" + }, + { + "start": "318.87000", + "end": "319.31000", + "feature": { + "word": "spokesman" + }, + "id": 653, + "attype": "vanilla-forced-alignment" + }, + { + "start": "319.31000", + "end": "319.65000", + "feature": { + "word": "marlon" + }, + "id": 654, + "attype": "vanilla-forced-alignment" + }, + { + "start": "319.65000", + "end": "320.28000", + "feature": { + "word": "fitzwater" + }, + "id": 655, + "attype": "vanilla-forced-alignment" + }, + { + "start": "320.28000", + "end": "320.47000", + "feature": { + "word": "said" + }, + "id": 656, + "attype": "vanilla-forced-alignment" + }, + { + "start": "320.47000", + "end": "320.56000", + "feature": { + "word": "the" + }, + "id": 657, + "attype": "vanilla-forced-alignment" + }, + { + "start": "320.56000", + "end": "321.34000", + "feature": { + "word": "administration" + }, + "id": 658, + "attype": "vanilla-forced-alignment" + }, + { + "start": "321.34000", + "end": "321.52000", + "feature": { + "word": "would" + }, + "id": 659, + "attype": "vanilla-forced-alignment" + }, + { + "start": "321.52000", + "end": "321.75000", + "feature": { + "word": "now" + }, + "id": 660, + "attype": "vanilla-forced-alignment" + }, + { + "start": "321.75000", + "end": "322.13000", + "feature": { + "word": "delay" + }, + "id": 661, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.13000", + "end": "322.51000", + "feature": { + "word": "sending" + }, + "id": 662, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.51000", + "end": "322.60000", + "feature": { + "word": "the" + }, + "id": 663, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.60000", + "end": "322.91000", + "feature": { + "word": "sale" + }, + "id": 664, + "attype": "vanilla-forced-alignment" + }, + { + "start": "322.91000", + "end": "323.33000", + "feature": { + "word": "request" + }, + "id": 665, + "attype": "vanilla-forced-alignment" + }, + { + "start": "323.33000", + "end": "323.41000", + "feature": { + "word": "to" + }, + "id": 666, + "attype": "vanilla-forced-alignment" + }, + { + "start": "323.41000", + "end": "323.98000", + "feature": { + "word": "congress" + }, + "id": 667, + "attype": "vanilla-forced-alignment" + }, + { + "start": "324.01000", + "end": "324.97000", + "feature": { + "word": "indefinitely" + }, + "id": 669, + "attype": "vanilla-forced-alignment" + }, + { + "start": "325.30000", + "end": "325.42000", + "feature": { + "word": "the" + }, + "id": 671, + "attype": "vanilla-forced-alignment" + }, + { + "start": "325.42000", + "end": "325.86000", + "feature": { + "word": "saudis" + }, + "id": 672, + "attype": "vanilla-forced-alignment" + }, + { + "start": "325.86000", + "end": "326.27000", + "feature": { + "word": "declined" + }, + "id": 673, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.27000", + "end": "326.40000", + "feature": { + "word": "to" + }, + "id": 674, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.40000", + "end": "326.89000", + "feature": { + "word": "intercept" + }, + "id": 675, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.89000", + "end": "326.96000", + "feature": { + "word": "the" + }, + "id": 676, + "attype": "vanilla-forced-alignment" + }, + { + "start": "326.96000", + "end": "327.37000", + "feature": { + "word": "iraqi" + }, + "id": 677, + "attype": "vanilla-forced-alignment" + }, + { + "start": "327.37000", + "end": "327.70000", + "feature": { + "word": "plane" + }, + "id": 678, + "attype": "vanilla-forced-alignment" + }, + { + "start": "327.70000", + "end": "328.03000", + "feature": { + "word": "sunday" + }, + "id": 679, + "attype": "vanilla-forced-alignment" + }, + { + "start": "328.03000", + "end": "328.37000", + "feature": { + "word": "night" + }, + "id": 680, + "attype": "vanilla-forced-alignment" + }, + { + "start": "328.59000", + "end": "328.93000", + "feature": { + "word": "after" + }, + "id": 682, + "attype": "vanilla-forced-alignment" + }, + { + "start": "328.93000", + "end": "329.04000", + "feature": { + "word": "the" + }, + "id": 683, + "attype": "vanilla-forced-alignment" + }, + { + "start": "329.04000", + "end": "329.43000", + "feature": { + "word": "stark" + }, + "id": 684, + "attype": "vanilla-forced-alignment" + }, + { + "start": "329.43000", + "end": "330.02000", + "feature": { + "word": "attack" + }, + "id": 685, + "attype": "vanilla-forced-alignment" + }, + { + "start": "330.35000", + "end": "330.85000", + "feature": { + "word": "also" + }, + "id": 687, + "attype": "vanilla-forced-alignment" + }, + { + "start": "330.85000", + "end": "331.23000", + "feature": { + "word": "today" + }, + "id": 688, + "attype": "vanilla-forced-alignment" + }, + { + "start": "331.23000", + "end": "331.68000", + "feature": { + "word": "assistant" + }, + "id": 689, + "attype": "vanilla-forced-alignment" + }, + { + "start": "331.68000", + "end": "332.21000", + "feature": { + "word": "secretary" + }, + "id": 690, + "attype": "vanilla-forced-alignment" + }, + { + "start": "332.21000", + "end": "332.33000", + "feature": { + "word": "of" + }, + "id": 691, + "attype": "vanilla-forced-alignment" + }, + { + "start": "332.33000", + "end": "332.74000", + "feature": { + "word": "state" + }, + "id": 692, + "attype": "vanilla-forced-alignment" + }, + { + "start": "332.74000", + "end": "333.11000", + "feature": { + "word": "richard" + }, + "id": 693, + "attype": "vanilla-forced-alignment" + }, + { + "start": "333.11000", + "end": "333.53000", + "feature": { + "word": "murphy" + }, + "id": 694, + "attype": "vanilla-forced-alignment" + }, + { + "start": "333.53000", + "end": "334.28000", + "feature": { + "word": "briefed" + }, + "id": 695, + "attype": "vanilla-forced-alignment" + }, + { + "start": "334.28000", + "end": "334.89000", + "feature": { + "word": "reporters" + }, + "id": 696, + "attype": "vanilla-forced-alignment" + }, + { + "start": "334.89000", + "end": "335.07000", + "feature": { + "word": "on" + }, + "id": 697, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.07000", + "end": "335.19000", + "feature": { + "word": "the" + }, + "id": 698, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.19000", + "end": "335.58000", + "feature": { + "word": "risk" + }, + "id": 699, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.58000", + "end": "335.81000", + "feature": { + "word": "to" + }, + "id": 700, + "attype": "vanilla-forced-alignment" + }, + { + "start": "335.81000", + "end": "336.04000", + "feature": { + "word": "u" + }, + "id": 701, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.04000", + "end": "336.15000", + "feature": { + "word": "s" + }, + "id": 702, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.15000", + "end": "336.60000", + "feature": { + "word": "forces" + }, + "id": 703, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.60000", + "end": "336.71000", + "feature": { + "word": "in" + }, + "id": 704, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.71000", + "end": "336.78000", + "feature": { + "word": "the" + }, + "id": 705, + "attype": "vanilla-forced-alignment" + }, + { + "start": "336.78000", + "end": "337.20000", + "feature": { + "word": "persian" + }, + "id": 706, + "attype": "vanilla-forced-alignment" + }, + { + "start": "337.20000", + "end": "337.77000", + "feature": { + "word": "gulf" + }, + "id": 707, + "attype": "vanilla-forced-alignment" + }, + { + "start": "337.86000", + "end": "337.99000", + "feature": { + "word": "he" + }, + "id": 709, + "attype": "vanilla-forced-alignment" + }, + { + "start": "337.99000", + "end": "338.22000", + "feature": { + "word": "said" + }, + "id": 710, + "attype": "vanilla-forced-alignment" + }, + { + "start": "338.22000", + "end": "338.31000", + "feature": { + "word": "the" + }, + "id": 711, + "attype": "vanilla-forced-alignment" + }, + { + "start": "338.31000", + "end": "338.66000", + "feature": { + "word": "main" + }, + "id": 712, + "attype": "vanilla-forced-alignment" + }, + { + "start": "338.66000", + "end": "339.06000", + "feature": { + "word": "threat" + }, + "id": 713, + "attype": "vanilla-forced-alignment" + }, + { + "start": "339.06000", + "end": "339.30000", + "feature": { + "word": "came" + }, + "id": 714, + "attype": "vanilla-forced-alignment" + }, + { + "start": "339.30000", + "end": "339.46000", + "feature": { + "word": "from" + }, + "id": 715, + "attype": "vanilla-forced-alignment" + }, + { + "start": "339.46000", + "end": "339.95000", + "feature": { + "word": "iran" + }, + "id": 716, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.20000", + "end": "340.33000", + "feature": { + "word": "but" + }, + "id": 718, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.33000", + "end": "340.45000", + "feature": { + "word": "he" + }, + "id": 719, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.45000", + "end": "340.66000", + "feature": { + "word": "did" + }, + "id": 720, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.66000", + "end": "340.96000", + "feature": { + "word": "not" + }, + "id": 721, + "attype": "vanilla-forced-alignment" + }, + { + "start": "340.96000", + "end": "341.23000", + "feature": { + "word": "think" + }, + "id": 722, + "attype": "vanilla-forced-alignment" + }, + { + "start": "341.23000", + "end": "341.34000", + "feature": { + "word": "they" + }, + "id": 723, + "attype": "vanilla-forced-alignment" + }, + { + "start": "341.34000", + "end": "341.53000", + "feature": { + "word": "would" + }, + "id": 724, + "attype": "vanilla-forced-alignment" + }, + { + "start": "341.53000", + "end": "342.01000", + "feature": { + "word": "attack" + }, + "id": 725, + "attype": "vanilla-forced-alignment" + }, + { + "start": "342.01000", + "end": "342.21000", + "feature": { + "word": "u" + }, + "id": 726, + "attype": "vanilla-forced-alignment" + }, + { + "start": "342.21000", + "end": "342.32000", + "feature": { + "word": "s" + }, + "id": 727, + "attype": "vanilla-forced-alignment" + }, + { + "start": "342.32000", + "end": "342.87000", + "feature": { + "word": "ships" + }, + "id": 728, + "attype": "vanilla-forced-alignment" + }, + { + "start": "343.33000", + "end": "343.49000", + "feature": { + "word": "we" + }, + "id": 730, + "attype": "vanilla-forced-alignment" + }, + { + "start": "343.49000", + "end": "343.88000", + "feature": { + "word": "cannot" + }, + "id": 731, + "attype": "vanilla-forced-alignment" + }, + { + "start": "343.88000", + "end": "344.00000", + "feature": { + "word": "be" + }, + "id": 732, + "attype": "vanilla-forced-alignment" + }, + { + "start": "344.00000", + "end": "344.39000", + "feature": { + "word": "totally" + }, + "id": 733, + "attype": "vanilla-forced-alignment" + }, + { + "start": "344.39000", + "end": "344.84000", + "feature": { + "word": "sure" + }, + "id": 734, + "attype": "vanilla-forced-alignment" + }, + { + "start": "346.34000", + "end": "346.48000", + "feature": { + "word": "of" + }, + "id": 736, + "attype": "vanilla-forced-alignment" + }, + { + "start": "346.48000", + "end": "346.86000", + "feature": { + "word": "anything" + }, + "id": 737, + "attype": "vanilla-forced-alignment" + }, + { + "start": "346.86000", + "end": "347.00000", + "feature": { + "word": "where" + }, + "id": 738, + "attype": "vanilla-forced-alignment" + }, + { + "start": "347.00000", + "end": "347.40000", + "feature": { + "word": "iran" + }, + "id": 739, + "attype": "vanilla-forced-alignment" + }, + { + "start": "347.40000", + "end": "347.52000", + "feature": { + "word": "is" + }, + "id": 740, + "attype": "vanilla-forced-alignment" + }, + { + "start": "347.52000", + "end": "348.18000", + "feature": { + "word": "concerned" + }, + "id": 741, + "attype": "vanilla-forced-alignment" + }, + { + "start": "348.37000", + "end": "349.07000", + "feature": { + "word": "iran" + }, + "id": 743, + "attype": "vanilla-forced-alignment" + }, + { + "start": "349.34000", + "end": "349.68000", + "feature": { + "word": "first" + }, + "id": 745, + "attype": "vanilla-forced-alignment" + }, + { + "start": "349.68000", + "end": "349.78000", + "feature": { + "word": "of" + }, + "id": 746, + "attype": "vanilla-forced-alignment" + }, + { + "start": "349.78000", + "end": "350.01000", + "feature": { + "word": "all" + }, + "id": 747, + "attype": "vanilla-forced-alignment" + }, + { + "start": "350.01000", + "end": "350.24000", + "feature": { + "word": "has" + }, + "id": 748, + "attype": "vanilla-forced-alignment" + }, + { + "start": "350.24000", + "end": "350.69000", + "feature": { + "word": "not" + }, + "id": 749, + "attype": "vanilla-forced-alignment" + }, + { + "start": "352.41000", + "end": "352.91000", + "feature": { + "word": "previously" + }, + "id": 751, + "attype": "vanilla-forced-alignment" + }, + { + "start": "352.91000", + "end": "353.54000", + "feature": { + "word": "attacked" + }, + "id": 752, + "attype": "vanilla-forced-alignment" + }, + { + "start": "353.54000", + "end": "354.04000", + "feature": { + "word": "american" + }, + "id": 753, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.04000", + "end": "354.48000", + "feature": { + "word": "military" + }, + "id": 754, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.48000", + "end": "354.79000", + "feature": { + "word": "vessel" + }, + "id": 755, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.86000", + "end": "354.96000", + "feature": { + "word": "in" + }, + "id": 757, + "attype": "vanilla-forced-alignment" + }, + { + "start": "354.96000", + "end": "355.05000", + "feature": { + "word": "the" + }, + "id": 758, + "attype": "vanilla-forced-alignment" + }, + { + "start": "355.05000", + "end": "355.54000", + "feature": { + "word": "gulf" + }, + "id": 759, + "attype": "vanilla-forced-alignment" + }, + { + "start": "355.76000", + "end": "356.64000", + "feature": { + "word": "additionally" + }, + "id": 761, + "attype": "vanilla-forced-alignment" + }, + { + "start": "356.64000", + "end": "356.79000", + "feature": { + "word": "there" + }, + "id": 762, + "attype": "vanilla-forced-alignment" + }, + { + "start": "356.79000", + "end": "356.89000", + "feature": { + "word": "have" + }, + "id": 763, + "attype": "vanilla-forced-alignment" + }, + { + "start": "356.89000", + "end": "357.04000", + "feature": { + "word": "been" + }, + "id": 764, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.04000", + "end": "357.11000", + "feature": { + "word": "a" + }, + "id": 765, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.11000", + "end": "357.60000", + "feature": { + "word": "series" + }, + "id": 766, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.60000", + "end": "357.72000", + "feature": { + "word": "of" + }, + "id": 767, + "attype": "vanilla-forced-alignment" + }, + { + "start": "357.72000", + "end": "358.10000", + "feature": { + "word": "official" + }, + "id": 768, + "attype": "vanilla-forced-alignment" + }, + { + "start": "358.10000", + "end": "358.61000", + "feature": { + "word": "statements" + }, + "id": 769, + "attype": "vanilla-forced-alignment" + }, + { + "start": "358.61000", + "end": "358.76000", + "feature": { + "word": "by" + }, + "id": 770, + "attype": "vanilla-forced-alignment" + }, + { + "start": "358.76000", + "end": "359.27000", + "feature": { + "word": "iranian" + }, + "id": 771, + "attype": "vanilla-forced-alignment" + }, + { + "start": "359.27000", + "end": "359.96000", + "feature": { + "word": "officials" + }, + "id": 772, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.44000", + "end": "361.62000", + "feature": { + "word": "that" + }, + "id": 774, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.62000", + "end": "361.74000", + "feature": { + "word": "they" + }, + "id": 775, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.74000", + "end": "361.89000", + "feature": { + "word": "will" + }, + "id": 776, + "attype": "vanilla-forced-alignment" + }, + { + "start": "361.89000", + "end": "362.12000", + "feature": { + "word": "not" + }, + "id": 777, + "attype": "vanilla-forced-alignment" + }, + { + "start": "362.12000", + "end": "362.67000", + "feature": { + "word": "attack" + }, + "id": 778, + "attype": "vanilla-forced-alignment" + }, + { + "start": "362.67000", + "end": "363.00000", + "feature": { + "word": "unless" + }, + "id": 779, + "attype": "vanilla-forced-alignment" + }, + { + "start": "363.00000", + "end": "363.77000", + "feature": { + "word": "provoked" + }, + "id": 780, + "attype": "vanilla-forced-alignment" + }, + { + "start": "364.00000", + "end": "364.06000", + "feature": { + "word": "the" + }, + "id": 782, + "attype": "vanilla-forced-alignment" + }, + { + "start": "364.39000", + "end": "364.82000", + "feature": { + "word": "united" + }, + "id": 784, + "attype": "vanilla-forced-alignment" + }, + { + "start": "364.82000", + "end": "365.25000", + "feature": { + "word": "states" + }, + "id": 785, + "attype": "vanilla-forced-alignment" + }, + { + "start": "365.25000", + "end": "365.66000", + "feature": { + "word": "has" + }, + "id": 786, + "attype": "vanilla-forced-alignment" + }, + { + "start": "365.66000", + "end": "365.95000", + "feature": { + "word": "no" + }, + "id": 787, + "attype": "vanilla-forced-alignment" + }, + { + "start": "365.95000", + "end": "366.43000", + "feature": { + "word": "interest" + }, + "id": 788, + "attype": "vanilla-forced-alignment" + }, + { + "start": "366.43000", + "end": "366.61000", + "feature": { + "word": "in" + }, + "id": 789, + "attype": "vanilla-forced-alignment" + }, + { + "start": "366.61000", + "end": "367.40000", + "feature": { + "word": "provoking" + }, + "id": 790, + "attype": "vanilla-forced-alignment" + }, + { + "start": "367.43000", + "end": "368.01000", + "feature": { + "word": "iran" + }, + "id": 792, + "attype": "vanilla-forced-alignment" + }, + { + "start": "368.18000", + "end": "368.33000", + "feature": { + "word": "we" + }, + "id": 794, + "attype": "vanilla-forced-alignment" + }, + { + "start": "368.33000", + "end": "368.61000", + "feature": { + "word": "have" + }, + "id": 795, + "attype": "vanilla-forced-alignment" + }, + { + "start": "368.61000", + "end": "369.22000", + "feature": { + "word": "interests" + }, + "id": 796, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.43000", + "end": "369.54000", + "feature": { + "word": "and" + }, + "id": 798, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.54000", + "end": "369.57000", + "feature": { + "word": "a" + }, + "id": 799, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.57000", + "end": "369.78000", + "feature": { + "word": "very" + }, + "id": 800, + "attype": "vanilla-forced-alignment" + }, + { + "start": "369.78000", + "end": "370.45000", + "feature": { + "word": "strong" + }, + "id": 801, + "attype": "vanilla-forced-alignment" + }, + { + "start": "370.45000", + "end": "370.87000", + "feature": { + "word": "very" + }, + "id": 802, + "attype": "vanilla-forced-alignment" + }, + { + "start": "371.24000", + "end": "371.95000", + "feature": { + "word": "longstanding" + }, + "id": 804, + "attype": "vanilla-forced-alignment" + }, + { + "start": "371.95000", + "end": "372.52000", + "feature": { + "word": "historic" + }, + "id": 805, + "attype": "vanilla-forced-alignment" + }, + { + "start": "372.52000", + "end": "372.95000", + "feature": { + "word": "interest" + }, + "id": 806, + "attype": "vanilla-forced-alignment" + }, + { + "start": "372.95000", + "end": "373.08000", + "feature": { + "word": "in" + }, + "id": 807, + "attype": "vanilla-forced-alignment" + }, + { + "start": "373.08000", + "end": "373.42000", + "feature": { + "word": "freedom" + }, + "id": 808, + "attype": "vanilla-forced-alignment" + }, + { + "start": "373.42000", + "end": "373.49000", + "feature": { + "word": "of" + }, + "id": 809, + "attype": "vanilla-forced-alignment" + }, + { + "start": "373.49000", + "end": "374.22000", + "feature": { + "word": "navigation" + }, + "id": 810, + "attype": "vanilla-forced-alignment" + }, + { + "start": "374.71000", + "end": "374.86000", + "feature": { + "word": "and" + }, + "id": 812, + "attype": "vanilla-forced-alignment" + }, + { + "start": "374.86000", + "end": "375.56000", + "feature": { + "word": "access" + }, + "id": 813, + "attype": "vanilla-forced-alignment" + }, + { + "start": "375.96000", + "end": "376.29000", + "feature": { + "word": "for" + }, + "id": 815, + "attype": "vanilla-forced-alignment" + }, + { + "start": "376.29000", + "end": "376.87000", + "feature": { + "word": "free" + }, + "id": 816, + "attype": "vanilla-forced-alignment" + }, + { + "start": "376.87000", + "end": "377.09000", + "feature": { + "word": "flow" + }, + "id": 817, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.09000", + "end": "377.17000", + "feature": { + "word": "of" + }, + "id": 818, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.17000", + "end": "377.43000", + "feature": { + "word": "oil" + }, + "id": 819, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.43000", + "end": "377.66000", + "feature": { + "word": "through" + }, + "id": 820, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.66000", + "end": "377.78000", + "feature": { + "word": "the" + }, + "id": 821, + "attype": "vanilla-forced-alignment" + }, + { + "start": "377.78000", + "end": "378.04000", + "feature": { + "word": "strait" + }, + "id": 822, + "attype": "vanilla-forced-alignment" + }, + { + "start": "378.04000", + "end": "378.14000", + "feature": { + "word": "of" + }, + "id": 823, + "attype": "vanilla-forced-alignment" + }, + { + "start": "378.14000", + "end": "378.50000", + "feature": { + "word": "hormuz" + }, + "id": 824, + "attype": "vanilla-forced-alignment" + }, + { + "start": "379.57000", + "end": "379.68000", + "feature": { + "word": "the" + }, + "id": 826, + "attype": "vanilla-forced-alignment" + }, + { + "start": "379.68000", + "end": "380.11000", + "feature": { + "word": "senate" + }, + "id": 827, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.11000", + "end": "380.44000", + "feature": { + "word": "passed" + }, + "id": 828, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.44000", + "end": "380.52000", + "feature": { + "word": "an" + }, + "id": 829, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.52000", + "end": "380.99000", + "feature": { + "word": "amendment" + }, + "id": 830, + "attype": "vanilla-forced-alignment" + }, + { + "start": "380.99000", + "end": "381.42000", + "feature": { + "word": "today" + }, + "id": 831, + "attype": "vanilla-forced-alignment" + }, + { + "start": "381.42000", + "end": "381.59000", + "feature": { + "word": "that" + }, + "id": 832, + "attype": "vanilla-forced-alignment" + }, + { + "start": "381.59000", + "end": "381.77000", + "feature": { + "word": "would" + }, + "id": 833, + "attype": "vanilla-forced-alignment" + }, + { + "start": "381.77000", + "end": "382.56000", + "feature": { + "word": "temporarily" + }, + "id": 834, + "attype": "vanilla-forced-alignment" + }, + { + "start": "382.56000", + "end": "383.11000", + "feature": { + "word": "halt" + }, + "id": 835, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.11000", + "end": "383.45000", + "feature": { + "word": "putting" + }, + "id": 836, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.45000", + "end": "383.66000", + "feature": { + "word": "u" + }, + "id": 837, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.66000", + "end": "383.84000", + "feature": { + "word": "s" + }, + "id": 838, + "attype": "vanilla-forced-alignment" + }, + { + "start": "383.84000", + "end": "384.33000", + "feature": { + "word": "flags" + }, + "id": 839, + "attype": "vanilla-forced-alignment" + }, + { + "start": "384.33000", + "end": "384.53000", + "feature": { + "word": "on" + }, + "id": 840, + "attype": "vanilla-forced-alignment" + }, + { + "start": "384.53000", + "end": "385.03000", + "feature": { + "word": "kuwaiti" + }, + "id": 841, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.03000", + "end": "385.33000", + "feature": { + "word": "oil" + }, + "id": 842, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.33000", + "end": "385.78000", + "feature": { + "word": "tankers" + }, + "id": 843, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.78000", + "end": "385.93000", + "feature": { + "word": "in" + }, + "id": 844, + "attype": "vanilla-forced-alignment" + }, + { + "start": "385.93000", + "end": "386.05000", + "feature": { + "word": "the" + }, + "id": 845, + "attype": "vanilla-forced-alignment" + }, + { + "start": "386.05000", + "end": "386.72000", + "feature": { + "word": "gulf" + }, + "id": 846, + "attype": "vanilla-forced-alignment" + }, + { + "start": "386.76000", + "end": "386.85000", + "feature": { + "word": "the" + }, + "id": 848, + "attype": "vanilla-forced-alignment" + }, + { + "start": "386.85000", + "end": "387.58000", + "feature": { + "word": "administration" + }, + "id": 849, + "attype": "vanilla-forced-alignment" + }, + { + "start": "387.58000", + "end": "388.07000", + "feature": { + "word": "recently" + }, + "id": 850, + "attype": "vanilla-forced-alignment" + }, + { + "start": "388.07000", + "end": "388.52000", + "feature": { + "word": "announced" + }, + "id": 851, + "attype": "vanilla-forced-alignment" + }, + { + "start": "388.52000", + "end": "388.59000", + "feature": { + "word": "the" + }, + "id": 852, + "attype": "vanilla-forced-alignment" + }, + { + "start": "388.59000", + "end": "389.04000", + "feature": { + "word": "plan" + }, + "id": 853, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.04000", + "end": "389.12000", + "feature": { + "word": "to" + }, + "id": 854, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.12000", + "end": "389.56000", + "feature": { + "word": "protect" + }, + "id": 855, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.56000", + "end": "389.65000", + "feature": { + "word": "the" + }, + "id": 856, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.65000", + "end": "389.98000", + "feature": { + "word": "ships" + }, + "id": 857, + "attype": "vanilla-forced-alignment" + }, + { + "start": "389.98000", + "end": "390.17000", + "feature": { + "word": "from" + }, + "id": 858, + "attype": "vanilla-forced-alignment" + }, + { + "start": "390.17000", + "end": "390.59000", + "feature": { + "word": "attack" + }, + "id": 859, + "attype": "vanilla-forced-alignment" + }, + { + "start": "390.59000", + "end": "390.70000", + "feature": { + "word": "by" + }, + "id": 860, + "attype": "vanilla-forced-alignment" + }, + { + "start": "390.70000", + "end": "391.33000", + "feature": { + "word": "iran" + }, + "id": 861, + "attype": "vanilla-forced-alignment" + }, + { + "start": "391.70000", + "end": "392.03000", + "feature": { + "word": "today" + }, + "id": 863, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.03000", + "end": "392.10000", + "feature": { + "word": "s" + }, + "id": 864, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.10000", + "end": "392.36000", + "feature": { + "word": "senate" + }, + "id": 865, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.36000", + "end": "392.70000", + "feature": { + "word": "action" + }, + "id": 866, + "attype": "vanilla-forced-alignment" + }, + { + "start": "392.70000", + "end": "393.24000", + "feature": { + "word": "requires" + }, + "id": 867, + "attype": "vanilla-forced-alignment" + }, + { + "start": "393.24000", + "end": "393.34000", + "feature": { + "word": "the" + }, + "id": 868, + "attype": "vanilla-forced-alignment" + }, + { + "start": "393.34000", + "end": "393.93000", + "feature": { + "word": "president" + }, + "id": 869, + "attype": "vanilla-forced-alignment" + }, + { + "start": "393.93000", + "end": "394.03000", + "feature": { + "word": "to" + }, + "id": 870, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.03000", + "end": "394.33000", + "feature": { + "word": "send" + }, + "id": 871, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.33000", + "end": "394.85000", + "feature": { + "word": "congress" + }, + "id": 872, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.85000", + "end": "394.95000", + "feature": { + "word": "a" + }, + "id": 873, + "attype": "vanilla-forced-alignment" + }, + { + "start": "394.95000", + "end": "395.53000", + "feature": { + "word": "security" + }, + "id": 874, + "attype": "vanilla-forced-alignment" + }, + { + "start": "395.53000", + "end": "395.93000", + "feature": { + "word": "plan" + }, + "id": 875, + "attype": "vanilla-forced-alignment" + }, + { + "start": "395.93000", + "end": "396.13000", + "feature": { + "word": "for" + }, + "id": 876, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.13000", + "end": "396.38000", + "feature": { + "word": "u" + }, + "id": 877, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.38000", + "end": "396.56000", + "feature": { + "word": "s" + }, + "id": 878, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.56000", + "end": "396.65000", + "feature": { + "word": "and" + }, + "id": 879, + "attype": "vanilla-forced-alignment" + }, + { + "start": "396.65000", + "end": "397.04000", + "feature": { + "word": "allied" + }, + "id": 880, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.04000", + "end": "397.45000", + "feature": { + "word": "forces" + }, + "id": 881, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.45000", + "end": "397.60000", + "feature": { + "word": "in" + }, + "id": 882, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.60000", + "end": "397.71000", + "feature": { + "word": "the" + }, + "id": 883, + "attype": "vanilla-forced-alignment" + }, + { + "start": "397.71000", + "end": "398.31000", + "feature": { + "word": "gulf" + }, + "id": 884, + "attype": "vanilla-forced-alignment" + }, + { + "start": "398.37000", + "end": "398.92000", + "feature": { + "word": "before" + }, + "id": 886, + "attype": "vanilla-forced-alignment" + }, + { + "start": "398.92000", + "end": "399.68000", + "feature": { + "word": "reflagging" + }, + "id": 887, + "attype": "vanilla-forced-alignment" + }, + { + "start": "399.68000", + "end": "399.78000", + "feature": { + "word": "the" + }, + "id": 888, + "attype": "vanilla-forced-alignment" + }, + { + "start": "399.78000", + "end": "400.23000", + "feature": { + "word": "kuwaiti" + }, + "id": 889, + "attype": "vanilla-forced-alignment" + }, + { + "start": "400.23000", + "end": "400.79000", + "feature": { + "word": "ships" + }, + "id": 890, + "attype": "vanilla-forced-alignment" + }, + { + "start": "401.14000", + "end": "401.64000", + "feature": { + "word": "meanwhile" + }, + "id": 892, + "attype": "vanilla-forced-alignment" + }, + { + "start": "401.64000", + "end": "402.07000", + "feature": { + "word": "senator" + }, + "id": 893, + "attype": "vanilla-forced-alignment" + }, + { + "start": "402.07000", + "end": "402.44000", + "feature": { + "word": "sam" + }, + "id": 894, + "attype": "vanilla-forced-alignment" + }, + { + "start": "402.44000", + "end": "402.79000", + "feature": { + "word": "nunn" + }, + "id": 895, + "attype": "vanilla-forced-alignment" + }, + { + "start": "402.79000", + "end": "403.18000", + "feature": { + "word": "chairman" + }, + "id": 896, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.18000", + "end": "403.25000", + "feature": { + "word": "of" + }, + "id": 897, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.25000", + "end": "403.32000", + "feature": { + "word": "the" + }, + "id": 898, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.32000", + "end": "403.65000", + "feature": { + "word": "senate" + }, + "id": 899, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.65000", + "end": "403.89000", + "feature": { + "word": "arms" + }, + "id": 900, + "attype": "vanilla-forced-alignment" + }, + { + "start": "403.89000", + "end": "404.37000", + "feature": { + "word": "services" + }, + "id": 901, + "attype": "vanilla-forced-alignment" + }, + { + "start": "404.37000", + "end": "404.83000", + "feature": { + "word": "committee" + }, + "id": 902, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.02000", + "end": "405.29000", + "feature": { + "word": "said" + }, + "id": 904, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.29000", + "end": "405.39000", + "feature": { + "word": "the" + }, + "id": 905, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.39000", + "end": "405.76000", + "feature": { + "word": "threat" + }, + "id": 906, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.76000", + "end": "405.85000", + "feature": { + "word": "to" + }, + "id": 907, + "attype": "vanilla-forced-alignment" + }, + { + "start": "405.85000", + "end": "406.13000", + "feature": { + "word": "u" + }, + "id": 908, + "attype": "vanilla-forced-alignment" + }, + { + "start": "406.13000", + "end": "406.24000", + "feature": { + "word": "s" + }, + "id": 909, + "attype": "vanilla-forced-alignment" + }, + { + "start": "406.24000", + "end": "406.60000", + "feature": { + "word": "ships" + }, + "id": 910, + "attype": "vanilla-forced-alignment" + }, + { + "start": "406.60000", + "end": "407.10000", + "feature": { + "word": "described" + }, + "id": 911, + "attype": "vanilla-forced-alignment" + }, + { + "start": "407.10000", + "end": "407.27000", + "feature": { + "word": "by" + }, + "id": 912, + "attype": "vanilla-forced-alignment" + }, + { + "start": "407.27000", + "end": "407.82000", + "feature": { + "word": "secretary" + }, + "id": 913, + "attype": "vanilla-forced-alignment" + }, + { + "start": "407.82000", + "end": "408.30000", + "feature": { + "word": "murphy" + }, + "id": 914, + "attype": "vanilla-forced-alignment" + }, + { + "start": "408.45000", + "end": "408.62000", + "feature": { + "word": "is" + }, + "id": 916, + "attype": "vanilla-forced-alignment" + }, + { + "start": "408.62000", + "end": "409.11000", + "feature": { + "word": "serious" + }, + "id": 917, + "attype": "vanilla-forced-alignment" + }, + { + "start": "409.11000", + "end": "409.42000", + "feature": { + "word": "enough" + }, + "id": 918, + "attype": "vanilla-forced-alignment" + }, + { + "start": "409.42000", + "end": "409.59000", + "feature": { + "word": "to" + }, + "id": 919, + "attype": "vanilla-forced-alignment" + }, + { + "start": "409.59000", + "end": "410.07000", + "feature": { + "word": "invoke" + }, + "id": 920, + "attype": "vanilla-forced-alignment" + }, + { + "start": "410.11000", + "end": "410.29000", + "feature": { + "word": "the" + }, + "id": 922, + "attype": "vanilla-forced-alignment" + }, + { + "start": "410.29000", + "end": "410.57000", + "feature": { + "word": "war" + }, + "id": 923, + "attype": "vanilla-forced-alignment" + }, + { + "start": "410.57000", + "end": "411.07000", + "feature": { + "word": "powers" + }, + "id": 924, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.07000", + "end": "411.47000", + "feature": { + "word": "act" + }, + "id": 925, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.63000", + "end": "411.71000", + "feature": { + "word": "it" + }, + "id": 927, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.71000", + "end": "411.92000", + "feature": { + "word": "seems" + }, + "id": 928, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.92000", + "end": "411.98000", + "feature": { + "word": "to" + }, + "id": 929, + "attype": "vanilla-forced-alignment" + }, + { + "start": "411.98000", + "end": "412.18000", + "feature": { + "word": "me" + }, + "id": 930, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.18000", + "end": "412.30000", + "feature": { + "word": "if" + }, + "id": 931, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.30000", + "end": "412.63000", + "feature": { + "word": "indeed" + }, + "id": 932, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.63000", + "end": "412.72000", + "feature": { + "word": "top" + }, + "id": 933, + "attype": "vanilla-forced-alignment" + }, + { + "start": "412.72000", + "end": "413.62000", + "feature": { + "word": "officials" + }, + "id": 934, + "attype": "vanilla-forced-alignment" + }, + { + "start": "413.62000", + "end": "413.96000", + "feature": { + "word": "in" + }, + "id": 935, + "attype": "vanilla-forced-alignment" + }, + { + "start": "413.96000", + "end": "414.81000", + "feature": { + "word": "the" + }, + "id": 936, + "attype": "vanilla-forced-alignment" + }, + { + "start": "414.84000", + "end": "415.03000", + "feature": { + "word": "state" + }, + "id": 938, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.03000", + "end": "415.61000", + "feature": { + "word": "department" + }, + "id": 939, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.61000", + "end": "415.69000", + "feature": { + "word": "are" + }, + "id": 940, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.69000", + "end": "415.84000", + "feature": { + "word": "talking" + }, + "id": 941, + "attype": "vanilla-forced-alignment" + }, + { + "start": "415.84000", + "end": "416.06000", + "feature": { + "word": "about" + }, + "id": 942, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.06000", + "end": "416.12000", + "feature": { + "word": "the" + }, + "id": 943, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.12000", + "end": "416.41000", + "feature": { + "word": "united" + }, + "id": 944, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.41000", + "end": "416.80000", + "feature": { + "word": "states" + }, + "id": 945, + "attype": "vanilla-forced-alignment" + }, + { + "start": "416.80000", + "end": "417.29000", + "feature": { + "word": "and" + }, + "id": 946, + "attype": "vanilla-forced-alignment" + }, + { + "start": "417.29000", + "end": "417.87000", + "feature": { + "word": "iran" + }, + "id": 947, + "attype": "vanilla-forced-alignment" + }, + { + "start": "417.87000", + "end": "418.11000", + "feature": { + "word": "getting" + }, + "id": 948, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.11000", + "end": "418.31000", + "feature": { + "word": "into" + }, + "id": 949, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.31000", + "end": "418.37000", + "feature": { + "word": "a" + }, + "id": 950, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.37000", + "end": "418.71000", + "feature": { + "word": "war" + }, + "id": 951, + "attype": "vanilla-forced-alignment" + }, + { + "start": "418.71000", + "end": "419.05000", + "feature": { + "word": "based" + }, + "id": 952, + "attype": "vanilla-forced-alignment" + }, + { + "start": "419.05000", + "end": "419.21000", + "feature": { + "word": "on" + }, + "id": 953, + "attype": "vanilla-forced-alignment" + }, + { + "start": "419.21000", + "end": "419.80000", + "feature": { + "word": "our" + }, + "id": 954, + "attype": "vanilla-forced-alignment" + }, + { + "start": "419.83000", + "end": "420.30000", + "feature": { + "word": "latest" + }, + "id": 956, + "attype": "vanilla-forced-alignment" + }, + { + "start": "420.30000", + "end": "421.62000", + "feature": { + "word": "plan" + }, + "id": 957, + "attype": "vanilla-forced-alignment" + }, + { + "start": "421.65000", + "end": "422.68000", + "feature": { + "word": "to" + }, + "id": 959, + "attype": "vanilla-forced-alignment" + }, + { + "start": "422.71000", + "end": "422.91000", + "feature": { + "word": "help" + }, + "id": 961, + "attype": "vanilla-forced-alignment" + }, + { + "start": "422.91000", + "end": "423.48000", + "feature": { + "word": "transport" + }, + "id": 962, + "attype": "vanilla-forced-alignment" + }, + { + "start": "423.48000", + "end": "423.94000", + "feature": { + "word": "and" + }, + "id": 963, + "attype": "vanilla-forced-alignment" + }, + { + "start": "423.94000", + "end": "424.27000", + "feature": { + "word": "protect" + }, + "id": 964, + "attype": "vanilla-forced-alignment" + }, + { + "start": "424.27000", + "end": "424.43000", + "feature": { + "word": "those" + }, + "id": 965, + "attype": "vanilla-forced-alignment" + }, + { + "start": "424.43000", + "end": "424.86000", + "feature": { + "word": "kuwaiti" + }, + "id": 966, + "attype": "vanilla-forced-alignment" + }, + { + "start": "424.86000", + "end": "425.77000", + "feature": { + "word": "vessels" + }, + "id": 967, + "attype": "vanilla-forced-alignment" + }, + { + "start": "425.77000", + "end": "425.84000", + "feature": { + "word": "it" + }, + "id": 968, + "attype": "vanilla-forced-alignment" + }, + { + "start": "425.84000", + "end": "426.06000", + "feature": { + "word": "seems" + }, + "id": 969, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.06000", + "end": "426.13000", + "feature": { + "word": "to" + }, + "id": 970, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.13000", + "end": "426.27000", + "feature": { + "word": "me" + }, + "id": 971, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.27000", + "end": "426.48000", + "feature": { + "word": "that" + }, + "id": 972, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.48000", + "end": "426.60000", + "feature": { + "word": "in" + }, + "id": 973, + "attype": "vanilla-forced-alignment" + }, + { + "start": "426.60000", + "end": "427.20000", + "feature": { + "word": "itself" + }, + "id": 974, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.20000", + "end": "427.52000", + "feature": { + "word": "should" + }, + "id": 975, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.52000", + "end": "427.89000", + "feature": { + "word": "trigger" + }, + "id": 976, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.89000", + "end": "427.95000", + "feature": { + "word": "the" + }, + "id": 977, + "attype": "vanilla-forced-alignment" + }, + { + "start": "427.95000", + "end": "429.09000", + "feature": { + "word": "white" + }, + "id": 978, + "attype": "vanilla-forced-alignment" + }, + { + "start": "429.09000", + "end": "429.75000", + "feature": { + "word": "house" + }, + "id": 979, + "attype": "vanilla-forced-alignment" + }, + { + "start": "429.75000", + "end": "430.05000", + "feature": { + "word": "sending" + }, + "id": 980, + "attype": "vanilla-forced-alignment" + }, + { + "start": "430.05000", + "end": "430.23000", + "feature": { + "word": "us" + }, + "id": 981, + "attype": "vanilla-forced-alignment" + }, + { + "start": "430.23000", + "end": "430.42000", + "feature": { + "word": "some" + }, + "id": 982, + "attype": "vanilla-forced-alignment" + }, + { + "start": "430.42000", + "end": "430.83000", + "feature": { + "word": "notice" + }, + "id": 983, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.44000", + "end": "431.65000", + "feature": { + "word": "under" + }, + "id": 985, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.65000", + "end": "431.71000", + "feature": { + "word": "the" + }, + "id": 986, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.71000", + "end": "431.94000", + "feature": { + "word": "war" + }, + "id": 987, + "attype": "vanilla-forced-alignment" + }, + { + "start": "431.94000", + "end": "432.35000", + "feature": { + "word": "powers" + }, + "id": 988, + "attype": "vanilla-forced-alignment" + }, + { + "start": "432.35000", + "end": "432.74000", + "feature": { + "word": "act" + }, + "id": 989, + "attype": "vanilla-forced-alignment" + }, + { + "start": "432.74000", + "end": "433.23000", + "feature": { + "word": "or" + }, + "id": 990, + "attype": "vanilla-forced-alignment" + }, + { + "start": "433.23000", + "end": "433.31000", + "feature": { + "word": "at" + }, + "id": 991, + "attype": "vanilla-forced-alignment" + }, + { + "start": "433.31000", + "end": "433.61000", + "feature": { + "word": "least" + }, + "id": 992, + "attype": "vanilla-forced-alignment" + }, + { + "start": "433.61000", + "end": "434.29000", + "feature": { + "word": "very" + }, + "id": 993, + "attype": "vanilla-forced-alignment" + }, + { + "start": "434.29000", + "end": "434.77000", + "feature": { + "word": "intensive" + }, + "id": 994, + "attype": "vanilla-forced-alignment" + }, + { + "start": "434.77000", + "end": "435.36000", + "feature": { + "word": "consultation" + }, + "id": 995, + "attype": "vanilla-forced-alignment" + }, + { + "start": "435.36000", + "end": "435.49000", + "feature": { + "word": "with" + }, + "id": 996, + "attype": "vanilla-forced-alignment" + }, + { + "start": "435.49000", + "end": "435.88000", + "feature": { + "word": "congress" + }, + "id": 997, + "attype": "vanilla-forced-alignment" + }, + { + "start": "435.88000", + "end": "436.03000", + "feature": { + "word": "it" + }, + "id": 998, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.03000", + "end": "436.25000", + "feature": { + "word": "seems" + }, + "id": 999, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.25000", + "end": "436.31000", + "feature": { + "word": "to" + }, + "id": 1000, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.31000", + "end": "436.48000", + "feature": { + "word": "me" + }, + "id": 1001, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.48000", + "end": "436.70000", + "feature": { + "word": "that" + }, + "id": 1002, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.70000", + "end": "436.77000", + "feature": { + "word": "the" + }, + "id": 1003, + "attype": "vanilla-forced-alignment" + }, + { + "start": "436.77000", + "end": "437.21000", + "feature": { + "word": "spirit" + }, + "id": 1004, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.21000", + "end": "437.28000", + "feature": { + "word": "of" + }, + "id": 1005, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.28000", + "end": "437.34000", + "feature": { + "word": "the" + }, + "id": 1006, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.34000", + "end": "437.57000", + "feature": { + "word": "war" + }, + "id": 1007, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.57000", + "end": "437.95000", + "feature": { + "word": "powers" + }, + "id": 1008, + "attype": "vanilla-forced-alignment" + }, + { + "start": "437.95000", + "end": "438.21000", + "feature": { + "word": "act" + }, + "id": 1009, + "attype": "vanilla-forced-alignment" + }, + { + "start": "438.21000", + "end": "439.53000", + "feature": { + "word": "whether" + }, + "id": 1010, + "attype": "vanilla-forced-alignment" + }, + { + "start": "439.53000", + "end": "439.70000", + "feature": { + "word": "its" + }, + "id": 1011, + "attype": "vanilla-forced-alignment" + }, + { + "start": "439.70000", + "end": "439.99000", + "feature": { + "word": "been" + }, + "id": 1012, + "attype": "vanilla-forced-alignment" + }, + { + "start": "439.99000", + "end": "440.68000", + "feature": { + "word": "technically" + }, + "id": 1013, + "attype": "vanilla-forced-alignment" + }, + { + "start": "440.68000", + "end": "441.53000", + "feature": { + "word": "reached" + }, + "id": 1014, + "attype": "vanilla-forced-alignment" + }, + { + "start": "441.53000", + "end": "441.59000", + "feature": { + "word": "it" + }, + "id": 1015, + "attype": "vanilla-forced-alignment" + }, + { + "start": "441.59000", + "end": "442.04000", + "feature": { + "word": "seems" + }, + "id": 1016, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.04000", + "end": "442.42000", + "feature": { + "word": "the" + }, + "id": 1017, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.45000", + "end": "442.74000", + "feature": { + "word": "spirit" + }, + "id": 1019, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.74000", + "end": "442.94000", + "feature": { + "word": "of" + }, + "id": 1020, + "attype": "vanilla-forced-alignment" + }, + { + "start": "442.94000", + "end": "443.00000", + "feature": { + "word": "it" + }, + "id": 1021, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.00000", + "end": "443.14000", + "feature": { + "word": "is" + }, + "id": 1022, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.14000", + "end": "443.21000", + "feature": { + "word": "at" + }, + "id": 1023, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.21000", + "end": "443.50000", + "feature": { + "word": "least" + }, + "id": 1024, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.50000", + "end": "443.79000", + "feature": { + "word": "in" + }, + "id": 1025, + "attype": "vanilla-forced-alignment" + }, + { + "start": "443.79000", + "end": "444.52000", + "feature": { + "word": "question" + }, + "id": 1026, + "attype": "vanilla-forced-alignment" + }, + { + "start": "444.97000", + "end": "445.24000", + "feature": { + "word": "in" + }, + "id": 1028, + "attype": "vanilla-forced-alignment" + }, + { + "start": "445.24000", + "end": "445.83000", + "feature": { + "word": "washington" + }, + "id": 1029, + "attype": "vanilla-forced-alignment" + }, + { + "start": "445.83000", + "end": "446.32000", + "feature": { + "word": "austrian" + }, + "id": 1030, + "attype": "vanilla-forced-alignment" + }, + { + "start": "446.32000", + "end": "446.87000", + "feature": { + "word": "chancellor" + }, + "id": 1031, + "attype": "vanilla-forced-alignment" + }, + { + "start": "446.87000", + "end": "447.24000", + "feature": { + "word": "franz" + }, + "id": 1032, + "attype": "vanilla-forced-alignment" + }, + { + "start": "447.24000", + "end": "447.98000", + "feature": { + "word": "" + }, + "id": 1033, + "attype": "vanilla-forced-alignment" + }, + { + "start": "447.98000", + "end": "448.33000", + "feature": { + "word": "appealed" + }, + "id": 1034, + "attype": "vanilla-forced-alignment" + }, + { + "start": "448.33000", + "end": "448.43000", + "feature": { + "word": "to" + }, + "id": 1035, + "attype": "vanilla-forced-alignment" + }, + { + "start": "448.43000", + "end": "448.88000", + "feature": { + "word": "president" + }, + "id": 1036, + "attype": "vanilla-forced-alignment" + }, + { + "start": "448.88000", + "end": "449.38000", + "feature": { + "word": "reagan" + }, + "id": 1037, + "attype": "vanilla-forced-alignment" + }, + { + "start": "449.38000", + "end": "449.60000", + "feature": { + "word": "to" + }, + "id": 1038, + "attype": "vanilla-forced-alignment" + }, + { + "start": "449.60000", + "end": "450.15000", + "feature": { + "word": "rescind" + }, + "id": 1039, + "attype": "vanilla-forced-alignment" + }, + { + "start": "450.15000", + "end": "450.24000", + "feature": { + "word": "an" + }, + "id": 1040, + "attype": "vanilla-forced-alignment" + }, + { + "start": "450.24000", + "end": "450.61000", + "feature": { + "word": "order" + }, + "id": 1041, + "attype": "vanilla-forced-alignment" + }, + { + "start": "450.61000", + "end": "451.12000", + "feature": { + "word": "barring" + }, + "id": 1042, + "attype": "vanilla-forced-alignment" + }, + { + "start": "451.12000", + "end": "451.41000", + "feature": { + "word": "kurt" + }, + "id": 1043, + "attype": "vanilla-forced-alignment" + }, + { + "start": "451.41000", + "end": "452.05000", + "feature": { + "word": "waldheim" + }, + "id": 1044, + "attype": "vanilla-forced-alignment" + }, + { + "start": "452.05000", + "end": "452.25000", + "feature": { + "word": "from" + }, + "id": 1045, + "attype": "vanilla-forced-alignment" + }, + { + "start": "452.25000", + "end": "452.42000", + "feature": { + "word": "this" + }, + "id": 1046, + "attype": "vanilla-forced-alignment" + }, + { + "start": "452.42000", + "end": "452.86000", + "feature": { + "word": "country" + }, + "id": 1047, + "attype": "vanilla-forced-alignment" + }, + { + "start": "453.31000", + "end": "453.43000", + "feature": { + "word": "the" + }, + "id": 1049, + "attype": "vanilla-forced-alignment" + }, + { + "start": "453.43000", + "end": "453.72000", + "feature": { + "word": "reagan" + }, + "id": 1050, + "attype": "vanilla-forced-alignment" + }, + { + "start": "453.72000", + "end": "454.46000", + "feature": { + "word": "administration" + }, + "id": 1051, + "attype": "vanilla-forced-alignment" + }, + { + "start": "454.46000", + "end": "454.71000", + "feature": { + "word": "made" + }, + "id": 1052, + "attype": "vanilla-forced-alignment" + }, + { + "start": "454.71000", + "end": "454.84000", + "feature": { + "word": "the" + }, + "id": 1053, + "attype": "vanilla-forced-alignment" + }, + { + "start": "454.84000", + "end": "455.31000", + "feature": { + "word": "austrian" + }, + "id": 1054, + "attype": "vanilla-forced-alignment" + }, + { + "start": "455.31000", + "end": "455.86000", + "feature": { + "word": "president" + }, + "id": 1055, + "attype": "vanilla-forced-alignment" + }, + { + "start": "455.86000", + "end": "456.38000", + "feature": { + "word": "persona" + }, + "id": 1056, + "attype": "vanilla-forced-alignment" + }, + { + "start": "456.38000", + "end": "456.73000", + "feature": { + "word": "non" + }, + "id": 1057, + "attype": "vanilla-forced-alignment" + }, + { + "start": "456.73000", + "end": "457.16000", + "feature": { + "word": "grata" + }, + "id": 1058, + "attype": "vanilla-forced-alignment" + }, + { + "start": "457.16000", + "end": "457.37000", + "feature": { + "word": "for" + }, + "id": 1059, + "attype": "vanilla-forced-alignment" + }, + { + "start": "457.37000", + "end": "457.75000", + "feature": { + "word": "alleged" + }, + "id": 1060, + "attype": "vanilla-forced-alignment" + }, + { + "start": "457.75000", + "end": "458.19000", + "feature": { + "word": "crimes" + }, + "id": 1061, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.19000", + "end": "458.48000", + "feature": { + "word": "during" + }, + "id": 1062, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.48000", + "end": "458.76000", + "feature": { + "word": "world" + }, + "id": 1063, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.76000", + "end": "458.94000", + "feature": { + "word": "war" + }, + "id": 1064, + "attype": "vanilla-forced-alignment" + }, + { + "start": "458.94000", + "end": "459.33000", + "feature": { + "word": "" + }, + "id": 1065, + "attype": "vanilla-forced-alignment" + }, + { + "start": "459.70000", + "end": "460.05000", + "feature": { + "word": "after" + }, + "id": 1067, + "attype": "vanilla-forced-alignment" + }, + { + "start": "460.05000", + "end": "460.13000", + "feature": { + "word": "the" + }, + "id": 1068, + "attype": "vanilla-forced-alignment" + }, + { + "start": "460.13000", + "end": "460.53000", + "feature": { + "word": "meeting" + }, + "id": 1069, + "attype": "vanilla-forced-alignment" + }, + { + "start": "460.53000", + "end": "461.11000", + "feature": { + "word": "" + }, + "id": 1070, + "attype": "vanilla-forced-alignment" + }, + { + "start": "461.11000", + "end": "461.38000", + "feature": { + "word": "spoke" + }, + "id": 1071, + "attype": "vanilla-forced-alignment" + }, + { + "start": "461.38000", + "end": "461.47000", + "feature": { + "word": "to" + }, + "id": 1072, + "attype": "vanilla-forced-alignment" + }, + { + "start": "461.47000", + "end": "462.14000", + "feature": { + "word": "reporters" + }, + "id": 1073, + "attype": "vanilla-forced-alignment" + }, + { + "start": "462.83000", + "end": "463.30000", + "feature": { + "word": "this" + }, + "id": 1075, + "attype": "vanilla-forced-alignment" + }, + { + "start": "463.30000", + "end": "463.97000", + "feature": { + "word": "decision" + }, + "id": 1076, + "attype": "vanilla-forced-alignment" + }, + { + "start": "464.85000", + "end": "465.78000", + "feature": { + "word": "was" + }, + "id": 1078, + "attype": "vanilla-forced-alignment" + }, + { + "start": "465.78000", + "end": "466.30000", + "feature": { + "word": "a" + }, + "id": 1079, + "attype": "vanilla-forced-alignment" + }, + { + "start": "467.70000", + "end": "468.45000", + "feature": { + "word": "decision" + }, + "id": 1081, + "attype": "vanilla-forced-alignment" + }, + { + "start": "468.45000", + "end": "468.86000", + "feature": { + "word": "which" + }, + "id": 1082, + "attype": "vanilla-forced-alignment" + }, + { + "start": "469.14000", + "end": "469.64000", + "feature": { + "word": "brought" + }, + "id": 1084, + "attype": "vanilla-forced-alignment" + }, + { + "start": "469.64000", + "end": "470.64000", + "feature": { + "word": "dismay" + }, + "id": 1085, + "attype": "vanilla-forced-alignment" + }, + { + "start": "470.64000", + "end": "470.83000", + "feature": { + "word": "and" + }, + "id": 1086, + "attype": "vanilla-forced-alignment" + }, + { + "start": "470.83000", + "end": "471.39000", + "feature": { + "word": "upset" + }, + "id": 1087, + "attype": "vanilla-forced-alignment" + }, + { + "start": "471.39000", + "end": "471.51000", + "feature": { + "word": "to" + }, + "id": 1088, + "attype": "vanilla-forced-alignment" + }, + { + "start": "471.51000", + "end": "471.64000", + "feature": { + "word": "the" + }, + "id": 1089, + "attype": "vanilla-forced-alignment" + }, + { + "start": "471.64000", + "end": "472.73000", + "feature": { + "word": "austrian" + }, + "id": 1090, + "attype": "vanilla-forced-alignment" + }, + { + "start": "473.64000", + "end": "474.15000", + "feature": { + "word": "political" + }, + "id": 1092, + "attype": "vanilla-forced-alignment" + }, + { + "start": "474.15000", + "end": "474.72000", + "feature": { + "word": "system" + }, + "id": 1093, + "attype": "vanilla-forced-alignment" + }, + { + "start": "474.72000", + "end": "474.83000", + "feature": { + "word": "to" + }, + "id": 1094, + "attype": "vanilla-forced-alignment" + }, + { + "start": "474.83000", + "end": "474.97000", + "feature": { + "word": "the" + }, + "id": 1095, + "attype": "vanilla-forced-alignment" + }, + { + "start": "475.00000", + "end": "475.44000", + "feature": { + "word": "people" + }, + "id": 1097, + "attype": "vanilla-forced-alignment" + }, + { + "start": "475.44000", + "end": "475.53000", + "feature": { + "word": "of" + }, + "id": 1098, + "attype": "vanilla-forced-alignment" + }, + { + "start": "475.53000", + "end": "476.03000", + "feature": { + "word": "austria" + }, + "id": 1099, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.03000", + "end": "476.16000", + "feature": { + "word": "and" + }, + "id": 1100, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.21000", + "end": "476.34000", + "feature": { + "word": "to" + }, + "id": 1102, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.34000", + "end": "476.45000", + "feature": { + "word": "the" + }, + "id": 1103, + "attype": "vanilla-forced-alignment" + }, + { + "start": "476.50000", + "end": "477.01000", + "feature": { + "word": "president" + }, + "id": 1105, + "attype": "vanilla-forced-alignment" + }, + { + "start": "477.01000", + "end": "477.58000", + "feature": { + "word": "himself" + }, + "id": 1106, + "attype": "vanilla-forced-alignment" + }, + { + "start": "477.91000", + "end": "478.31000", + "feature": { + "word": "ahead" + }, + "id": 1108, + "attype": "vanilla-forced-alignment" + }, + { + "start": "478.31000", + "end": "479.04000", + "feature": { + "word": "however" + }, + "id": 1109, + "attype": "vanilla-forced-alignment" + }, + { + "start": "479.81000", + "end": "480.71000", + "feature": { + "word": "the" + }, + "id": 1111, + "attype": "vanilla-forced-alignment" + }, + { + "start": "482.38000", + "end": "482.93000", + "feature": { + "word": "answer" + }, + "id": 1113, + "attype": "vanilla-forced-alignment" + }, + { + "start": "482.93000", + "end": "483.03000", + "feature": { + "word": "and" + }, + "id": 1114, + "attype": "vanilla-forced-alignment" + }, + { + "start": "483.03000", + "end": "483.15000", + "feature": { + "word": "the" + }, + "id": 1115, + "attype": "vanilla-forced-alignment" + }, + { + "start": "483.15000", + "end": "483.63000", + "feature": { + "word": "reaction" + }, + "id": 1116, + "attype": "vanilla-forced-alignment" + }, + { + "start": "483.68000", + "end": "484.16000", + "feature": { + "word": "by" + }, + "id": 1118, + "attype": "vanilla-forced-alignment" + }, + { + "start": "484.32000", + "end": "484.40000", + "feature": { + "word": "the" + }, + "id": 1120, + "attype": "vanilla-forced-alignment" + }, + { + "start": "484.45000", + "end": "485.13000", + "feature": { + "word": "president" + }, + "id": 1122, + "attype": "vanilla-forced-alignment" + }, + { + "start": "485.13000", + "end": "485.34000", + "feature": { + "word": "and" + }, + "id": 1123, + "attype": "vanilla-forced-alignment" + }, + { + "start": "485.37000", + "end": "485.74000", + "feature": { + "word": "by" + }, + "id": 1125, + "attype": "vanilla-forced-alignment" + }, + { + "start": "485.74000", + "end": "486.26000", + "feature": { + "word": "secretary" + }, + "id": 1126, + "attype": "vanilla-forced-alignment" + }, + { + "start": "486.42000", + "end": "486.90000", + "feature": { + "word": "shultz" + }, + "id": 1128, + "attype": "vanilla-forced-alignment" + }, + { + "start": "487.95000", + "end": "488.38000", + "feature": { + "word": "that" + }, + "id": 1130, + "attype": "vanilla-forced-alignment" + }, + { + "start": "488.38000", + "end": "488.94000", + "feature": { + "word": "the" + }, + "id": 1131, + "attype": "vanilla-forced-alignment" + }, + { + "start": "489.39000", + "end": "490.08000", + "feature": { + "word": "american" + }, + "id": 1133, + "attype": "vanilla-forced-alignment" + }, + { + "start": "490.08000", + "end": "491.22000", + "feature": { + "word": "administration" + }, + "id": 1134, + "attype": "vanilla-forced-alignment" + }, + { + "start": "492.42000", + "end": "493.03000", + "feature": { + "word": "could" + }, + "id": 1136, + "attype": "vanilla-forced-alignment" + }, + { + "start": "494.41000", + "end": "495.06000", + "feature": { + "word": "not" + }, + "id": 1138, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.18000", + "end": "496.55000", + "feature": { + "word": "act" + }, + "id": 1140, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.55000", + "end": "496.64000", + "feature": { + "word": "in" + }, + "id": 1141, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.64000", + "end": "496.95000", + "feature": { + "word": "any" + }, + "id": 1142, + "attype": "vanilla-forced-alignment" + }, + { + "start": "496.95000", + "end": "497.24000", + "feature": { + "word": "other" + }, + "id": 1143, + "attype": "vanilla-forced-alignment" + }, + { + "start": "497.24000", + "end": "497.79000", + "feature": { + "word": "way" + }, + "id": 1144, + "attype": "vanilla-forced-alignment" + }, + { + "start": "497.90000", + "end": "498.22000", + "feature": { + "word": "as" + }, + "id": 1146, + "attype": "vanilla-forced-alignment" + }, + { + "start": "498.22000", + "end": "498.40000", + "feature": { + "word": "they" + }, + "id": 1147, + "attype": "vanilla-forced-alignment" + }, + { + "start": "498.40000", + "end": "498.73000", + "feature": { + "word": "did" + }, + "id": 1148, + "attype": "vanilla-forced-alignment" + }, + { + "start": "499.50000", + "end": "499.64000", + "feature": { + "word": "in" + }, + "id": 1150, + "attype": "vanilla-forced-alignment" + }, + { + "start": "499.64000", + "end": "500.38000", + "feature": { + "word": "following" + }, + "id": 1151, + "attype": "vanilla-forced-alignment" + }, + { + "start": "500.38000", + "end": "500.59000", + "feature": { + "word": "the" + }, + "id": 1152, + "attype": "vanilla-forced-alignment" + }, + { + "start": "500.59000", + "end": "501.04000", + "feature": { + "word": "united" + }, + "id": 1153, + "attype": "vanilla-forced-alignment" + }, + { + "start": "501.04000", + "end": "501.49000", + "feature": { + "word": "states" + }, + "id": 1154, + "attype": "vanilla-forced-alignment" + }, + { + "start": "501.49000", + "end": "501.93000", + "feature": { + "word": "law" + }, + "id": 1155, + "attype": "vanilla-forced-alignment" + }, + { + "start": "503.12000", + "end": "503.37000", + "feature": { + "word": "in" + }, + "id": 1157, + "attype": "vanilla-forced-alignment" + }, + { + "start": "503.37000", + "end": "503.87000", + "feature": { + "word": "vienna" + }, + "id": 1158, + "attype": "vanilla-forced-alignment" + }, + { + "start": "503.87000", + "end": "504.11000", + "feature": { + "word": "two" + }, + "id": 1159, + "attype": "vanilla-forced-alignment" + }, + { + "start": "504.11000", + "end": "505.00000", + "feature": { + "word": "palestinians" + }, + "id": 1160, + "attype": "vanilla-forced-alignment" + }, + { + "start": "505.00000", + "end": "505.46000", + "feature": { + "word": "received" + }, + "id": 1161, + "attype": "vanilla-forced-alignment" + }, + { + "start": "505.46000", + "end": "505.78000", + "feature": { + "word": "life" + }, + "id": 1162, + "attype": "vanilla-forced-alignment" + }, + { + "start": "505.78000", + "end": "506.15000", + "feature": { + "word": "prison" + }, + "id": 1163, + "attype": "vanilla-forced-alignment" + }, + { + "start": "506.15000", + "end": "506.73000", + "feature": { + "word": "sentences" + }, + "id": 1164, + "attype": "vanilla-forced-alignment" + }, + { + "start": "506.73000", + "end": "507.11000", + "feature": { + "word": "today" + }, + "id": 1165, + "attype": "vanilla-forced-alignment" + }, + { + "start": "507.47000", + "end": "507.61000", + "feature": { + "word": "the" + }, + "id": 1167, + "attype": "vanilla-forced-alignment" + }, + { + "start": "507.61000", + "end": "507.83000", + "feature": { + "word": "men" + }, + "id": 1168, + "attype": "vanilla-forced-alignment" + }, + { + "start": "507.83000", + "end": "508.00000", + "feature": { + "word": "who" + }, + "id": 1169, + "attype": "vanilla-forced-alignment" + }, + { + "start": "508.00000", + "end": "508.26000", + "feature": { + "word": "used" + }, + "id": 1170, + "attype": "vanilla-forced-alignment" + }, + { + "start": "508.26000", + "end": "508.39000", + "feature": { + "word": "the" + }, + "id": 1171, + "attype": "vanilla-forced-alignment" + }, + { + "start": "508.39000", + "end": "509.05000", + "feature": { + "word": "aliases" + }, + "id": 1172, + "attype": "vanilla-forced-alignment" + }, + { + "start": "509.08000", + "end": "509.29000", + "feature": { + "word": "" + }, + "id": 1174, + "attype": "vanilla-forced-alignment" + }, + { + "start": "509.33000", + "end": "509.53000", + "feature": { + "word": "ben" + }, + "id": 1176, + "attype": "vanilla-forced-alignment" + }, + { + "start": "509.53000", + "end": "510.33000", + "feature": { + "word": "" + }, + "id": 1177, + "attype": "vanilla-forced-alignment" + }, + { + "start": "510.39000", + "end": "510.67000", + "feature": { + "word": "and" + }, + "id": 1179, + "attype": "vanilla-forced-alignment" + }, + { + "start": "510.67000", + "end": "511.12000", + "feature": { + "word": "" + }, + "id": 1180, + "attype": "vanilla-forced-alignment" + }, + { + "start": "511.12000", + "end": "511.34000", + "feature": { + "word": "ben" + }, + "id": 1181, + "attype": "vanilla-forced-alignment" + }, + { + "start": "511.34000", + "end": "512.06000", + "feature": { + "word": "" + }, + "id": 1182, + "attype": "vanilla-forced-alignment" + }, + { + "start": "512.27000", + "end": "512.51000", + "feature": { + "word": "were" + }, + "id": 1184, + "attype": "vanilla-forced-alignment" + }, + { + "start": "512.51000", + "end": "513.13000", + "feature": { + "word": "convicted" + }, + "id": 1185, + "attype": "vanilla-forced-alignment" + }, + { + "start": "513.13000", + "end": "513.26000", + "feature": { + "word": "for" + }, + "id": 1186, + "attype": "vanilla-forced-alignment" + }, + { + "start": "513.26000", + "end": "513.45000", + "feature": { + "word": "the" + }, + "id": 1187, + "attype": "vanilla-forced-alignment" + }, + { + "start": "513.45000", + "end": "514.45000", + "feature": { + "word": "" + }, + "id": 1188, + "attype": "vanilla-forced-alignment" + }, + { + "start": "514.45000", + "end": "514.99000", + "feature": { + "word": "terrorist" + }, + "id": 1189, + "attype": "vanilla-forced-alignment" + }, + { + "start": "514.99000", + "end": "515.38000", + "feature": { + "word": "attack" + }, + "id": 1190, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.38000", + "end": "515.49000", + "feature": { + "word": "at" + }, + "id": 1191, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.49000", + "end": "515.57000", + "feature": { + "word": "the" + }, + "id": 1192, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.57000", + "end": "515.96000", + "feature": { + "word": "vienna" + }, + "id": 1193, + "attype": "vanilla-forced-alignment" + }, + { + "start": "515.96000", + "end": "516.45000", + "feature": { + "word": "airport" + }, + "id": 1194, + "attype": "vanilla-forced-alignment" + }, + { + "start": "516.45000", + "end": "517.16000", + "feature": { + "word": "three" + }, + "id": 1195, + "attype": "vanilla-forced-alignment" + }, + { + "start": "517.16000", + "end": "517.63000", + "feature": { + "word": "persons" + }, + "id": 1196, + "attype": "vanilla-forced-alignment" + }, + { + "start": "517.63000", + "end": "517.99000", + "feature": { + "word": "died" + }, + "id": 1197, + "attype": "vanilla-forced-alignment" + }, + { + "start": "517.99000", + "end": "518.14000", + "feature": { + "word": "and" + }, + "id": 1198, + "attype": "vanilla-forced-alignment" + }, + { + "start": "518.14000", + "end": "518.74000", + "feature": { + "word": "" + }, + "id": 1199, + "attype": "vanilla-forced-alignment" + }, + { + "start": "518.74000", + "end": "518.99000", + "feature": { + "word": "others" + }, + "id": 1200, + "attype": "vanilla-forced-alignment" + }, + { + "start": "518.99000", + "end": "519.14000", + "feature": { + "word": "were" + }, + "id": 1201, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.14000", + "end": "519.55000", + "feature": { + "word": "injured" + }, + "id": 1202, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.55000", + "end": "519.66000", + "feature": { + "word": "in" + }, + "id": 1203, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.66000", + "end": "519.72000", + "feature": { + "word": "a" + }, + "id": 1204, + "attype": "vanilla-forced-alignment" + }, + { + "start": "519.72000", + "end": "520.05000", + "feature": { + "word": "hail" + }, + "id": 1205, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.05000", + "end": "520.14000", + "feature": { + "word": "of" + }, + "id": 1206, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.21000", + "end": "520.83000", + "feature": { + "word": "gunfire" + }, + "id": 1208, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.83000", + "end": "520.98000", + "feature": { + "word": "and" + }, + "id": 1209, + "attype": "vanilla-forced-alignment" + }, + { + "start": "520.98000", + "end": "521.54000", + "feature": { + "word": "exploding" + }, + "id": 1210, + "attype": "vanilla-forced-alignment" + }, + { + "start": "521.54000", + "end": "521.80000", + "feature": { + "word": "hand" + }, + "id": 1211, + "attype": "vanilla-forced-alignment" + }, + { + "start": "521.80000", + "end": "522.34000", + "feature": { + "word": "grenades" + }, + "id": 1212, + "attype": "vanilla-forced-alignment" + }, + { + "start": "522.79000", + "end": "522.92000", + "feature": { + "word": "a" + }, + "id": 1214, + "attype": "vanilla-forced-alignment" + }, + { + "start": "522.92000", + "end": "523.28000", + "feature": { + "word": "third" + }, + "id": 1215, + "attype": "vanilla-forced-alignment" + }, + { + "start": "523.28000", + "end": "523.71000", + "feature": { + "word": "terrorist" + }, + "id": 1216, + "attype": "vanilla-forced-alignment" + }, + { + "start": "523.71000", + "end": "523.86000", + "feature": { + "word": "was" + }, + "id": 1217, + "attype": "vanilla-forced-alignment" + }, + { + "start": "523.86000", + "end": "524.19000", + "feature": { + "word": "killed" + }, + "id": 1218, + "attype": "vanilla-forced-alignment" + }, + { + "start": "524.19000", + "end": "524.37000", + "feature": { + "word": "by" + }, + "id": 1219, + "attype": "vanilla-forced-alignment" + }, + { + "start": "524.37000", + "end": "524.79000", + "feature": { + "word": "austrian" + }, + "id": 1220, + "attype": "vanilla-forced-alignment" + }, + { + "start": "524.79000", + "end": "525.20000", + "feature": { + "word": "police" + }, + "id": 1221, + "attype": "vanilla-forced-alignment" + }, + { + "start": "525.20000", + "end": "525.55000", + "feature": { + "word": "during" + }, + "id": 1222, + "attype": "vanilla-forced-alignment" + }, + { + "start": "525.55000", + "end": "525.63000", + "feature": { + "word": "the" + }, + "id": 1223, + "attype": "vanilla-forced-alignment" + }, + { + "start": "525.63000", + "end": "526.11000", + "feature": { + "word": "assault" + }, + "id": 1224, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.11000", + "end": "526.23000", + "feature": { + "word": "on" + }, + "id": 1225, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.23000", + "end": "526.41000", + "feature": { + "word": "the" + }, + "id": 1226, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.41000", + "end": "526.63000", + "feature": { + "word": "el" + }, + "id": 1227, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.63000", + "end": "526.86000", + "feature": { + "word": "al" + }, + "id": 1228, + "attype": "vanilla-forced-alignment" + }, + { + "start": "526.86000", + "end": "527.29000", + "feature": { + "word": "airline" + }, + "id": 1229, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.29000", + "end": "527.70000", + "feature": { + "word": "counter" + }, + "id": 1230, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.70000", + "end": "527.79000", + "feature": { + "word": "at" + }, + "id": 1231, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.79000", + "end": "527.95000", + "feature": { + "word": "the" + }, + "id": 1232, + "attype": "vanilla-forced-alignment" + }, + { + "start": "527.95000", + "end": "528.34000", + "feature": { + "word": "airport" + }, + "id": 1233, + "attype": "vanilla-forced-alignment" + }, + { + "start": "528.34000", + "end": "529.44000", + "feature": { + "word": "authorities" + }, + "id": 1234, + "attype": "vanilla-forced-alignment" + }, + { + "start": "529.44000", + "end": "529.57000", + "feature": { + "word": "say" + }, + "id": 1235, + "attype": "vanilla-forced-alignment" + }, + { + "start": "529.57000", + "end": "529.78000", + "feature": { + "word": "they" + }, + "id": 1236, + "attype": "vanilla-forced-alignment" + }, + { + "start": "529.78000", + "end": "530.10000", + "feature": { + "word": "still" + }, + "id": 1237, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.10000", + "end": "530.40000", + "feature": { + "word": "don't" + }, + "id": 1238, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.40000", + "end": "530.68000", + "feature": { + "word": "know" + }, + "id": 1239, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.68000", + "end": "530.84000", + "feature": { + "word": "the" + }, + "id": 1240, + "attype": "vanilla-forced-alignment" + }, + { + "start": "530.84000", + "end": "531.11000", + "feature": { + "word": "true" + }, + "id": 1241, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.11000", + "end": "531.78000", + "feature": { + "word": "identities" + }, + "id": 1242, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.78000", + "end": "531.88000", + "feature": { + "word": "of" + }, + "id": 1243, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.88000", + "end": "531.97000", + "feature": { + "word": "the" + }, + "id": 1244, + "attype": "vanilla-forced-alignment" + }, + { + "start": "531.97000", + "end": "532.16000", + "feature": { + "word": "two" + }, + "id": 1245, + "attype": "vanilla-forced-alignment" + }, + { + "start": "532.16000", + "end": "532.47000", + "feature": { + "word": "men" + }, + "id": 1246, + "attype": "vanilla-forced-alignment" + }, + { + "start": "532.47000", + "end": "532.93000", + "feature": { + "word": "sentenced" + }, + "id": 1247, + "attype": "vanilla-forced-alignment" + }, + { + "start": "532.93000", + "end": "533.26000", + "feature": { + "word": "today" + }, + "id": 1248, + "attype": "vanilla-forced-alignment" + }, + { + "start": "534.33000", + "end": "534.59000", + "feature": { + "word": "two" + }, + "id": 1250, + "attype": "vanilla-forced-alignment" + }, + { + "start": "534.59000", + "end": "535.05000", + "feature": { + "word": "african" + }, + "id": 1251, + "attype": "vanilla-forced-alignment" + }, + { + "start": "535.05000", + "end": "535.61000", + "feature": { + "word": "nations" + }, + "id": 1252, + "attype": "vanilla-forced-alignment" + }, + { + "start": "535.61000", + "end": "536.03000", + "feature": { + "word": "sounded" + }, + "id": 1253, + "attype": "vanilla-forced-alignment" + }, + { + "start": "536.03000", + "end": "536.49000", + "feature": { + "word": "separate" + }, + "id": 1254, + "attype": "vanilla-forced-alignment" + }, + { + "start": "536.49000", + "end": "536.84000", + "feature": { + "word": "cries" + }, + "id": 1255, + "attype": "vanilla-forced-alignment" + }, + { + "start": "536.84000", + "end": "537.13000", + "feature": { + "word": "for" + }, + "id": 1256, + "attype": "vanilla-forced-alignment" + }, + { + "start": "537.13000", + "end": "537.50000", + "feature": { + "word": "help" + }, + "id": 1257, + "attype": "vanilla-forced-alignment" + }, + { + "start": "537.50000", + "end": "538.02000", + "feature": { + "word": "today" + }, + "id": 1258, + "attype": "vanilla-forced-alignment" + }, + { + "start": "538.25000", + "end": "538.40000", + "feature": { + "word": "the" + }, + "id": 1260, + "attype": "vanilla-forced-alignment" + }, + { + "start": "538.40000", + "end": "538.72000", + "feature": { + "word": "prime" + }, + "id": 1261, + "attype": "vanilla-forced-alignment" + }, + { + "start": "538.72000", + "end": "539.15000", + "feature": { + "word": "minister" + }, + "id": 1262, + "attype": "vanilla-forced-alignment" + }, + { + "start": "539.15000", + "end": "539.26000", + "feature": { + "word": "of" + }, + "id": 1263, + "attype": "vanilla-forced-alignment" + }, + { + "start": "539.26000", + "end": "539.94000", + "feature": { + "word": "uganda" + }, + "id": 1264, + "attype": "vanilla-forced-alignment" + }, + { + "start": "539.94000", + "end": "540.19000", + "feature": { + "word": "told" + }, + "id": 1265, + "attype": "vanilla-forced-alignment" + }, + { + "start": "540.19000", + "end": "540.32000", + "feature": { + "word": "an" + }, + "id": 1266, + "attype": "vanilla-forced-alignment" + }, + { + "start": "540.32000", + "end": "540.96000", + "feature": { + "word": "international" + }, + "id": 1267, + "attype": "vanilla-forced-alignment" + }, + { + "start": "540.96000", + "end": "541.48000", + "feature": { + "word": "conference" + }, + "id": 1268, + "attype": "vanilla-forced-alignment" + }, + { + "start": "541.48000", + "end": "541.65000", + "feature": { + "word": "in" + }, + "id": 1269, + "attype": "vanilla-forced-alignment" + }, + { + "start": "541.65000", + "end": "542.32000", + "feature": { + "word": "kampala" + }, + "id": 1270, + "attype": "vanilla-forced-alignment" + }, + { + "start": "542.52000", + "end": "542.76000", + "feature": { + "word": "that" + }, + "id": 1272, + "attype": "vanilla-forced-alignment" + }, + { + "start": "542.76000", + "end": "542.84000", + "feature": { + "word": "the" + }, + "id": 1273, + "attype": "vanilla-forced-alignment" + }, + { + "start": "542.84000", + "end": "543.27000", + "feature": { + "word": "spread" + }, + "id": 1274, + "attype": "vanilla-forced-alignment" + }, + { + "start": "543.27000", + "end": "543.48000", + "feature": { + "word": "of" + }, + "id": 1275, + "attype": "vanilla-forced-alignment" + }, + { + "start": "543.52000", + "end": "543.93000", + "feature": { + "word": "aids" + }, + "id": 1277, + "attype": "vanilla-forced-alignment" + }, + { + "start": "543.93000", + "end": "544.02000", + "feature": { + "word": "in" + }, + "id": 1278, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.02000", + "end": "544.25000", + "feature": { + "word": "his" + }, + "id": 1279, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.25000", + "end": "544.69000", + "feature": { + "word": "country" + }, + "id": 1280, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.69000", + "end": "544.91000", + "feature": { + "word": "had" + }, + "id": 1281, + "attype": "vanilla-forced-alignment" + }, + { + "start": "544.91000", + "end": "545.30000", + "feature": { + "word": "reached" + }, + "id": 1282, + "attype": "vanilla-forced-alignment" + }, + { + "start": "545.35000", + "end": "545.92000", + "feature": { + "word": "epidemic" + }, + "id": 1284, + "attype": "vanilla-forced-alignment" + }, + { + "start": "545.92000", + "end": "546.68000", + "feature": { + "word": "proportions" + }, + "id": 1285, + "attype": "vanilla-forced-alignment" + }, + { + "start": "546.82000", + "end": "547.13000", + "feature": { + "word": "he" + }, + "id": 1287, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.13000", + "end": "547.45000", + "feature": { + "word": "asked" + }, + "id": 1288, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.51000", + "end": "547.63000", + "feature": { + "word": "the" + }, + "id": 1290, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.63000", + "end": "547.91000", + "feature": { + "word": "rest" + }, + "id": 1291, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.91000", + "end": "547.97000", + "feature": { + "word": "of" + }, + "id": 1292, + "attype": "vanilla-forced-alignment" + }, + { + "start": "547.97000", + "end": "548.06000", + "feature": { + "word": "the" + }, + "id": 1293, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.06000", + "end": "548.49000", + "feature": { + "word": "world" + }, + "id": 1294, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.49000", + "end": "548.60000", + "feature": { + "word": "to" + }, + "id": 1295, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.60000", + "end": "548.95000", + "feature": { + "word": "launch" + }, + "id": 1296, + "attype": "vanilla-forced-alignment" + }, + { + "start": "548.95000", + "end": "549.06000", + "feature": { + "word": "a" + }, + "id": 1297, + "attype": "vanilla-forced-alignment" + }, + { + "start": "549.06000", + "end": "549.66000", + "feature": { + "word": "rescue" + }, + "id": 1298, + "attype": "vanilla-forced-alignment" + }, + { + "start": "549.66000", + "end": "550.27000", + "feature": { + "word": "operation" + }, + "id": 1299, + "attype": "vanilla-forced-alignment" + }, + { + "start": "550.27000", + "end": "550.96000", + "feature": { + "word": "immediately" + }, + "id": 1300, + "attype": "vanilla-forced-alignment" + }, + { + "start": "551.45000", + "end": "551.62000", + "feature": { + "word": "from" + }, + "id": 1302, + "attype": "vanilla-forced-alignment" + }, + { + "start": "551.62000", + "end": "552.27000", + "feature": { + "word": "ethiopia" + }, + "id": 1303, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.27000", + "end": "552.38000", + "feature": { + "word": "the" + }, + "id": 1304, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.38000", + "end": "552.67000", + "feature": { + "word": "call" + }, + "id": 1305, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.67000", + "end": "552.82000", + "feature": { + "word": "was" + }, + "id": 1306, + "attype": "vanilla-forced-alignment" + }, + { + "start": "552.82000", + "end": "553.00000", + "feature": { + "word": "for" + }, + "id": 1307, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.00000", + "end": "553.42000", + "feature": { + "word": "tanker" + }, + "id": 1308, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.42000", + "end": "553.81000", + "feature": { + "word": "trucks" + }, + "id": 1309, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.81000", + "end": "553.98000", + "feature": { + "word": "and" + }, + "id": 1310, + "attype": "vanilla-forced-alignment" + }, + { + "start": "553.98000", + "end": "554.41000", + "feature": { + "word": "food" + }, + "id": 1311, + "attype": "vanilla-forced-alignment" + }, + { + "start": "554.41000", + "end": "554.49000", + "feature": { + "word": "to" + }, + "id": 1312, + "attype": "vanilla-forced-alignment" + }, + { + "start": "554.49000", + "end": "554.87000", + "feature": { + "word": "rescue" + }, + "id": 1313, + "attype": "vanilla-forced-alignment" + }, + { + "start": "554.87000", + "end": "556.16000", + "feature": { + "word": "" + }, + "id": 1314, + "attype": "vanilla-forced-alignment" + }, + { + "start": "556.16000", + "end": "556.58000", + "feature": { + "word": "victims" + }, + "id": 1315, + "attype": "vanilla-forced-alignment" + }, + { + "start": "556.58000", + "end": "556.72000", + "feature": { + "word": "of" + }, + "id": 1316, + "attype": "vanilla-forced-alignment" + }, + { + "start": "556.72000", + "end": "557.17000", + "feature": { + "word": "drought" + }, + "id": 1317, + "attype": "vanilla-forced-alignment" + }, + { + "start": "557.56000", + "end": "557.71000", + "feature": { + "word": "a" + }, + "id": 1319, + "attype": "vanilla-forced-alignment" + }, + { + "start": "557.71000", + "end": "558.11000", + "feature": { + "word": "government" + }, + "id": 1320, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.11000", + "end": "558.58000", + "feature": { + "word": "official" + }, + "id": 1321, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.58000", + "end": "558.78000", + "feature": { + "word": "said" + }, + "id": 1322, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.78000", + "end": "558.86000", + "feature": { + "word": "the" + }, + "id": 1323, + "attype": "vanilla-forced-alignment" + }, + { + "start": "558.86000", + "end": "559.23000", + "feature": { + "word": "lives" + }, + "id": 1324, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.23000", + "end": "559.32000", + "feature": { + "word": "of" + }, + "id": 1325, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.32000", + "end": "559.55000", + "feature": { + "word": "those" + }, + "id": 1326, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.55000", + "end": "559.90000", + "feature": { + "word": "people" + }, + "id": 1327, + "attype": "vanilla-forced-alignment" + }, + { + "start": "559.90000", + "end": "560.06000", + "feature": { + "word": "are" + }, + "id": 1328, + "attype": "vanilla-forced-alignment" + }, + { + "start": "560.06000", + "end": "560.18000", + "feature": { + "word": "in" + }, + "id": 1329, + "attype": "vanilla-forced-alignment" + }, + { + "start": "560.18000", + "end": "560.67000", + "feature": { + "word": "jeopardy" + }, + "id": 1330, + "attype": "vanilla-forced-alignment" + }, + { + "start": "560.86000", + "end": "561.27000", + "feature": { + "word": "unless" + }, + "id": 1332, + "attype": "vanilla-forced-alignment" + }, + { + "start": "561.27000", + "end": "561.76000", + "feature": { + "word": "equipment" + }, + "id": 1333, + "attype": "vanilla-forced-alignment" + }, + { + "start": "561.76000", + "end": "561.88000", + "feature": { + "word": "to" + }, + "id": 1334, + "attype": "vanilla-forced-alignment" + }, + { + "start": "561.88000", + "end": "562.49000", + "feature": { + "word": "distribute" + }, + "id": 1335, + "attype": "vanilla-forced-alignment" + }, + { + "start": "562.49000", + "end": "562.92000", + "feature": { + "word": "water" + }, + "id": 1336, + "attype": "vanilla-forced-alignment" + }, + { + "start": "562.92000", + "end": "563.08000", + "feature": { + "word": "and" + }, + "id": 1337, + "attype": "vanilla-forced-alignment" + }, + { + "start": "563.08000", + "end": "563.50000", + "feature": { + "word": "food" + }, + "id": 1338, + "attype": "vanilla-forced-alignment" + }, + { + "start": "563.50000", + "end": "563.79000", + "feature": { + "word": "comes" + }, + "id": 1339, + "attype": "vanilla-forced-alignment" + }, + { + "start": "563.79000", + "end": "564.24000", + "feature": { + "word": "quickly" + }, + "id": 1340, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.08000", + "end": "565.20000", + "feature": { + "word": "the" + }, + "id": 1342, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.20000", + "end": "565.40000", + "feature": { + "word": "u" + }, + "id": 1343, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.40000", + "end": "565.54000", + "feature": { + "word": "s" + }, + "id": 1344, + "attype": "vanilla-forced-alignment" + }, + { + "start": "565.54000", + "end": "566.01000", + "feature": { + "word": "customs" + }, + "id": 1345, + "attype": "vanilla-forced-alignment" + }, + { + "start": "566.01000", + "end": "566.37000", + "feature": { + "word": "service" + }, + "id": 1346, + "attype": "vanilla-forced-alignment" + }, + { + "start": "566.37000", + "end": "566.58000", + "feature": { + "word": "has" + }, + "id": 1347, + "attype": "vanilla-forced-alignment" + }, + { + "start": "566.58000", + "end": "567.05000", + "feature": { + "word": "charged" + }, + "id": 1348, + "attype": "vanilla-forced-alignment" + }, + { + "start": "567.05000", + "end": "567.53000", + "feature": { + "word": "" + }, + "id": 1349, + "attype": "vanilla-forced-alignment" + }, + { + "start": "567.53000", + "end": "567.94000", + "feature": { + "word": "people" + }, + "id": 1350, + "attype": "vanilla-forced-alignment" + }, + { + "start": "567.94000", + "end": "568.09000", + "feature": { + "word": "in" + }, + "id": 1351, + "attype": "vanilla-forced-alignment" + }, + { + "start": "568.09000", + "end": "568.34000", + "feature": { + "word": "san" + }, + "id": 1352, + "attype": "vanilla-forced-alignment" + }, + { + "start": "568.34000", + "end": "568.90000", + "feature": { + "word": "diego" + }, + "id": 1353, + "attype": "vanilla-forced-alignment" + }, + { + "start": "568.90000", + "end": "569.09000", + "feature": { + "word": "and" + }, + "id": 1354, + "attype": "vanilla-forced-alignment" + }, + { + "start": "569.09000", + "end": "569.53000", + "feature": { + "word": "launched" + }, + "id": 1355, + "attype": "vanilla-forced-alignment" + }, + { + "start": "569.53000", + "end": "569.59000", + "feature": { + "word": "a" + }, + "id": 1356, + "attype": "vanilla-forced-alignment" + }, + { + "start": "569.59000", + "end": "570.34000", + "feature": { + "word": "nationwide" + }, + "id": 1357, + "attype": "vanilla-forced-alignment" + }, + { + "start": "570.34000", + "end": "571.06000", + "feature": { + "word": "crackdown" + }, + "id": 1358, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.06000", + "end": "571.30000", + "feature": { + "word": "on" + }, + "id": 1359, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.30000", + "end": "571.40000", + "feature": { + "word": "a" + }, + "id": 1360, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.40000", + "end": "571.79000", + "feature": { + "word": "ring" + }, + "id": 1361, + "attype": "vanilla-forced-alignment" + }, + { + "start": "571.79000", + "end": "572.35000", + "feature": { + "word": "allegedly" + }, + "id": 1362, + "attype": "vanilla-forced-alignment" + }, + { + "start": "572.35000", + "end": "572.93000", + "feature": { + "word": "smuggling" + }, + "id": 1363, + "attype": "vanilla-forced-alignment" + }, + { + "start": "572.93000", + "end": "573.31000", + "feature": { + "word": "body" + }, + "id": 1364, + "attype": "vanilla-forced-alignment" + }, + { + "start": "573.31000", + "end": "573.71000", + "feature": { + "word": "building" + }, + "id": 1365, + "attype": "vanilla-forced-alignment" + }, + { + "start": "573.71000", + "end": "574.36000", + "feature": { + "word": "steroid" + }, + "id": 1366, + "attype": "vanilla-forced-alignment" + }, + { + "start": "574.36000", + "end": "574.83000", + "feature": { + "word": "drugs" + }, + "id": 1367, + "attype": "vanilla-forced-alignment" + }, + { + "start": "574.83000", + "end": "575.01000", + "feature": { + "word": "into" + }, + "id": 1368, + "attype": "vanilla-forced-alignment" + }, + { + "start": "575.01000", + "end": "575.11000", + "feature": { + "word": "the" + }, + "id": 1369, + "attype": "vanilla-forced-alignment" + }, + { + "start": "575.11000", + "end": "575.35000", + "feature": { + "word": "u" + }, + "id": 1370, + "attype": "vanilla-forced-alignment" + }, + { + "start": "575.35000", + "end": "575.66000", + "feature": { + "word": "s" + }, + "id": 1371, + "attype": "vanilla-forced-alignment" + }, + { + "start": "576.07000", + "end": "576.55000", + "feature": { + "word": "customs" + }, + "id": 1373, + "attype": "vanilla-forced-alignment" + }, + { + "start": "576.55000", + "end": "577.10000", + "feature": { + "word": "spokesmen" + }, + "id": 1374, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.10000", + "end": "577.32000", + "feature": { + "word": "said" + }, + "id": 1375, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.32000", + "end": "577.41000", + "feature": { + "word": "the" + }, + "id": 1376, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.41000", + "end": "577.67000", + "feature": { + "word": "ring" + }, + "id": 1377, + "attype": "vanilla-forced-alignment" + }, + { + "start": "577.67000", + "end": "578.07000", + "feature": { + "word": "began" + }, + "id": 1378, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.07000", + "end": "578.17000", + "feature": { + "word": "in" + }, + "id": 1379, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.17000", + "end": "578.79000", + "feature": { + "word": "mexico" + }, + "id": 1380, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.79000", + "end": "578.93000", + "feature": { + "word": "and" + }, + "id": 1381, + "attype": "vanilla-forced-alignment" + }, + { + "start": "578.93000", + "end": "579.10000", + "feature": { + "word": "was" + }, + "id": 1382, + "attype": "vanilla-forced-alignment" + }, + { + "start": "579.10000", + "end": "579.64000", + "feature": { + "word": "headquartered" + }, + "id": 1383, + "attype": "vanilla-forced-alignment" + }, + { + "start": "579.64000", + "end": "579.78000", + "feature": { + "word": "in" + }, + "id": 1384, + "attype": "vanilla-forced-alignment" + }, + { + "start": "579.78000", + "end": "580.12000", + "feature": { + "word": "southern" + }, + "id": 1385, + "attype": "vanilla-forced-alignment" + }, + { + "start": "580.12000", + "end": "580.76000", + "feature": { + "word": "california" + }, + "id": 1386, + "attype": "vanilla-forced-alignment" + }, + { + "start": "581.22000", + "end": "581.53000", + "feature": { + "word": "among" + }, + "id": 1388, + "attype": "vanilla-forced-alignment" + }, + { + "start": "581.53000", + "end": "581.74000", + "feature": { + "word": "those" + }, + "id": 1389, + "attype": "vanilla-forced-alignment" + }, + { + "start": "581.74000", + "end": "582.20000", + "feature": { + "word": "charged" + }, + "id": 1390, + "attype": "vanilla-forced-alignment" + }, + { + "start": "582.20000", + "end": "582.33000", + "feature": { + "word": "were" + }, + "id": 1391, + "attype": "vanilla-forced-alignment" + }, + { + "start": "582.33000", + "end": "582.69000", + "feature": { + "word": "pat" + }, + "id": 1392, + "attype": "vanilla-forced-alignment" + }, + { + "start": "582.69000", + "end": "583.21000", + "feature": { + "word": "jacobs" + }, + "id": 1393, + "attype": "vanilla-forced-alignment" + }, + { + "start": "583.21000", + "end": "583.68000", + "feature": { + "word": "assistant" + }, + "id": 1394, + "attype": "vanilla-forced-alignment" + }, + { + "start": "583.68000", + "end": "584.16000", + "feature": { + "word": "football" + }, + "id": 1395, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.16000", + "end": "584.50000", + "feature": { + "word": "coach" + }, + "id": 1396, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.50000", + "end": "584.59000", + "feature": { + "word": "at" + }, + "id": 1397, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.59000", + "end": "584.67000", + "feature": { + "word": "the" + }, + "id": 1398, + "attype": "vanilla-forced-alignment" + }, + { + "start": "584.67000", + "end": "585.19000", + "feature": { + "word": "university" + }, + "id": 1399, + "attype": "vanilla-forced-alignment" + }, + { + "start": "585.19000", + "end": "585.28000", + "feature": { + "word": "of" + }, + "id": 1400, + "attype": "vanilla-forced-alignment" + }, + { + "start": "585.28000", + "end": "585.77000", + "feature": { + "word": "miami" + }, + "id": 1401, + "attype": "vanilla-forced-alignment" + }, + { + "start": "586.07000", + "end": "586.26000", + "feature": { + "word": "and" + }, + "id": 1403, + "attype": "vanilla-forced-alignment" + }, + { + "start": "586.26000", + "end": "586.60000", + "feature": { + "word": "former" + }, + "id": 1404, + "attype": "vanilla-forced-alignment" + }, + { + "start": "586.60000", + "end": "587.00000", + "feature": { + "word": "british" + }, + "id": 1405, + "attype": "vanilla-forced-alignment" + }, + { + "start": "587.00000", + "end": "587.53000", + "feature": { + "word": "olympic" + }, + "id": 1406, + "attype": "vanilla-forced-alignment" + }, + { + "start": "587.53000", + "end": "588.05000", + "feature": { + "word": "medalist" + }, + "id": 1407, + "attype": "vanilla-forced-alignment" + }, + { + "start": "588.05000", + "end": "588.43000", + "feature": { + "word": "david" + }, + "id": 1408, + "attype": "vanilla-forced-alignment" + }, + { + "start": "588.43000", + "end": "588.96000", + "feature": { + "word": "jenkins" + }, + "id": 1409, + "attype": "vanilla-forced-alignment" + }, + { + "start": "588.96000", + "end": "589.31000", + "feature": { + "word": "now" + }, + "id": 1410, + "attype": "vanilla-forced-alignment" + }, + { + "start": "589.31000", + "end": "589.41000", + "feature": { + "word": "of" + }, + "id": 1411, + "attype": "vanilla-forced-alignment" + }, + { + "start": "589.41000", + "end": "590.04000", + "feature": { + "word": "california" + }, + "id": 1412, + "attype": "vanilla-forced-alignment" + }, + { + "start": "590.84000", + "end": "591.05000", + "feature": { + "word": "that" + }, + "id": 1414, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.05000", + "end": "591.11000", + "feature": { + "word": "s" + }, + "id": 1415, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.11000", + "end": "591.23000", + "feature": { + "word": "our" + }, + "id": 1416, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.23000", + "end": "591.47000", + "feature": { + "word": "news" + }, + "id": 1417, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.47000", + "end": "591.87000", + "feature": { + "word": "summary" + }, + "id": 1418, + "attype": "vanilla-forced-alignment" + }, + { + "start": "591.87000", + "end": "592.19000", + "feature": { + "word": "coming" + }, + "id": 1419, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.19000", + "end": "592.38000", + "feature": { + "word": "up" + }, + "id": 1420, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.38000", + "end": "592.47000", + "feature": { + "word": "the" + }, + "id": 1421, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.47000", + "end": "592.83000", + "feature": { + "word": "iran" + }, + "id": 1422, + "attype": "vanilla-forced-alignment" + }, + { + "start": "592.83000", + "end": "593.20000", + "feature": { + "word": "contra" + }, + "id": 1423, + "attype": "vanilla-forced-alignment" + }, + { + "start": "593.20000", + "end": "593.75000", + "feature": { + "word": "hearings" + }, + "id": 1424, + "attype": "vanilla-forced-alignment" + }, + { + "start": "593.75000", + "end": "593.89000", + "feature": { + "word": "the" + }, + "id": 1425, + "attype": "vanilla-forced-alignment" + }, + { + "start": "593.89000", + "end": "594.38000", + "feature": { + "word": "chancellor" + }, + "id": 1426, + "attype": "vanilla-forced-alignment" + }, + { + "start": "594.38000", + "end": "594.47000", + "feature": { + "word": "of" + }, + "id": 1427, + "attype": "vanilla-forced-alignment" + }, + { + "start": "594.47000", + "end": "594.98000", + "feature": { + "word": "austria" + }, + "id": 1428, + "attype": "vanilla-forced-alignment" + }, + { + "start": "594.98000", + "end": "595.18000", + "feature": { + "word": "on" + }, + "id": 1429, + "attype": "vanilla-forced-alignment" + }, + { + "start": "595.18000", + "end": "595.25000", + "feature": { + "word": "the" + }, + "id": 1430, + "attype": "vanilla-forced-alignment" + }, + { + "start": "595.25000", + "end": "595.73000", + "feature": { + "word": "waldheim" + }, + "id": 1431, + "attype": "vanilla-forced-alignment" + }, + { + "start": "595.73000", + "end": "596.25000", + "feature": { + "word": "affair" + }, + "id": 1432, + "attype": "vanilla-forced-alignment" + }, + { + "start": "596.41000", + "end": "596.61000", + "feature": { + "word": "and" + }, + "id": 1434, + "attype": "vanilla-forced-alignment" + }, + { + "start": "596.61000", + "end": "596.67000", + "feature": { + "word": "a" + }, + "id": 1435, + "attype": "vanilla-forced-alignment" + }, + { + "start": "596.67000", + "end": "597.00000", + "feature": { + "word": "roger" + }, + "id": 1436, + "attype": "vanilla-forced-alignment" + }, + { + "start": "597.00000", + "end": "597.21000", + "feature": { + "word": "mudd" + }, + "id": 1437, + "attype": "vanilla-forced-alignment" + }, + { + "start": "597.21000", + "end": "597.55000", + "feature": { + "word": "essay" + }, + "id": 1438, + "attype": "vanilla-forced-alignment" + }, + { + "start": "600.09000", + "end": "604.32000", + "feature": { + "word": "the" + }, + "id": 1440, + "attype": "vanilla-forced-alignment" + }, + { + "start": "604.35000", + "end": "604.75000", + "feature": { + "word": "money" + }, + "id": 1442, + "attype": "vanilla-forced-alignment" + }, + { + "start": "605.12000", + "end": "605.93000", + "feature": { + "word": "trail" + }, + "id": 1444, + "attype": "vanilla-forced-alignment" + }, + { + "start": "607.23000", + "end": "607.40000", + "feature": { + "word": "this" + }, + "id": 1446, + "attype": "vanilla-forced-alignment" + }, + { + "start": "607.40000", + "end": "607.57000", + "feature": { + "word": "was" + }, + "id": 1447, + "attype": "vanilla-forced-alignment" + }, + { + "start": "607.68000", + "end": "608.05000", + "feature": { + "word": "private" + }, + "id": 1449, + "attype": "vanilla-forced-alignment" + }, + { + "start": "608.05000", + "end": "608.43000", + "feature": { + "word": "cash" + }, + "id": 1450, + "attype": "vanilla-forced-alignment" + }, + { + "start": "608.43000", + "end": "608.76000", + "feature": { + "word": "day" + }, + "id": 1451, + "attype": "vanilla-forced-alignment" + }, + { + "start": "608.76000", + "end": "609.12000", + "feature": { + "word": "before" + }, + "id": 1452, + "attype": "vanilla-forced-alignment" + }, + { + "start": "609.12000", + "end": "609.29000", + "feature": { + "word": "the" + }, + "id": 1453, + "attype": "vanilla-forced-alignment" + }, + { + "start": "609.29000", + "end": "609.64000", + "feature": { + "word": "iran" + }, + "id": 1454, + "attype": "vanilla-forced-alignment" + }, + { + "start": "609.64000", + "end": "610.04000", + "feature": { + "word": "contra" + }, + "id": 1455, + "attype": "vanilla-forced-alignment" + }, + { + "start": "610.04000", + "end": "610.53000", + "feature": { + "word": "hearings" + }, + "id": 1456, + "attype": "vanilla-forced-alignment" + }, + { + "start": "610.53000", + "end": "610.72000", + "feature": { + "word": "as" + }, + "id": 1457, + "attype": "vanilla-forced-alignment" + }, + { + "start": "610.72000", + "end": "611.06000", + "feature": { + "word": "wealthy" + }, + "id": 1458, + "attype": "vanilla-forced-alignment" + }, + { + "start": "611.06000", + "end": "611.72000", + "feature": { + "word": "americans" + }, + "id": 1459, + "attype": "vanilla-forced-alignment" + }, + { + "start": "611.72000", + "end": "612.01000", + "feature": { + "word": "talked" + }, + "id": 1460, + "attype": "vanilla-forced-alignment" + }, + { + "start": "612.01000", + "end": "612.14000", + "feature": { + "word": "of" + }, + "id": 1461, + "attype": "vanilla-forced-alignment" + }, + { + "start": "612.14000", + "end": "612.84000", + "feature": { + "word": "contributing" + }, + "id": 1462, + "attype": "vanilla-forced-alignment" + }, + { + "start": "612.84000", + "end": "613.15000", + "feature": { + "word": "money" + }, + "id": 1463, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.15000", + "end": "613.25000", + "feature": { + "word": "to" + }, + "id": 1464, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.25000", + "end": "613.35000", + "feature": { + "word": "the" + }, + "id": 1465, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.35000", + "end": "613.85000", + "feature": { + "word": "contras" + }, + "id": 1466, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.85000", + "end": "613.96000", + "feature": { + "word": "of" + }, + "id": 1467, + "attype": "vanilla-forced-alignment" + }, + { + "start": "613.96000", + "end": "614.64000", + "feature": { + "word": "nicaragua" + }, + "id": 1468, + "attype": "vanilla-forced-alignment" + }, + { + "start": "614.99000", + "end": "615.16000", + "feature": { + "word": "our" + }, + "id": 1470, + "attype": "vanilla-forced-alignment" + }, + { + "start": "615.16000", + "end": "615.56000", + "feature": { + "word": "special" + }, + "id": 1471, + "attype": "vanilla-forced-alignment" + }, + { + "start": "615.56000", + "end": "616.02000", + "feature": { + "word": "coverage" + }, + "id": 1472, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.02000", + "end": "616.42000", + "feature": { + "word": "remains" + }, + "id": 1473, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.42000", + "end": "616.48000", + "feature": { + "word": "in" + }, + "id": 1474, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.48000", + "end": "616.55000", + "feature": { + "word": "the" + }, + "id": 1475, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.55000", + "end": "616.87000", + "feature": { + "word": "hands" + }, + "id": 1476, + "attype": "vanilla-forced-alignment" + }, + { + "start": "616.87000", + "end": "616.96000", + "feature": { + "word": "of" + }, + "id": 1477, + "attype": "vanilla-forced-alignment" + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/video-transcript-demux.json b/tests/mmif-examples/others/video-transcript-demux.json new file mode 100644 index 00000000..d097edc8 --- /dev/null +++ b/tests/mmif-examples/others/video-transcript-demux.json @@ -0,0 +1,26 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.mp4", + "metadata": {} + }, + { + "id": "1", + "type": "text", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.lab", + "metadata": {} + }, + { + "id": "2", + "type": "audio-only", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.wav", + "metadata": {} + } + ], + "contains": {}, + "views": [] +} diff --git a/tests/mmif-examples/others/video-transcript-sentencesplit.json b/tests/mmif-examples/others/video-transcript-sentencesplit.json new file mode 100644 index 00000000..9e67bada --- /dev/null +++ b/tests/mmif-examples/others/video-transcript-sentencesplit.json @@ -0,0 +1,4206 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.mp4", + "metadata": {} + }, + { + "id": "1", + "type": "text", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.lab", + "metadata": {} + } + ], + "contains": { + "segment-sentences": "v_0" + }, + "views": [ + { + "id": "v_0", + "contains": { + "segment-sentences": { + "producer": "", + "gen_time": null + } + }, + "annotations": [ + { + "start": 0, + "end": 20, + "feature": {}, + "id": 0, + "attype": "segment-sentences" + }, + { + "start": 21, + "end": 142, + "feature": {}, + "id": 1, + "attype": "segment-sentences" + }, + { + "start": 143, + "end": 293, + "feature": {}, + "id": 2, + "attype": "segment-sentences" + }, + { + "start": 294, + "end": 349, + "feature": {}, + "id": 3, + "attype": "segment-sentences" + }, + { + "start": 350, + "end": 356, + "feature": {}, + "id": 4, + "attype": "segment-sentences" + }, + { + "start": 358, + "end": 537, + "feature": {}, + "id": 5, + "attype": "segment-sentences" + }, + { + "start": 538, + "end": 641, + "feature": {}, + "id": 6, + "attype": "segment-sentences" + }, + { + "start": 642, + "end": 702, + "feature": {}, + "id": 7, + "attype": "segment-sentences" + }, + { + "start": 703, + "end": 875, + "feature": {}, + "id": 8, + "attype": "segment-sentences" + }, + { + "start": 876, + "end": 982, + "feature": {}, + "id": 9, + "attype": "segment-sentences" + }, + { + "start": 985, + "end": 1084, + "feature": {}, + "id": 10, + "attype": "segment-sentences" + }, + { + "start": 1086, + "end": 1097, + "feature": {}, + "id": 11, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1156, + "feature": {}, + "id": 12, + "attype": "segment-sentences" + }, + { + "start": 1157, + "end": 1320, + "feature": {}, + "id": 13, + "attype": "segment-sentences" + }, + { + "start": 1321, + "end": 1352, + "feature": {}, + "id": 14, + "attype": "segment-sentences" + }, + { + "start": 1353, + "end": 1442, + "feature": {}, + "id": 15, + "attype": "segment-sentences" + }, + { + "start": 1443, + "end": 1462, + "feature": {}, + "id": 16, + "attype": "segment-sentences" + }, + { + "start": 1463, + "end": 1488, + "feature": {}, + "id": 17, + "attype": "segment-sentences" + }, + { + "start": 1489, + "end": 1532, + "feature": {}, + "id": 18, + "attype": "segment-sentences" + }, + { + "start": 1534, + "end": 1741, + "feature": {}, + "id": 19, + "attype": "segment-sentences" + }, + { + "start": 1742, + "end": 1944, + "feature": {}, + "id": 20, + "attype": "segment-sentences" + }, + { + "start": 1945, + "end": 2029, + "feature": {}, + "id": 21, + "attype": "segment-sentences" + }, + { + "start": 2030, + "end": 2223, + "feature": {}, + "id": 22, + "attype": "segment-sentences" + }, + { + "start": 2224, + "end": 2228, + "feature": {}, + "id": 23, + "attype": "segment-sentences" + }, + { + "start": 2230, + "end": 2316, + "feature": {}, + "id": 24, + "attype": "segment-sentences" + }, + { + "start": 2317, + "end": 2426, + "feature": {}, + "id": 25, + "attype": "segment-sentences" + }, + { + "start": 2427, + "end": 2504, + "feature": {}, + "id": 26, + "attype": "segment-sentences" + }, + { + "start": 2505, + "end": 2669, + "feature": {}, + "id": 27, + "attype": "segment-sentences" + }, + { + "start": 2670, + "end": 2800, + "feature": {}, + "id": 28, + "attype": "segment-sentences" + }, + { + "start": 2804, + "end": 2902, + "feature": {}, + "id": 29, + "attype": "segment-sentences" + }, + { + "start": 2903, + "end": 3006, + "feature": {}, + "id": 30, + "attype": "segment-sentences" + }, + { + "start": 3007, + "end": 3114, + "feature": {}, + "id": 31, + "attype": "segment-sentences" + }, + { + "start": 3115, + "end": 3299, + "feature": {}, + "id": 32, + "attype": "segment-sentences" + }, + { + "start": 3301, + "end": 3400, + "feature": {}, + "id": 33, + "attype": "segment-sentences" + }, + { + "start": 3401, + "end": 3530, + "feature": {}, + "id": 34, + "attype": "segment-sentences" + }, + { + "start": 3531, + "end": 3616, + "feature": {}, + "id": 35, + "attype": "segment-sentences" + }, + { + "start": 3617, + "end": 3739, + "feature": {}, + "id": 36, + "attype": "segment-sentences" + }, + { + "start": 3740, + "end": 3779, + "feature": {}, + "id": 37, + "attype": "segment-sentences" + }, + { + "start": 3780, + "end": 3831, + "feature": {}, + "id": 38, + "attype": "segment-sentences" + }, + { + "start": 3835, + "end": 3897, + "feature": {}, + "id": 39, + "attype": "segment-sentences" + }, + { + "start": 3898, + "end": 3983, + "feature": {}, + "id": 40, + "attype": "segment-sentences" + }, + { + "start": 3984, + "end": 4109, + "feature": {}, + "id": 41, + "attype": "segment-sentences" + }, + { + "start": 4110, + "end": 4162, + "feature": {}, + "id": 42, + "attype": "segment-sentences" + }, + { + "start": 4163, + "end": 4325, + "feature": {}, + "id": 43, + "attype": "segment-sentences" + }, + { + "start": 4327, + "end": 4447, + "feature": {}, + "id": 44, + "attype": "segment-sentences" + }, + { + "start": 4448, + "end": 4536, + "feature": {}, + "id": 45, + "attype": "segment-sentences" + }, + { + "start": 4537, + "end": 4691, + "feature": {}, + "id": 46, + "attype": "segment-sentences" + }, + { + "start": 4692, + "end": 4877, + "feature": {}, + "id": 47, + "attype": "segment-sentences" + }, + { + "start": 4880, + "end": 5250, + "feature": {}, + "id": 48, + "attype": "segment-sentences" + }, + { + "start": 5251, + "end": 5393, + "feature": {}, + "id": 49, + "attype": "segment-sentences" + }, + { + "start": 5395, + "end": 5535, + "feature": {}, + "id": 50, + "attype": "segment-sentences" + }, + { + "start": 5536, + "end": 5647, + "feature": {}, + "id": 51, + "attype": "segment-sentences" + }, + { + "start": 5648, + "end": 5696, + "feature": {}, + "id": 52, + "attype": "segment-sentences" + }, + { + "start": 5700, + "end": 5848, + "feature": {}, + "id": 53, + "attype": "segment-sentences" + }, + { + "start": 5849, + "end": 6046, + "feature": {}, + "id": 54, + "attype": "segment-sentences" + }, + { + "start": 6048, + "end": 6113, + "feature": {}, + "id": 55, + "attype": "segment-sentences" + }, + { + "start": 6114, + "end": 6252, + "feature": {}, + "id": 56, + "attype": "segment-sentences" + }, + { + "start": 6253, + "end": 6348, + "feature": {}, + "id": 57, + "attype": "segment-sentences" + }, + { + "start": 6349, + "end": 6460, + "feature": {}, + "id": 58, + "attype": "segment-sentences" + }, + { + "start": 6461, + "end": 6550, + "feature": {}, + "id": 59, + "attype": "segment-sentences" + }, + { + "start": 6552, + "end": 6610, + "feature": {}, + "id": 60, + "attype": "segment-sentences" + }, + { + "start": 6611, + "end": 6756, + "feature": {}, + "id": 61, + "attype": "segment-sentences" + }, + { + "start": 6757, + "end": 6829, + "feature": {}, + "id": 62, + "attype": "segment-sentences" + }, + { + "start": 6830, + "end": 6922, + "feature": {}, + "id": 63, + "attype": "segment-sentences" + }, + { + "start": 6923, + "end": 7052, + "feature": {}, + "id": 64, + "attype": "segment-sentences" + }, + { + "start": 7054, + "end": 7317, + "feature": {}, + "id": 65, + "attype": "segment-sentences" + }, + { + "start": 7318, + "end": 7477, + "feature": {}, + "id": 66, + "attype": "segment-sentences" + }, + { + "start": 7478, + "end": 7502, + "feature": {}, + "id": 67, + "attype": "segment-sentences" + }, + { + "start": 7503, + "end": 7613, + "feature": {}, + "id": 68, + "attype": "segment-sentences" + }, + { + "start": 7614, + "end": 7768, + "feature": {}, + "id": 69, + "attype": "segment-sentences" + }, + { + "start": 7769, + "end": 7828, + "feature": {}, + "id": 70, + "attype": "segment-sentences" + }, + { + "start": 7829, + "end": 7834, + "feature": {}, + "id": 71, + "attype": "segment-sentences" + }, + { + "start": 7837, + "end": 8063, + "feature": {}, + "id": 72, + "attype": "segment-sentences" + }, + { + "start": 8064, + "end": 8179, + "feature": {}, + "id": 73, + "attype": "segment-sentences" + }, + { + "start": 8180, + "end": 8249, + "feature": {}, + "id": 74, + "attype": "segment-sentences" + }, + { + "start": 8250, + "end": 8393, + "feature": {}, + "id": 75, + "attype": "segment-sentences" + }, + { + "start": 8394, + "end": 8587, + "feature": {}, + "id": 76, + "attype": "segment-sentences" + }, + { + "start": 8589, + "end": 8692, + "feature": {}, + "id": 77, + "attype": "segment-sentences" + }, + { + "start": 8693, + "end": 8748, + "feature": {}, + "id": 78, + "attype": "segment-sentences" + }, + { + "start": 8750, + "end": 8874, + "feature": {}, + "id": 79, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 80, + "attype": "segment-sentences" + }, + { + "start": 8880, + "end": 9050, + "feature": {}, + "id": 81, + "attype": "segment-sentences" + }, + { + "start": 9051, + "end": 9136, + "feature": {}, + "id": 82, + "attype": "segment-sentences" + }, + { + "start": 9137, + "end": 9250, + "feature": {}, + "id": 83, + "attype": "segment-sentences" + }, + { + "start": 9251, + "end": 9408, + "feature": {}, + "id": 84, + "attype": "segment-sentences" + }, + { + "start": 9409, + "end": 9508, + "feature": {}, + "id": 85, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 86, + "attype": "segment-sentences" + }, + { + "start": 9514, + "end": 9569, + "feature": {}, + "id": 87, + "attype": "segment-sentences" + }, + { + "start": 9570, + "end": 9615, + "feature": {}, + "id": 88, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 89, + "attype": "segment-sentences" + }, + { + "start": 9621, + "end": 9633, + "feature": {}, + "id": 90, + "attype": "segment-sentences" + }, + { + "start": 9634, + "end": 9671, + "feature": {}, + "id": 91, + "attype": "segment-sentences" + }, + { + "start": 9672, + "end": 9707, + "feature": {}, + "id": 92, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 93, + "attype": "segment-sentences" + }, + { + "start": 9713, + "end": 10026, + "feature": {}, + "id": 94, + "attype": "segment-sentences" + }, + { + "start": 10027, + "end": 10085, + "feature": {}, + "id": 95, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 96, + "attype": "segment-sentences" + }, + { + "start": 10091, + "end": 10100, + "feature": {}, + "id": 97, + "attype": "segment-sentences" + }, + { + "start": 10101, + "end": 10140, + "feature": {}, + "id": 98, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 99, + "attype": "segment-sentences" + }, + { + "start": 10146, + "end": 10184, + "feature": {}, + "id": 100, + "attype": "segment-sentences" + }, + { + "start": 10185, + "end": 10228, + "feature": {}, + "id": 101, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 102, + "attype": "segment-sentences" + }, + { + "start": 10234, + "end": 10290, + "feature": {}, + "id": 103, + "attype": "segment-sentences" + }, + { + "start": 10291, + "end": 10329, + "feature": {}, + "id": 104, + "attype": "segment-sentences" + }, + { + "start": 10330, + "end": 10381, + "feature": {}, + "id": 105, + "attype": "segment-sentences" + }, + { + "start": 10382, + "end": 10461, + "feature": {}, + "id": 106, + "attype": "segment-sentences" + }, + { + "start": 10462, + "end": 10470, + "feature": {}, + "id": 107, + "attype": "segment-sentences" + }, + { + "start": 10471, + "end": 10490, + "feature": {}, + "id": 108, + "attype": "segment-sentences" + }, + { + "start": 10491, + "end": 10544, + "feature": {}, + "id": 109, + "attype": "segment-sentences" + }, + { + "start": 10545, + "end": 10589, + "feature": {}, + "id": 110, + "attype": "segment-sentences" + }, + { + "start": 10590, + "end": 10611, + "feature": {}, + "id": 111, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 112, + "attype": "segment-sentences" + }, + { + "start": 10617, + "end": 10665, + "feature": {}, + "id": 113, + "attype": "segment-sentences" + }, + { + "start": 10666, + "end": 10702, + "feature": {}, + "id": 114, + "attype": "segment-sentences" + }, + { + "start": 10703, + "end": 10726, + "feature": {}, + "id": 115, + "attype": "segment-sentences" + }, + { + "start": 10727, + "end": 10894, + "feature": {}, + "id": 116, + "attype": "segment-sentences" + }, + { + "start": 10895, + "end": 10930, + "feature": {}, + "id": 117, + "attype": "segment-sentences" + }, + { + "start": 10931, + "end": 10966, + "feature": {}, + "id": 118, + "attype": "segment-sentences" + }, + { + "start": 10967, + "end": 10986, + "feature": {}, + "id": 119, + "attype": "segment-sentences" + }, + { + "start": 10590, + "end": 10611, + "feature": {}, + "id": 120, + "attype": "segment-sentences" + }, + { + "start": 11009, + "end": 11079, + "feature": {}, + "id": 121, + "attype": "segment-sentences" + }, + { + "start": 11080, + "end": 11203, + "feature": {}, + "id": 122, + "attype": "segment-sentences" + }, + { + "start": 11204, + "end": 11214, + "feature": {}, + "id": 123, + "attype": "segment-sentences" + }, + { + "start": 11215, + "end": 11279, + "feature": {}, + "id": 124, + "attype": "segment-sentences" + }, + { + "start": 11280, + "end": 11291, + "feature": {}, + "id": 125, + "attype": "segment-sentences" + }, + { + "start": 11292, + "end": 11379, + "feature": {}, + "id": 126, + "attype": "segment-sentences" + }, + { + "start": 11380, + "end": 11434, + "feature": {}, + "id": 127, + "attype": "segment-sentences" + }, + { + "start": 11435, + "end": 11454, + "feature": {}, + "id": 128, + "attype": "segment-sentences" + }, + { + "start": 11455, + "end": 11511, + "feature": {}, + "id": 129, + "attype": "segment-sentences" + }, + { + "start": 11512, + "end": 11598, + "feature": {}, + "id": 130, + "attype": "segment-sentences" + }, + { + "start": 11599, + "end": 11667, + "feature": {}, + "id": 131, + "attype": "segment-sentences" + }, + { + "start": 11668, + "end": 11717, + "feature": {}, + "id": 132, + "attype": "segment-sentences" + }, + { + "start": 11718, + "end": 11822, + "feature": {}, + "id": 133, + "attype": "segment-sentences" + }, + { + "start": 11823, + "end": 11861, + "feature": {}, + "id": 134, + "attype": "segment-sentences" + }, + { + "start": 11862, + "end": 11878, + "feature": {}, + "id": 135, + "attype": "segment-sentences" + }, + { + "start": 11879, + "end": 11937, + "feature": {}, + "id": 136, + "attype": "segment-sentences" + }, + { + "start": 11938, + "end": 12039, + "feature": {}, + "id": 137, + "attype": "segment-sentences" + }, + { + "start": 12040, + "end": 12065, + "feature": {}, + "id": 138, + "attype": "segment-sentences" + }, + { + "start": 12066, + "end": 12127, + "feature": {}, + "id": 139, + "attype": "segment-sentences" + }, + { + "start": 12128, + "end": 12164, + "feature": {}, + "id": 140, + "attype": "segment-sentences" + }, + { + "start": 12165, + "end": 12196, + "feature": {}, + "id": 141, + "attype": "segment-sentences" + }, + { + "start": 12197, + "end": 12230, + "feature": {}, + "id": 142, + "attype": "segment-sentences" + }, + { + "start": 12231, + "end": 12285, + "feature": {}, + "id": 143, + "attype": "segment-sentences" + }, + { + "start": 12286, + "end": 12337, + "feature": {}, + "id": 144, + "attype": "segment-sentences" + }, + { + "start": 11280, + "end": 11291, + "feature": {}, + "id": 145, + "attype": "segment-sentences" + }, + { + "start": 12350, + "end": 12383, + "feature": {}, + "id": 146, + "attype": "segment-sentences" + }, + { + "start": 12384, + "end": 12420, + "feature": {}, + "id": 147, + "attype": "segment-sentences" + }, + { + "start": 12421, + "end": 12523, + "feature": {}, + "id": 148, + "attype": "segment-sentences" + }, + { + "start": 12524, + "end": 12544, + "feature": {}, + "id": 149, + "attype": "segment-sentences" + }, + { + "start": 12545, + "end": 12578, + "feature": {}, + "id": 150, + "attype": "segment-sentences" + }, + { + "start": 12579, + "end": 12747, + "feature": {}, + "id": 151, + "attype": "segment-sentences" + }, + { + "start": 12748, + "end": 12822, + "feature": {}, + "id": 152, + "attype": "segment-sentences" + }, + { + "start": 12826, + "end": 12895, + "feature": {}, + "id": 153, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 154, + "attype": "segment-sentences" + }, + { + "start": 12901, + "end": 13174, + "feature": {}, + "id": 155, + "attype": "segment-sentences" + }, + { + "start": 13175, + "end": 13206, + "feature": {}, + "id": 156, + "attype": "segment-sentences" + }, + { + "start": 13207, + "end": 13240, + "feature": {}, + "id": 157, + "attype": "segment-sentences" + }, + { + "start": 13241, + "end": 13285, + "feature": {}, + "id": 158, + "attype": "segment-sentences" + }, + { + "start": 13286, + "end": 13322, + "feature": {}, + "id": 159, + "attype": "segment-sentences" + }, + { + "start": 13323, + "end": 13383, + "feature": {}, + "id": 160, + "attype": "segment-sentences" + }, + { + "start": 13384, + "end": 13434, + "feature": {}, + "id": 161, + "attype": "segment-sentences" + }, + { + "start": 13435, + "end": 13485, + "feature": {}, + "id": 162, + "attype": "segment-sentences" + }, + { + "start": 13486, + "end": 13526, + "feature": {}, + "id": 163, + "attype": "segment-sentences" + }, + { + "start": 13527, + "end": 13560, + "feature": {}, + "id": 164, + "attype": "segment-sentences" + }, + { + "start": 13561, + "end": 13594, + "feature": {}, + "id": 165, + "attype": "segment-sentences" + }, + { + "start": 13595, + "end": 13635, + "feature": {}, + "id": 166, + "attype": "segment-sentences" + }, + { + "start": 13636, + "end": 13717, + "feature": {}, + "id": 167, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 168, + "attype": "segment-sentences" + }, + { + "start": 13724, + "end": 14023, + "feature": {}, + "id": 169, + "attype": "segment-sentences" + }, + { + "start": 14024, + "end": 14120, + "feature": {}, + "id": 170, + "attype": "segment-sentences" + }, + { + "start": 14121, + "end": 14222, + "feature": {}, + "id": 171, + "attype": "segment-sentences" + }, + { + "start": 14223, + "end": 14326, + "feature": {}, + "id": 172, + "attype": "segment-sentences" + }, + { + "start": 14327, + "end": 14458, + "feature": {}, + "id": 173, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 174, + "attype": "segment-sentences" + }, + { + "start": 10091, + "end": 10100, + "feature": {}, + "id": 175, + "attype": "segment-sentences" + }, + { + "start": 14474, + "end": 14552, + "feature": {}, + "id": 176, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 177, + "attype": "segment-sentences" + }, + { + "start": 14558, + "end": 14570, + "feature": {}, + "id": 178, + "attype": "segment-sentences" + }, + { + "start": 14571, + "end": 14644, + "feature": {}, + "id": 179, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 180, + "attype": "segment-sentences" + }, + { + "start": 11287, + "end": 11291, + "feature": {}, + "id": 181, + "attype": "segment-sentences" + }, + { + "start": 14655, + "end": 14853, + "feature": {}, + "id": 182, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 183, + "attype": "segment-sentences" + }, + { + "start": 14859, + "end": 15074, + "feature": {}, + "id": 184, + "attype": "segment-sentences" + }, + { + "start": 15075, + "end": 15127, + "feature": {}, + "id": 185, + "attype": "segment-sentences" + }, + { + "start": 15128, + "end": 15146, + "feature": {}, + "id": 186, + "attype": "segment-sentences" + }, + { + "start": 15147, + "end": 15178, + "feature": {}, + "id": 187, + "attype": "segment-sentences" + }, + { + "start": 15179, + "end": 15258, + "feature": {}, + "id": 188, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 189, + "attype": "segment-sentences" + }, + { + "start": 10091, + "end": 10100, + "feature": {}, + "id": 190, + "attype": "segment-sentences" + }, + { + "start": 15274, + "end": 15426, + "feature": {}, + "id": 191, + "attype": "segment-sentences" + }, + { + "start": 15427, + "end": 15452, + "feature": {}, + "id": 192, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 193, + "attype": "segment-sentences" + }, + { + "start": 10091, + "end": 10100, + "feature": {}, + "id": 194, + "attype": "segment-sentences" + }, + { + "start": 15468, + "end": 15494, + "feature": {}, + "id": 195, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 196, + "attype": "segment-sentences" + }, + { + "start": 1086, + "end": 1097, + "feature": {}, + "id": 197, + "attype": "segment-sentences" + }, + { + "start": 15512, + "end": 15592, + "feature": {}, + "id": 198, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 199, + "attype": "segment-sentences" + }, + { + "start": 11287, + "end": 11291, + "feature": {}, + "id": 200, + "attype": "segment-sentences" + }, + { + "start": 15603, + "end": 15678, + "feature": {}, + "id": 201, + "attype": "segment-sentences" + }, + { + "start": 15679, + "end": 15707, + "feature": {}, + "id": 202, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 203, + "attype": "segment-sentences" + }, + { + "start": 15713, + "end": 15913, + "feature": {}, + "id": 204, + "attype": "segment-sentences" + }, + { + "start": 15917, + "end": 16010, + "feature": {}, + "id": 205, + "attype": "segment-sentences" + }, + { + "start": 16011, + "end": 16166, + "feature": {}, + "id": 206, + "attype": "segment-sentences" + }, + { + "start": 11280, + "end": 11291, + "feature": {}, + "id": 207, + "attype": "segment-sentences" + }, + { + "start": 16179, + "end": 16236, + "feature": {}, + "id": 208, + "attype": "segment-sentences" + }, + { + "start": 16237, + "end": 16330, + "feature": {}, + "id": 209, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1101, + "feature": {}, + "id": 210, + "attype": "segment-sentences" + }, + { + "start": 16336, + "end": 16484, + "feature": {}, + "id": 211, + "attype": "segment-sentences" + }, + { + "start": 16485, + "end": 16609, + "feature": {}, + "id": 212, + "attype": "segment-sentences" + }, + { + "start": 16610, + "end": 16660, + "feature": {}, + "id": 213, + "attype": "segment-sentences" + }, + { + "start": 16661, + "end": 16707, + "feature": {}, + "id": 214, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1101, + "feature": {}, + "id": 215, + "attype": "segment-sentences" + }, + { + "start": 16713, + "end": 16778, + "feature": {}, + "id": 216, + "attype": "segment-sentences" + }, + { + "start": 16779, + "end": 16867, + "feature": {}, + "id": 217, + "attype": "segment-sentences" + }, + { + "start": 16868, + "end": 16987, + "feature": {}, + "id": 218, + "attype": "segment-sentences" + }, + { + "start": 16988, + "end": 17027, + "feature": {}, + "id": 219, + "attype": "segment-sentences" + }, + { + "start": 17028, + "end": 17107, + "feature": {}, + "id": 220, + "attype": "segment-sentences" + }, + { + "start": 11204, + "end": 11214, + "feature": {}, + "id": 221, + "attype": "segment-sentences" + }, + { + "start": 17119, + "end": 17165, + "feature": {}, + "id": 222, + "attype": "segment-sentences" + }, + { + "start": 11204, + "end": 11214, + "feature": {}, + "id": 223, + "attype": "segment-sentences" + }, + { + "start": 17177, + "end": 17213, + "feature": {}, + "id": 224, + "attype": "segment-sentences" + }, + { + "start": 17214, + "end": 17239, + "feature": {}, + "id": 225, + "attype": "segment-sentences" + }, + { + "start": 17240, + "end": 17431, + "feature": {}, + "id": 226, + "attype": "segment-sentences" + }, + { + "start": 11204, + "end": 11214, + "feature": {}, + "id": 227, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1101, + "feature": {}, + "id": 228, + "attype": "segment-sentences" + }, + { + "start": 17448, + "end": 17520, + "feature": {}, + "id": 229, + "attype": "segment-sentences" + }, + { + "start": 11280, + "end": 11291, + "feature": {}, + "id": 230, + "attype": "segment-sentences" + }, + { + "start": 17533, + "end": 17591, + "feature": {}, + "id": 231, + "attype": "segment-sentences" + }, + { + "start": 17594, + "end": 17731, + "feature": {}, + "id": 232, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17864, + "feature": {}, + "id": 233, + "attype": "segment-sentences" + }, + { + "start": 17865, + "end": 17887, + "feature": {}, + "id": 234, + "attype": "segment-sentences" + }, + { + "start": 17888, + "end": 18021, + "feature": {}, + "id": 235, + "attype": "segment-sentences" + }, + { + "start": 18022, + "end": 18038, + "feature": {}, + "id": 236, + "attype": "segment-sentences" + }, + { + "start": 11280, + "end": 11291, + "feature": {}, + "id": 237, + "attype": "segment-sentences" + }, + { + "start": 18051, + "end": 18090, + "feature": {}, + "id": 238, + "attype": "segment-sentences" + }, + { + "start": 18091, + "end": 18134, + "feature": {}, + "id": 239, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17736, + "feature": {}, + "id": 240, + "attype": "segment-sentences" + }, + { + "start": 10091, + "end": 10100, + "feature": {}, + "id": 241, + "attype": "segment-sentences" + }, + { + "start": 18151, + "end": 18275, + "feature": {}, + "id": 242, + "attype": "segment-sentences" + }, + { + "start": 18276, + "end": 18358, + "feature": {}, + "id": 243, + "attype": "segment-sentences" + }, + { + "start": 18359, + "end": 18422, + "feature": {}, + "id": 244, + "attype": "segment-sentences" + }, + { + "start": 18423, + "end": 18792, + "feature": {}, + "id": 245, + "attype": "segment-sentences" + }, + { + "start": 18793, + "end": 18843, + "feature": {}, + "id": 246, + "attype": "segment-sentences" + }, + { + "start": 18847, + "end": 19042, + "feature": {}, + "id": 247, + "attype": "segment-sentences" + }, + { + "start": 19043, + "end": 19151, + "feature": {}, + "id": 248, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1101, + "feature": {}, + "id": 249, + "attype": "segment-sentences" + }, + { + "start": 19157, + "end": 19221, + "feature": {}, + "id": 250, + "attype": "segment-sentences" + }, + { + "start": 19222, + "end": 19261, + "feature": {}, + "id": 251, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1101, + "feature": {}, + "id": 252, + "attype": "segment-sentences" + }, + { + "start": 19267, + "end": 19366, + "feature": {}, + "id": 253, + "attype": "segment-sentences" + }, + { + "start": 19367, + "end": 19375, + "feature": {}, + "id": 254, + "attype": "segment-sentences" + }, + { + "start": 19376, + "end": 19464, + "feature": {}, + "id": 255, + "attype": "segment-sentences" + }, + { + "start": 19465, + "end": 19493, + "feature": {}, + "id": 256, + "attype": "segment-sentences" + }, + { + "start": 19494, + "end": 19556, + "feature": {}, + "id": 257, + "attype": "segment-sentences" + }, + { + "start": 19557, + "end": 19665, + "feature": {}, + "id": 258, + "attype": "segment-sentences" + }, + { + "start": 19666, + "end": 19711, + "feature": {}, + "id": 259, + "attype": "segment-sentences" + }, + { + "start": 19712, + "end": 19806, + "feature": {}, + "id": 260, + "attype": "segment-sentences" + }, + { + "start": 19807, + "end": 19908, + "feature": {}, + "id": 261, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1101, + "feature": {}, + "id": 262, + "attype": "segment-sentences" + }, + { + "start": 19914, + "end": 19970, + "feature": {}, + "id": 263, + "attype": "segment-sentences" + }, + { + "start": 19971, + "end": 20047, + "feature": {}, + "id": 264, + "attype": "segment-sentences" + }, + { + "start": 20048, + "end": 20071, + "feature": {}, + "id": 265, + "attype": "segment-sentences" + }, + { + "start": 20075, + "end": 20270, + "feature": {}, + "id": 266, + "attype": "segment-sentences" + }, + { + "start": 20271, + "end": 20385, + "feature": {}, + "id": 267, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 268, + "attype": "segment-sentences" + }, + { + "start": 10091, + "end": 10100, + "feature": {}, + "id": 269, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 270, + "attype": "segment-sentences" + }, + { + "start": 20407, + "end": 20482, + "feature": {}, + "id": 271, + "attype": "segment-sentences" + }, + { + "start": 8875, + "end": 8878, + "feature": {}, + "id": 272, + "attype": "segment-sentences" + }, + { + "start": 20488, + "end": 20552, + "feature": {}, + "id": 273, + "attype": "segment-sentences" + }, + { + "start": 20553, + "end": 20641, + "feature": {}, + "id": 274, + "attype": "segment-sentences" + }, + { + "start": 20642, + "end": 20670, + "feature": {}, + "id": 275, + "attype": "segment-sentences" + }, + { + "start": 20671, + "end": 20732, + "feature": {}, + "id": 276, + "attype": "segment-sentences" + }, + { + "start": 20733, + "end": 20790, + "feature": {}, + "id": 277, + "attype": "segment-sentences" + }, + { + "start": 20791, + "end": 20806, + "feature": {}, + "id": 278, + "attype": "segment-sentences" + }, + { + "start": 20807, + "end": 20894, + "feature": {}, + "id": 279, + "attype": "segment-sentences" + }, + { + "start": 20895, + "end": 20921, + "feature": {}, + "id": 280, + "attype": "segment-sentences" + }, + { + "start": 20925, + "end": 21051, + "feature": {}, + "id": 281, + "attype": "segment-sentences" + }, + { + "start": 21052, + "end": 21189, + "feature": {}, + "id": 282, + "attype": "segment-sentences" + }, + { + "start": 21190, + "end": 21267, + "feature": {}, + "id": 283, + "attype": "segment-sentences" + }, + { + "start": 21268, + "end": 21361, + "feature": {}, + "id": 284, + "attype": "segment-sentences" + }, + { + "start": 21362, + "end": 21436, + "feature": {}, + "id": 285, + "attype": "segment-sentences" + }, + { + "start": 21437, + "end": 21558, + "feature": {}, + "id": 286, + "attype": "segment-sentences" + }, + { + "start": 21559, + "end": 21705, + "feature": {}, + "id": 287, + "attype": "segment-sentences" + }, + { + "start": 21706, + "end": 21837, + "feature": {}, + "id": 288, + "attype": "segment-sentences" + }, + { + "start": 21838, + "end": 22000, + "feature": {}, + "id": 289, + "attype": "segment-sentences" + }, + { + "start": 22001, + "end": 22116, + "feature": {}, + "id": 290, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22381, + "feature": {}, + "id": 291, + "attype": "segment-sentences" + }, + { + "start": 22382, + "end": 22432, + "feature": {}, + "id": 292, + "attype": "segment-sentences" + }, + { + "start": 22433, + "end": 22515, + "feature": {}, + "id": 293, + "attype": "segment-sentences" + }, + { + "start": 22516, + "end": 22651, + "feature": {}, + "id": 294, + "attype": "segment-sentences" + }, + { + "start": 22652, + "end": 22813, + "feature": {}, + "id": 295, + "attype": "segment-sentences" + }, + { + "start": 22814, + "end": 22919, + "feature": {}, + "id": 296, + "attype": "segment-sentences" + }, + { + "start": 22920, + "end": 23096, + "feature": {}, + "id": 297, + "attype": "segment-sentences" + }, + { + "start": 23097, + "end": 23251, + "feature": {}, + "id": 298, + "attype": "segment-sentences" + }, + { + "start": 23252, + "end": 23346, + "feature": {}, + "id": 299, + "attype": "segment-sentences" + }, + { + "start": 23347, + "end": 23432, + "feature": {}, + "id": 300, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 301, + "attype": "segment-sentences" + }, + { + "start": 23439, + "end": 23515, + "feature": {}, + "id": 302, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17736, + "feature": {}, + "id": 303, + "attype": "segment-sentences" + }, + { + "start": 23522, + "end": 23584, + "feature": {}, + "id": 304, + "attype": "segment-sentences" + }, + { + "start": 23585, + "end": 23597, + "feature": {}, + "id": 305, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17736, + "feature": {}, + "id": 306, + "attype": "segment-sentences" + }, + { + "start": 23604, + "end": 23726, + "feature": {}, + "id": 307, + "attype": "segment-sentences" + }, + { + "start": 23727, + "end": 23972, + "feature": {}, + "id": 308, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 309, + "attype": "segment-sentences" + }, + { + "start": 23979, + "end": 24038, + "feature": {}, + "id": 310, + "attype": "segment-sentences" + }, + { + "start": 24039, + "end": 24139, + "feature": {}, + "id": 311, + "attype": "segment-sentences" + }, + { + "start": 24140, + "end": 24171, + "feature": {}, + "id": 312, + "attype": "segment-sentences" + }, + { + "start": 24172, + "end": 24236, + "feature": {}, + "id": 313, + "attype": "segment-sentences" + }, + { + "start": 24237, + "end": 24403, + "feature": {}, + "id": 314, + "attype": "segment-sentences" + }, + { + "start": 24407, + "end": 24604, + "feature": {}, + "id": 315, + "attype": "segment-sentences" + }, + { + "start": 1098, + "end": 1101, + "feature": {}, + "id": 316, + "attype": "segment-sentences" + }, + { + "start": 24610, + "end": 24692, + "feature": {}, + "id": 317, + "attype": "segment-sentences" + }, + { + "start": 24693, + "end": 24714, + "feature": {}, + "id": 318, + "attype": "segment-sentences" + }, + { + "start": 24715, + "end": 24868, + "feature": {}, + "id": 319, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 320, + "attype": "segment-sentences" + }, + { + "start": 11287, + "end": 11291, + "feature": {}, + "id": 321, + "attype": "segment-sentences" + }, + { + "start": 24880, + "end": 24945, + "feature": {}, + "id": 322, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 323, + "attype": "segment-sentences" + }, + { + "start": 24952, + "end": 25102, + "feature": {}, + "id": 324, + "attype": "segment-sentences" + }, + { + "start": 25103, + "end": 25120, + "feature": {}, + "id": 325, + "attype": "segment-sentences" + }, + { + "start": 25121, + "end": 25215, + "feature": {}, + "id": 326, + "attype": "segment-sentences" + }, + { + "start": 25216, + "end": 25293, + "feature": {}, + "id": 327, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 328, + "attype": "segment-sentences" + }, + { + "start": 25300, + "end": 25325, + "feature": {}, + "id": 329, + "attype": "segment-sentences" + }, + { + "start": 25326, + "end": 25395, + "feature": {}, + "id": 330, + "attype": "segment-sentences" + }, + { + "start": 25396, + "end": 25411, + "feature": {}, + "id": 331, + "attype": "segment-sentences" + }, + { + "start": 25415, + "end": 25621, + "feature": {}, + "id": 332, + "attype": "segment-sentences" + }, + { + "start": 25622, + "end": 25664, + "feature": {}, + "id": 333, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 334, + "attype": "segment-sentences" + }, + { + "start": 25671, + "end": 25682, + "feature": {}, + "id": 335, + "attype": "segment-sentences" + }, + { + "start": 25683, + "end": 25822, + "feature": {}, + "id": 336, + "attype": "segment-sentences" + }, + { + "start": 24693, + "end": 24714, + "feature": {}, + "id": 337, + "attype": "segment-sentences" + }, + { + "start": 25845, + "end": 26029, + "feature": {}, + "id": 338, + "attype": "segment-sentences" + }, + { + "start": 26030, + "end": 26043, + "feature": {}, + "id": 339, + "attype": "segment-sentences" + }, + { + "start": 26044, + "end": 26066, + "feature": {}, + "id": 340, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 341, + "attype": "segment-sentences" + }, + { + "start": 26073, + "end": 26174, + "feature": {}, + "id": 342, + "attype": "segment-sentences" + }, + { + "start": 26175, + "end": 26307, + "feature": {}, + "id": 343, + "attype": "segment-sentences" + }, + { + "start": 18022, + "end": 18038, + "feature": {}, + "id": 344, + "attype": "segment-sentences" + }, + { + "start": 26325, + "end": 26358, + "feature": {}, + "id": 345, + "attype": "segment-sentences" + }, + { + "start": 26359, + "end": 26388, + "feature": {}, + "id": 346, + "attype": "segment-sentences" + }, + { + "start": 26389, + "end": 26499, + "feature": {}, + "id": 347, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 348, + "attype": "segment-sentences" + }, + { + "start": 26506, + "end": 26529, + "feature": {}, + "id": 349, + "attype": "segment-sentences" + }, + { + "start": 26530, + "end": 26556, + "feature": {}, + "id": 350, + "attype": "segment-sentences" + }, + { + "start": 26557, + "end": 26679, + "feature": {}, + "id": 351, + "attype": "segment-sentences" + }, + { + "start": 22117, + "end": 22121, + "feature": {}, + "id": 352, + "attype": "segment-sentences" + }, + { + "start": 26686, + "end": 26831, + "feature": {}, + "id": 353, + "attype": "segment-sentences" + }, + { + "start": 26832, + "end": 26938, + "feature": {}, + "id": 354, + "attype": "segment-sentences" + }, + { + "start": 26939, + "end": 27158, + "feature": {}, + "id": 355, + "attype": "segment-sentences" + }, + { + "start": 27159, + "end": 27262, + "feature": {}, + "id": 356, + "attype": "segment-sentences" + }, + { + "start": 24693, + "end": 24714, + "feature": {}, + "id": 357, + "attype": "segment-sentences" + }, + { + "start": 27285, + "end": 27316, + "feature": {}, + "id": 358, + "attype": "segment-sentences" + }, + { + "start": 27317, + "end": 27365, + "feature": {}, + "id": 359, + "attype": "segment-sentences" + }, + { + "start": 27366, + "end": 27375, + "feature": {}, + "id": 360, + "attype": "segment-sentences" + }, + { + "start": 27376, + "end": 27417, + "feature": {}, + "id": 361, + "attype": "segment-sentences" + }, + { + "start": 27418, + "end": 27430, + "feature": {}, + "id": 362, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 363, + "attype": "segment-sentences" + }, + { + "start": 27437, + "end": 27526, + "feature": {}, + "id": 364, + "attype": "segment-sentences" + }, + { + "start": 27527, + "end": 27618, + "feature": {}, + "id": 365, + "attype": "segment-sentences" + }, + { + "start": 27619, + "end": 27686, + "feature": {}, + "id": 366, + "attype": "segment-sentences" + }, + { + "start": 27687, + "end": 28060, + "feature": {}, + "id": 367, + "attype": "segment-sentences" + }, + { + "start": 28061, + "end": 28122, + "feature": {}, + "id": 368, + "attype": "segment-sentences" + }, + { + "start": 28123, + "end": 28148, + "feature": {}, + "id": 369, + "attype": "segment-sentences" + }, + { + "start": 28152, + "end": 28358, + "feature": {}, + "id": 370, + "attype": "segment-sentences" + }, + { + "start": 28359, + "end": 28441, + "feature": {}, + "id": 371, + "attype": "segment-sentences" + }, + { + "start": 350, + "end": 356, + "feature": {}, + "id": 372, + "attype": "segment-sentences" + }, + { + "start": 28450, + "end": 28620, + "feature": {}, + "id": 373, + "attype": "segment-sentences" + }, + { + "start": 28621, + "end": 28669, + "feature": {}, + "id": 374, + "attype": "segment-sentences" + }, + { + "start": 28670, + "end": 28804, + "feature": {}, + "id": 375, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17736, + "feature": {}, + "id": 376, + "attype": "segment-sentences" + }, + { + "start": 28811, + "end": 28828, + "feature": {}, + "id": 377, + "attype": "segment-sentences" + }, + { + "start": 28829, + "end": 28907, + "feature": {}, + "id": 378, + "attype": "segment-sentences" + }, + { + "start": 28908, + "end": 28924, + "feature": {}, + "id": 379, + "attype": "segment-sentences" + }, + { + "start": 28925, + "end": 29007, + "feature": {}, + "id": 380, + "attype": "segment-sentences" + }, + { + "start": 29008, + "end": 29115, + "feature": {}, + "id": 381, + "attype": "segment-sentences" + }, + { + "start": 29116, + "end": 29236, + "feature": {}, + "id": 382, + "attype": "segment-sentences" + }, + { + "start": 29237, + "end": 29311, + "feature": {}, + "id": 383, + "attype": "segment-sentences" + }, + { + "start": 29313, + "end": 29490, + "feature": {}, + "id": 384, + "attype": "segment-sentences" + }, + { + "start": 29491, + "end": 29500, + "feature": {}, + "id": 385, + "attype": "segment-sentences" + }, + { + "start": 29501, + "end": 29635, + "feature": {}, + "id": 386, + "attype": "segment-sentences" + }, + { + "start": 29636, + "end": 29651, + "feature": {}, + "id": 387, + "attype": "segment-sentences" + }, + { + "start": 29652, + "end": 29886, + "feature": {}, + "id": 388, + "attype": "segment-sentences" + }, + { + "start": 29888, + "end": 30035, + "feature": {}, + "id": 389, + "attype": "segment-sentences" + }, + { + "start": 30036, + "end": 30078, + "feature": {}, + "id": 390, + "attype": "segment-sentences" + }, + { + "start": 30079, + "end": 30135, + "feature": {}, + "id": 391, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 392, + "attype": "segment-sentences" + }, + { + "start": 30142, + "end": 30152, + "feature": {}, + "id": 393, + "attype": "segment-sentences" + }, + { + "start": 30153, + "end": 30181, + "feature": {}, + "id": 394, + "attype": "segment-sentences" + }, + { + "start": 30183, + "end": 30219, + "feature": {}, + "id": 395, + "attype": "segment-sentences" + }, + { + "start": 30220, + "end": 30269, + "feature": {}, + "id": 396, + "attype": "segment-sentences" + }, + { + "start": 30270, + "end": 30341, + "feature": {}, + "id": 397, + "attype": "segment-sentences" + }, + { + "start": 30342, + "end": 30400, + "feature": {}, + "id": 398, + "attype": "segment-sentences" + }, + { + "start": 30401, + "end": 30467, + "feature": {}, + "id": 399, + "attype": "segment-sentences" + }, + { + "start": 30468, + "end": 30522, + "feature": {}, + "id": 400, + "attype": "segment-sentences" + }, + { + "start": 30523, + "end": 30615, + "feature": {}, + "id": 401, + "attype": "segment-sentences" + }, + { + "start": 30616, + "end": 30687, + "feature": {}, + "id": 402, + "attype": "segment-sentences" + }, + { + "start": 30688, + "end": 30768, + "feature": {}, + "id": 403, + "attype": "segment-sentences" + }, + { + "start": 30770, + "end": 30892, + "feature": {}, + "id": 404, + "attype": "segment-sentences" + }, + { + "start": 30893, + "end": 30913, + "feature": {}, + "id": 405, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17736, + "feature": {}, + "id": 406, + "attype": "segment-sentences" + }, + { + "start": 30920, + "end": 30955, + "feature": {}, + "id": 407, + "attype": "segment-sentences" + }, + { + "start": 30957, + "end": 31077, + "feature": {}, + "id": 408, + "attype": "segment-sentences" + }, + { + "start": 31078, + "end": 31133, + "feature": {}, + "id": 409, + "attype": "segment-sentences" + }, + { + "start": 31134, + "end": 31286, + "feature": {}, + "id": 410, + "attype": "segment-sentences" + }, + { + "start": 31287, + "end": 31390, + "feature": {}, + "id": 411, + "attype": "segment-sentences" + }, + { + "start": 31391, + "end": 31614, + "feature": {}, + "id": 412, + "attype": "segment-sentences" + }, + { + "start": 31615, + "end": 31660, + "feature": {}, + "id": 413, + "attype": "segment-sentences" + }, + { + "start": 31661, + "end": 31746, + "feature": {}, + "id": 414, + "attype": "segment-sentences" + }, + { + "start": 31747, + "end": 31774, + "feature": {}, + "id": 415, + "attype": "segment-sentences" + }, + { + "start": 31775, + "end": 31900, + "feature": {}, + "id": 416, + "attype": "segment-sentences" + }, + { + "start": 31901, + "end": 31925, + "feature": {}, + "id": 417, + "attype": "segment-sentences" + }, + { + "start": 31927, + "end": 32160, + "feature": {}, + "id": 418, + "attype": "segment-sentences" + }, + { + "start": 32161, + "end": 32257, + "feature": {}, + "id": 419, + "attype": "segment-sentences" + }, + { + "start": 32258, + "end": 32533, + "feature": {}, + "id": 420, + "attype": "segment-sentences" + }, + { + "start": 32534, + "end": 32620, + "feature": {}, + "id": 421, + "attype": "segment-sentences" + }, + { + "start": 32621, + "end": 32726, + "feature": {}, + "id": 422, + "attype": "segment-sentences" + }, + { + "start": 32728, + "end": 32818, + "feature": {}, + "id": 423, + "attype": "segment-sentences" + }, + { + "start": 32819, + "end": 32870, + "feature": {}, + "id": 424, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17736, + "feature": {}, + "id": 425, + "attype": "segment-sentences" + }, + { + "start": 32877, + "end": 32909, + "feature": {}, + "id": 426, + "attype": "segment-sentences" + }, + { + "start": 32910, + "end": 33002, + "feature": {}, + "id": 427, + "attype": "segment-sentences" + }, + { + "start": 33003, + "end": 33165, + "feature": {}, + "id": 428, + "attype": "segment-sentences" + }, + { + "start": 33166, + "end": 33207, + "feature": {}, + "id": 429, + "attype": "segment-sentences" + }, + { + "start": 33209, + "end": 33241, + "feature": {}, + "id": 430, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 431, + "attype": "segment-sentences" + }, + { + "start": 30142, + "end": 30152, + "feature": {}, + "id": 432, + "attype": "segment-sentences" + }, + { + "start": 33259, + "end": 33358, + "feature": {}, + "id": 433, + "attype": "segment-sentences" + }, + { + "start": 33360, + "end": 33635, + "feature": {}, + "id": 434, + "attype": "segment-sentences" + }, + { + "start": 33636, + "end": 33698, + "feature": {}, + "id": 435, + "attype": "segment-sentences" + }, + { + "start": 33699, + "end": 33815, + "feature": {}, + "id": 436, + "attype": "segment-sentences" + }, + { + "start": 33816, + "end": 33915, + "feature": {}, + "id": 437, + "attype": "segment-sentences" + }, + { + "start": 33916, + "end": 34001, + "feature": {}, + "id": 438, + "attype": "segment-sentences" + }, + { + "start": 34002, + "end": 34294, + "feature": {}, + "id": 439, + "attype": "segment-sentences" + }, + { + "start": 34295, + "end": 34383, + "feature": {}, + "id": 440, + "attype": "segment-sentences" + }, + { + "start": 34384, + "end": 34435, + "feature": {}, + "id": 441, + "attype": "segment-sentences" + }, + { + "start": 34436, + "end": 34638, + "feature": {}, + "id": 442, + "attype": "segment-sentences" + }, + { + "start": 34640, + "end": 34944, + "feature": {}, + "id": 443, + "attype": "segment-sentences" + }, + { + "start": 34945, + "end": 35015, + "feature": {}, + "id": 444, + "attype": "segment-sentences" + }, + { + "start": 17732, + "end": 17736, + "feature": {}, + "id": 445, + "attype": "segment-sentences" + }, + { + "start": 28811, + "end": 28828, + "feature": {}, + "id": 446, + "attype": "segment-sentences" + }, + { + "start": 35040, + "end": 35110, + "feature": {}, + "id": 447, + "attype": "segment-sentences" + }, + { + "start": 35111, + "end": 35300, + "feature": {}, + "id": 448, + "attype": "segment-sentences" + }, + { + "start": 35301, + "end": 35385, + "feature": {}, + "id": 449, + "attype": "segment-sentences" + }, + { + "start": 35386, + "end": 35493, + "feature": {}, + "id": 450, + "attype": "segment-sentences" + }, + { + "start": 35494, + "end": 35562, + "feature": {}, + "id": 451, + "attype": "segment-sentences" + }, + { + "start": 35563, + "end": 35652, + "feature": {}, + "id": 452, + "attype": "segment-sentences" + }, + { + "start": 35653, + "end": 35675, + "feature": {}, + "id": 453, + "attype": "segment-sentences" + }, + { + "start": 35676, + "end": 35702, + "feature": {}, + "id": 454, + "attype": "segment-sentences" + }, + { + "start": 35703, + "end": 35760, + "feature": {}, + "id": 455, + "attype": "segment-sentences" + }, + { + "start": 35761, + "end": 35842, + "feature": {}, + "id": 456, + "attype": "segment-sentences" + }, + { + "start": 35843, + "end": 35899, + "feature": {}, + "id": 457, + "attype": "segment-sentences" + }, + { + "start": 35900, + "end": 35980, + "feature": {}, + "id": 458, + "attype": "segment-sentences" + }, + { + "start": 35981, + "end": 36056, + "feature": {}, + "id": 459, + "attype": "segment-sentences" + }, + { + "start": 36058, + "end": 36343, + "feature": {}, + "id": 460, + "attype": "segment-sentences" + }, + { + "start": 36344, + "end": 36457, + "feature": {}, + "id": 461, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 462, + "attype": "segment-sentences" + }, + { + "start": 36464, + "end": 36531, + "feature": {}, + "id": 463, + "attype": "segment-sentences" + }, + { + "start": 36532, + "end": 36655, + "feature": {}, + "id": 464, + "attype": "segment-sentences" + }, + { + "start": 36656, + "end": 36695, + "feature": {}, + "id": 465, + "attype": "segment-sentences" + }, + { + "start": 36696, + "end": 36756, + "feature": {}, + "id": 466, + "attype": "segment-sentences" + }, + { + "start": 36757, + "end": 36930, + "feature": {}, + "id": 467, + "attype": "segment-sentences" + }, + { + "start": 36931, + "end": 37140, + "feature": {}, + "id": 468, + "attype": "segment-sentences" + }, + { + "start": 37141, + "end": 37208, + "feature": {}, + "id": 469, + "attype": "segment-sentences" + }, + { + "start": 37209, + "end": 37305, + "feature": {}, + "id": 470, + "attype": "segment-sentences" + }, + { + "start": 37306, + "end": 37362, + "feature": {}, + "id": 471, + "attype": "segment-sentences" + }, + { + "start": 37363, + "end": 37411, + "feature": {}, + "id": 472, + "attype": "segment-sentences" + }, + { + "start": 37412, + "end": 37500, + "feature": {}, + "id": 473, + "attype": "segment-sentences" + }, + { + "start": 37501, + "end": 37612, + "feature": {}, + "id": 474, + "attype": "segment-sentences" + }, + { + "start": 37614, + "end": 37729, + "feature": {}, + "id": 475, + "attype": "segment-sentences" + }, + { + "start": 37730, + "end": 37829, + "feature": {}, + "id": 476, + "attype": "segment-sentences" + }, + { + "start": 13718, + "end": 13722, + "feature": {}, + "id": 477, + "attype": "segment-sentences" + }, + { + "start": 37836, + "end": 37938, + "feature": {}, + "id": 478, + "attype": "segment-sentences" + }, + { + "start": 37939, + "end": 38084, + "feature": {}, + "id": 479, + "attype": "segment-sentences" + }, + { + "start": 38085, + "end": 38160, + "feature": {}, + "id": 480, + "attype": "segment-sentences" + }, + { + "start": 38161, + "end": 38286, + "feature": {}, + "id": 481, + "attype": "segment-sentences" + }, + { + "start": 38287, + "end": 38365, + "feature": {}, + "id": 482, + "attype": "segment-sentences" + }, + { + "start": 38366, + "end": 38474, + "feature": {}, + "id": 483, + "attype": "segment-sentences" + }, + { + "start": 38475, + "end": 38617, + "feature": {}, + "id": 484, + "attype": "segment-sentences" + }, + { + "start": 38619, + "end": 38629, + "feature": {}, + "id": 485, + "attype": "segment-sentences" + }, + { + "start": 38630, + "end": 38706, + "feature": {}, + "id": 486, + "attype": "segment-sentences" + }, + { + "start": 38707, + "end": 38761, + "feature": {}, + "id": 487, + "attype": "segment-sentences" + }, + { + "start": 38762, + "end": 38869, + "feature": {}, + "id": 488, + "attype": "segment-sentences" + }, + { + "start": 38870, + "end": 39031, + "feature": {}, + "id": 489, + "attype": "segment-sentences" + }, + { + "start": 39032, + "end": 39194, + "feature": {}, + "id": 490, + "attype": "segment-sentences" + }, + { + "start": 39195, + "end": 39226, + "feature": {}, + "id": 491, + "attype": "segment-sentences" + }, + { + "start": 39227, + "end": 39288, + "feature": {}, + "id": 492, + "attype": "segment-sentences" + }, + { + "start": 39289, + "end": 39358, + "feature": {}, + "id": 493, + "attype": "segment-sentences" + }, + { + "start": 39359, + "end": 39410, + "feature": {}, + "id": 494, + "attype": "segment-sentences" + }, + { + "start": 39411, + "end": 39465, + "feature": {}, + "id": 495, + "attype": "segment-sentences" + }, + { + "start": 39466, + "end": 39486, + "feature": {}, + "id": 496, + "attype": "segment-sentences" + }, + { + "start": 39487, + "end": 39550, + "feature": {}, + "id": 497, + "attype": "segment-sentences" + }, + { + "start": 39551, + "end": 39572, + "feature": {}, + "id": 498, + "attype": "segment-sentences" + }, + { + "start": 39574, + "end": 39651, + "feature": {}, + "id": 499, + "attype": "segment-sentences" + }, + { + "start": 39652, + "end": 39761, + "feature": {}, + "id": 500, + "attype": "segment-sentences" + }, + { + "start": 39762, + "end": 39805, + "feature": {}, + "id": 501, + "attype": "segment-sentences" + }, + { + "start": 39806, + "end": 39844, + "feature": {}, + "id": 502, + "attype": "segment-sentences" + }, + { + "start": 39845, + "end": 40057, + "feature": {}, + "id": 503, + "attype": "segment-sentences" + }, + { + "start": 40058, + "end": 40354, + "feature": {}, + "id": 504, + "attype": "segment-sentences" + }, + { + "start": 40356, + "end": 40463, + "feature": {}, + "id": 505, + "attype": "segment-sentences" + }, + { + "start": 40464, + "end": 40623, + "feature": {}, + "id": 506, + "attype": "segment-sentences" + }, + { + "start": 40624, + "end": 40705, + "feature": {}, + "id": 507, + "attype": "segment-sentences" + }, + { + "start": 40706, + "end": 41000, + "feature": {}, + "id": 508, + "attype": "segment-sentences" + }, + { + "start": 41002, + "end": 41037, + "feature": {}, + "id": 509, + "attype": "segment-sentences" + }, + { + "start": 41038, + "end": 41135, + "feature": {}, + "id": 510, + "attype": "segment-sentences" + }, + { + "start": 41136, + "end": 41283, + "feature": {}, + "id": 511, + "attype": "segment-sentences" + }, + { + "start": 41284, + "end": 41344, + "feature": {}, + "id": 512, + "attype": "segment-sentences" + }, + { + "start": 41345, + "end": 41429, + "feature": {}, + "id": 513, + "attype": "segment-sentences" + }, + { + "start": 41430, + "end": 41550, + "feature": {}, + "id": 514, + "attype": "segment-sentences" + }, + { + "start": 41551, + "end": 41617, + "feature": {}, + "id": 515, + "attype": "segment-sentences" + }, + { + "start": 41619, + "end": 41798, + "feature": {}, + "id": 516, + "attype": "segment-sentences" + }, + { + "start": 41799, + "end": 41835, + "feature": {}, + "id": 517, + "attype": "segment-sentences" + }, + { + "start": 41836, + "end": 41963, + "feature": {}, + "id": 518, + "attype": "segment-sentences" + }, + { + "start": 41965, + "end": 42113, + "feature": {}, + "id": 519, + "attype": "segment-sentences" + }, + { + "start": 42114, + "end": 42159, + "feature": {}, + "id": 520, + "attype": "segment-sentences" + }, + { + "start": 42160, + "end": 42186, + "feature": {}, + "id": 521, + "attype": "segment-sentences" + }, + { + "start": 42187, + "end": 42254, + "feature": {}, + "id": 522, + "attype": "segment-sentences" + }, + { + "start": 42255, + "end": 42297, + "feature": {}, + "id": 523, + "attype": "segment-sentences" + }, + { + "start": 42298, + "end": 42591, + "feature": {}, + "id": 524, + "attype": "segment-sentences" + }, + { + "start": 42592, + "end": 42649, + "feature": {}, + "id": 525, + "attype": "segment-sentences" + }, + { + "start": 42651, + "end": 42759, + "feature": {}, + "id": 526, + "attype": "segment-sentences" + }, + { + "start": 42760, + "end": 42813, + "feature": {}, + "id": 527, + "attype": "segment-sentences" + }, + { + "start": 42814, + "end": 43068, + "feature": {}, + "id": 528, + "attype": "segment-sentences" + }, + { + "start": 43070, + "end": 43100, + "feature": {}, + "id": 529, + "attype": "segment-sentences" + }, + { + "start": 43101, + "end": 43198, + "feature": {}, + "id": 530, + "attype": "segment-sentences" + }, + { + "start": 43199, + "end": 43695, + "feature": {}, + "id": 531, + "attype": "segment-sentences" + }, + { + "start": 43697, + "end": 44057, + "feature": {}, + "id": 532, + "attype": "segment-sentences" + }, + { + "start": 44058, + "end": 44120, + "feature": {}, + "id": 533, + "attype": "segment-sentences" + }, + { + "start": 44121, + "end": 44217, + "feature": {}, + "id": 534, + "attype": "segment-sentences" + }, + { + "start": 44219, + "end": 44289, + "feature": {}, + "id": 535, + "attype": "segment-sentences" + }, + { + "start": 44290, + "end": 44665, + "feature": {}, + "id": 536, + "attype": "segment-sentences" + }, + { + "start": 44666, + "end": 44727, + "feature": {}, + "id": 537, + "attype": "segment-sentences" + }, + { + "start": 44728, + "end": 44778, + "feature": {}, + "id": 538, + "attype": "segment-sentences" + }, + { + "start": 44779, + "end": 44895, + "feature": {}, + "id": 539, + "attype": "segment-sentences" + }, + { + "start": 44896, + "end": 45142, + "feature": {}, + "id": 540, + "attype": "segment-sentences" + }, + { + "start": 45144, + "end": 45194, + "feature": {}, + "id": 541, + "attype": "segment-sentences" + }, + { + "start": 45195, + "end": 45336, + "feature": {}, + "id": 542, + "attype": "segment-sentences" + }, + { + "start": 45340, + "end": 45503, + "feature": {}, + "id": 543, + "attype": "segment-sentences" + }, + { + "start": 45504, + "end": 45575, + "feature": {}, + "id": 544, + "attype": "segment-sentences" + }, + { + "start": 45576, + "end": 45628, + "feature": {}, + "id": 545, + "attype": "segment-sentences" + }, + { + "start": 45629, + "end": 45758, + "feature": {}, + "id": 546, + "attype": "segment-sentences" + }, + { + "start": 45759, + "end": 45801, + "feature": {}, + "id": 547, + "attype": "segment-sentences" + }, + { + "start": 45802, + "end": 45911, + "feature": {}, + "id": 548, + "attype": "segment-sentences" + }, + { + "start": 45912, + "end": 46004, + "feature": {}, + "id": 549, + "attype": "segment-sentences" + }, + { + "start": 46005, + "end": 46096, + "feature": {}, + "id": 550, + "attype": "segment-sentences" + }, + { + "start": 46097, + "end": 46264, + "feature": {}, + "id": 551, + "attype": "segment-sentences" + }, + { + "start": 46265, + "end": 46542, + "feature": {}, + "id": 552, + "attype": "segment-sentences" + }, + { + "start": 46543, + "end": 46600, + "feature": {}, + "id": 553, + "attype": "segment-sentences" + }, + { + "start": 46601, + "end": 46636, + "feature": {}, + "id": 554, + "attype": "segment-sentences" + }, + { + "start": 46637, + "end": 46690, + "feature": {}, + "id": 555, + "attype": "segment-sentences" + }, + { + "start": 46691, + "end": 46846, + "feature": {}, + "id": 556, + "attype": "segment-sentences" + }, + { + "start": 46847, + "end": 46946, + "feature": {}, + "id": 557, + "attype": "segment-sentences" + }, + { + "start": 46947, + "end": 47069, + "feature": {}, + "id": 558, + "attype": "segment-sentences" + }, + { + "start": 47070, + "end": 47130, + "feature": {}, + "id": 559, + "attype": "segment-sentences" + }, + { + "start": 47131, + "end": 47202, + "feature": {}, + "id": 560, + "attype": "segment-sentences" + }, + { + "start": 47203, + "end": 47256, + "feature": {}, + "id": 561, + "attype": "segment-sentences" + }, + { + "start": 47257, + "end": 47297, + "feature": {}, + "id": 562, + "attype": "segment-sentences" + }, + { + "start": 47298, + "end": 47316, + "feature": {}, + "id": 563, + "attype": "segment-sentences" + }, + { + "start": 47317, + "end": 47336, + "feature": {}, + "id": 564, + "attype": "segment-sentences" + }, + { + "start": 47337, + "end": 47436, + "feature": {}, + "id": 565, + "attype": "segment-sentences" + }, + { + "start": 47437, + "end": 47489, + "feature": {}, + "id": 566, + "attype": "segment-sentences" + }, + { + "start": 47490, + "end": 47613, + "feature": {}, + "id": 567, + "attype": "segment-sentences" + }, + { + "start": 47614, + "end": 47718, + "feature": {}, + "id": 568, + "attype": "segment-sentences" + }, + { + "start": 47719, + "end": 47832, + "feature": {}, + "id": 569, + "attype": "segment-sentences" + }, + { + "start": 47833, + "end": 47934, + "feature": {}, + "id": 570, + "attype": "segment-sentences" + }, + { + "start": 47935, + "end": 48048, + "feature": {}, + "id": 571, + "attype": "segment-sentences" + }, + { + "start": 48049, + "end": 48134, + "feature": {}, + "id": 572, + "attype": "segment-sentences" + }, + { + "start": 48135, + "end": 48232, + "feature": {}, + "id": 573, + "attype": "segment-sentences" + }, + { + "start": 48233, + "end": 48327, + "feature": {}, + "id": 574, + "attype": "segment-sentences" + }, + { + "start": 48328, + "end": 48437, + "feature": {}, + "id": 575, + "attype": "segment-sentences" + }, + { + "start": 48438, + "end": 48460, + "feature": {}, + "id": 576, + "attype": "segment-sentences" + }, + { + "start": 48461, + "end": 48568, + "feature": {}, + "id": 577, + "attype": "segment-sentences" + }, + { + "start": 48569, + "end": 48739, + "feature": {}, + "id": 578, + "attype": "segment-sentences" + }, + { + "start": 48740, + "end": 48780, + "feature": {}, + "id": 579, + "attype": "segment-sentences" + }, + { + "start": 48781, + "end": 48845, + "feature": {}, + "id": 580, + "attype": "segment-sentences" + }, + { + "start": 48846, + "end": 48874, + "feature": {}, + "id": 581, + "attype": "segment-sentences" + }, + { + "start": 48875, + "end": 48909, + "feature": {}, + "id": 582, + "attype": "segment-sentences" + }, + { + "start": 48910, + "end": 48958, + "feature": {}, + "id": 583, + "attype": "segment-sentences" + }, + { + "start": 48959, + "end": 48991, + "feature": {}, + "id": 584, + "attype": "segment-sentences" + }, + { + "start": 48992, + "end": 49019, + "feature": {}, + "id": 585, + "attype": "segment-sentences" + }, + { + "start": 49020, + "end": 49095, + "feature": {}, + "id": 586, + "attype": "segment-sentences" + }, + { + "start": 49096, + "end": 49180, + "feature": {}, + "id": 587, + "attype": "segment-sentences" + }, + { + "start": 49182, + "end": 49224, + "feature": {}, + "id": 588, + "attype": "segment-sentences" + }, + { + "start": 49225, + "end": 49339, + "feature": {}, + "id": 589, + "attype": "segment-sentences" + }, + { + "start": 49340, + "end": 49465, + "feature": {}, + "id": 590, + "attype": "segment-sentences" + }, + { + "start": 49466, + "end": 49484, + "feature": {}, + "id": 591, + "attype": "segment-sentences" + }, + { + "start": 49486, + "end": 49502, + "feature": {}, + "id": 592, + "attype": "segment-sentences" + }, + { + "start": 49503, + "end": 49557, + "feature": {}, + "id": 593, + "attype": "segment-sentences" + }, + { + "start": 49558, + "end": 49577, + "feature": {}, + "id": 594, + "attype": "segment-sentences" + }, + { + "start": 49578, + "end": 49589, + "feature": {}, + "id": 595, + "attype": "segment-sentences" + } + ] + } + ] +} diff --git a/tests/mmif-examples/others/video-transcript.json b/tests/mmif-examples/others/video-transcript.json new file mode 100644 index 00000000..60152dc7 --- /dev/null +++ b/tests/mmif-examples/others/video-transcript.json @@ -0,0 +1,20 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.mp4", + "metadata": {} + }, + { + "id": "1", + "type": "text", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.lab", + "metadata": {} + } + ], + "contains": {}, + "views": [] +} diff --git a/tests/mmif-examples/others/video.json b/tests/mmif-examples/others/video.json new file mode 100644 index 00000000..e3d03494 --- /dev/null +++ b/tests/mmif-examples/others/video.json @@ -0,0 +1,14 @@ +{ + "context": "mmif-prototype-0.0.1.jsonld", + "metadata": {}, + "media": [ + { + "id": "0", + "type": "audio-video", + "location": "file:///var/archive/cpb-aacip-507-fj2988397d.mp4", + "metadata": {} + } + ], + "contains": {}, + "views": [] +} diff --git a/tests/mmif-examples/segmenter-kaldi-ner/raw.json b/tests/mmif-examples/segmenter-kaldi-ner/raw.json new file mode 100644 index 00000000..5eb15c7b --- /dev/null +++ b/tests/mmif-examples/segmenter-kaldi-ner/raw.json @@ -0,0 +1,247 @@ +{ + "metadata": { + "mmif": "http://mmif.clams.ai/$VERSION" + }, + "documents": [ + { + "@type": "http://clams.ai/vocabulary/type/AudioDocument/$AudioDocument_VER", + "properties": { + "id": "m1", + "mime": "audio/mpeg", + "location": "file:///var/archive/audio-002.mp3" + } + } + ], + "views": [ + { + "id": "v1", + "metadata": { + "app": "http://mmif.clams.ai/apps/audio-segmenter/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "timeUnit": "milliseconds", + "document": "m1" + } + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v1:tf1", + "frameType": "speech", + "start": 17, + "end": 132 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "frameType": "non-speech", + "id": "v1:tf2", + "start": 132, + "end": 194 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v1:tf3", + "frameType": "speech", + "start": 194, + "end": 342 + } + } + ] + }, + { + "id": "v2", + "metadata": { + "app": "http://mmif.clams.ai/apps/kaldi/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER": {}, + "http://clams.ai/vocabulary/type/Token/$Token_VER": {}, + "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER": { + "timeUnit": "milliseconds", + "document": "m1" + }, + "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER": {} + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v2:td1", + "text": { + "@value": "Fido barks" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a1", + "source": "v1:tf1", + "target": "v2:td1" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v2:t1", + "document": "v2:td1", + "start": 0, + "end": 4, + "text": "Fido" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v2:t2", + "document": "v2:td1", + "start": 5, + "end": 10, + "text": "barks" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v2:tf1", + "start": 17, + "end": 64 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v2:tf2", + "start": 65, + "end": 132 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a2", + "source": "v2:tf1", + "target": "v2:t1" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a3", + "source": "v2:tf2", + "target": "v2:t2" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TextDocument/$TextDocument_VER", + "properties": { + "id": "v2:td2", + "textSource": "v1:tf3", + "text": { + "@value": "Fluffy sleeps" + } + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a4", + "source": "v1:tf3", + "target": "v2:td2" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v2:t3", + "document": "v2:td2", + "start": 0, + "end": 6, + "text": "Fluffy" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Token/$Token_VER", + "properties": { + "id": "v2:t4", + "document": "v2:td2", + "start": 7, + "end": 13, + "text": "sleeps" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v2:tf3", + "start": 194, + "end": 240 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/TimeFrame/$TimeFrame_VER", + "properties": { + "id": "v2:tf4", + "start": 241, + "end": 342 + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a5", + "source": "v2:tf3", + "target": "v2:t3" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/Alignment/$Alignment_VER", + "properties": { + "id": "v2:a5", + "source": "v2:tf4", + "target": "v2:t4" + } + } + ] + }, + { + "id": "v3", + "metadata": { + "app": "http://mmif.clams.ai/apps/stanford-ner/0.2.1", + "contains": { + "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER": {} + } + }, + "annotations": [ + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v3:ne1", + "document": "v2:td1", + "start": 0, + "end": 4, + "category": "Person", + "text": "Fido" + } + }, + { + "@type": "http://clams.ai/vocabulary/type/NamedEntity/$NamedEntity_VER", + "properties": { + "id": "v3:ne2", + "document": "v2:td2", + "start": 0, + "end": 6, + "category": "Person", + "text": "Fluffy" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/samples/1.0/swt.mmif b/tests/mmif-examples/swt-1.0.mmif similarity index 100% rename from tests/samples/1.0/swt.mmif rename to tests/mmif-examples/swt-1.0.mmif diff --git a/tests/mmif_examples.py b/tests/mmif_examples.py index 8a8f4c6f..b588abe4 100644 --- a/tests/mmif_examples.py +++ b/tests/mmif_examples.py @@ -1,83 +1,59 @@ import itertools -import os -import subprocess from pathlib import Path from string import Template -from urllib import request from mmif import __specver__ -from mmif.vocabulary import DocumentTypes, AnnotationTypes +from mmif.vocabulary import AnnotationTypes, DocumentTypes __all__ = [ + 'ATTYPE_PREFIX', 'EVERYTHING_JSON', 'MMIF_EXAMPLES', 'FRACTIONAL_EXAMPLES', ] +# Canonical URI prefix for vocabulary types (e.g., +# ``http://clams.ai/vocabulary/type/TimeFrame/v6``). Derived from the +# installed ``clams-vocabulary`` so it stays in sync if the prefix +# ever changes again. Tests should build expected URIs as +# ``f"{ATTYPE_PREFIX}/{TypeName}/{version}"`` rather than hardcoding. +ATTYPE_PREFIX = AnnotationTypes.Annotation.base_uri -def _load_from_url_or_git(url): - """ - Load content from URL or local git repository. - If LOCALMMIF env var is set, use git show to load from local repo. - LOCALMMIF should be the path to the local mmif repository. - """ - localmmif_str = os.environ.get('LOCALMMIF') - if localmmif_str: - localmmif = Path(localmmif_str) - if not localmmif.is_dir(): - raise ValueError(f"LOCALMMIF path is not a valid directory: {localmmif}") - # Extract the version/branch and file path from the URL - # URL format: https://raw.githubusercontent.com/clamsproject/mmif/{version}/{filepath} - url_prefix = "https://raw.githubusercontent.com/clamsproject/mmif/" - if url.startswith(url_prefix): - remainder = url[len(url_prefix):] - parts = remainder.split('/', 1) - if len(parts) == 2: - version, filepath = parts - # Use git show to get the file from the specific version - git_ref = f"{version}:{filepath}" - try: - result = subprocess.run( - ['git', 'show', git_ref], - cwd=str(localmmif), - capture_output=True, - text=True, - check=True - ) - return result.stdout - except subprocess.CalledProcessError as e: - raise RuntimeError(f"Failed to load {git_ref} from local git repo at {localmmif}: {e.stderr}") - # Fallback to URL loading - return request.urlopen(url).read().decode('utf-8') +_EXAMPLES_DIR = ( + Path(__file__).resolve().parent / 'mmif-examples' +) -everything_file_url = f"https://raw.githubusercontent.com/clamsproject/mmif/{__specver__}/specifications/samples/everything/raw.json" -old_mmif_w_short_id_url = f"https://raw.githubusercontent.com/clamsproject/mmif/1.0.5/specifications/samples/everything/raw.json" -EVERYTHING_JSON = _load_from_url_or_git(everything_file_url) -OLD_SHORTID_JSON = _load_from_url_or_git(old_mmif_w_short_id_url) -SWT_1_0_JSON = (Path(__file__).resolve().parent / 'samples' / '1.0' / 'swt.mmif').read_text() +EVERYTHING_JSON = (_EXAMPLES_DIR / 'everything' / 'raw.json').read_text() +OLD_SHORTID_JSON = (_EXAMPLES_DIR / '1.0.5-old-shortid.json').read_text() +SWT_1_0_JSON = (_EXAMPLES_DIR / 'swt-1.0.mmif').read_text() -# for keys and values in chain all typevers in mmif.vocabulary.*_types modules -# merge into a single dict +# Build ``{TypeName_VER: vN, VERSION: X.Y.Z}`` from the installed +# ``clams-vocabulary`` package so templated fixtures always exercise the +# currently installed type versions. Fixtures that need to pin a historical +# version (e.g., ``1.0.5-old-shortid.json``) hardcode URIs inline rather +# than using these templates. attypevers = {f'{k}_VER': v for k, v in itertools.chain.from_iterable( map(lambda x: x._typevers.items(), [AnnotationTypes, DocumentTypes]))} attypevers['VERSION'] = __specver__ MMIF_EXAMPLES = { - 'everything': Template(EVERYTHING_JSON), - 'mmif_old_shortid': Template(OLD_SHORTID_JSON), - 'mmif_swt_1_0': Template(SWT_1_0_JSON), + 'everything': Template(EVERYTHING_JSON).safe_substitute(**attypevers), + # Historical fixture: 1.0.5-era types, already hardcoded inline. + # Do NOT run template substitution on this file. + 'mmif_old_shortid': OLD_SHORTID_JSON, + 'mmif_swt_1_0': SWT_1_0_JSON, } + FRACTIONAL_EXAMPLES = { - 'doc_only': Template("""{ -"@type": "http://mmif.clams.ai/vocabulary/TextDocument/$TextDocument_VER", -"properties": { -"id": "td999", -"mime": "text/plain", -"location": "file:///var/archive/transcript-1000.txt" -} -}"""), + 'doc_only': Template( + '{' + f'"@type": "{ATTYPE_PREFIX}/TextDocument/$TextDocument_VER",' + '"properties": {' + '"id": "td999",' + '"mime": "text/plain",' + '"location": "file:///var/archive/transcript-1000.txt"' + '}' + '}' + ).safe_substitute(**attypevers), } - -MMIF_EXAMPLES = dict((k, v.safe_substitute(**attypevers)) for k, v in MMIF_EXAMPLES.items()) -FRACTIONAL_EXAMPLES = dict((k, v.safe_substitute(**attypevers)) for k, v in FRACTIONAL_EXAMPLES.items()) diff --git a/tests/test_serialize.py b/tests/test_serialize.py index f5b0846f..78d4ed9a 100644 --- a/tests/test_serialize.py +++ b/tests/test_serialize.py @@ -168,7 +168,7 @@ def test_document_text(self): def test_document_empty_text(self): document = Document() document.id = 'm997' - document.at_type = f"http://mmif.clams.ai/vocabulary/TextDocument/{DocumentTypes._typevers['TextDocument']}" + document.at_type = f"{ATTYPE_PREFIX}/TextDocument/{DocumentTypes._typevers['TextDocument']}" serialized = document.serialize() deserialized = Document(serialized) self.assertEqual(deserialized.properties.text_value, '') @@ -214,7 +214,7 @@ def test_get_documents_by_app(self): mmif_obj = Mmif(MMIF_EXAMPLES['everything']) self.assertEqual(len(mmif_obj.get_documents_by_app(tesseract_appid)), 25) self.assertEqual(len(mmif_obj.get_documents_by_app('xxx')), 0) - new_document = Document({'@type': f"http://mmif.clams.ai/vocabulary/TextDocument/{DocumentTypes._typevers['TextDocument']}", + new_document = Document({'@type': f"{ATTYPE_PREFIX}/TextDocument/{DocumentTypes._typevers['TextDocument']}", 'properties': {'id': 'td999', 'text': {"@value": "HI"}}}) mmif_obj['v6'].add_document(new_document) self.assertEqual(len(mmif_obj.get_documents_by_app(tesseract_appid)), 26) @@ -1753,8 +1753,9 @@ def tearDown(self) -> None: with open('hypotheses.json', 'w') as dump: json.dump(self.hypos, dump, indent=2) + @pytest.mark.slow @given(hypothesis_jsonschema.from_schema(schema)) - @settings(suppress_health_check=list(HealthCheck)) + @settings(max_examples=20, suppress_health_check=list(HealthCheck)) def test_accepts_valid_schema(self, data): if DEBUG: self.hypos.append(data) diff --git a/tests/test_specver.py b/tests/test_specver.py new file mode 100644 index 00000000..16e405bc --- /dev/null +++ b/tests/test_specver.py @@ -0,0 +1,92 @@ +""" +Drift-detection tests for the bundled MMIF schema and spec version. + +These tests assert that the committed ``mmif/res/mmif.json`` and the +``__specver__`` string match what the MMIF spec repo currently publishes. +When the spec repo releases a new version, CI goes red, prompting a +developer to re-fetch the schema and bump ``__specver__``. + +Skipped gracefully when the GitHub API is unreachable (offline local +builds). +""" +import json +import subprocess + +import pytest + +from mmif import __specver__, get_mmif_json_schema + + +def _gh_api(endpoint, jq_expr='.'): + """ + Call ``gh api`` and return parsed JSON. + + :raises pytest.skip: if ``gh`` is unavailable or the call fails + """ + try: + result = subprocess.run( + ['gh', 'api', endpoint, '--jq', jq_expr], + capture_output=True, text=True, timeout=15, + ) + except (FileNotFoundError, subprocess.TimeoutExpired): + pytest.skip("gh CLI not available or timed out") + if result.returncode != 0: + pytest.skip(f"gh api failed: {result.stderr.strip()}") + return result.stdout.strip() + + +class TestSpecVersionDrift: + + def test_specver_matches_latest_remote(self): + """ + Fail when the MMIF spec repo has a newer release than what + we target. + """ + raw = _gh_api('repos/clamsproject/mmif/tags', '.[].name') + if not raw: + pytest.skip("No tags returned from spec repo") + tags = raw.splitlines() + # spec tags are bare X.Y.Z (no prefix) + versions = sorted( + [t for t in tags if t.replace('.', '').isdigit()], + key=lambda v: list(map(int, v.split('.'))), + ) + if not versions: + pytest.skip("No version tags found in spec repo") + latest = versions[-1] + schema_url = ( + f"https://raw.githubusercontent.com/clamsproject" + f"/mmif/main/schema/mmif.json" + ) + assert __specver__ == latest, ( + f"MMIF spec moved to {latest}, we target {__specver__}. " + f"To fix:\n" + f" 1. Update __specver__ in mmif/ver/__init__.py\n" + f" 2. curl -sL {schema_url} -o mmif/res/mmif.json\n" + f" 3. Commit both changes" + ) + + def test_bundled_schema_matches_remote(self): + """ + Fail when the committed ``mmif.json`` diverges from the spec + repo's schema at the targeted spec version. + """ + import base64 + bundled = json.loads(get_mmif_json_schema()) + encoded = _gh_api( + f'repos/clamsproject/mmif/contents/schema/mmif.json' + f'?ref={__specver__}', + '.content', + ) + if not encoded: + pytest.skip("Could not fetch remote schema") + remote = json.loads(base64.b64decode(encoded)) + schema_url = ( + f"https://raw.githubusercontent.com/clamsproject" + f"/mmif/{__specver__}/schema/mmif.json" + ) + assert bundled == remote, ( + f"Bundled mmif/res/mmif.json differs from spec repo. " + f"To fix:\n" + f" curl -sL {schema_url} -o mmif/res/mmif.json" + ) diff --git a/tests/test_versioncompat.py b/tests/test_versioncompat.py deleted file mode 100644 index cd692d34..00000000 --- a/tests/test_versioncompat.py +++ /dev/null @@ -1,56 +0,0 @@ -import unittest - -import pytest - -from mmif.serialize.view import ContainsDict, View -from mmif.vocabulary import DocumentTypes -from mmif.vocabulary.base_types import TypesBase - -pytestmark = pytest.mark.filterwarnings("error") - - -class TestMMIFVersionCompatibility(unittest.TestCase): - - def test_compatibility(self): - """ - Simply tests searching by @type queries that do not match MMIF file version works at only patch level - """ - mmif_prefix = DocumentTypes.TextDocument.base_uri - attype_prefix = f'{mmif_prefix}/vocabulary' - tdv1_1 = TypesBase.from_str(f'{attype_prefix}/TextDocument/v1') - tdv1_2 = TypesBase.from_str(f'{attype_prefix}/TextDocument/v1') - tdv2_1 = TypesBase.from_str(f'{attype_prefix}/TextDocument/v2') - self.assertEqual(tdv1_1, tdv1_2) - d = {tdv1_1: 0, tdv1_2: 1} - with pytest.warns(UserWarning, match='version difference'): - self.assertIn(tdv2_1, d) - view = View() - view.new_contain(tdv1_1) - with pytest.warns(UserWarning, match='version difference'): - self.assertIn(tdv2_1, view.metadata.contains) - - with pytest.warns(UserWarning, match='version difference'): - self.assertEqual(tdv1_1, tdv2_1) - # disable fuzzy matching - tdv2_1.fuzzy_eq = False - self.assertNotEqual(tdv1_1, tdv2_1) - - # legacy mapping: see https://github.com/clamsproject/mmif/issues/14#issuecomment-1504439497 - ann_v1 = TypesBase.from_str(f'{attype_prefix}/Annotation/v1') - ann_v2 = TypesBase.from_str(f'{attype_prefix}/Annotation/v2') - ann_0_4_0 = TypesBase.from_str(f'{mmif_prefix}/0.4.0/vocabulary/Annotation') - ann_0_4_2 = TypesBase.from_str(f'{mmif_prefix}/0.4.2/vocabulary/Annotation') - self.assertEqual(ann_v1, ann_0_4_0) - self.assertEqual(ann_v2, ann_0_4_2) - with pytest.warns(UserWarning, match='version difference'): - self.assertEqual(ann_v2, ann_0_4_0) - with pytest.warns(UserWarning, match='version difference'): - self.assertEqual(ann_v1, ann_0_4_2) - - tf_v1 = TypesBase.from_str(f'{attype_prefix}/TimeFrame/v1') - tf_v2 = TypesBase.from_str(f'{attype_prefix}/TimeFrame/v2') - for patch in range(3): - tf_old = TypesBase.from_str(f'{mmif_prefix}/0.4.{patch}/vocabulary/TimeFrame') - self.assertEqual(tf_v1, tf_old) - with pytest.warns(UserWarning, match='version difference'): - self.assertEqual(tf_v2, tf_old) diff --git a/tests/test_vocab.py b/tests/test_vocab.py index da52e584..667608ef 100644 --- a/tests/test_vocab.py +++ b/tests/test_vocab.py @@ -14,8 +14,8 @@ def setUp(self) -> None: def test_encode(self): list_of_two = [AnnotationTypes.Annotation, AnnotationTypes.Chapter] - string_of_two = (f'[\"http://mmif.clams.ai/vocabulary/Annotation/{AnnotationTypes._typevers["Annotation"]}\", ' - f'\"http://mmif.clams.ai/vocabulary/Chapter/{AnnotationTypes._typevers["Chapter"]}\"]') + string_of_two = (f'["{ATTYPE_PREFIX}/Annotation/{AnnotationTypes._typevers["Annotation"]}", ' + f'"{ATTYPE_PREFIX}/Chapter/{AnnotationTypes._typevers["Chapter"]}"]') string_out = json.dumps(list_of_two, indent=None, cls=MmifObjectEncoder) self.assertEqual(string_of_two, string_out) @@ -25,8 +25,8 @@ def test_use_in_mmif(self): view_obj.new_annotation(AnnotationTypes.Polygon, 'p1') view_obj.new_annotation(AnnotationTypes.TimeFrame, 'bb2') self.assertEqual(list(view_obj.metadata.contains.keys()), - [f'http://mmif.clams.ai/vocabulary/TimeFrame/{AnnotationTypes._typevers["TimeFrame"]}', - f'http://mmif.clams.ai/vocabulary/Polygon/{AnnotationTypes._typevers["Polygon"]}']) + [f'{ATTYPE_PREFIX}/TimeFrame/{AnnotationTypes._typevers["TimeFrame"]}', + f'{ATTYPE_PREFIX}/Polygon/{AnnotationTypes._typevers["Polygon"]}']) def test_type_checking(self): mmif_obj = Mmif(MMIF_EXAMPLES['everything']) @@ -36,6 +36,10 @@ def test_type_checking(self): self.assertFalse(ann_obj.is_type(DocumentTypes.VideoDocument)) def test_serialize_within_mmif(self): + # Pop an annotation, re-add it via new_annotation + add_property, + # and verify the result matches the original after both are + # normalized through a serialize → deserialize cycle (which + # canonicalizes URI formats). mmif_obj = Mmif(MMIF_EXAMPLES['everything']) view_obj = mmif_obj.get_view_by_id('v5') popped_ann = view_obj.annotations._items.pop('v5:bb25') @@ -44,9 +48,11 @@ def test_serialize_within_mmif(self): if propk == 'id': continue new_ann.add_property(propk, propv) + # Normalize both through a round-trip so URI formats are canonical expected = json.loads(Mmif(MMIF_EXAMPLES['everything']).serialize()) actual = json.loads(mmif_obj.serialize()) - bb_type = str(AnnotationTypes.BoundingBox) + # Mask gen_time which differs between the two + bb_type = f"{ATTYPE_PREFIX}/BoundingBox/{AnnotationTypes._typevers['BoundingBox']}" expected['views'][4]['metadata']['contains'][bb_type]['gen_time'] = 'dummy' actual['views'][4]['metadata']['contains'][bb_type]['gen_time'] = 'dummy' self.assertEqual(expected, actual)