diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..44b539fea25a6815ff77c800d6ac18faf0882e9c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.mov filter=lfs diff=lfs merge=lfs -text diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..5f363c85922f2ffe9dcbe05ba208e06aff20928c --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Creative Commons Attribution 4.0 International (CC BY 4.0) + +Copyright (c) 2026 The VSTAT Authors + +Annotations and self-recorded videos in this dataset are licensed under +CC BY 4.0: https://creativecommons.org/licenses/by/4.0/ + +Synthetic Blender-rendered videos are licensed under CC BY 4.0. + +YouTube videos referenced via URL/timestamp are NOT redistributed and +remain under the original uploaders' licenses (typically Standard YouTube +License). Users must download YouTube clips themselves and comply with +YouTube's Terms of Service. diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ac8a11fd9ca4b6cfbd28e8e6d259310fc14b6eed --- /dev/null +++ b/README.md @@ -0,0 +1,212 @@ +--- +license: cc-by-4.0 +language: +- en +tags: +- video +- multimodal +- benchmark +- video-question-answering +- visual-state-tracking +size_categories: +- 1K/.mp4` — Blender-rendered videos (hosted) +- `videos/self_recorded//.mp4` — author-recorded clips, hands only, + audio removed (hosted) +- `videos/youtube//.mp4` — **NOT redistributed**; you must + download these yourself with the provided script (see *Quick start* below) + +## Quick start + +### 1. Get the repo + +Pick whichever method you prefer: + +```bash +# A. huggingface-cli (recommended, supports LFS) +pip install -U "huggingface_hub[cli]" +huggingface-cli download VSTAT-NeurIPS2026/VSTAT \ + --repo-type=dataset \ + --local-dir vstat +cd vstat + +# B. git clone (requires git-lfs installed) +git lfs install +git clone https://huggingface.co/datasets/VSTAT-NeurIPS2026/VSTAT vstat +cd vstat +``` + +After this, you have all annotations and the synthetic + self_recorded +videos. The YouTube clips are still missing — fetch them next. + +### 2. Download and redact the YouTube clips + +The downloader reads `youtube_metadata.json` and downloads each source +video once with `yt-dlp`, then trims it into the chunks expected by +`vstat_qa_clean.json`. Pass `--resolution-map youtube_resolutions.json` +so each chunk lands at the exact `(width, height, fps)` of the official +release. After trimming, `scripts/redact.sh` applies the privacy +black-boxes (matches `redactions.json`) to the affected clips in place. + +> **Important — reproducing the official release.** The benchmark +> numbers in our paper were obtained on the clips produced by exactly +> this two-step pipeline (`download_youtube.py --resolution-map …` → +> `redact.sh`). The downloader picks the smallest YouTube format that +> matches each clip's target dimensions and frame rate so the trim +> avoids any resampling drift. Skip the resolution map only for +> ablations on input resolution. + +```bash +# Install dependencies +pip install -U yt-dlp +# macOS: brew install ffmpeg +# Ubuntu: sudo apt install ffmpeg + +# 1. Fetch and trim every YouTube clip to its release-spec dims +python scripts/download_youtube.py --resolution-map youtube_resolutions.json + +# 2. Apply privacy redactions in place (idempotent) +bash scripts/redact.sh +``` + +Common flags for the downloader: + +```bash +# Faster: 4 parallel downloads +python scripts/download_youtube.py --resolution-map youtube_resolutions.json --workers 4 + +# Test on a few videos first +python scripts/download_youtube.py --resolution-map youtube_resolutions.json --limit 5 + +# Keep the full source videos around (faster re-trim, more disk) +python scripts/download_youtube.py --resolution-map youtube_resolutions.json --keep-fulls + +# Print plan without doing anything +python scripts/download_youtube.py --resolution-map youtube_resolutions.json --dry-run + +# Cap source download size (default uncapped — required for portrait sources) +python scripts/download_youtube.py --resolution-map youtube_resolutions.json --source-cap 1080 +``` + +Re-running the downloader is safe: it skips clips that already exist +on disk and writes a `download_report.json` listing any failures (rare, +usually due to YouTube link rot — affected clips can be reported to +the authors via the dataset issue tracker). Re-running `redact.sh` is +also idempotent and replaces any earlier redaction with the canonical +set defined in `redactions.json`. + +### 3. Load the data + +```python +import json + +with open("vstat_qa_clean.json") as f: + data = json.load(f) + +for cat, entries in data["data"].items(): + for e in entries: + print(e["video_id"], e["video_path"], e["video_source"]) +``` + +Each entry has these fields: + +| Field | Description | +|----------------------------|-------------------------------------------------------------| +| `video_id` | Unique identifier (e.g. `0001_pt1_q1`) | +| `video_path` | Relative path under `videos/` | +| `video_source` | `synthetic` / `self_recorded` / `youtube` | +| `source_task` | Coarse category (e.g. `basketball`, `dice`, `shell_game`) | +| `question` | Question text. For MCQ items, choices are inline `(A)(B)…` | +| `answer_type` | `mcq` or `numeric` | +| `answer` | Letter (`A`/`B`/`C`/`D`) for MCQ; integer for numeric | +| `choices` | List of MCQ option strings (empty for numeric) | +| `answer_index` | 0-based index into `choices` (null for numeric) | +| `perceptual_complexity` | List of perceptual challenge tags (see Taxonomy) | +| `state_element_type` | `count` / `location` / `attribute` | +| `state_structure` | `atomic` / `sequence` / `set` / `dictionary` | +| `youtube_url`, `youtube_id`, `start_time`, `end_time`, `start_sec`, `end_sec` | Present only for `video_source == "youtube"` | + +### 4. Run an evaluation + +A minimal MCQ scoring loop (numeric questions are scored with mean +relative accuracy in our paper; see Section 3.1 for details): + +```python +def score(entry, model_pred): + if entry["answer_type"] == "mcq": + return int(model_pred.strip().upper() == entry["answer"]) + # numeric + try: + return int(int(model_pred) == int(entry["answer"])) + except ValueError: + return 0 +``` + +## Taxonomy + +Each question is annotated with: + +- `perceptual_complexity` (multi-label, paper Section 2.2): + `action_ambiguity`, `camera_motion`, `homogeneity`, + `multi_entity_attribution`, `occlusion`, `symbolic_decoding` +- `state_element_type` (single label): `count`, `location`, `attribute` +- `state_structure` (single label): `atomic`, `sequence`, `set`, `dictionary` + +## License + +- Annotations and self-recorded / synthetic videos: **CC BY 4.0** +- YouTube videos: NOT redistributed; subject to original uploader's license +- See `LICENSE` for full terms + +## Privacy & consent + +- Self-recorded videos contain only the authors' hands; no faces, voices, + or other identifiable persons. Audio tracks were stripped before release. +- Authors consented to public release of their hand footage. +- For YouTube clips, only URLs and timestamps are redistributed; original + uploaders retain control over their content. The `redact.sh` step + applies black-boxes over scoreboards / on-screen text in a small + number of clips per `redactions.json`, matching the official release. + +## Citation + +```bibtex +@inproceedings{vstat2026, + title={Benchmarking State Tracking in Multimodal Video Understanding}, + author={Anonymous}, + booktitle={NeurIPS 2026 Datasets and Benchmarks Track}, + year={2026} +} +``` + +*This is a NeurIPS 2026 anonymous submission. Author names will be added upon acceptance.* diff --git a/croissant.json b/croissant.json new file mode 100644 index 0000000000000000000000000000000000000000..ec75801f50ae95022f22e46fb0cfe351a4c368d3 --- /dev/null +++ b/croissant.json @@ -0,0 +1,318 @@ +{ + "@context": { + "@language": "en", + "@vocab": "https://schema.org/", + "citeAs": "cr:citeAs", + "column": "cr:column", + "conformsTo": "dct:conformsTo", + "cr": "http://mlcommons.org/croissant/", + "rai": "http://mlcommons.org/croissant/RAI/", + "data": { + "@id": "cr:data", + "@type": "@json" + }, + "dataType": { + "@id": "cr:dataType", + "@type": "@vocab" + }, + "dct": "http://purl.org/dc/terms/", + "examples": { + "@id": "cr:examples", + "@type": "@json" + }, + "extract": "cr:extract", + "field": "cr:field", + "fileProperty": "cr:fileProperty", + "fileObject": "cr:fileObject", + "fileSet": "cr:fileSet", + "format": "cr:format", + "includes": "cr:includes", + "isLiveDataset": "cr:isLiveDataset", + "jsonPath": "cr:jsonPath", + "key": "cr:key", + "md5": "cr:md5", + "parentField": "cr:parentField", + "path": "cr:path", + "recordSet": "cr:recordSet", + "references": "cr:references", + "regex": "cr:regex", + "repeated": "cr:repeated", + "replace": "cr:replace", + "sc": "https://schema.org/", + "separator": "cr:separator", + "source": "cr:source", + "subField": "cr:subField", + "transform": "cr:transform", + "prov": "http://www.w3.org/ns/prov#" + }, + "@type": "sc:Dataset", + "conformsTo": [ + "http://mlcommons.org/croissant/1.0", + "http://mlcommons.org/croissant/RAI/1.0" + ], + "name": "VSTAT", + "alternateName": "Visual State Tracking Benchmark", + "description": "VSTAT is a video-based benchmark designed to diagnose visual state tracking in Multimodal Large Language Models (MLLMs). It contains 813 video clips drawn from synthetic (rendered with Blender), self-recorded, and YouTube sources, paired with 1479 questions whose answers cannot be inferred from any single keyframe or short segment, requiring continuous perception and integration of events across the entire video stream. Each question is annotated with perceptual complexity (occlusion, camera_motion, homogeneity, symbolic_decoding, multi_entity_attribution, action_ambiguity) and state complexity (element_type in count/location/attribute and structure in atomic/sequence/set/dictionary).", + "version": "1.0", + "datePublished": "2026-05-04", + "license": "https://creativecommons.org/licenses/by/4.0/", + "citeAs": "@inproceedings{vstat2026, title={Benchmarking State Tracking in Multimodal Video Understanding}, author={Anonymous}, booktitle={NeurIPS 2026 Datasets and Benchmarks Track}, year={2026}}", + "url": "https://huggingface.co/datasets/VSTAT-NeurIPS2026/VSTAT", + "keywords": [ + "video understanding", + "multimodal large language models", + "visual state tracking", + "video question answering", + "benchmark" + ], + "isLiveDataset": true, + "rai:dataCollection": "Videos were collected from three sources: (1) 450 synthetic clips rendered in Blender across 9 procedural environments; (2) 80 clips self-recorded by the authors (only authors' hands appear; no other identifiable persons); (3) 283 clips collected from publicly available YouTube videos. For YouTube videos, only URLs and timestamps are redistributed; users must download the videos themselves using the provided script.", + "rai:dataCollectionType": [ + "Synthetic data", + "Manual Human Curator", + "Web-Scraping (URLs only)" + ], + "rai:dataCollectionRawData": "MP4 video files (synthetic and self-recorded); URL+timestamp metadata for YouTube clips.", + "rai:dataCollectionTimeframe": "2025-10 to 2026-04", + "rai:dataAnnotationProtocol": "Each video-question pair was authored by the research team. Questions are designed to require visual state tracking that cannot be solved from a single keyframe. Questions and answers underwent multi-round human-in-the-loop review.", + "rai:dataAnnotationPlatform": "Custom internal spreadsheet-based review with shared annotator pool.", + "rai:dataAnnotationAnalysis": "Each question was independently verified by a human author (not the original writer) for answerability. Questions humans could not answer were excluded. Answers also cross-checked against video evidence to ensure correctness.", + "rai:dataReleaseMaintenancePlan": "Annotations and synthetic/self-recorded videos will be hosted on a public platform (e.g., Hugging Face Datasets). YouTube URLs will be re-validated periodically; broken links will be flagged in a public errata. Versioned releases will follow semantic versioning.", + "rai:personalSensitiveInformation": "Self-recorded videos include only the authors' hands performing tasks; no faces, voices, or other identifiable personal information are included. Authors consented to public release. Synthetic videos contain no personal information. YouTube videos may incidentally depict identifiable persons in public sporting or performance contexts; the dataset only redistributes URLs/timestamps, never the video content.", + "rai:dataConsent": "All identifiable persons in self-recorded videos are authors of this dataset and have consented to public release. YouTube content is referenced under fair use for academic research; no YouTube content is redistributed.", + "rai:dataUseCases": "Intended for evaluating the visual state tracking capability of MLLMs. Proper use cases include benchmarking video-language models, diagnosing perception vs. reasoning failures, and studying continuous video understanding.", + "rai:dataBiases": "Synthetic videos use a fixed set of 9 Blender environments with limited visual diversity. Self-recorded clips reflect the authors' physical setup and lighting conditions.", + "rai:dataLimitations": "(1) YouTube clip availability depends on uploader retention; some links may rot over time. (2) Question difficulty is calibrated by author judgment rather than psychometric methods. (3) The benchmark currently focuses on English-language questions only.", + "distribution": [ + { + "@type": "cr:FileObject", + "@id": "annotations-json", + "name": "vstat_qa_clean.json", + "description": "All 1479 questions with per-entry video paths, answer, video_source, perceptual_complexity, state_element_type, state_structure, and source_task labels.", + "contentUrl": "https://huggingface.co/datasets/VSTAT-NeurIPS2026/VSTAT/resolve/main/vstat_qa_clean.json", + "encodingFormat": "application/json", + "sha256": "9f0bf313e4a14106a88bccaf5d649f9721924ff802d252f45eff515727bcb139", + "contentSize": "1281200 B" + }, + { + "@type": "cr:FileSet", + "@id": "videos-synthetic", + "name": "videos-synthetic", + "description": "450 Blender-rendered video clips.", + "encodingFormat": "video/mp4", + "includes": "videos/synthetic/*/*.mp4" + }, + { + "@type": "cr:FileSet", + "@id": "videos-self-recorded", + "name": "videos-self-recorded", + "description": "80 author-recorded clips (hands-only, no other identifiable persons).", + "encodingFormat": "video/mp4", + "includes": "videos/self_recorded/*/*.mp4" + }, + { + "@type": "cr:FileObject", + "@id": "youtube-metadata", + "name": "youtube_metadata.json", + "description": "Per-chunk YouTube URLs and timestamps. VSTAT does NOT host these videos.", + "contentUrl": "https://huggingface.co/datasets/VSTAT-NeurIPS2026/VSTAT/resolve/main/youtube_metadata.json", + "encodingFormat": "application/json" + } + ], + "recordSet": [ + { + "@type": "cr:RecordSet", + "@id": "questions", + "name": "questions", + "description": "One record per video-question pair (1479 total).", + "field": [ + { + "@type": "cr:Field", + "@id": "questions/video_id", + "name": "video_id", + "description": "Identifier for the video-question pair.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].video_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/video_path", + "name": "video_path", + "description": "Relative path to the MP4 file.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].video_path" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/video_source", + "name": "video_source", + "description": "Source of the video: synthetic | self_recorded | youtube.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].video_source" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/source_task", + "name": "source_task", + "description": "The task category (e.g., basketball, dice, shell_game).", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].source_task" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/question", + "name": "question", + "description": "The question text. For MCQ, choices are inline (A)(B)(C)(D).", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].question" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/answer_type", + "name": "answer_type", + "description": "mcq | numeric.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].answer_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/answer", + "name": "answer", + "description": "Ground-truth answer. For MCQ: a letter (A/B/C/D/E). For numeric: int.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].answer" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/choices", + "name": "choices", + "description": "List of MCQ option strings (omitted for numeric).", + "dataType": "sc:Text", + "repeated": true, + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].choices" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/answer_index", + "name": "answer_index", + "description": "0-based index into choices for the correct MCQ answer.", + "dataType": "sc:Integer", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].answer_index" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/perceptual_complexity", + "name": "perceptual_complexity", + "description": "Multi-label perceptual complexity tags (paper Section 2.2).", + "dataType": "sc:Text", + "repeated": true, + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].perceptual_complexity" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/state_element_type", + "name": "state_element_type", + "description": "count | location | attribute (paper Section 2.2).", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].state_element_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "questions/state_structure", + "name": "state_structure", + "description": "atomic | sequence | set | dictionary (paper Section 2.2).", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "annotations-json" + }, + "extract": { + "jsonPath": "$.data.*[*].state_structure" + } + } + } + ] + } + ], + "rai:hasSyntheticData": true, + "rai:dataSocialImpact": "Positive impact: VSTAT will facilitate research on visual state tracking in MLLMs, contributing to more reliable multimodal AI systems for real-world applications such as robotics, sports analytics, and instructional video understanding. It enables fine-grained diagnosis of perception vs. reasoning failures and provides an in-the-wild evaluation alternative to benchmarks dominated by single-keyframe shortcuts. Potential negative impact: (1) Overfitting to the benchmark's specific question formats could lead to brittle models that do not generalize; (2) Like any video benchmark, results may be misinterpreted as a measure of general video understanding when VSTAT specifically targets state tracking. Mitigations: (a) The dataset is intended for evaluation only, not training; (b) Per-question taxonomy labels (perceptual_complexity, state_element_type, state_structure) enable fine-grained reporting that surfaces failure modes rather than a single aggregate number; (c) Documented limitations and biases in this Croissant file and the accompanying paper; (d) CC BY 4.0 license requires attribution for derived analyses; (e) YouTube clips are referenced via URL only — original uploaders retain control over their content.", + "rai:dataSources": "VSTAT is not derived from any pre-existing dataset. Source provenance: (1) Synthetic split (450 clips): custom procedural scenes generated in Blender; per-video random seeds and full simulation parameters stored alongside each clip (see videos/synthetic//.json in the per-video metadata); (2) Self-recorded split (80 clips): original footage captured by the authors of this submission; not previously released; (3) YouTube split (283 clips): publicly available YouTube videos referenced by URL and timestamp (see youtube_metadata.json). The dataset does not redistribute the YouTube videos themselves; users download via the provided script. Each YouTube clip remains under its original uploader's license.", + "rai:dataProvenance": "Collection activities: (a) Synthetic videos rendered at 24 FPS for ~20 seconds via custom Blender scripts authored by the research team; per-clip random seeds documented in per-video JSONs. (b) Self-recorded videos captured by authors with consumer cameras in their own work environment; only authors' hands appear, no other identifiable persons. (c) YouTube clips identified by authors browsing for procedural/dynamic content matching the perceptual challenge taxonomy; long videos manually segmented into shorter chunks with start/end timestamps. Preprocessing activities: synthetic videos saved as MP4; YouTube clips referenced by URL+timestamp without modification (no re-encoding). Annotation activities: questions authored by the research team using a shared spreadsheet-based platform. Each question independently verified by a different team member for answerability; questions that humans could not answer were excluded (397 of 1877 candidate items removed by this filter). Each question labeled with perceptual_complexity (multi-label), state_element_type (single label), and state_structure (single label) per the taxonomy described in the paper Section 2.2. No external annotators or paid crowd workers were involved." +} \ No newline at end of file diff --git a/redactions.json b/redactions.json new file mode 100644 index 0000000000000000000000000000000000000000..15d48cd71a8b2a757b525ec69bba8532c134bd82 --- /dev/null +++ b/redactions.json @@ -0,0 +1,37 @@ +{ + "description": "Per-source-video privacy redactions applied to YouTube clips. Coordinates are in the OUTPUT resolution (640x360, the official VSTAT release spec). Each redaction draws a solid black box (drawbox filter, t=fill) over the listed region in every chunk of the matching source video.", + "coordinate_space": "640x360 (post-scale)", + "redactions": [ + { + "match": {"category": "tennis", "local_id": "0001"}, + "boxes": [ + {"x": 32, "y": 306, "w": 134, "h": 38} + ] + }, + { + "match": {"category": "tennis", "local_id": "0002"}, + "boxes": [ + {"x": 32, "y": 306, "w": 134, "h": 38} + ] + }, + { + "match": {"category": "basketball", "local_id": "0002"}, + "boxes": [ + {"x": 98, "y": 323, "w": 443, "h": 37} + ] + }, + { + "match": {"category": "basketball", "local_id": "0003"}, + "boxes": [ + {"x": 22, "y": 285, "w": 125, "h": 63} + ] + }, + { + "match": {"category": "soccer", "local_id": "0002"}, + "boxes": [ + {"x": 0, "y": 0, "w": 122, "h": 19}, + {"x": 140, "y": 320, "w": 360, "h": 40} + ] + } + ] +} diff --git a/scripts/build_resolution_map.py b/scripts/build_resolution_map.py new file mode 100644 index 0000000000000000000000000000000000000000..4e73f0a29b7c88b1f8b38dc35cf2de6103e0e4aa --- /dev/null +++ b/scripts/build_resolution_map.py @@ -0,0 +1,92 @@ +#!/usr/bin/env python3 +"""Build a per-clip resolution map from an existing render of `videos/youtube/`. + +Walks a reference directory laid out like `//.mp4`, +runs ffprobe on each clip, and writes a JSON map keyed by +`videos/youtube//.mp4` (matching `video_path` in +`youtube_metadata.json`). The map is consumed by `download_youtube.py +--resolution-map` to reproduce the exact width/height/fps of each clip. + +Usage: + python scripts/build_resolution_map.py ~/Desktop/ytb/processed + python scripts/build_resolution_map.py REF_DIR -o youtube_resolutions.json +""" +from __future__ import annotations +import argparse +import json +import subprocess +import sys +from concurrent.futures import ThreadPoolExecutor +from pathlib import Path + + +def probe(path: Path) -> dict | None: + try: + out = subprocess.run( + ["ffprobe", "-v", "error", "-select_streams", "v:0", + "-show_entries", "stream=width,height,r_frame_rate", + "-show_entries", "format=duration", + "-of", "json", str(path)], + capture_output=True, text=True, check=True, timeout=30, + ).stdout + except (subprocess.CalledProcessError, subprocess.TimeoutExpired): + return None + try: + info = json.loads(out) + except json.JSONDecodeError: + return None + s = (info.get("streams") or [{}])[0] + f = info.get("format", {}) + fr = s.get("r_frame_rate", "0/1") + try: + n, d = (int(x) for x in fr.split("/")) + fps = round(n / d, 4) if d else None + except ValueError: + fps = None + if not (s.get("width") and s.get("height")): + return None + return { + "width": int(s["width"]), + "height": int(s["height"]), + "fps": fps, + "duration": round(float(f["duration"]), 4) if f.get("duration") else None, + } + + +def main() -> int: + ap = argparse.ArgumentParser(description=__doc__, + formatter_class=argparse.RawDescriptionHelpFormatter) + ap.add_argument("ref_dir", help="reference directory (e.g. ~/Desktop/ytb/processed)") + ap.add_argument("-o", "--out", default="youtube_resolutions.json", + help="output JSON path (default: youtube_resolutions.json)") + ap.add_argument("--workers", type=int, default=8) + args = ap.parse_args() + + ref = Path(args.ref_dir).expanduser() + if not ref.is_dir(): + sys.exit(f"ERROR: {ref} is not a directory") + + paths = sorted(ref.glob("*/*.mp4")) + print(f"probing {len(paths)} files under {ref}…", file=sys.stderr) + + out: dict[str, dict] = {} + bad: list[str] = [] + with ThreadPoolExecutor(max_workers=max(1, args.workers)) as ex: + for p, info in zip(paths, ex.map(probe, paths)): + key = f"videos/youtube/{p.parent.name}/{p.name}" + if info is None: + bad.append(key) + continue + out[key] = info + + out_path = Path(args.out) + out_path.write_text(json.dumps(out, indent=2, sort_keys=True)) + print(f"wrote {out_path} ({len(out)} entries; {len(bad)} probe failures)", + file=sys.stderr) + if bad: + print(" failures:", *bad[:10], "…" if len(bad) > 10 else "", file=sys.stderr) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/download_youtube.py b/scripts/download_youtube.py new file mode 100644 index 0000000000000000000000000000000000000000..a80c84d81d7141cae3273afcd0f27a19d2e51d14 --- /dev/null +++ b/scripts/download_youtube.py @@ -0,0 +1,485 @@ +#!/usr/bin/env python3 +""" +VSTAT — YouTube clip downloader + +Reads `youtube_metadata.json` and, for each entry, downloads the source +YouTube video (with yt-dlp) and extracts the specified time range +(with ffmpeg) into the `videos/youtube//.mp4` path +expected by `vstat_qa_clean.json`. + +Resolution handling: + --height H scale every clip to height H, width preserves aspect + (default 360 → 640x360 for 16:9; ≈202x360 for 9:16). + --resolution-map FILE preferred per-clip exact-match mode. Reads a JSON + map (built by `scripts/build_resolution_map.py`) + keyed by `videos/youtube//.mp4` with + {"width", "height", "fps"} per entry, and scales + each trim to exactly W×H@fps. + --reference-dir DIR live alternative to --resolution-map: for each + clip we probe DIR//.mp4 directly. Use + --resolution-map when possible (no per-run probe). + --source-cap N in reference mode, cap yt-dlp source download to + height ≤ N. Default is uncapped so portrait + sources (whose pixel height is the long side) are + still selectable; ffmpeg always downscales the + source to the exact per-clip target. + +Usage: + python download_youtube.py + python download_youtube.py --metadata youtube_metadata.json --out videos/youtube + python download_youtube.py --workers 4 + python download_youtube.py --keep-fulls # keep full source videos in cache/ + python download_youtube.py --dry-run + + # Reproduce per-video resolutions from a saved map (preferred): + python scripts/build_resolution_map.py ~/Desktop/ytb/processed \ + -o youtube_resolutions.json + python download_youtube.py --resolution-map youtube_resolutions.json + + # Or probe a reference tree live: + python download_youtube.py --reference-dir ~/Desktop/ytb/processed + +Requirements: + yt-dlp (pip install -U yt-dlp) + ffmpeg (system: brew install ffmpeg / apt install ffmpeg) +""" +from __future__ import annotations +import argparse +import concurrent.futures +import json +import os +import shutil +import subprocess +import sys +import time +from collections import defaultdict +from pathlib import Path + +# ---------- helpers ---------- + +def have(cmd: str) -> bool: + return shutil.which(cmd) is not None + +def hms_to_sec(s) -> float | None: + if s is None: + return None + s = str(s).strip() + if not s or s.lower() in ("none", "null", "n/a"): + return None + parts = s.split(":") + try: + parts = [float(p) for p in parts] + except ValueError: + return None + if len(parts) == 3: return parts[0]*3600 + parts[1]*60 + parts[2] + if len(parts) == 2: return parts[0]*60 + parts[1] + if len(parts) == 1: return parts[0] + return None + +def log(msg: str, prefix: str = ""): + print(f"{prefix}{msg}", flush=True) + +def probe_resolution(path: Path) -> tuple[int, int, float] | None: + """Return (width, height, fps) of `path`'s first video stream, or None.""" + if not path.exists(): + return None + try: + out = subprocess.run( + ["ffprobe", "-v", "error", "-select_streams", "v:0", + "-show_entries", "stream=width,height,r_frame_rate", + "-of", "default=nw=1:nk=1", str(path)], + capture_output=True, text=True, check=True, + ).stdout.strip().splitlines() + except (subprocess.CalledProcessError, FileNotFoundError): + return None + if len(out) < 3: + return None + try: + w, h = int(out[0]), int(out[1]) + n, d = out[2].split("/") + fps = float(n) / float(d) if float(d) else 0.0 + except (ValueError, ZeroDivisionError): + return None + return w, h, fps + +# ---------- core operations ---------- + +def download_full(youtube_url: str, dst: Path, max_height: int | None = 360, + max_fps: int | None = None, + retries: int = 3) -> tuple[bool, str]: + """Download the full source video to dst (mp4). + + If max_height is given, picks the best stream with pixel height <= + max_height. If max_height is None, picks bestvideo+bestaudio with no + cap — required when the target is a portrait clip whose source is + served by YouTube at a height (long side) larger than the clip target. + + If max_fps is given, also constrains source fps <= max_fps. Important + when the target clip is e.g. 30fps but YouTube has a 60fps version of + the source: ffmpeg's fps-drop chooses different keyframes than the + reference pipeline, causing visible per-frame drift. Matching source + fps eliminates that drift. + + Idempotent — skips if dst already exists.""" + if dst.exists() and dst.stat().st_size > 0: + return True, "cached" + dst.parent.mkdir(parents=True, exist_ok=True) + h = f"[height<={max_height}]" if max_height is not None else "" + f = f"[fps<={max_fps}]" if max_fps is not None else "" + if not h and not f: + fmt = ( + "bestvideo[ext=mp4]+bestaudio[ext=m4a]/" + "best[ext=mp4]/" + "bestvideo+bestaudio/best" + ) + else: + fmt = ( + f"bestvideo[ext=mp4]{h}{f}+bestaudio[ext=m4a]/" + f"best[ext=mp4]{h}{f}/" + f"bestvideo{h}{f}+bestaudio/" + f"best{h}{f}/best{h}/best" + ) + cmd = [ + "yt-dlp", + "-f", fmt, + "--merge-output-format", "mp4", + "--no-playlist", + "-q", + "--no-warnings", + "-o", str(dst), + youtube_url, + ] + last_err = "" + for attempt in range(1, retries + 1): + res = subprocess.run(cmd, capture_output=True, text=True) + if res.returncode == 0 and dst.exists() and dst.stat().st_size > 0: + return True, f"downloaded (attempt {attempt})" + last_err = (res.stderr or res.stdout or "")[:200] + time.sleep(2 * attempt) + return False, f"yt-dlp failed: {last_err}" + +def trim_clip(src: Path, dst: Path, start_sec: float, end_sec: float | None, + target_height: int = 360, + target_width: int | None = None, + target_fps: float | None = None, + source_dims: tuple[int, int] | None = None) -> tuple[bool, str]: + """Cut [start, end) from src to dst, re-encoded to H.264. + + If source_dims == (target_width, target_height), no scale/crop filter + is applied — letting ffmpeg do a straight decode→encode preserves frame + alignment with reference pipelines that also avoided rescaling. + Otherwise we centre-crop to the target's aspect ratio and scale to W×H.""" + dst.parent.mkdir(parents=True, exist_ok=True) + if dst.exists() and dst.stat().st_size > 0: + return True, "cached" + skip_scale = ( + target_width is not None + and source_dims is not None + and source_dims == (target_width, target_height) + ) + vf_parts: list[str] = [] + if target_width and not skip_scale: + # Center-crop source to the target's aspect ratio first, then scale. + # When source aspect already matches target aspect the crop is a + # no-op (the crop expression yields the full source dims). When + # they differ — e.g. landscape source → square output — this + # matches ytb/processed which centre-crops before resizing. + W, H = target_width, target_height + vf_parts.append(f"crop=min(iw\\,ih*{W}/{H}):min(ih\\,iw*{H}/{W})") + vf_parts.append(f"scale={W}:{H}") + elif not target_width: + vf_parts.append(f"scale=-2:{target_height}") + if target_fps and target_fps > 0 and not skip_scale: + vf_parts.append(f"fps={target_fps}") + vf = ",".join(vf_parts) + # Match ytb/processed pipeline: -ss BEFORE -i (fast seek), default video + # encoder (libx264 preset=medium crf=23 profile=high, ffmpeg's defaults), + # no -movflags +faststart, audio dropped (-an) since the original scraper + # pulled video-only mp4 in most cases. + cmd = ["ffmpeg", "-y", "-loglevel", "error", "-nostdin", + "-ss", f"{start_sec:.3f}", + "-i", str(src)] + if end_sec is not None and end_sec > start_sec: + cmd += ["-t", f"{end_sec - start_sec:.3f}"] + if vf: + cmd += ["-vf", vf] + cmd += ["-an", str(dst)] + res = subprocess.run(cmd, capture_output=True, text=True) + ok = res.returncode == 0 and dst.exists() and dst.stat().st_size > 0 + return ok, "trimmed" if ok else f"ffmpeg failed: {(res.stderr or '')[:200]}" + +# ---------- pipeline ---------- + +def process_video_group( + yt_id: str, + yt_url: str, + chunks: list[dict], + out_root: Path, + cache_dir: Path, + keep_fulls: bool, + dry_run: bool, + target_height: int = 360, + reference_dir: Path | None = None, + resolution_map: dict[str, dict] | None = None, + source_cap: int | None = None, +) -> dict: + """Download one YouTube video then trim all its chunks. + + Per-clip target (W, H, fps) lookup precedence: + 1. resolution_map[] (preferred — saved JSON) + 2. probe of reference_dir/.mp4 (live ffprobe fallback) + 3. (None, target_height, None) (default --height behaviour) + + Source download (per yt_id): + - default mode (no map / no ref): cap at --height (legacy behaviour). + - reference mode: cap at source_cap if set, else uncapped (so portrait + sources whose pixel height is much larger than the clip target are + still selectable). ffmpeg downscales to the exact target W×H.""" + full_path = cache_dir / f"{yt_id}.mp4" + result = {"youtube_id": yt_id, "url": yt_url, + "n_chunks": len(chunks), "ok": 0, "fail": 0, "errors": []} + + ref_mode = resolution_map is not None or reference_dir is not None + + # Resolve per-clip resolution targets. + per_clip: list[tuple[dict, int | None, int, float | None]] = [] + for ch in chunks: + ref_w = ref_h = None + ref_fps = None + vp = ch["video_path"] + if resolution_map is not None and vp in resolution_map: + entry = resolution_map[vp] + ref_w = int(entry["width"]) + ref_h = int(entry["height"]) + ref_fps = float(entry["fps"]) if entry.get("fps") else None + elif reference_dir is not None: + rel = vp.replace("videos/youtube/", "") + probed = probe_resolution(reference_dir / rel) + if probed is not None: + ref_w, ref_h, ref_fps = probed + if ref_h is not None: + per_clip.append((ch, ref_w, ref_h, ref_fps)) + else: + per_clip.append((ch, None, target_height, None)) + + # Source download cap. + if ref_mode: + if source_cap is not None: + dl_cap = source_cap + else: + # Pick the smallest YouTube tier that still fits all per-clip + # target heights for this yt_id. Picking a tier larger than + # needed forces ffmpeg to downscale and introduces sub-pixel + # drift in action scenes (basketball, soccer); matching the + # tier exactly lets us trim without rescaling. + target_heights = [h for _, _, h, _ in per_clip if h] + dl_cap = max(target_heights) if target_heights else target_height + else: + dl_cap = target_height + # FPS cap: ceil of max per-clip target fps, so yt-dlp picks a source + # whose native fps matches the trim — avoids drift from frame-dropping + # a 60fps source down to a 30fps target. + fps_cap: int | None = None + if ref_mode: + target_fpses = [fps for _, _, _, fps in per_clip if fps and fps > 0] + if target_fpses: + import math + fps_cap = math.ceil(max(target_fpses)) + + if dry_run: + cap_str = f"<= {dl_cap}p" if dl_cap is not None else "uncapped" + fps_str = f", <= {fps_cap}fps" if fps_cap is not None else "" + log(f"[DRY] would download {yt_url} (source {cap_str}{fps_str}) -> {full_path} " + f"({len(chunks)} chunks)") + for ch, w, h, fps in per_clip: + tgt = f"{w or '-2'}×{h}" + (f"@{fps:.3f}fps" if fps else "") + log(f" [DRY] {ch['video_path']} -> {tgt}") + return result + + ok, msg = download_full(yt_url, full_path, max_height=dl_cap, max_fps=fps_cap) + if not ok: + result["fail"] = len(chunks) + result["errors"].append(f"download: {msg}") + log(f"[FAIL] {yt_id}: {msg}") + return result + cap_str = f"<= {dl_cap}p" if dl_cap is not None else "uncapped" + log(f"[OK ] downloaded {yt_id} ({msg}); trimming {len(chunks)} chunks " + f"(source {cap_str})") + + src_probe = probe_resolution(full_path) + src_dims = (src_probe[0], src_probe[1]) if src_probe else None + + for ch, ref_w, ref_h, ref_fps in per_clip: + rel = ch["video_path"] # videos/youtube//.mp4 + dst = out_root / rel.replace("videos/youtube/", "") + start = ch.get("start_sec") + end = ch.get("end_sec") + if start is None: + start = hms_to_sec(ch.get("start_time")) or 0.0 + if end is None: + end = hms_to_sec(ch.get("end_time")) + ok, msg = trim_clip( + full_path, dst, start, end, + target_height=ref_h, + target_width=ref_w, + target_fps=ref_fps, + source_dims=src_dims, + ) + if ok: + result["ok"] += 1 + else: + result["fail"] += 1 + result["errors"].append(f"{rel}: {msg}") + log(f" [FAIL] {rel}: {msg}") + + # Optionally drop the full video to save space. + if not keep_fulls: + try: + full_path.unlink() + except FileNotFoundError: + pass + + return result + +def main(): + ap = argparse.ArgumentParser(description=__doc__, + formatter_class=argparse.RawDescriptionHelpFormatter) + ap.add_argument("--metadata", default="youtube_metadata.json", + help="path to youtube_metadata.json") + ap.add_argument("--out", default="videos/youtube", + help="output root for trimmed clips (videos/youtube)") + ap.add_argument("--cache", default=".cache/full_videos", + help="where to cache downloaded full videos") + ap.add_argument("--workers", type=int, default=2, + help="parallel YouTube downloads (1 video at a time per worker)") + ap.add_argument("--height", type=int, default=360, + help="target video height in pixels; both yt-dlp format " + "selection and ffmpeg re-encode use this. VSTAT's " + "original release used 360 (640x360). Default: 360") + ap.add_argument("--resolution-map", default=None, + help="path to a JSON resolution map " + "(see scripts/build_resolution_map.py). Each entry " + "is keyed by `videos/youtube//.mp4` with " + "{'width','height','fps'}. Clips found in the map " + "are scaled to that exact W×H@fps; others fall " + "back to --height.") + ap.add_argument("--reference-dir", default=None, + help="live alternative to --resolution-map: directory " + "laid out like videos/youtube/. Each run re-probes " + "with ffprobe. Prefer --resolution-map.") + ap.add_argument("--source-cap", type=int, default=None, + help="in reference mode, cap source-download height to N " + "(default uncapped — required for portrait sources).") + ap.add_argument("--keep-fulls", action="store_true", + help="keep full source videos in cache after trimming") + ap.add_argument("--limit", type=int, default=None, + help="only process the first N YouTube videos (debug)") + ap.add_argument("--filter-id", action="append", default=None, + help="only process given youtube_id (repeatable)") + ap.add_argument("--dry-run", action="store_true", + help="don't download or trim — just print what would happen") + args = ap.parse_args() + + if not have("yt-dlp"): + sys.exit("ERROR: yt-dlp not installed. Run: pip install -U yt-dlp") + if not have("ffmpeg"): + sys.exit("ERROR: ffmpeg not installed. Run: brew install ffmpeg (or apt install ffmpeg)") + if args.reference_dir and not have("ffprobe"): + sys.exit("ERROR: --reference-dir requires ffprobe (ships with ffmpeg).") + + reference_dir = Path(args.reference_dir).expanduser() if args.reference_dir else None + if reference_dir is not None and not reference_dir.is_dir(): + sys.exit(f"ERROR: --reference-dir {reference_dir} is not a directory") + + resolution_map: dict[str, dict] | None = None + if args.resolution_map: + rm_path = Path(args.resolution_map).expanduser() + if not rm_path.is_file(): + sys.exit(f"ERROR: --resolution-map {rm_path} not found") + with open(rm_path) as fh: + resolution_map = json.load(fh) + log(f"Loaded resolution map: {len(resolution_map)} entries from {rm_path}") + + meta_path = Path(args.metadata) + if not meta_path.exists(): + sys.exit(f"ERROR: {meta_path} not found") + + with open(meta_path) as f: + meta = json.load(f) + videos = meta.get("videos", meta if isinstance(meta, list) else []) + log(f"Loaded {len(videos)} chunk entries from {meta_path}") + + # Group chunks by youtube_id (so each source video downloads once) + groups: dict[str, list[dict]] = defaultdict(list) + for v in videos: + yid = v.get("youtube_id") + if not yid: + continue + if args.filter_id and yid not in args.filter_id: + continue + groups[yid].append(v) + + yt_ids = sorted(groups.keys()) + if args.limit: + yt_ids = yt_ids[:args.limit] + log(f"Unique YouTube source videos: {len(yt_ids)}") + + out_root = Path(args.out) + cache_dir = Path(args.cache) + out_root.mkdir(parents=True, exist_ok=True) + cache_dir.mkdir(parents=True, exist_ok=True) + + # Run with a worker pool + results: list[dict] = [] + t0 = time.time() + with concurrent.futures.ThreadPoolExecutor(max_workers=max(1, args.workers)) as ex: + futures = [] + for yid in yt_ids: + chunks = groups[yid] + yt_url = chunks[0]["youtube_url"] + futures.append(ex.submit( + process_video_group, + yid, yt_url, chunks, out_root, cache_dir, + args.keep_fulls, args.dry_run, args.height, + reference_dir, resolution_map, args.source_cap, + )) + for fut in concurrent.futures.as_completed(futures): + results.append(fut.result()) + + elapsed = time.time() - t0 + total_ok = sum(r["ok"] for r in results) + total_fail = sum(r["fail"] for r in results) + n_failed_videos = sum(1 for r in results if r["fail"] > 0) + + print() + print("=" * 60) + print(f"DONE in {elapsed:.1f}s") + print(f" YouTube videos processed: {len(results)}") + print(f" Chunks OK: {total_ok}") + print(f" Chunks FAILED: {total_fail}") + print(f" Videos with failures: {n_failed_videos}") + print("=" * 60) + + # Write a summary report alongside the metadata + report = { + "elapsed_seconds": elapsed, + "n_videos": len(results), + "n_chunks_ok": total_ok, + "n_chunks_failed": total_fail, + "failures": [ + {"youtube_id": r["youtube_id"], "url": r["url"], "errors": r["errors"]} + for r in results if r["fail"] > 0 + ], + } + rp = Path("download_report.json") + with open(rp, "w") as f: + json.dump(report, f, indent=2, ensure_ascii=False) + log(f"\nReport -> {rp}") + + if total_fail: + log("Some clips failed. Re-run the script to retry only the failed ones " + "(successful clips are skipped automatically).") + sys.exit(1) + +if __name__ == "__main__": + main() diff --git a/scripts/redact.sh b/scripts/redact.sh new file mode 100644 index 0000000000000000000000000000000000000000..ed9f332f6be8ce11fe747045535cd68fe898a22a --- /dev/null +++ b/scripts/redact.sh @@ -0,0 +1,134 @@ +#!/usr/bin/env bash +# +# VSTAT — Apply privacy redactions (black boxes) to YouTube clips. +# +# Coordinates are in 640x360 (post-scale) space, matching the official +# VSTAT release. After this script runs, every redaction-target chunk +# lives at the canonical `videos/youtube//_pt*.mp4` path with +# the black boxes baked in. Any leftover `*_redacted.mp4` siblings from +# earlier runs are removed. +# +# Usage (run from vstat/ root): +# ./scripts/redact.sh +# ./scripts/redact.sh --dry-run +# + +set -eo pipefail + +DRY=0 +for arg in "$@"; do + case "$arg" in + --dry-run) DRY=1 ;; + -h|--help) sed -n '2,15p' "$0"; exit 0 ;; + *) echo "Unknown arg: $arg" >&2; exit 1 ;; + esac +done + +# Format: "|" +RULES=( + # tennis 0001 + "videos/youtube/tennis/0001_pt*.mp4|drawbox=x=32:y=306:w=134:h=38:color=black:t=fill" + # tennis 0002 + "videos/youtube/tennis/0002_pt*.mp4|drawbox=x=32:y=306:w=134:h=38:color=black:t=fill" + # basketball 0002 + "videos/youtube/basketball/0002_pt*.mp4|drawbox=x=98:y=323:w=443:h=37:color=black:t=fill" + # basketball 0003 + "videos/youtube/basketball/0003_pt*.mp4|drawbox=x=22:y=285:w=125:h=63:color=black:t=fill" + # soccer 0002 (two boxes) + "videos/youtube/soccer/0002_pt*.mp4|drawbox=x=0:y=0:w=122:h=19:color=black:t=fill,drawbox=x=140:y=320:w=360:h=40:color=black:t=fill" +) + +if ! command -v ffmpeg >/dev/null 2>&1; then + echo "ERROR: ffmpeg not installed. brew install ffmpeg / apt install ffmpeg" >&2 + exit 1 +fi + +# Expand a canonical glob to the union of canonical paths it covers, +# accounting for files that currently live with `_redacted` suffix. +# Compatible with bash 3.2 (macOS default) — no associative arrays. +canonical_paths_for_glob() { + glob="$1" + dir=$(dirname "$glob") + pat=$(basename "$glob") # 0001_pt*.mp4 + shopt -s nullglob + results="" + for f in "$dir"/$pat "$dir"/${pat%.mp4}_redacted.mp4; do + [ -e "$f" ] || continue + case "$f" in + *_redacted.mp4) base="${f%_redacted.mp4}.mp4" ;; + *) base="$f" ;; + esac + results="${results}${base}"$'\n' + done + shopt -u nullglob + printf '%s' "$results" | sort -u | sed '/^$/d' +} + +total=0; ok=0; fail=0; missing=0 + +for rule in "${RULES[@]}"; do + glob="${rule%%|*}" + filt="${rule#*|}" + echo + echo "=== $glob ===" + echo " filter: $filt" + + paths=$(canonical_paths_for_glob "$glob") + if [ -z "$paths" ]; then + echo " (no matching files)" + continue + fi + + while IFS= read -r canon; do + [ -z "$canon" ] && continue + total=$((total+1)) + redacted_sibling="${canon%.mp4}_redacted.mp4" + + # Pick input: prefer existing _redacted sibling, fall back to canonical. + if [ -f "$redacted_sibling" ]; then + input="$redacted_sibling" + elif [ -f "$canon" ]; then + input="$canon" + else + echo " ! missing both $canon and $redacted_sibling" + missing=$((missing+1)) + continue + fi + + if [ "$DRY" -eq 1 ]; then + echo " [DRY] $input =[$filt]=> $canon" + ok=$((ok+1)) + continue + fi + + # Write to a temp file then atomically swap. + # `-nostdin` is REQUIRED here: without it ffmpeg consumes characters + # from the surrounding `while read` loop's stdin, mangling later paths. + tmp="${canon%.mp4}.redact.tmp.mp4" + if ! ffmpeg -y -loglevel error -nostdin -i "$input" -vf "$filt" -c:a copy "$tmp"; then + echo " ! ffmpeg failed: $input" + fail=$((fail+1)) + continue + fi + if cp -f "$tmp" "$canon" && rm -f "$tmp"; then + : + else + echo " ! could not write $canon (kept tmp at $tmp)" + fail=$((fail+1)) + continue + fi + # Drop misleading `_redacted.mp4` sibling now that the canonical file + # holds the actually-redacted content. + if [ -f "$redacted_sibling" ] && [ "$redacted_sibling" != "$canon" ]; then + rm -f "$redacted_sibling" 2>/dev/null || true + fi + ok=$((ok+1)) + echo " -> $canon" + done <<< "$paths" +done + +echo +echo "============================================================" +echo " total: $total ok: $ok fail: $fail missing: $missing" +echo "============================================================" +[ "$fail" -eq 0 ] && [ "$missing" -eq 0 ] diff --git a/videos/self_recorded/book/0001_pt1.mp4 b/videos/self_recorded/book/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..49e0f5f5f3dbf5a56ecbe761f9b826381c8f3a9d --- /dev/null +++ b/videos/self_recorded/book/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e23199e689bed794b92b70b163cd0cfb0d13517a76f576b6d410f4be00dc009 +size 8819418 diff --git a/videos/self_recorded/book/0002_pt1.mp4 b/videos/self_recorded/book/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..48a6cd065a5617d44c2f4652aac82c375f35376a --- /dev/null +++ b/videos/self_recorded/book/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edbd5f88761b0c984054ced5ed4bd76b701aac7437c3c80001cc7574575a0088 +size 8739866 diff --git a/videos/self_recorded/book/0003_pt1.mp4 b/videos/self_recorded/book/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2824910dcf9b48851af5ab27ce9aeea03251f07b --- /dev/null +++ b/videos/self_recorded/book/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:042b5afa19aaec02e6bd25d1646007f68db69b6f97f5b6921dd91124d4c4bc47 +size 9093355 diff --git a/videos/self_recorded/book/0004_pt1.mp4 b/videos/self_recorded/book/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6974dca296a51b4ec4a75a40c0934621112bd0ff --- /dev/null +++ b/videos/self_recorded/book/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf84cea1bb608d6061be02b5b26e70e5bfb41b0fef4ad957741c256760762ed +size 7567652 diff --git a/videos/self_recorded/book/0005_pt1.mp4 b/videos/self_recorded/book/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b60f4b41c05e9dd287621a1caa89dd38900e24b8 --- /dev/null +++ b/videos/self_recorded/book/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cead3f7cd00547801bbe03a387a7ae0a4adbe15a8c070e1f7be070337ad77976 +size 11909270 diff --git a/videos/self_recorded/book/0006_pt1.mp4 b/videos/self_recorded/book/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f34e7718c96e845352cc909454de112b245e6e4f --- /dev/null +++ b/videos/self_recorded/book/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a160b3ad466b7cf2b3c83e39c13f4161099ef2087c22ccb3350b448aad11b938 +size 9852910 diff --git a/videos/self_recorded/book/0007_pt1.mp4 b/videos/self_recorded/book/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..32e1e200605a3a352a119e0265a4d0179878c128 --- /dev/null +++ b/videos/self_recorded/book/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da759ccd0794e5d55812c9ac4bb796a115da820230fcfae0cb4886c36bec58fc +size 11537660 diff --git a/videos/self_recorded/book/0008_pt1.mp4 b/videos/self_recorded/book/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5030e10fd96fbb364923d9970a570c67ae2f6353 --- /dev/null +++ b/videos/self_recorded/book/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb275d1a1ad0230adb6c71812a1c792c25706745297b89937bdc696695ba802e +size 12228041 diff --git a/videos/self_recorded/book/0009_pt1.mp4 b/videos/self_recorded/book/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..29fa4d9180bf2b45cf4524c3db42e6335aee3304 --- /dev/null +++ b/videos/self_recorded/book/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9752f371e1d844c55c6f41076f5ae66b32f6161ebc61e1113d725144c75770d5 +size 11899390 diff --git a/videos/self_recorded/book/0010_pt1.mp4 b/videos/self_recorded/book/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0de2f00d4f90bfbb19f33463194741ff37afa13d --- /dev/null +++ b/videos/self_recorded/book/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0bbc76c936cc57730cb8066ed34f57d7c411b20fa207817a2c45a3ae078a6e +size 12259720 diff --git a/videos/self_recorded/cup_stacking/0001_pt1.mp4 b/videos/self_recorded/cup_stacking/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..727c904f25197967f1731adfe8f971231532de1e --- /dev/null +++ b/videos/self_recorded/cup_stacking/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ea24a5232de154a0b42dac03d8ec8320d28a3646c0f2c84e941052905a57c3 +size 7853078 diff --git a/videos/self_recorded/cup_stacking/0002_pt1.mp4 b/videos/self_recorded/cup_stacking/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a1b25625ddd5cde8f340db58ba69b4ab258fc608 --- /dev/null +++ b/videos/self_recorded/cup_stacking/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87117666ed8c705e9b3816f51f4777e1964b19e27ee8407442a741c736f041ba +size 6253120 diff --git a/videos/self_recorded/cup_stacking/0003_pt1.mp4 b/videos/self_recorded/cup_stacking/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..86e38184ede088dcb1a20bcf0969352941397a7b --- /dev/null +++ b/videos/self_recorded/cup_stacking/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8cf6c140fd3292ca9f1b1383b8b22487012f6e139fca28f4d5ed682f1e92ff4 +size 11822179 diff --git a/videos/self_recorded/cup_stacking/0004_pt1.mp4 b/videos/self_recorded/cup_stacking/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..81881c515a039cdcc412cc27e4b66d62fbd03f56 --- /dev/null +++ b/videos/self_recorded/cup_stacking/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c9aad87be2ac680fdd440ad0e8528b56cd3c2644902c0b46f57cbe9ddc341b +size 10320277 diff --git a/videos/self_recorded/cup_stacking/0005_pt1.mp4 b/videos/self_recorded/cup_stacking/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5b7acb08d87344e2f81d1a964948bfc96ad808df --- /dev/null +++ b/videos/self_recorded/cup_stacking/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8fddf7ab1eb08252448caef9497995d97ebbf24fbcd185f6d8ee11e2158c687 +size 10564190 diff --git a/videos/self_recorded/cup_stacking/0006_pt1.mp4 b/videos/self_recorded/cup_stacking/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..81b14dc2208142a25197dc439e56d90861501cb2 --- /dev/null +++ b/videos/self_recorded/cup_stacking/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f597b2b1943a6bc2c748e15f6ba36bb08937f4367a220572345a144702f909 +size 11151561 diff --git a/videos/self_recorded/cup_stacking/0007_pt1.mp4 b/videos/self_recorded/cup_stacking/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c0852bb7e10fc44b89110cb346d107d42bbc92bc --- /dev/null +++ b/videos/self_recorded/cup_stacking/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e685de2092186f6f762c566f2b347c06e5f21cb1a5a605b0422a35eef80f85c +size 10928178 diff --git a/videos/self_recorded/cup_stacking/0008_pt1.mp4 b/videos/self_recorded/cup_stacking/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0fa06c3c9761429076261204701cf6a5ae977c40 --- /dev/null +++ b/videos/self_recorded/cup_stacking/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff79786e04265e1dc0ff3007689609063b41a570e12fdbb06acc4ed0528efaa +size 11099668 diff --git a/videos/self_recorded/cup_stacking/0009_pt1.mp4 b/videos/self_recorded/cup_stacking/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0ca034b5a2c52b4b4b3cf8e59386cc553789ce91 --- /dev/null +++ b/videos/self_recorded/cup_stacking/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38af26c6b13133b5cb85cc08b261c3e854bd262023e63c926db0b62afbb9a081 +size 11809239 diff --git a/videos/self_recorded/cup_stacking/0010_pt1.mp4 b/videos/self_recorded/cup_stacking/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..63d1f2751b3a153156d2355fa6b151d3c8390f48 --- /dev/null +++ b/videos/self_recorded/cup_stacking/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f243f31fe60a1118a3f2bb07928b930eed9600bcd54c8bf147ce27bf5c554aa +size 10751368 diff --git a/videos/self_recorded/keyboard/0001_pt1.mp4 b/videos/self_recorded/keyboard/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f8fe38ae7c7378002ab5a7f1b8f127ad35d28229 --- /dev/null +++ b/videos/self_recorded/keyboard/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29906936a7eb6aa473aaffdcad313b2274c47dd3a38fbdd5e3a5184d947f7e77 +size 3833649 diff --git a/videos/self_recorded/keyboard/0002_pt1.mp4 b/videos/self_recorded/keyboard/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..27326ef97d00aa1abbe54a12a2bb3e57dbafdbc7 --- /dev/null +++ b/videos/self_recorded/keyboard/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1958f375f9c19bc3a8a06279562772fe74b29b6975834e1ce7af349fb2960ddd +size 3930910 diff --git a/videos/self_recorded/keyboard/0003_pt1.mp4 b/videos/self_recorded/keyboard/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4738513790414d41e3a50f7712f5e45a783fa29f --- /dev/null +++ b/videos/self_recorded/keyboard/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fb2600aadf15301ab14491aabee2a65c28f0155729ac786689dc67bd6ce6e5 +size 4514933 diff --git a/videos/self_recorded/keyboard/0004_pt1.mp4 b/videos/self_recorded/keyboard/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..09eb8d158e8711e93399976779cbb6825b9172e9 --- /dev/null +++ b/videos/self_recorded/keyboard/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b661d65184e101d63bfc16ae4654aac45ea2179756877629f73d9671aa735ff +size 6691558 diff --git a/videos/self_recorded/keyboard/0005_pt1.mp4 b/videos/self_recorded/keyboard/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..367a80ddbe792ac8d1765764f13030692396584a --- /dev/null +++ b/videos/self_recorded/keyboard/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd87bde34474ae539e31280edd8a0d6e66c56969e086b78a07ca29e06ee56872 +size 5103554 diff --git a/videos/self_recorded/keyboard/0006_pt1.mp4 b/videos/self_recorded/keyboard/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..22bcbf74e6fdfd2afd4baacd0a6db08aaa738136 --- /dev/null +++ b/videos/self_recorded/keyboard/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ed94f1b83df3b27f9acf0aef97dd8347f3e2cd7cc0b7b9b8e4125168b5c7a0 +size 3997713 diff --git a/videos/self_recorded/keyboard/0007_pt1.mp4 b/videos/self_recorded/keyboard/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..40835ed269b80f184e47d85332bc5ac7b58079ac --- /dev/null +++ b/videos/self_recorded/keyboard/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f46486bbcf9dc3f7e3af168655909c5ef7da73e235ec2c28aff23ff1fabb53c +size 7412067 diff --git a/videos/self_recorded/keyboard/0008_pt1.mp4 b/videos/self_recorded/keyboard/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3197f90f4f58657af56772970bbe1bbbde8b5b19 --- /dev/null +++ b/videos/self_recorded/keyboard/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c41db184fe0e8fda6d61296228b70ce82f39ca05bfdd2649dd070d1655c743 +size 3656426 diff --git a/videos/self_recorded/keyboard/0009_pt1.mp4 b/videos/self_recorded/keyboard/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a56a75f171f968a102d8b9c9145a0f6f35874037 --- /dev/null +++ b/videos/self_recorded/keyboard/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18b2035ae10fdd5297bf6727a7ce2a76dbc6a420124cac4b698b66bc277b469 +size 4440764 diff --git a/videos/self_recorded/keyboard/0010_pt1.mp4 b/videos/self_recorded/keyboard/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..87f63a411ec75f0d477a13e486be069080df4e65 --- /dev/null +++ b/videos/self_recorded/keyboard/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46b378728f8450feec02eeed2dfd35dfe0b255416d67a6244b117278d94eecc +size 6633008 diff --git a/videos/self_recorded/morse/0001_pt1.mp4 b/videos/self_recorded/morse/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8a0e79088eb58b58f3152cba5d99c92350065e17 --- /dev/null +++ b/videos/self_recorded/morse/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61400e0b40885eb4c01ffa9a5613395119debd0088dafba6282b29164ecc647 +size 7293389 diff --git a/videos/self_recorded/morse/0002_pt1.mp4 b/videos/self_recorded/morse/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2ed8800493e6732b0253d2ebd2df77288aeb4bce --- /dev/null +++ b/videos/self_recorded/morse/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662e8f3b6fd3a7ace6bd54bf96f55ad5431e7f828bb0b056667a678f74b2e731 +size 6930512 diff --git a/videos/self_recorded/morse/0003_pt1.mp4 b/videos/self_recorded/morse/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c773319a07fa93949f5e00b651ba5745c852742e --- /dev/null +++ b/videos/self_recorded/morse/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4caa204c75dbc00c4950f518b6621bb30a6cfcf5700a01b6efa3543549432d2d +size 6719657 diff --git a/videos/self_recorded/morse/0004_pt1.mp4 b/videos/self_recorded/morse/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ab9d75cf8e12253b540088f8036d0118663934c0 --- /dev/null +++ b/videos/self_recorded/morse/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4dab31c514a425b01970ba9446c58aeefe8d720b6229602ad425ebfa5dd2a87 +size 6384910 diff --git a/videos/self_recorded/morse/0005_pt1.mp4 b/videos/self_recorded/morse/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f1e0b194628e739159853599a46d2163e04b0e23 --- /dev/null +++ b/videos/self_recorded/morse/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d63f6239d244eb6b071903e54efeacb21df52c4a086fae62f2d242adea43b5e +size 6691792 diff --git a/videos/self_recorded/morse/0006_pt1.mp4 b/videos/self_recorded/morse/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9f5d2c0c0b554e0b5628241f061ac59bb3231c51 --- /dev/null +++ b/videos/self_recorded/morse/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b96c1e8b573f20191eeb048fc82f1ea3727b1de7efb31b03c958e304b44a22 +size 8573960 diff --git a/videos/self_recorded/morse/0007_pt1.mp4 b/videos/self_recorded/morse/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5b6b6807d1c6c0937030d45c00b5ef04e2f3d077 --- /dev/null +++ b/videos/self_recorded/morse/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a598e3cc6ef698ddf1a0b9903d5b54e1bf91343583b15f847fcf597fbdaa06d +size 5335238 diff --git a/videos/self_recorded/morse/0008_pt1.mp4 b/videos/self_recorded/morse/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80744870905e5ab49792ee07624b65572027465b --- /dev/null +++ b/videos/self_recorded/morse/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac791f8f173fd0448915a557695ca2db71a90660b483abe87bac5ba8573d35c +size 6388731 diff --git a/videos/self_recorded/morse/0009_pt1.mp4 b/videos/self_recorded/morse/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7966695a4daf960d5b5dadafd5d4e771f26a26f1 --- /dev/null +++ b/videos/self_recorded/morse/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0462fa4c2091227e6718fed1cc1c373d59631eb448825e9ea2ef27fd57cb8ae9 +size 6846647 diff --git a/videos/self_recorded/morse/0010_pt1.mp4 b/videos/self_recorded/morse/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d71bbff914ec27be37db37181b08f7f4f6aba786 --- /dev/null +++ b/videos/self_recorded/morse/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:644ee0ef91b0068e8147e4dab2a18a70a194ca39457f3a01b45755c7cdc09bb6 +size 7409935 diff --git a/videos/self_recorded/numberpad/0001_pt1.mp4 b/videos/self_recorded/numberpad/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bf9f3f1f737ebb39975c2f8c71821ae76b933dd6 --- /dev/null +++ b/videos/self_recorded/numberpad/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8742b4eb0a5ac7306b7cc243ab989389f04e64f3bacccdabd2bd8afd73f25b8d +size 7297044 diff --git a/videos/self_recorded/numberpad/0002_pt1.mp4 b/videos/self_recorded/numberpad/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0d34b57ca8f8eacec6ddb8048bbfc707db33fb07 --- /dev/null +++ b/videos/self_recorded/numberpad/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a92a5cd88e5444e55e6d0659607eeb11cf223047ed6977bf910e60050b6fa09 +size 4085420 diff --git a/videos/self_recorded/numberpad/0003_pt1.mp4 b/videos/self_recorded/numberpad/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..845b602ed530729ef01a5be1422257d14dd399dd --- /dev/null +++ b/videos/self_recorded/numberpad/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228236f4a94a850c3f235410abc1101bcf9aa08782d831233f7bb3aab327bc63 +size 5145359 diff --git a/videos/self_recorded/numberpad/0004_pt1.mp4 b/videos/self_recorded/numberpad/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..23ee099c2989fca9bb1938e88ba7a86d232c1d16 --- /dev/null +++ b/videos/self_recorded/numberpad/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16fe290e3abaa7720d4a19ee6ab86d4e7db995b7d04e3e73f719eb1c9b45a55 +size 4665345 diff --git a/videos/self_recorded/numberpad/0005_pt1.mp4 b/videos/self_recorded/numberpad/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..37de6e821ee23a3b021e0933b8bd9decd380fa5a --- /dev/null +++ b/videos/self_recorded/numberpad/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234abe9bd3ed56c33648e29ad67b428b24a0b71509cf47fc1bd73e0c69f105aa +size 4145159 diff --git a/videos/self_recorded/numberpad/0006_pt1.mp4 b/videos/self_recorded/numberpad/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d33b81f58ffd5c2a45a1c822bba0d31da48eb41d --- /dev/null +++ b/videos/self_recorded/numberpad/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065afdbb7e823e330ba55bf551f83f6776c498920064e90b4a94af585a66414c +size 4179232 diff --git a/videos/self_recorded/numberpad/0007_pt1.mp4 b/videos/self_recorded/numberpad/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6fd228ef729a116c367308c780eecb81ec7e6b05 --- /dev/null +++ b/videos/self_recorded/numberpad/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd1ce24d96d58510d2a05aa09edc7a9b6f0007908a35f450302b193d3f41e0a +size 5095580 diff --git a/videos/self_recorded/numberpad/0008_pt1.mp4 b/videos/self_recorded/numberpad/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2ba973b2b94cff05d4346b2ad884c8f03ee9f31e --- /dev/null +++ b/videos/self_recorded/numberpad/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464b11d294f33ed332b4c6e9eafcdbba65dd27580f27d85d73cd13153ca07c5f +size 4978756 diff --git a/videos/self_recorded/numberpad/0009_pt1.mp4 b/videos/self_recorded/numberpad/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b8a7b4468370c91cbca5deb25622e7bfe1f238b0 --- /dev/null +++ b/videos/self_recorded/numberpad/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3329aac137a13acf751941670fe13a5571a92fed7be91586f5eaee9353d855e4 +size 5630333 diff --git a/videos/self_recorded/numberpad/0010_pt1.mp4 b/videos/self_recorded/numberpad/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..40d8ac0b1830808d24256dd87b5c226be67a7cd1 --- /dev/null +++ b/videos/self_recorded/numberpad/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de80fd18f3695ea2a7e1f1d229e42f8120da2e833b2f36512e47415f1b84da5 +size 4146990 diff --git a/videos/self_recorded/packing_order/0001_pt1.mp4 b/videos/self_recorded/packing_order/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c936e849e2927227f86322f96d6c3b7579aa5a27 --- /dev/null +++ b/videos/self_recorded/packing_order/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212cad221bbb61ee387f756e760e5ce7abc31e1658ca28e0f1bb3a7f7e7f6f36 +size 10504107 diff --git a/videos/self_recorded/packing_order/0002_pt1.mp4 b/videos/self_recorded/packing_order/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5af8ac281b3f77cc7e98a8872678b9ecfe0e44b7 --- /dev/null +++ b/videos/self_recorded/packing_order/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9842b2e5fee36874584fbee673c5e1ec089bed3af1d398e49cd26b49f3a4b042 +size 15321028 diff --git a/videos/self_recorded/packing_order/0003_pt1.mp4 b/videos/self_recorded/packing_order/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b337c546318bce101b1928a4c0359830b2686e66 --- /dev/null +++ b/videos/self_recorded/packing_order/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53804d977fd358ccf54cc7b68e5819fcd7ed1bc567ece3ed953cfb27ab6131e +size 14252025 diff --git a/videos/self_recorded/packing_order/0004_pt1.mp4 b/videos/self_recorded/packing_order/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ffc945748f111a574c91773be7ebf257c1daf1dd --- /dev/null +++ b/videos/self_recorded/packing_order/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207fa32f94674a27accd3c8d1009be36440be3956fc8d72c34ff4fb3f7220ed3 +size 15368919 diff --git a/videos/self_recorded/packing_order/0005_pt1.mp4 b/videos/self_recorded/packing_order/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bf1b690a98fef4d3829b64f4d7c2bfdc181041a4 --- /dev/null +++ b/videos/self_recorded/packing_order/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ef3774d8ea6655041a3f59d9dd3ae00ac140c1246d4131ef9b1bbfa1f0a779 +size 15635914 diff --git a/videos/self_recorded/packing_order/0006_pt1.mp4 b/videos/self_recorded/packing_order/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e4882d96dec4faaa25d02b7b18e6bf41810781e5 --- /dev/null +++ b/videos/self_recorded/packing_order/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b13431566b90b251a099856f73f34ecc38f1be13a4dd60ec7ac5845fa830758 +size 20163266 diff --git a/videos/self_recorded/packing_order/0007_pt1.mp4 b/videos/self_recorded/packing_order/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..30081e99cd640d451f5317cdafae9216d870afb8 --- /dev/null +++ b/videos/self_recorded/packing_order/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050fe3c62163c480212f31b3d3a90db5005db8328538782ac761deca4ab4a125 +size 21962893 diff --git a/videos/self_recorded/packing_order/0008_pt1.mp4 b/videos/self_recorded/packing_order/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e2705443d73e65d484abdae173a2e7615282d70b --- /dev/null +++ b/videos/self_recorded/packing_order/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3dfada8c265267dc6d7112a1f17391f97b4bcccc11a69a23ece3942a86e34d4 +size 18382053 diff --git a/videos/self_recorded/packing_order/0009_pt1.mp4 b/videos/self_recorded/packing_order/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a1868a5980c9641eaeec1e7c1848ad05b11fdde5 --- /dev/null +++ b/videos/self_recorded/packing_order/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35506dcf8506fe40b07c782f5686203ee58c55299f9811841f526f21a4f72011 +size 13977260 diff --git a/videos/self_recorded/packing_order/0010_pt1.mp4 b/videos/self_recorded/packing_order/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3bc351d8dce91c4c4a027ac0a8de1e2bae3823ad --- /dev/null +++ b/videos/self_recorded/packing_order/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb66008028a4200d9cb1769736f3f572e6c2b56d87ec4f81d171c84e1019c162 +size 17792339 diff --git a/videos/self_recorded/shell_game/0001_pt1.mp4 b/videos/self_recorded/shell_game/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a5a554df644bea4b35d65cec4a6af1b83be0a083 --- /dev/null +++ b/videos/self_recorded/shell_game/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf6523debe43233ae0024dfab15923a85539c68e6fd6d6a9093766576db3190 +size 14003034 diff --git a/videos/self_recorded/shell_game/0002_pt1.mp4 b/videos/self_recorded/shell_game/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..67775c63f9ca1312b8d93992ef2a11c6186e8cda --- /dev/null +++ b/videos/self_recorded/shell_game/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c9a45a24c8f533b0e7706a7c476e385610aa6fb75c8f8930bead6b72449e2ee +size 13169744 diff --git a/videos/self_recorded/shell_game/0003_pt1.mp4 b/videos/self_recorded/shell_game/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4eb42b3ec2084998ee5edad1a0dabcc1cd687fc7 --- /dev/null +++ b/videos/self_recorded/shell_game/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671e91766d2f354c13e1fee23e7d39c2c41d5873b2a60f434deea198e653e39c +size 13171647 diff --git a/videos/self_recorded/shell_game/0004_pt1.mp4 b/videos/self_recorded/shell_game/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80332c281df1df43039f9f672be865b2166ca371 --- /dev/null +++ b/videos/self_recorded/shell_game/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d686fc2d630a1ad7ec055296fb0e1de4701de5e8caf85e66e0bb8cfe4a3a172 +size 12587627 diff --git a/videos/self_recorded/shell_game/0005_pt1.mp4 b/videos/self_recorded/shell_game/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a58341866a2b88f9a1f555b42fea6904e46b9d29 --- /dev/null +++ b/videos/self_recorded/shell_game/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8331706d457f04d70253644ed79d7c25f2121258663cdd7833be0dbff5a2896 +size 12042281 diff --git a/videos/self_recorded/shell_game/0006_pt1.mp4 b/videos/self_recorded/shell_game/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8051a2dd7fb14caf192569ed30e4989adb8bacec --- /dev/null +++ b/videos/self_recorded/shell_game/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5b578e0741d4cc00c8cc6741c0aa239b89d9afb009542fdf1b88e713b81e4e +size 15928166 diff --git a/videos/self_recorded/shell_game/0007_pt1.mp4 b/videos/self_recorded/shell_game/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..17ea9ff872db78c70561e9f7c43eb0222ee858aa --- /dev/null +++ b/videos/self_recorded/shell_game/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f568a3cc3088b3dc029bd6dab492e3ab8a3b7d226e5fc7e018cc298af4a8dd +size 15990839 diff --git a/videos/self_recorded/shell_game/0008_pt1.mp4 b/videos/self_recorded/shell_game/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80d4f75fc4c2dfe7d73c8246588623305ec5e95a --- /dev/null +++ b/videos/self_recorded/shell_game/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3993daaae75f6b678be58f4ef644100d7b3badcd4c1be705b68a5ee279a97df5 +size 16347139 diff --git a/videos/self_recorded/shell_game/0009_pt1.mp4 b/videos/self_recorded/shell_game/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e9657f7599b2ac878291c520223d43b2eaf3832f --- /dev/null +++ b/videos/self_recorded/shell_game/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22aa5af5db8dc11b71396b7fc0cb7d0c650c60e6a7fe51c2af4e1e761013cbe5 +size 16827689 diff --git a/videos/self_recorded/shell_game/0010_pt1.mp4 b/videos/self_recorded/shell_game/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3b00dbdb2d5b133034844aa8ea9ea8ccf12b6f76 --- /dev/null +++ b/videos/self_recorded/shell_game/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f390075c233c6eb93f4383d4a7613d3daa5fa39bf53074a64785b0dcc2d9569 +size 16293889 diff --git a/videos/self_recorded/tilt_box/0001_pt1.mp4 b/videos/self_recorded/tilt_box/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3b3db549e53566cb515c7e8c49504a80146532fe --- /dev/null +++ b/videos/self_recorded/tilt_box/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda1bfe814d9c3d13486a70d3c6c99f78c2ac17aabfa6968f1cacf11e61393e1 +size 11765539 diff --git a/videos/self_recorded/tilt_box/0002_pt1.mp4 b/videos/self_recorded/tilt_box/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ca8363fd745346377bcbf097c4a5f43d18a1ba21 --- /dev/null +++ b/videos/self_recorded/tilt_box/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4038b286a877761d9cb93343a5049f55c8b023a247f332dba74d4cee7ed5e2 +size 15982537 diff --git a/videos/self_recorded/tilt_box/0003_pt1.mp4 b/videos/self_recorded/tilt_box/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..692e122395ab5f3724b25ebde8a7e8a87e4d4001 --- /dev/null +++ b/videos/self_recorded/tilt_box/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4057f6eecba88743c88c21666808b91862a281b1b8f4c27e3f08ad4d761636 +size 15528693 diff --git a/videos/self_recorded/tilt_box/0004_pt1.mp4 b/videos/self_recorded/tilt_box/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c0685521c9c56e35d099cc285bfc14463ab461bb --- /dev/null +++ b/videos/self_recorded/tilt_box/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d837af93cec2f5c755c0cc01918dfd498f1e8eae4ca6ec62418759053e4e10c +size 19302911 diff --git a/videos/self_recorded/tilt_box/0005_pt1.mp4 b/videos/self_recorded/tilt_box/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2f3d9c4ab20c2c6d05a16a15f7f95a6d80348f02 --- /dev/null +++ b/videos/self_recorded/tilt_box/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627f09e7bbbb978f94723159eedffdbc1f9e039388fb9830a9a55487bbbc4df4 +size 18863192 diff --git a/videos/self_recorded/tilt_box/0006_pt1.mp4 b/videos/self_recorded/tilt_box/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1cd7ea70a574e45311d00879856ef76bc24a2ebd --- /dev/null +++ b/videos/self_recorded/tilt_box/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068c3718079ccd0f797cb4671c18a413944c2df22f4e40fcbe8140a4fc5a963e +size 17293250 diff --git a/videos/self_recorded/tilt_box/0007_pt1.mp4 b/videos/self_recorded/tilt_box/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..68deb3a79496e66a6abc720fd86f193c183d7a54 --- /dev/null +++ b/videos/self_recorded/tilt_box/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040b4dfd3ee585c6c03944a958f1a918527ca9fe5dd609d69a0285f57ae45f46 +size 13234158 diff --git a/videos/self_recorded/tilt_box/0008_pt1.mp4 b/videos/self_recorded/tilt_box/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..db906eb9a21fee1a1c5db4045a4addea32f1f2d6 --- /dev/null +++ b/videos/self_recorded/tilt_box/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6834c858ef07ddec6e8372ea213a9cdb2969d63123b7c68439b3baaa0aa29811 +size 13449059 diff --git a/videos/self_recorded/tilt_box/0009_pt1.mp4 b/videos/self_recorded/tilt_box/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5144582e239397ce33f3f2c5495da78ff426ee44 --- /dev/null +++ b/videos/self_recorded/tilt_box/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30398fa2793f050553e561fd6dd6d0d4d6ff9740003af2000c4265007e59c299 +size 14249168 diff --git a/videos/self_recorded/tilt_box/0010_pt1.mp4 b/videos/self_recorded/tilt_box/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..96ce9e2fd7233a3ee8a170b922e73da6b390389c --- /dev/null +++ b/videos/self_recorded/tilt_box/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a91089145b13bc527d7f93cc1039052bb01362c0ca98cf1454a0b0e526154a5b +size 15108658 diff --git a/videos/synthetic/block_counting/0001_pt1.mp4 b/videos/synthetic/block_counting/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..db04d866bdfe9e24117860eaa2197fec2f4f0ddf --- /dev/null +++ b/videos/synthetic/block_counting/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece6e6049cfc7233c6f5f1ebe5d88813f514a4d98122cf8415d9c1841d812e57 +size 562324 diff --git a/videos/synthetic/block_counting/0002_pt1.mp4 b/videos/synthetic/block_counting/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..aefcbbe4d3802569fdd20d6c7dba6b849720625d --- /dev/null +++ b/videos/synthetic/block_counting/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df20b82936d8f713afb513aeed8fc0147d6c836e21096c4e0092f6c2c34d6c6e +size 551109 diff --git a/videos/synthetic/block_counting/0003_pt1.mp4 b/videos/synthetic/block_counting/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..65f4963df4b70816ddbb5cd80b3e467fd82e2a3c --- /dev/null +++ b/videos/synthetic/block_counting/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc050540075c6123e7f6a77a58507dbf87879e560ffc645c773b26a770a5c27 +size 537125 diff --git a/videos/synthetic/block_counting/0004_pt1.mp4 b/videos/synthetic/block_counting/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bf0467adf1fce9ffb5fcf936f4569e271261c4af --- /dev/null +++ b/videos/synthetic/block_counting/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a51d00486147c6175abcfec46316f4ade2be5f1df817ffe5d0493d85a7e026 +size 550416 diff --git a/videos/synthetic/block_counting/0005_pt1.mp4 b/videos/synthetic/block_counting/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..890b91e31f42beb4df6aac38d0bc94f377491aa3 --- /dev/null +++ b/videos/synthetic/block_counting/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d3b0b666d23c8ee32f877fd897b68c8803e2a5f7cc580a05f5e151facc79a1 +size 503777 diff --git a/videos/synthetic/block_counting/0006_pt1.mp4 b/videos/synthetic/block_counting/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..28206eb19aaaa2c558b130d84cc20320805b5ee3 --- /dev/null +++ b/videos/synthetic/block_counting/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307f411da67cf293914651de116481ac3ad632fecb3a35f32622e7152315a43c +size 568156 diff --git a/videos/synthetic/block_counting/0007_pt1.mp4 b/videos/synthetic/block_counting/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..13315286b43fa4af7c893f0ff368a6c23bae24a8 --- /dev/null +++ b/videos/synthetic/block_counting/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf87bb9e6d71cb7a97afdc73e16b3e85453cfb89444d272d48a91be6f04b102 +size 564303 diff --git a/videos/synthetic/block_counting/0008_pt1.mp4 b/videos/synthetic/block_counting/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..112d98c448540d514fea7eb392f4feeddeb0805b --- /dev/null +++ b/videos/synthetic/block_counting/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02689955b1690dadaf694862d2a11020065a52cfc5eb923099437f21a0308a50 +size 572140 diff --git a/videos/synthetic/block_counting/0009_pt1.mp4 b/videos/synthetic/block_counting/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c1fb4ddaa982d04af7a44229e089cf3b7226dc77 --- /dev/null +++ b/videos/synthetic/block_counting/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69dafac41cfc082ab151f461c03f9827cdad0e30ec1a0f8606a15fd962b0637a +size 588399 diff --git a/videos/synthetic/block_counting/0010_pt1.mp4 b/videos/synthetic/block_counting/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d715aaa74c0b96119dbe478ab1e47fe3e45b5a3e --- /dev/null +++ b/videos/synthetic/block_counting/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf0f69fc5bd664d71f20d43019b869b263cafec5d3599c08ca404d6e51f7cfe +size 575880 diff --git a/videos/synthetic/block_counting/0011_pt1.mp4 b/videos/synthetic/block_counting/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4d89631568f9bebb6f67756288a2bea64f125d09 --- /dev/null +++ b/videos/synthetic/block_counting/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3027da84ed1442e53db3d974e17920f9303f91f9eb8ba8872996657af636bd +size 545292 diff --git a/videos/synthetic/block_counting/0012_pt1.mp4 b/videos/synthetic/block_counting/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..966a21867370943e4de658391c2b4dd1d0e41fb5 --- /dev/null +++ b/videos/synthetic/block_counting/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a47558c86cfa2e3fb2559aa6a7fa6d323fc82636deb9599827c71c24ef62f03 +size 529159 diff --git a/videos/synthetic/block_counting/0013_pt1.mp4 b/videos/synthetic/block_counting/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9c4fe81a908feddc87b009904ce6ba8ded04c045 --- /dev/null +++ b/videos/synthetic/block_counting/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0468576fd2227f9c0e635e6f8789f16f629b44cd27facc33f81e2ae44b93793 +size 557728 diff --git a/videos/synthetic/block_counting/0014_pt1.mp4 b/videos/synthetic/block_counting/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..04090ae9a244c1567d057fc3c228721e0b9d90dd --- /dev/null +++ b/videos/synthetic/block_counting/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5c72b11b2191e4b0f29e3ad14abcebd8bbe69fe29cff290f29de39d994e4a6 +size 521495 diff --git a/videos/synthetic/block_counting/0015_pt1.mp4 b/videos/synthetic/block_counting/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b1d89927c00f24cab1471cbf05f2772aa7eb3d7f --- /dev/null +++ b/videos/synthetic/block_counting/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c64575e9e6ae454fe9d9ee8520aae498f8e4937b09a86158f0a36d8abe5e1f48 +size 548294 diff --git a/videos/synthetic/block_counting/0016_pt1.mp4 b/videos/synthetic/block_counting/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b879dd1704139a70cc8109dda52c7890afe2d744 --- /dev/null +++ b/videos/synthetic/block_counting/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecf76b4f7fe947fea86cca9005fef66f163d374671b795e602f0f3406ebbe5c +size 571582 diff --git a/videos/synthetic/block_counting/0017_pt1.mp4 b/videos/synthetic/block_counting/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3baab6ef9acd3869817babfb7b5610ec9e3dd49b --- /dev/null +++ b/videos/synthetic/block_counting/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c9c59d21234290d4d359dee5cb25b976f687465f19560ce96bdaea2246fbb5 +size 574913 diff --git a/videos/synthetic/block_counting/0018_pt1.mp4 b/videos/synthetic/block_counting/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b21508a8c2b6d7f4cb9f668f32e5fa99e11c23cc --- /dev/null +++ b/videos/synthetic/block_counting/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67fa3061c32f818792b2b7e184254023f45fefbbe9ca61493dfe3c72998645f3 +size 497149 diff --git a/videos/synthetic/block_counting/0019_pt1.mp4 b/videos/synthetic/block_counting/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4035e279eff52640e07b8b430652b05a07816eb4 --- /dev/null +++ b/videos/synthetic/block_counting/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a348cd4d33520896c591166f946c839668efc53080570d3f2a5c50a0287308f +size 590019 diff --git a/videos/synthetic/block_counting/0020_pt1.mp4 b/videos/synthetic/block_counting/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3fc33482ed103126c933cff08741e74438453921 --- /dev/null +++ b/videos/synthetic/block_counting/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c850fb24780be9cae987d265cbd81eb1924f557806c1bcbcf1a7ddfe2be24f +size 563611 diff --git a/videos/synthetic/block_counting/0021_pt1.mp4 b/videos/synthetic/block_counting/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1d392015a402f5cbc44af06afe4c4a3747474c73 --- /dev/null +++ b/videos/synthetic/block_counting/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c90e5495ed7d002d27b103ca012da38346c316ae39157456c6277367390290 +size 534961 diff --git a/videos/synthetic/block_counting/0022_pt1.mp4 b/videos/synthetic/block_counting/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eb61bcac10e9a5083cee4c9fd7fa3e7fd4b4f7d9 --- /dev/null +++ b/videos/synthetic/block_counting/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95dc13d187b62e7f9deeb5e9c21fd34305fb39335fc0aa76bc7518b65d65756e +size 544909 diff --git a/videos/synthetic/block_counting/0023_pt1.mp4 b/videos/synthetic/block_counting/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..361a1c92846502d2d19fe9cd351498d213521fd1 --- /dev/null +++ b/videos/synthetic/block_counting/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415d58461f84f1e5821ff754757875a0cc5553f167bbeb1c74878ae907a66e88 +size 554788 diff --git a/videos/synthetic/block_counting/0024_pt1.mp4 b/videos/synthetic/block_counting/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..45288df93f0831eeef6fe45c7ca86ac2d84205d2 --- /dev/null +++ b/videos/synthetic/block_counting/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcd6b304236e6d79ddfa482a07309e7339308db4c4dc3c3019d4e9aafdd2d7b +size 554417 diff --git a/videos/synthetic/block_counting/0025_pt1.mp4 b/videos/synthetic/block_counting/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..21f8811c6a8c854a3391ff8789ce59a917c776a8 --- /dev/null +++ b/videos/synthetic/block_counting/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7beeb5c3359f0be30d56d5518a0a4fa92fb6a9598c9262b07b88d12a074d4a6 +size 538472 diff --git a/videos/synthetic/block_counting/0026_pt1.mp4 b/videos/synthetic/block_counting/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..357b7b23488484150f376f971f1e5e2750f1939c --- /dev/null +++ b/videos/synthetic/block_counting/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d127472a318859302e7d38ce7e83809e6f8f7ba1203900c854026f1a7fe6cb +size 566726 diff --git a/videos/synthetic/block_counting/0027_pt1.mp4 b/videos/synthetic/block_counting/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ebb3863549d495a1709c1eb1250e2417721c6f8d --- /dev/null +++ b/videos/synthetic/block_counting/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63af6959ebddef196fb95c48faaac50fd482a956476c8a5bf0c8abdf76ea8873 +size 560183 diff --git a/videos/synthetic/block_counting/0028_pt1.mp4 b/videos/synthetic/block_counting/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f45e9dc9fa636d96e6234f302ad9c1baafe58618 --- /dev/null +++ b/videos/synthetic/block_counting/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892c5554430f78b47af0289c63de4782c2275d30d830339ef27f2030426a9b54 +size 538915 diff --git a/videos/synthetic/block_counting/0029_pt1.mp4 b/videos/synthetic/block_counting/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..742b9394a60d2ee9e7b7760ff085f99112b33c49 --- /dev/null +++ b/videos/synthetic/block_counting/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e721e9e3ba9f625d44eb401a5ae2ff147eace5721eee1162fc1c8ace5869c91 +size 536819 diff --git a/videos/synthetic/block_counting/0030_pt1.mp4 b/videos/synthetic/block_counting/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6e0f28eac696f124b06bde707c1727ad87bbbfb3 --- /dev/null +++ b/videos/synthetic/block_counting/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb607f0d52de1dbcaa031593537cb261d31b3090b8ccbb613926b577da2e6549 +size 534508 diff --git a/videos/synthetic/block_counting/0031_pt1.mp4 b/videos/synthetic/block_counting/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..37c010c90a3cb7f1060ccd5cbe295c461996e8c9 --- /dev/null +++ b/videos/synthetic/block_counting/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42b81d35f43a3c2151dd94b3360ccdf446df143327899ffc830f7534b670821 +size 553787 diff --git a/videos/synthetic/block_counting/0032_pt1.mp4 b/videos/synthetic/block_counting/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7352bcaa71fd8fbca58d9e76e361dc6e8007f8ee --- /dev/null +++ b/videos/synthetic/block_counting/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74952f038269c2dd4971e5ddf073bb210ca77896f862e7dabeed379ca0b1cf02 +size 540681 diff --git a/videos/synthetic/block_counting/0033_pt1.mp4 b/videos/synthetic/block_counting/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..43ca2e45b30058025d31fc21d1e77bb68e72b594 --- /dev/null +++ b/videos/synthetic/block_counting/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5100cb003a4812c0a24b0420453bf94f718f1f90faeb71e0e37325ef1f704425 +size 496791 diff --git a/videos/synthetic/block_counting/0034_pt1.mp4 b/videos/synthetic/block_counting/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e81831d4be4e8642ea36ed8e5b31c7a548571f00 --- /dev/null +++ b/videos/synthetic/block_counting/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eadb1c0748d52e6831413456e112d54efc33743a41bda60d2e1df6bcca2ec23d +size 531213 diff --git a/videos/synthetic/block_counting/0035_pt1.mp4 b/videos/synthetic/block_counting/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5d35d998b6e2d8cb8d8b7dbc346556785ab01aee --- /dev/null +++ b/videos/synthetic/block_counting/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c54bfa0dbec79f41e0a1e8020e8780096d0b4cbd2a2ea416819d77431152a45 +size 574376 diff --git a/videos/synthetic/block_counting/0036_pt1.mp4 b/videos/synthetic/block_counting/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6a02bdf7e9262b8d25d4bfb83fcfcff4635317d7 --- /dev/null +++ b/videos/synthetic/block_counting/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da3e2adb139c188eba89ae65c8eeeaa304249afd407f988e90cdf3f0e25bb28 +size 537372 diff --git a/videos/synthetic/block_counting/0037_pt1.mp4 b/videos/synthetic/block_counting/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d8f34806282b97a840061076ae352d235d18d30c --- /dev/null +++ b/videos/synthetic/block_counting/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28af920028f6dd11cbe0f4999d9307868ea4183a80e9a0442c8eaa174f6c0d15 +size 541885 diff --git a/videos/synthetic/block_counting/0038_pt1.mp4 b/videos/synthetic/block_counting/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4fc661ce590f2c2e4c82e438cc7d91287c5b1b05 --- /dev/null +++ b/videos/synthetic/block_counting/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a43d4cc55b7738fd7a478f334919f67447d45c082d6a1866e7ce0c224a6270 +size 554635 diff --git a/videos/synthetic/block_counting/0039_pt1.mp4 b/videos/synthetic/block_counting/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..558af30926bb10ae39a40311388d2934b1135b63 --- /dev/null +++ b/videos/synthetic/block_counting/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de9294f163c9409bcdf2320e621f60bd7e3d2a0c4bf291ca1a5c0593d621b5b +size 606543 diff --git a/videos/synthetic/block_counting/0040_pt1.mp4 b/videos/synthetic/block_counting/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d846913012e30e88661cce4926a48c1b36dfca40 --- /dev/null +++ b/videos/synthetic/block_counting/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:453583e2d8f2a7b9090954e0b6bb16d600967296296a9c5c1c4f44386f3b9a21 +size 561161 diff --git a/videos/synthetic/block_counting/0041_pt1.mp4 b/videos/synthetic/block_counting/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..78c07e801427d00e42b3edd3727946153dccd3b9 --- /dev/null +++ b/videos/synthetic/block_counting/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89762fe895215d1b0463164aa3521d8c21255da34e614595c5ed65016ee1f146 +size 573255 diff --git a/videos/synthetic/block_counting/0042_pt1.mp4 b/videos/synthetic/block_counting/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3551d89ce60ffbcdf5e3c097935b5c544cae9723 --- /dev/null +++ b/videos/synthetic/block_counting/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f04d133357b3a10863cbfed85684dc972a71889efea17f6f4cdf25bebd7221 +size 547851 diff --git a/videos/synthetic/block_counting/0043_pt1.mp4 b/videos/synthetic/block_counting/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b481388577ed50eefd894edf57bc925f5d209c9f --- /dev/null +++ b/videos/synthetic/block_counting/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d600baeeb474cb2fee58b36d7989cff66e3b19fb6f8ca8933d842617b67ca5 +size 563219 diff --git a/videos/synthetic/block_counting/0044_pt1.mp4 b/videos/synthetic/block_counting/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a2f1e24c588c0f2be3afd9d8c76ef0c320bad97c --- /dev/null +++ b/videos/synthetic/block_counting/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3004b246df26a4edf0770cf75955cc44d82cd6f3eca32fd495b315922d109a6d +size 574697 diff --git a/videos/synthetic/block_counting/0045_pt1.mp4 b/videos/synthetic/block_counting/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..39afd51141f3d59fa2f796211e9fc866d2deafd2 --- /dev/null +++ b/videos/synthetic/block_counting/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cbbe813ac41ca59bade9dba78a1dd55ce29823e6a094c5aa3af290adc9442e +size 574310 diff --git a/videos/synthetic/block_counting/0046_pt1.mp4 b/videos/synthetic/block_counting/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3698747b2cea127b1c3843fba01a36839f04e837 --- /dev/null +++ b/videos/synthetic/block_counting/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d4b71adb37a5c6ed1bf49f966ed722bd7128c5629b111665d6b9c185e355a4 +size 537672 diff --git a/videos/synthetic/block_counting/0047_pt1.mp4 b/videos/synthetic/block_counting/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..46a62b413117826d3e3883029604cfd2a3430f11 --- /dev/null +++ b/videos/synthetic/block_counting/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebd18655a2028f92612a8b09117cf0c947646458b7248b8124007e7022e5aaf2 +size 559854 diff --git a/videos/synthetic/block_counting/0048_pt1.mp4 b/videos/synthetic/block_counting/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..268d43f10dd51c1c3d9c7ece7218a7ed0a811ac4 --- /dev/null +++ b/videos/synthetic/block_counting/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd169f42183249de1bb19d9708950a78ada850a1e58cf6c243aff4d9d63b312e +size 472045 diff --git a/videos/synthetic/block_counting/0049_pt1.mp4 b/videos/synthetic/block_counting/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b78546fd4d7c96675bdbaea26537a3585e609298 --- /dev/null +++ b/videos/synthetic/block_counting/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42bc693c8f077aa2303b473baa2590264743b3a1c74d85c7e2d990be07d2dad +size 551600 diff --git a/videos/synthetic/block_counting/0050_pt1.mp4 b/videos/synthetic/block_counting/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..40922117c77383432127b47b7b21277d6388036d --- /dev/null +++ b/videos/synthetic/block_counting/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70fdff821ca3538738bf521d4f78d2e9eeb30b78d18c7762ddef7f6aa19c0f7a +size 551093 diff --git a/videos/synthetic/dice/0001_pt1.mp4 b/videos/synthetic/dice/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ffc809c60165c07c815b89b43bdfe256c4ee24d8 --- /dev/null +++ b/videos/synthetic/dice/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006e2f995c97992794ad1dd3ffde8cbef4b2dc027f819a7dbff52e6c09587eab +size 540901 diff --git a/videos/synthetic/dice/0002_pt1.mp4 b/videos/synthetic/dice/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..01cf5540bc237d1e80b33f432c829e6fcf8785c4 --- /dev/null +++ b/videos/synthetic/dice/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93607a977491c4da5a456896c55efb6c3fea1482ed298c5ef9d7df4fa51110b6 +size 553651 diff --git a/videos/synthetic/dice/0003_pt1.mp4 b/videos/synthetic/dice/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ff98481c109ae924ef7529b18a4813468a63cc8e --- /dev/null +++ b/videos/synthetic/dice/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366019e6b12538b0b6ecdb8b6a18b17ec844bebe6abd88ef4d2c90d338b1ff5b +size 523829 diff --git a/videos/synthetic/dice/0004_pt1.mp4 b/videos/synthetic/dice/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..479977a1316e246ade3af2c20619d5cb5c7169c9 --- /dev/null +++ b/videos/synthetic/dice/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01de212c5c1ed3c597121ea2691bad5951d2f1dcd5f2c2953894dffc1f88d87 +size 552295 diff --git a/videos/synthetic/dice/0005_pt1.mp4 b/videos/synthetic/dice/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7a20c8e903b6c580beeff6cdec68e0c58fec989d --- /dev/null +++ b/videos/synthetic/dice/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d4e0c54125b1ebf14b38ad16d71ec27ca7edf59a109957eed09f9437c920f4 +size 542232 diff --git a/videos/synthetic/dice/0006_pt1.mp4 b/videos/synthetic/dice/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d60fc708f2eb3a021eb9303e1c6b8a0fd0fddaa0 --- /dev/null +++ b/videos/synthetic/dice/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c476dc2983c4c17bd34dfe70bf2d11cf4858de71ebad2e28b9847c452c0645 +size 538130 diff --git a/videos/synthetic/dice/0007_pt1.mp4 b/videos/synthetic/dice/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f04d0596dc4c99909081205e2570e9715289742a --- /dev/null +++ b/videos/synthetic/dice/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80580442d2ede2d48345020e6e6673858b9dc23c9e143d7ae2883c8e1158117a +size 544776 diff --git a/videos/synthetic/dice/0008_pt1.mp4 b/videos/synthetic/dice/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..43ee07adb3cade024561fdfc08d3d8e601ccd87e --- /dev/null +++ b/videos/synthetic/dice/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9090e297625f0fcb20b426ac48a3e84ef141ed6010fd19b6110c03eb0f549d +size 567835 diff --git a/videos/synthetic/dice/0009_pt1.mp4 b/videos/synthetic/dice/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..57436a9025fac835c7ba8b1b452366afd74edcb7 --- /dev/null +++ b/videos/synthetic/dice/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ec18d8396cce495346a1e0b3f218cbe179d21b1e3f6df17c208dc2eaea8eb7 +size 544916 diff --git a/videos/synthetic/dice/0010_pt1.mp4 b/videos/synthetic/dice/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..552c72025c3f283688054d67d05b08b55959da4e --- /dev/null +++ b/videos/synthetic/dice/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c23b074fcd69cc357f74dec63fa48ee505e6a7d843d9d5a61a9155b2a56a30b +size 515260 diff --git a/videos/synthetic/dice/0011_pt1.mp4 b/videos/synthetic/dice/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..78ccb7c75981e038edf47505e00280caaa5b40bc --- /dev/null +++ b/videos/synthetic/dice/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feaaf6a537694ffa156bc08e020d48199ca3de2a8c6357297ccd1933e836e193 +size 524218 diff --git a/videos/synthetic/dice/0012_pt1.mp4 b/videos/synthetic/dice/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9d6260d43ded7354fe5375b4e8f5d890aae2ff8d --- /dev/null +++ b/videos/synthetic/dice/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78517c1a220e78faa0224299d2fd54d875b1324f74c694a57cd940223d7f044a +size 557624 diff --git a/videos/synthetic/dice/0013_pt1.mp4 b/videos/synthetic/dice/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c4c2e83a9f1c1dd723a3e7df0ee7f63c91dfe677 --- /dev/null +++ b/videos/synthetic/dice/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70ebec095d550c8e5d72d08bcc601e12171a72990873001b6c9ffbd474c69dc +size 523656 diff --git a/videos/synthetic/dice/0014_pt1.mp4 b/videos/synthetic/dice/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..99946f10046afcde8028315955f49c423de1eb39 --- /dev/null +++ b/videos/synthetic/dice/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a703b74928ecc07e84ea28b4dac35d225d68b82a7e1ea63e0ab4a3404c4ddbbc +size 512669 diff --git a/videos/synthetic/dice/0015_pt1.mp4 b/videos/synthetic/dice/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2de1442d8133d3e996557efaa577cffc3ef04d48 --- /dev/null +++ b/videos/synthetic/dice/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9619e654e7e5c299b6e1a03d72a622ac58f0ad276a4ef4cbfd4523729f6c07f2 +size 519964 diff --git a/videos/synthetic/dice/0016_pt1.mp4 b/videos/synthetic/dice/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..024061b4918c63704d8a1ad66ad27437b26b1c32 --- /dev/null +++ b/videos/synthetic/dice/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6cfc0b7eaac2087fb02810069b93766e41028337a5f32ac7430ea75d0d9b516 +size 503471 diff --git a/videos/synthetic/dice/0017_pt1.mp4 b/videos/synthetic/dice/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a43c6032cd5bc54ffc066f44116740646cb99cb6 --- /dev/null +++ b/videos/synthetic/dice/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c015fbd8c3854bd84a522bb1d6d4f9460248c5811ab19615c552bf64c08946 +size 537705 diff --git a/videos/synthetic/dice/0018_pt1.mp4 b/videos/synthetic/dice/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c8a2e1a50626eb5c36d9e4e6bc3dfd29ae220ed1 --- /dev/null +++ b/videos/synthetic/dice/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a3e01678d40906d3b1f35241b3cff0827524c5429108d875a0a878b8e57cbb +size 531577 diff --git a/videos/synthetic/dice/0019_pt1.mp4 b/videos/synthetic/dice/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e7bbb34226db2fd3ad421b0700772f997821a965 --- /dev/null +++ b/videos/synthetic/dice/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9aa5f33e540b64e02c4040ca9b4a4000d5d1a21b1da5e181b77e62bef6df5b1 +size 529184 diff --git a/videos/synthetic/dice/0020_pt1.mp4 b/videos/synthetic/dice/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..abce11aa80c27fe07c01d48457b68c7f63e7158c --- /dev/null +++ b/videos/synthetic/dice/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2a9b7c14acae33aed8458f14423cde81fe86ddc06318384727bd2d8c35f06f +size 531675 diff --git a/videos/synthetic/dice/0021_pt1.mp4 b/videos/synthetic/dice/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ed705bc258ddade604260ee57985878b1f34409e --- /dev/null +++ b/videos/synthetic/dice/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c618f4ab238026ced00d45c3272fb7fbeab3a321995b3f9240cfbca3a182640 +size 555068 diff --git a/videos/synthetic/dice/0022_pt1.mp4 b/videos/synthetic/dice/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..681c0ae4780de3db7a450b9457d8b19db06b7c08 --- /dev/null +++ b/videos/synthetic/dice/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78c94814e69d38b45bb72324d87af02b52385ebfcd4df5d85481a9e24f6dd1e +size 561145 diff --git a/videos/synthetic/dice/0023_pt1.mp4 b/videos/synthetic/dice/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4f17e02a10d7fb7882d1aa490793ac90af621f7f --- /dev/null +++ b/videos/synthetic/dice/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875210dd05321f5352568c2ba33987b638abaa4cac65ff4e3299ed1d3845c205 +size 527631 diff --git a/videos/synthetic/dice/0024_pt1.mp4 b/videos/synthetic/dice/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..774e0c24f8b5ce072f93c0ef0de79b29867f0224 --- /dev/null +++ b/videos/synthetic/dice/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb766962062f63123456fecac7ec89d1b21a99f7f852ab46dba2d65c7c340d31 +size 545002 diff --git a/videos/synthetic/dice/0025_pt1.mp4 b/videos/synthetic/dice/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1f625e58bb04aba283345decd81051a5b86b4873 --- /dev/null +++ b/videos/synthetic/dice/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01552202a6d0edca0c8bfbb8df428cc768e5b1334083011d2e31a9689347c216 +size 515014 diff --git a/videos/synthetic/dice/0026_pt1.mp4 b/videos/synthetic/dice/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..65d47a82ac2e8fbf1502054d4dc10696eee7526c --- /dev/null +++ b/videos/synthetic/dice/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96a0529ed1e81f37e220999c2010ad812c3dba38b44781687cdd0639d896fe9 +size 565039 diff --git a/videos/synthetic/dice/0027_pt1.mp4 b/videos/synthetic/dice/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7843f46f56dab3d7db84da1df15cb419c6154723 --- /dev/null +++ b/videos/synthetic/dice/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ff9bb5943582c13940688cc947bb31cb3ef83d095b5ab9ddd2b42a26f36ab7a +size 536063 diff --git a/videos/synthetic/dice/0028_pt1.mp4 b/videos/synthetic/dice/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..93ed7e9650c5c40eb8a3cbed71411f9943e3510f --- /dev/null +++ b/videos/synthetic/dice/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8efe09bdb284d85269bf6fd48c9e13166eceda9096519e0773100b342de769d +size 553817 diff --git a/videos/synthetic/dice/0029_pt1.mp4 b/videos/synthetic/dice/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..aa6bbcd75832e481f55d68e98b70dced02d57635 --- /dev/null +++ b/videos/synthetic/dice/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f9527315f60e3f4c34783974755e869a7b971256f142d952b2829376873341 +size 550572 diff --git a/videos/synthetic/dice/0030_pt1.mp4 b/videos/synthetic/dice/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4d5b8056952d382b1f22c725b18a222f45184093 --- /dev/null +++ b/videos/synthetic/dice/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1c6b1c9807309ae9d6d87dd452e9b7d44ebee103061df1a6d399c5d6a23126 +size 519288 diff --git a/videos/synthetic/dice/0031_pt1.mp4 b/videos/synthetic/dice/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..da94e21d18c0d2ad8cc07bbf5385a0723b5be329 --- /dev/null +++ b/videos/synthetic/dice/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604c1aad04b09a67bf6d124b3f1c07f25aa3aa2899f6360c8adfc682db8e8c71 +size 539817 diff --git a/videos/synthetic/dice/0032_pt1.mp4 b/videos/synthetic/dice/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..060ddb5f87c8f7c74e4c957e3f2fb733c82648ac --- /dev/null +++ b/videos/synthetic/dice/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a847ba90fe8ebc7a2b2793e0d09d9759a4189d3ef63c5bde27d516323fe51ad5 +size 510665 diff --git a/videos/synthetic/dice/0033_pt1.mp4 b/videos/synthetic/dice/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fee8588864ccb2ed76b504d4335092c0f8eef5d4 --- /dev/null +++ b/videos/synthetic/dice/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80682c4968dc159af9260f345c2893915545d9e04307074afb2f0aab948e978d +size 533830 diff --git a/videos/synthetic/dice/0034_pt1.mp4 b/videos/synthetic/dice/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1b135521cf6682513986ef71503d8f65efca6379 --- /dev/null +++ b/videos/synthetic/dice/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4779f70f1510de0dfeb86d3fb0e0b625178b4b60bc614c756a7450cc8c1085b3 +size 573241 diff --git a/videos/synthetic/dice/0035_pt1.mp4 b/videos/synthetic/dice/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4903706c9400d7b6dde59e5e3845d0d3555f67c0 --- /dev/null +++ b/videos/synthetic/dice/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67dd4e0d38383d95241fd7fb8a113f78569797b49ba56f52b062773d68ea85a +size 503113 diff --git a/videos/synthetic/dice/0036_pt1.mp4 b/videos/synthetic/dice/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c9bf5846cb7451dfdf6740a89b222995459f5a3a --- /dev/null +++ b/videos/synthetic/dice/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebfd84a75438e82cd1f0a749d8d47c5e5f1d8db79f91aa7f09c343d2b0d7faf +size 517139 diff --git a/videos/synthetic/dice/0037_pt1.mp4 b/videos/synthetic/dice/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fab93c8baa0c11f19fc6eed7865cbd22e7c77a42 --- /dev/null +++ b/videos/synthetic/dice/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4df01bf4f95d9b16c087ff686cceffee0de7d603bb8eb94acd4859c39420c18 +size 518886 diff --git a/videos/synthetic/dice/0038_pt1.mp4 b/videos/synthetic/dice/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ae04eb61fcafc6c788e3d59db02d2c4bf462e784 --- /dev/null +++ b/videos/synthetic/dice/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147216c33a118fe2683908786ebdc20e2cbb572bad4bf4ac51bbf6dff7c9db71 +size 564744 diff --git a/videos/synthetic/dice/0039_pt1.mp4 b/videos/synthetic/dice/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..567a2145cf3ba4b1064ddb317ee71beff1854eb2 --- /dev/null +++ b/videos/synthetic/dice/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83bffd709feccda7b61487d9ccd0952941d82a8c7751848a174015acc3cbe9e2 +size 553355 diff --git a/videos/synthetic/dice/0040_pt1.mp4 b/videos/synthetic/dice/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..35cda943d8f07dd4a9e2eabb8fe8e105afe34081 --- /dev/null +++ b/videos/synthetic/dice/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834e5a856aecc518da23002adf96f5b809193a2a203a84ca50592be832cd5cdb +size 537157 diff --git a/videos/synthetic/dice/0041_pt1.mp4 b/videos/synthetic/dice/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4ae87fd5f8cb214c09dfc651b4181a0376a7f3fb --- /dev/null +++ b/videos/synthetic/dice/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5680781961aad60dbc4455f8e617b63ddf0ddb8b515a71f79436536cbf9cac +size 558080 diff --git a/videos/synthetic/dice/0042_pt1.mp4 b/videos/synthetic/dice/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..05063219f0acd2ddea6872ff3cd0a4ad2ea6bb5d --- /dev/null +++ b/videos/synthetic/dice/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd5814d77fe9971f13729090f428bfd8956f8cce6cae97ba6273f2ae91383d7 +size 504969 diff --git a/videos/synthetic/dice/0043_pt1.mp4 b/videos/synthetic/dice/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ee0c09e833ad5bc09c15d1522bc89aafe1a36fc6 --- /dev/null +++ b/videos/synthetic/dice/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30bc294edd3114259afc3a06c7f8b2c574af59b211bd3386fbd17b0eb34e607f +size 509355 diff --git a/videos/synthetic/dice/0044_pt1.mp4 b/videos/synthetic/dice/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..530a55705136a5617fce819b7096285ced5574a7 --- /dev/null +++ b/videos/synthetic/dice/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6955c68d78aeb54c936f036e3f2c933cd80085288a667213752949d5ec089482 +size 513036 diff --git a/videos/synthetic/dice/0045_pt1.mp4 b/videos/synthetic/dice/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7ede19d23c501c134fe9cbb58748f56fedb6bc60 --- /dev/null +++ b/videos/synthetic/dice/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0f720c0b80d8a26109e81e1c274f92e77c0097538a6d2ea9dd16a45e553960 +size 526364 diff --git a/videos/synthetic/dice/0046_pt1.mp4 b/videos/synthetic/dice/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6e09d1f9947b1d497af0bf420d9d9b39cea8f7f9 --- /dev/null +++ b/videos/synthetic/dice/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6fd67ff95f805acf8a8f5f3151921420f1c34917034c32faa6c0e11ee190e3d +size 514523 diff --git a/videos/synthetic/dice/0047_pt1.mp4 b/videos/synthetic/dice/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3940e8d4ff69a34ee906c51c5dd37653e9e62e85 --- /dev/null +++ b/videos/synthetic/dice/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79188981b700810f240c52cc6e30927a1c9d82834686a24771d4e404dfc154bc +size 528276 diff --git a/videos/synthetic/dice/0048_pt1.mp4 b/videos/synthetic/dice/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c7ff07baa3c22cd97ac17bfafbf42264fd8187bd --- /dev/null +++ b/videos/synthetic/dice/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4237609a1444c9058bf8616d5b546cbd5d2e45bd4d0cfa51a0f34ce24963f09 +size 525809 diff --git a/videos/synthetic/dice/0049_pt1.mp4 b/videos/synthetic/dice/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..82cfec06e96261e54f60ba9b9d17fd92d824280c --- /dev/null +++ b/videos/synthetic/dice/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f519321010243699615edf490b6c8ecdd36d0704838d32bb698a5f3c803c60 +size 536487 diff --git a/videos/synthetic/dice/0050_pt1.mp4 b/videos/synthetic/dice/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8ae08a11563c07b9eda2d4daf8a44a8ff051f372 --- /dev/null +++ b/videos/synthetic/dice/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a78490683c7d9796b6edb6cc354dcf1043b801fcbd7d87244c3f2fd78f041d +size 523393 diff --git a/videos/synthetic/funnel_ball/0001_pt1.mp4 b/videos/synthetic/funnel_ball/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d42785c350cbc8e1ed5adba86187ddf3924a3f49 --- /dev/null +++ b/videos/synthetic/funnel_ball/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765db067440553168c7ddaec01f085158c983fda59e7d5524539229172477539 +size 1146692 diff --git a/videos/synthetic/funnel_ball/0002_pt1.mp4 b/videos/synthetic/funnel_ball/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ded3678840e947b696dd380c1088bc7e55114f57 --- /dev/null +++ b/videos/synthetic/funnel_ball/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1097114295a54c7b61c0e6baf30bedf3f1247c87141a4872239b80f5cdbe57 +size 1189063 diff --git a/videos/synthetic/funnel_ball/0003_pt1.mp4 b/videos/synthetic/funnel_ball/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4894b1cc5b52b3c96572d08c479dee8518f59b66 --- /dev/null +++ b/videos/synthetic/funnel_ball/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e693b38f9185a2719149ffe69af22d0b4c1f586a14ebcefa1aadfd58146180ac +size 982597 diff --git a/videos/synthetic/funnel_ball/0004_pt1.mp4 b/videos/synthetic/funnel_ball/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..481cb098a07800068f97d9b468146f53869622a5 --- /dev/null +++ b/videos/synthetic/funnel_ball/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e0a16d934785a4bafab11e234908b4636cc763e2149eda6dd0752cd6e98a02 +size 1003683 diff --git a/videos/synthetic/funnel_ball/0005_pt1.mp4 b/videos/synthetic/funnel_ball/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..69e8299e0d97f23487f07598ddec68fa09646d8d --- /dev/null +++ b/videos/synthetic/funnel_ball/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639c4bf75c1f2aa4ab7429a758f1708028a5a9a7824d83187170e935100f5089 +size 1071222 diff --git a/videos/synthetic/funnel_ball/0006_pt1.mp4 b/videos/synthetic/funnel_ball/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c399935152ab18436a3c64d24bf56bb29e7ccf43 --- /dev/null +++ b/videos/synthetic/funnel_ball/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ae3ab65f680fd31251968350548d4cb40213b3e7f1c3c16186ff677289705b +size 1195553 diff --git a/videos/synthetic/funnel_ball/0007_pt1.mp4 b/videos/synthetic/funnel_ball/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b7938b976dff6b1f65a60c29f167e81a949b6375 --- /dev/null +++ b/videos/synthetic/funnel_ball/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb12c181077b64a93a24d02b45730a37f33abc682ebbf4dcf55dfd454adccb01 +size 1187213 diff --git a/videos/synthetic/funnel_ball/0008_pt1.mp4 b/videos/synthetic/funnel_ball/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..10c0ca0c06fec89e9381248aee6ccb7f71ee3bd5 --- /dev/null +++ b/videos/synthetic/funnel_ball/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e63249e8b31607fbe293b8b6dbf4329921132f5e0f13345d9179462c23d548 +size 1145952 diff --git a/videos/synthetic/funnel_ball/0009_pt1.mp4 b/videos/synthetic/funnel_ball/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..68c0836df036e3053f8e34b4defcb4289c8577fb --- /dev/null +++ b/videos/synthetic/funnel_ball/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f470d7e354196456aaa3a3b3f526b3d67cd1577cbad5397c7235e61b6af9f48f +size 1112846 diff --git a/videos/synthetic/funnel_ball/0010_pt1.mp4 b/videos/synthetic/funnel_ball/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..03d2c1efe66dd381cf8aeb6cd39543b18a6c31b4 --- /dev/null +++ b/videos/synthetic/funnel_ball/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cba105308647d1c44cde4536729fbd0eeff018a7b6bfb679757fa85ec6da50c +size 1071775 diff --git a/videos/synthetic/funnel_ball/0011_pt1.mp4 b/videos/synthetic/funnel_ball/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..817b0d6c8726a5a9636fbddff6f3e57233dcfcc5 --- /dev/null +++ b/videos/synthetic/funnel_ball/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94543a6db1eda40aeea68765ff7399d5e2494e75084e5960871cba42eaf1643a +size 1069679 diff --git a/videos/synthetic/funnel_ball/0012_pt1.mp4 b/videos/synthetic/funnel_ball/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..53fa7631b64ef999a548abc284266872c95617a5 --- /dev/null +++ b/videos/synthetic/funnel_ball/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64c01785342478d310bf5d4d0e6861362e3397f1a53550ede5499e6690d1dd9 +size 1105925 diff --git a/videos/synthetic/funnel_ball/0013_pt1.mp4 b/videos/synthetic/funnel_ball/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fde6b5afc7ee4ddb659d000ef0be90a45f3074d0 --- /dev/null +++ b/videos/synthetic/funnel_ball/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36b92ec767906e354030131bebc95c06e3c8eafd68580943d5cd39cb0414285 +size 1017948 diff --git a/videos/synthetic/funnel_ball/0014_pt1.mp4 b/videos/synthetic/funnel_ball/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..47066d8dc08c672d0f12adb657463be058e54071 --- /dev/null +++ b/videos/synthetic/funnel_ball/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9833a40ef52a74265436ff94650369ddc3c06de4bf26469809c4604a9174b6 +size 1149434 diff --git a/videos/synthetic/funnel_ball/0015_pt1.mp4 b/videos/synthetic/funnel_ball/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..159a27556ff28c90b00a9ed311c825b72958ab24 --- /dev/null +++ b/videos/synthetic/funnel_ball/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842e61e2d11ee7aa10702f0b11b5becdbbafc51411b7b74f9ab01c8d890b83e +size 989561 diff --git a/videos/synthetic/funnel_ball/0016_pt1.mp4 b/videos/synthetic/funnel_ball/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c6151a84873aee7ff86c51fd8ff96b434a2efc83 --- /dev/null +++ b/videos/synthetic/funnel_ball/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c90b9d77d0aba3d559b5630ed918be9d98c25dd6ff5ee44138fab59de9f2e54 +size 1015250 diff --git a/videos/synthetic/funnel_ball/0017_pt1.mp4 b/videos/synthetic/funnel_ball/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a1097b390757ccd37a8e29a559e8791ef8f1c2d6 --- /dev/null +++ b/videos/synthetic/funnel_ball/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336a90ec3b9780718a7119808d763ddba3d9e004e85cb8ae45e712200339acbe +size 1012346 diff --git a/videos/synthetic/funnel_ball/0018_pt1.mp4 b/videos/synthetic/funnel_ball/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6d36a406597b8fac1da3c3f6e10a6baa57ebd532 --- /dev/null +++ b/videos/synthetic/funnel_ball/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f435737797505cdad9b7420a12197444852f7739fce4dc5d1dddd1526568c9 +size 941400 diff --git a/videos/synthetic/funnel_ball/0019_pt1.mp4 b/videos/synthetic/funnel_ball/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d482e17580f06abe38b18ecedb8291ec038bb73e --- /dev/null +++ b/videos/synthetic/funnel_ball/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f77e3512ae1274ed8cfbdedbf55f92132a62fe9ef958eec161c7ff5b44c41e +size 1060105 diff --git a/videos/synthetic/funnel_ball/0020_pt1.mp4 b/videos/synthetic/funnel_ball/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8905cd4c73bab0054d2261dda530479d3e29ea3f --- /dev/null +++ b/videos/synthetic/funnel_ball/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cce6fe4ef678cbd6cb1498c1db3fae0663588fba87ca7186d98a557e26677ee8 +size 1176528 diff --git a/videos/synthetic/funnel_ball/0021_pt1.mp4 b/videos/synthetic/funnel_ball/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f56468480955dc38891ed565c4b7dc6b0c2ec4bb --- /dev/null +++ b/videos/synthetic/funnel_ball/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b447b19690562cedfbb777c48d68cffc14405e1b2a15ce7b1b3bb268213ddb97 +size 1098328 diff --git a/videos/synthetic/funnel_ball/0022_pt1.mp4 b/videos/synthetic/funnel_ball/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5e8e701f25b1db3848fcc6d7e80e61ff5602b0ef --- /dev/null +++ b/videos/synthetic/funnel_ball/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2ee620d42eaf530dc79f73cfcd1a69ca9d76f2b3bf45a3746e2258af6616f5 +size 1085436 diff --git a/videos/synthetic/funnel_ball/0023_pt1.mp4 b/videos/synthetic/funnel_ball/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8dcfb6a8d253e4a4791db71d3f74e59ad19a3635 --- /dev/null +++ b/videos/synthetic/funnel_ball/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f2b01fc60820c9c6aa8e672c49ea57f3fa59e550bdab1a542074e084f1d1b2 +size 972806 diff --git a/videos/synthetic/funnel_ball/0024_pt1.mp4 b/videos/synthetic/funnel_ball/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d5f5a2d45b6e2d55df286f95e7ed4708d46f3a20 --- /dev/null +++ b/videos/synthetic/funnel_ball/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a22bb474d8abd3f17384d0543a9e45d9dd1f90484352edbbbd8990f142f8ba +size 955203 diff --git a/videos/synthetic/funnel_ball/0025_pt1.mp4 b/videos/synthetic/funnel_ball/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e0426cac79b7c7640eb09ac9244696388f1ee455 --- /dev/null +++ b/videos/synthetic/funnel_ball/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f5af679f1352ebffb67b1e6a693d2e47f085619f35bf81bdf07eb6cd880e958 +size 1118846 diff --git a/videos/synthetic/funnel_ball/0026_pt1.mp4 b/videos/synthetic/funnel_ball/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..972d1049fefefa62e22108aea390ce2e9e931ada --- /dev/null +++ b/videos/synthetic/funnel_ball/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebde57381de7dc4b7fcb0cb9b68327676762d3728f6e3a11b0099d1eaa14f99d +size 1056952 diff --git a/videos/synthetic/funnel_ball/0027_pt1.mp4 b/videos/synthetic/funnel_ball/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..16b9c7ba006416f866de61548945dc2d6e826a22 --- /dev/null +++ b/videos/synthetic/funnel_ball/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7740668acbfbefe95cce9a005982cd8bc5de5d8ba078472e0acc6ef4168c21c1 +size 1006799 diff --git a/videos/synthetic/funnel_ball/0028_pt1.mp4 b/videos/synthetic/funnel_ball/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3e878d3abe36738d6ab59898bb865284052f2eac --- /dev/null +++ b/videos/synthetic/funnel_ball/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c505b059f6f7422520b713d69c10e98411e4f41bf4280a26f3928d79920cc098 +size 1170173 diff --git a/videos/synthetic/funnel_ball/0029_pt1.mp4 b/videos/synthetic/funnel_ball/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..01c7217fb02f5b7d280a13d7702bcb899e7dfe71 --- /dev/null +++ b/videos/synthetic/funnel_ball/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4050c96c7afe6e9cd2d8e780b156825eb8a4c7aec5795624d77f6764c978f5 +size 1070003 diff --git a/videos/synthetic/funnel_ball/0030_pt1.mp4 b/videos/synthetic/funnel_ball/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..077d0b451fba441038a757215ae36361be973da1 --- /dev/null +++ b/videos/synthetic/funnel_ball/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eed2272b6e613f617cecdc5e23c7ea95b8d3386182705c713e23f56bf511c19 +size 1182603 diff --git a/videos/synthetic/funnel_ball/0031_pt1.mp4 b/videos/synthetic/funnel_ball/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..478b83722d381b627567f101f446bc149088d14c --- /dev/null +++ b/videos/synthetic/funnel_ball/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9007de67f3e26137122855f47cbb5742b241597fc3909720f676e9e16a2ae8 +size 1185853 diff --git a/videos/synthetic/funnel_ball/0032_pt1.mp4 b/videos/synthetic/funnel_ball/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5fb48d52bd434071a7ae0b858c14914479f91a33 --- /dev/null +++ b/videos/synthetic/funnel_ball/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d7e2541bb3b8cdb8d403dcd3103c261d29ba81a076b52846cb4c7720148603 +size 1087120 diff --git a/videos/synthetic/funnel_ball/0033_pt1.mp4 b/videos/synthetic/funnel_ball/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a10d4836bcd925d755a61d3fec27ed021e494b71 --- /dev/null +++ b/videos/synthetic/funnel_ball/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8db75a19f10a6a3e12c906054d36dc3817166c12ab29e29cd73e78992d743f9 +size 974238 diff --git a/videos/synthetic/funnel_ball/0034_pt1.mp4 b/videos/synthetic/funnel_ball/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e5454791100f2f0bfd717bcf2ae8142fa1fd8712 --- /dev/null +++ b/videos/synthetic/funnel_ball/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef954e8058176e1e39e6caf20f207ae9001360f54db2081aad164a266891721 +size 994034 diff --git a/videos/synthetic/funnel_ball/0035_pt1.mp4 b/videos/synthetic/funnel_ball/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cd3423ff36afae4e10373f36074cde1960c0e3ee --- /dev/null +++ b/videos/synthetic/funnel_ball/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb2bdc40f0725d55b0c90c8e67497b378225a61a5d230ceea24d327a1aa64aa +size 929725 diff --git a/videos/synthetic/funnel_ball/0036_pt1.mp4 b/videos/synthetic/funnel_ball/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..33c6622e7ec3b05c7e754ffcf43bd02cac188216 --- /dev/null +++ b/videos/synthetic/funnel_ball/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc8a0edd23eaced4e3bffac09d4da79c6e91f322844162fff657ee865443159e +size 957889 diff --git a/videos/synthetic/funnel_ball/0037_pt1.mp4 b/videos/synthetic/funnel_ball/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..25819e8b3e996ac789a76d2fe46e01ee605d46ea --- /dev/null +++ b/videos/synthetic/funnel_ball/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d490c93622f19ff038092d88af0a79936051726e0fbe29449ed577b39d56e53 +size 1093584 diff --git a/videos/synthetic/funnel_ball/0038_pt1.mp4 b/videos/synthetic/funnel_ball/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fcb3380898953c76166253ebe6c3696def0a52cc --- /dev/null +++ b/videos/synthetic/funnel_ball/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fe72b8f2e64b50d7b64bf1cfeca02745683df893341f060dbc3ac5ea8dbcba7 +size 1073498 diff --git a/videos/synthetic/funnel_ball/0039_pt1.mp4 b/videos/synthetic/funnel_ball/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9b1a6268e07150ab914cf893bda02d3369d18d64 --- /dev/null +++ b/videos/synthetic/funnel_ball/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2109c13d11a8f033b4860bc6a24363dca68d0fc8363360fbe94296c4281485d7 +size 1098719 diff --git a/videos/synthetic/funnel_ball/0040_pt1.mp4 b/videos/synthetic/funnel_ball/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..415e148167a0555ea7baa42ceb7ce6ee796982cb --- /dev/null +++ b/videos/synthetic/funnel_ball/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069feb5a956e765d26bf166d227b8ecc359aa451d38512e99b298c25cc6e7be2 +size 1129986 diff --git a/videos/synthetic/funnel_ball/0041_pt1.mp4 b/videos/synthetic/funnel_ball/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a4b7663a0dc1c4916af74883e1dbd85c420b3fd2 --- /dev/null +++ b/videos/synthetic/funnel_ball/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3caab438a8001b29d5a3503b90de1a66df2a277e42e764a400a2f60ca4cd77 +size 1145289 diff --git a/videos/synthetic/funnel_ball/0042_pt1.mp4 b/videos/synthetic/funnel_ball/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..495ca435d97db5d05c5da810825fe579f248e858 --- /dev/null +++ b/videos/synthetic/funnel_ball/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd1d7ef0c41dec70334d80611e1f134226420f25af89a2987f01d5625cd82d0 +size 1087044 diff --git a/videos/synthetic/funnel_ball/0043_pt1.mp4 b/videos/synthetic/funnel_ball/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bff5470b7383af5763a2ffc408a5068f78fd9f78 --- /dev/null +++ b/videos/synthetic/funnel_ball/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b347b72e0efbdcb5133ade9c19235cdc22c0cae6481a0ff53ede4a31e7bab1 +size 1175228 diff --git a/videos/synthetic/funnel_ball/0044_pt1.mp4 b/videos/synthetic/funnel_ball/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4ee8b6dccb82711df74141f047943654693b00cb --- /dev/null +++ b/videos/synthetic/funnel_ball/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1013e2cb6cd900769f19fed4cf125c0438448c1c846f386e576a8ba0945b03e +size 1089230 diff --git a/videos/synthetic/funnel_ball/0045_pt1.mp4 b/videos/synthetic/funnel_ball/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0eee60a44a2a30129aeb835a6191a7c3d399e2fe --- /dev/null +++ b/videos/synthetic/funnel_ball/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cbe2f7f185411a0b916760c2adcae6a42a1fdb3757595018dd7dbbfd3667a23 +size 1103654 diff --git a/videos/synthetic/funnel_ball/0046_pt1.mp4 b/videos/synthetic/funnel_ball/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..768aedc8268113614a81cc62fdc71a9c9cdc627b --- /dev/null +++ b/videos/synthetic/funnel_ball/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44415399dfe47205b5b57ea232e43d4e51d6556197056d7e3457b634cb3ce971 +size 1166127 diff --git a/videos/synthetic/funnel_ball/0047_pt1.mp4 b/videos/synthetic/funnel_ball/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4c6225160d5551d9a24b86e203879cd57d2f8aba --- /dev/null +++ b/videos/synthetic/funnel_ball/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6aaa33af0fd0722156cacc1e5c0614868977d628801b09ac99506a2b7e68094 +size 1161732 diff --git a/videos/synthetic/funnel_ball/0048_pt1.mp4 b/videos/synthetic/funnel_ball/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b3539f37d19f0d1f29b0bb613a13d619f864042d --- /dev/null +++ b/videos/synthetic/funnel_ball/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e14e857afec8b603c25f504c8658dc6f500947f8c93afe83872de96b1bdf82 +size 951523 diff --git a/videos/synthetic/funnel_ball/0049_pt1.mp4 b/videos/synthetic/funnel_ball/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ec5f1c4fa3c50e34af536e7d599a02a992c6640e --- /dev/null +++ b/videos/synthetic/funnel_ball/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26d5460ba2cfb734058a3ddae52969934d3e42618e061f87f1bfef2b628442e +size 979030 diff --git a/videos/synthetic/funnel_ball/0050_pt1.mp4 b/videos/synthetic/funnel_ball/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3228d51548708f1c8b0b67e7732e5aebd35e916a --- /dev/null +++ b/videos/synthetic/funnel_ball/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99dbb66ff7a51872052f694a0265669a2b88b09e76975c3abf387622bec4440b +size 1085119 diff --git a/videos/synthetic/hockey/0001_pt1.mp4 b/videos/synthetic/hockey/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..586b3206c8203ce7be54f96a5cf35ecce711feef --- /dev/null +++ b/videos/synthetic/hockey/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0835e5969a107ea26565c17503c17216acd8b8d3040f1a998e1f92ff08ec629 +size 476223 diff --git a/videos/synthetic/hockey/0002_pt1.mp4 b/videos/synthetic/hockey/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b02ada15273a45e8852f62ff2bd0b0b116a4a9d1 --- /dev/null +++ b/videos/synthetic/hockey/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98725935fc38866dee4a1c6a1a3c1b808ac30d1cdf4c72af4ac241eabde6d5de +size 923996 diff --git a/videos/synthetic/hockey/0003_pt1.mp4 b/videos/synthetic/hockey/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..34fc07573c3926577cfb7142bceb8a23b1715cd1 --- /dev/null +++ b/videos/synthetic/hockey/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85cd83801dd73d93808a9923d1633342e3b3bf479477cdaa690318de18484cbb +size 1046736 diff --git a/videos/synthetic/hockey/0004_pt1.mp4 b/videos/synthetic/hockey/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e42ffaaf09280381fe64b6e414078ee2b104691 --- /dev/null +++ b/videos/synthetic/hockey/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001eab63a3c4969aaa1ece7ef514f4938c04e6c6a1bc99d279c4860747f4115d +size 942441 diff --git a/videos/synthetic/hockey/0005_pt1.mp4 b/videos/synthetic/hockey/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6dda51295b9ec030bacaf7889ef446b1c9b72f4f --- /dev/null +++ b/videos/synthetic/hockey/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e8ed8ada372f4f2706dcfb1090f1a21019089afb57920ce0dc84e52a5541eb +size 640076 diff --git a/videos/synthetic/hockey/0006_pt1.mp4 b/videos/synthetic/hockey/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3ae3137c195b9d5a149d8b18e56ed51ee020c02b --- /dev/null +++ b/videos/synthetic/hockey/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5364e5ff12f5abbce338a3c4baf03ba44f0d9edbf9025157eddfd8cfb6e1523 +size 887986 diff --git a/videos/synthetic/hockey/0007_pt1.mp4 b/videos/synthetic/hockey/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..648a2fb41b918207604caa7fba674828dc61f7ad --- /dev/null +++ b/videos/synthetic/hockey/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6d1ded4815bf9eb220cb91f0303c171e1d80f096c875bce8cbd612ef868a54 +size 591108 diff --git a/videos/synthetic/hockey/0008_pt1.mp4 b/videos/synthetic/hockey/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80894a06ba35940bfcebdc9399d75ff3aedadede --- /dev/null +++ b/videos/synthetic/hockey/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4433bcf51ca240906cbbde91e66f4a01b33dd60854b0029274a93e84e736a0d2 +size 739684 diff --git a/videos/synthetic/hockey/0009_pt1.mp4 b/videos/synthetic/hockey/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6a3402decc424898ab8e154bcbdcc9bfa3a9d998 --- /dev/null +++ b/videos/synthetic/hockey/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ad31a1aea8440c3ac93f1fe22542488c42188e5b86014033923c74665508da +size 728717 diff --git a/videos/synthetic/hockey/0010_pt1.mp4 b/videos/synthetic/hockey/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b60a978cc23e53317e192330411f9feff7e6b3fb --- /dev/null +++ b/videos/synthetic/hockey/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428484ff2d8f6b13113107576823b7a5384d9358a734d0fea1792ad592c35fc7 +size 804658 diff --git a/videos/synthetic/hockey/0011_pt1.mp4 b/videos/synthetic/hockey/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eb68e5fe54d807314165a3a827e1551551c80708 --- /dev/null +++ b/videos/synthetic/hockey/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023d75358f4178dd6276727ad70c6e0277a2719ebb1c052058324a8b3af76522 +size 709154 diff --git a/videos/synthetic/hockey/0012_pt1.mp4 b/videos/synthetic/hockey/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3299284652d7578cbe82c6f678d29dcc37a4334a --- /dev/null +++ b/videos/synthetic/hockey/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f18025d69f12ed7332e202d38d09eae70e254e45f130a38eb7355373dffc9b +size 621901 diff --git a/videos/synthetic/hockey/0013_pt1.mp4 b/videos/synthetic/hockey/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dbad92fdb7418e509d6b14f9b4436b4a6c40e1da --- /dev/null +++ b/videos/synthetic/hockey/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3789f32e7d57cf73f4e1760576eceb756a580b0518bf95e592af6b39433732 +size 513399 diff --git a/videos/synthetic/hockey/0014_pt1.mp4 b/videos/synthetic/hockey/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2e9886e0b33bbf4ab98163124e90ed424b743a4e --- /dev/null +++ b/videos/synthetic/hockey/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42fd32865ec075ffe602f8c7108051f5dc4b4afca3288c614ae93cefdfe2976 +size 374473 diff --git a/videos/synthetic/hockey/0015_pt1.mp4 b/videos/synthetic/hockey/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e0411bc0dadf34028041a9188b7b2dccedc07d7c --- /dev/null +++ b/videos/synthetic/hockey/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f214de09be2dac6af1fe65e8a6b68f31c71d4f23ce8b970eb3f194193e571e +size 1030159 diff --git a/videos/synthetic/hockey/0016_pt1.mp4 b/videos/synthetic/hockey/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ad32139b1ef1bf61be302516c97db2aaa80fd687 --- /dev/null +++ b/videos/synthetic/hockey/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb67866a98559b433fd83501aa5d8e88140d1f3c1689e8fedb5dc44a7f9d0403 +size 632511 diff --git a/videos/synthetic/hockey/0017_pt1.mp4 b/videos/synthetic/hockey/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..909bb601ced213dc2b5069acb735941c8cee6d60 --- /dev/null +++ b/videos/synthetic/hockey/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897006310f341b1d122e47cf54e41af70be42e00892090234ee44b6270f1830c +size 540041 diff --git a/videos/synthetic/hockey/0018_pt1.mp4 b/videos/synthetic/hockey/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a78b8508320e87733eb45616ba7f61e2c1f9f1dc --- /dev/null +++ b/videos/synthetic/hockey/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f8f585beb90addd1fd33d7bf7097ac135ccf1d3020f76ba95ee9ff088c8845 +size 1015046 diff --git a/videos/synthetic/hockey/0019_pt1.mp4 b/videos/synthetic/hockey/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8c82425cbcff2e156420651c6361497129d5b514 --- /dev/null +++ b/videos/synthetic/hockey/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff37474067297184d48fd0f1f1cf251cc5c0831b3b86ddedf5bd6da0b0b9bd1 +size 461871 diff --git a/videos/synthetic/hockey/0020_pt1.mp4 b/videos/synthetic/hockey/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b2f6f86d3cebaa7d3f8eb2438f842269129cc6dc --- /dev/null +++ b/videos/synthetic/hockey/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd4280436885b349e8340f0919b4584cad7140c840874471feb6fd8e30d0093 +size 501721 diff --git a/videos/synthetic/hockey/0021_pt1.mp4 b/videos/synthetic/hockey/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d2339712d29657ef469bc699e8901285b338896b --- /dev/null +++ b/videos/synthetic/hockey/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eea2b3e74b3711be8123edb9173defd49db5ea4d815481425fb32aee7a598da +size 1023402 diff --git a/videos/synthetic/hockey/0022_pt1.mp4 b/videos/synthetic/hockey/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..77a0c68176529563b623dc88dd4d4428a0aa80ec --- /dev/null +++ b/videos/synthetic/hockey/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af38b3ad076541eea9c2c2fa1d29266fbf67b16a15acf7e2e73d12faa7d415e5 +size 955201 diff --git a/videos/synthetic/hockey/0023_pt1.mp4 b/videos/synthetic/hockey/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0396d2e481779bcf793dda19ea9a384411b25e78 --- /dev/null +++ b/videos/synthetic/hockey/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a97a92e81acdbfd8fc0d08839f9d1436236971349a05778453795976428f21 +size 745854 diff --git a/videos/synthetic/hockey/0024_pt1.mp4 b/videos/synthetic/hockey/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8da9c7fbc7ef58d98d0852e3c8744d126e750af1 --- /dev/null +++ b/videos/synthetic/hockey/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681f38c7138e77b079ddb1a64728e2c741ac9a7128297aa29c90ca7adfc312b0 +size 826431 diff --git a/videos/synthetic/hockey/0025_pt1.mp4 b/videos/synthetic/hockey/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e82a2928b2eaa0f155b6698a944689af87ccce90 --- /dev/null +++ b/videos/synthetic/hockey/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c2a03b89323da39bbc4282cf68dadfa564c03e39b65b536682274a675ef981 +size 418465 diff --git a/videos/synthetic/hockey/0026_pt1.mp4 b/videos/synthetic/hockey/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0cb5b467c2940ffd1b9850185d0dc2148bb0a098 --- /dev/null +++ b/videos/synthetic/hockey/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb49c777d5b954b82d3e0df6456a53f90d4b2599242f18f14001f067e01e604c +size 558120 diff --git a/videos/synthetic/hockey/0027_pt1.mp4 b/videos/synthetic/hockey/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..02759404f878a189704d399d4c7afccd976f2702 --- /dev/null +++ b/videos/synthetic/hockey/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65012b179a043fe0268ed4a8c3cd1f22db0c6286a18f3f28363fd9b97c6c9f53 +size 668754 diff --git a/videos/synthetic/hockey/0028_pt1.mp4 b/videos/synthetic/hockey/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b93213de5269b15931cbd727175a746a991e0e0b --- /dev/null +++ b/videos/synthetic/hockey/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07e19f2cb63bb98f1388e5f81d0c01238c398e7bc0ddd69a7d25836b9db55f2 +size 503690 diff --git a/videos/synthetic/hockey/0029_pt1.mp4 b/videos/synthetic/hockey/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8b7b21cfea4c68f829609c14c2e087e1a4a68622 --- /dev/null +++ b/videos/synthetic/hockey/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7bdd26aa71f42e2f41676811501ba2453ddb65d0fb6f7f3a0b1b4f5a49be814 +size 511833 diff --git a/videos/synthetic/hockey/0030_pt1.mp4 b/videos/synthetic/hockey/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..808eecfea4d08a88e7d5edfb5b1298e3b9f628d5 --- /dev/null +++ b/videos/synthetic/hockey/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17563695a41309a6b2d7d62abbc9b814411644197441d2ab9a3dc3d46b8aa343 +size 509639 diff --git a/videos/synthetic/hockey/0031_pt1.mp4 b/videos/synthetic/hockey/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e3b8a562a697874f486c69f0e9b963863c2f2100 --- /dev/null +++ b/videos/synthetic/hockey/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29852e19cc9a80af73d4db542c85e603c3668e6bea06f99cde5cc8d845bd8e82 +size 452365 diff --git a/videos/synthetic/hockey/0032_pt1.mp4 b/videos/synthetic/hockey/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4d77fa74b7b6337dbd0b01206e6fbfada17a225f --- /dev/null +++ b/videos/synthetic/hockey/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c2ee6d82d0335e3d32fee823f99d2143e620c2b063a84415aacf92d25b201a +size 1003172 diff --git a/videos/synthetic/hockey/0033_pt1.mp4 b/videos/synthetic/hockey/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..358a63a3de379ed17e9a2118c10fb25fdc5f6928 --- /dev/null +++ b/videos/synthetic/hockey/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627afe4ea7da7e6df382d202e11f7ec8e9b2506305d79122f065b0682d834212 +size 498508 diff --git a/videos/synthetic/hockey/0034_pt1.mp4 b/videos/synthetic/hockey/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..216ed0985da7045067f1f44fd273da31d5777974 --- /dev/null +++ b/videos/synthetic/hockey/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05f7cdb5f31110fbcd50c2a31d34d36a4bcc1884aba85815c454893722c91be +size 1253142 diff --git a/videos/synthetic/hockey/0035_pt1.mp4 b/videos/synthetic/hockey/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e4110367de91ce4b54b205f9a2ff02bb880ba9f7 --- /dev/null +++ b/videos/synthetic/hockey/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0522879498bd3a218b5f4c16d6047162e290c1e6713a51020e280f912d9d02db +size 521821 diff --git a/videos/synthetic/hockey/0036_pt1.mp4 b/videos/synthetic/hockey/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6b499f7c94484a12ce2e006310834eefd6836a42 --- /dev/null +++ b/videos/synthetic/hockey/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332949bb1f92f7837a4cb4ca71aa3597e14b94adcd04752ef14361ab275f9426 +size 439829 diff --git a/videos/synthetic/hockey/0037_pt1.mp4 b/videos/synthetic/hockey/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e606b24bc30db1a73ab6ca58e8ac922ac031d31a --- /dev/null +++ b/videos/synthetic/hockey/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44406a2158a3d067a2d94ecd64f907b3ade44bcb20562f5e198c1aaaa381369f +size 756126 diff --git a/videos/synthetic/hockey/0038_pt1.mp4 b/videos/synthetic/hockey/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..04ae5b46f55fb3fa1aa68c19a729149a4b8ad098 --- /dev/null +++ b/videos/synthetic/hockey/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579a30364cc0ed67c9e6008c90950bb56c66ef6d35cd4ed98c5b5237db10e8cd +size 601807 diff --git a/videos/synthetic/hockey/0039_pt1.mp4 b/videos/synthetic/hockey/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9a5e7571fd3ab9bc52fb36b39300880f71bf8d70 --- /dev/null +++ b/videos/synthetic/hockey/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a7fe7fd015b5c3ccbacebbb8e569c940d8186a61082e605b4c8251c533e476 +size 1074216 diff --git a/videos/synthetic/hockey/0040_pt1.mp4 b/videos/synthetic/hockey/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..06b946b999cbf6ede3f35f2467ccb8de5768d015 --- /dev/null +++ b/videos/synthetic/hockey/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783dfcbf1e3d7c045942c3de55dd1d258679c780926f5c7cb1e3f66a879cd900 +size 961268 diff --git a/videos/synthetic/hockey/0041_pt1.mp4 b/videos/synthetic/hockey/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9b353f14750f6caaffcdfa0b6a3a40dc2ac59018 --- /dev/null +++ b/videos/synthetic/hockey/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97156c8dd24c0fda5954961dbd5ad57cc475df291c2a5f80369b2a08608be00 +size 814317 diff --git a/videos/synthetic/hockey/0042_pt1.mp4 b/videos/synthetic/hockey/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..38b87062da1a33ed7c5e3c8deb98c5e65ee2f9ab --- /dev/null +++ b/videos/synthetic/hockey/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac42c86647c14f2113bc11be2a70c62de16227cac1eeea68e0d340d2ce78687 +size 575764 diff --git a/videos/synthetic/hockey/0043_pt1.mp4 b/videos/synthetic/hockey/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..847fcecf231a57a19846ff5fa9a3e1daeb402f8a --- /dev/null +++ b/videos/synthetic/hockey/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e34c84d8d86954af772e9e94f1e614f5e6ea0374de05f989c22779c96669641 +size 544998 diff --git a/videos/synthetic/hockey/0044_pt1.mp4 b/videos/synthetic/hockey/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0586d58e9563e61f37826742b57ca77e4a062314 --- /dev/null +++ b/videos/synthetic/hockey/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafe8cda971cb8d1a4191b1f5eb8c65ad4461a2c1a618e7bcc14a31a3097ad86 +size 748604 diff --git a/videos/synthetic/hockey/0045_pt1.mp4 b/videos/synthetic/hockey/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2abaa5575b550dee8df975a971963f6ff30f4afb --- /dev/null +++ b/videos/synthetic/hockey/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de6251a9fbb62cf38afefd005c295b88d108f337da3735899006470d5dac87e +size 1166972 diff --git a/videos/synthetic/hockey/0046_pt1.mp4 b/videos/synthetic/hockey/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9302fdc33a3584e26fc0f02786bdc56f6c258564 --- /dev/null +++ b/videos/synthetic/hockey/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b93982440c98c278cdd5c86e6d41378695e00be588065a68a49cb404969540 +size 876831 diff --git a/videos/synthetic/hockey/0047_pt1.mp4 b/videos/synthetic/hockey/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d84d1c1732272ffba6fc2d76de9680e02a1cab17 --- /dev/null +++ b/videos/synthetic/hockey/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4715c9096565ca5ed3e2e277e6d2d758412623531e61e52aef6eede8df66630 +size 673537 diff --git a/videos/synthetic/hockey/0048_pt1.mp4 b/videos/synthetic/hockey/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7f43a17838dc6e3478fd661b5dc1225bbbbf8a14 --- /dev/null +++ b/videos/synthetic/hockey/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975eed9070482f56641331dcd32866a08aa8b694bdd37a20fac99e7a80c08933 +size 835625 diff --git a/videos/synthetic/hockey/0049_pt1.mp4 b/videos/synthetic/hockey/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f1fc0545389bbebcc8c3f86178c173c949d2271d --- /dev/null +++ b/videos/synthetic/hockey/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d71e1aa834a9c290a50850ab17ffe7b3b6ca4e5e4d9e9daa921bff1f2f759ff +size 686882 diff --git a/videos/synthetic/hockey/0050_pt1.mp4 b/videos/synthetic/hockey/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9cf6c32f5fa61efb208a5aa9d6c75b97a4cf2abf --- /dev/null +++ b/videos/synthetic/hockey/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d527a25997753e75a9afbca3701408397b779bc614f473cff4d3fe0a995b81 +size 424316 diff --git a/videos/synthetic/make_coffee/0001_pt1.mp4 b/videos/synthetic/make_coffee/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..601170e9e353331fccf02948b587403d5eb2ef2c --- /dev/null +++ b/videos/synthetic/make_coffee/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2aa1d28a9f1e5e63f77719854eb4d408a2c3c592c3a471c7fb071e0fb5cd83 +size 348460 diff --git a/videos/synthetic/make_coffee/0002_pt1.mp4 b/videos/synthetic/make_coffee/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6cf487ba54694c2f39faf562b1c0ba79e6bf45c7 --- /dev/null +++ b/videos/synthetic/make_coffee/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336d6273dc6e3c25d86c7520d23d9510c874ab2e9c86543e0a165f83e3cee059 +size 339351 diff --git a/videos/synthetic/make_coffee/0003_pt1.mp4 b/videos/synthetic/make_coffee/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a3109646fcd00dbabe8488910bb1686a6224b344 --- /dev/null +++ b/videos/synthetic/make_coffee/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb83c30de9700309998643411cf340f6994f73cc4fb377b5f45a94eff5a9e72a +size 349553 diff --git a/videos/synthetic/make_coffee/0004_pt1.mp4 b/videos/synthetic/make_coffee/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a585815d51693aa839431cbcbf23a94c42fca583 --- /dev/null +++ b/videos/synthetic/make_coffee/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7965b2de9f25ece4157d0ec44e0ac45faf266f6dfeb264b9d9f483d5b2c0bd8 +size 328982 diff --git a/videos/synthetic/make_coffee/0005_pt1.mp4 b/videos/synthetic/make_coffee/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b9f3cf28afb4c3ab365837db00790ae3c78fdd57 --- /dev/null +++ b/videos/synthetic/make_coffee/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844b494be734b698749c11772524b2d18f516cbcff6ee11949af559303411340 +size 337643 diff --git a/videos/synthetic/make_coffee/0006_pt1.mp4 b/videos/synthetic/make_coffee/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d2ee93d079daf83ad6d04aeeafbd7726d5691156 --- /dev/null +++ b/videos/synthetic/make_coffee/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3161d5d2bf1e6114b5513edf502392a4306d97ac2a61619650cf6244c4c10248 +size 347717 diff --git a/videos/synthetic/make_coffee/0007_pt1.mp4 b/videos/synthetic/make_coffee/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f2cf2437aea9fc5c62bc0f12cf110a5b19f9b1d6 --- /dev/null +++ b/videos/synthetic/make_coffee/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:780c20545a9d7942250a839f83d9b990eee2ecd82728d540385abfd3087ba3af +size 301469 diff --git a/videos/synthetic/make_coffee/0008_pt1.mp4 b/videos/synthetic/make_coffee/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3b3a46ecaa1bcebfd7a7e51cfe16c13ca0587aeb --- /dev/null +++ b/videos/synthetic/make_coffee/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e50c202e83d78c83a4388ab29948c549b068f30ef31d853af73272bf80041a +size 337746 diff --git a/videos/synthetic/make_coffee/0009_pt1.mp4 b/videos/synthetic/make_coffee/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f1f3728a94f5e23dafad5c0334accf5cfa794e47 --- /dev/null +++ b/videos/synthetic/make_coffee/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d748fe29a0d8fcb6bca6859d75e3e82714a221951ec0f1efb8eb6aa0e2f9a896 +size 355688 diff --git a/videos/synthetic/make_coffee/0010_pt1.mp4 b/videos/synthetic/make_coffee/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3bcba8037d9f8eca26229d55cd39d604dbbe6b90 --- /dev/null +++ b/videos/synthetic/make_coffee/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ecf5c4ed29f3da0e5b351768f3547b96be8334f954051bcfe673566cd4dfab5 +size 350998 diff --git a/videos/synthetic/make_coffee/0011_pt1.mp4 b/videos/synthetic/make_coffee/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b92be1a79ab9840d8344e5039adc1468f9046418 --- /dev/null +++ b/videos/synthetic/make_coffee/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a81d04113acd6a1b7d8c71c019926f4efe84cbba655f4ae73acba6263f692f0 +size 336215 diff --git a/videos/synthetic/make_coffee/0012_pt1.mp4 b/videos/synthetic/make_coffee/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0aebce37f92ef1ce7afedf5d7b5dff26c5ac145c --- /dev/null +++ b/videos/synthetic/make_coffee/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f7c5c379bae47be761443f6a0ce81d17662cf83db4dbaf0d838b1ceed22acf +size 328039 diff --git a/videos/synthetic/make_coffee/0013_pt1.mp4 b/videos/synthetic/make_coffee/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ecf49a81ec2b5a0eac5d8bece55d12f88cddf6cd --- /dev/null +++ b/videos/synthetic/make_coffee/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c116e44b342fc361e54cf2ed0a1950ee9cfc80c6a179836842e8404b6cdd137e +size 319481 diff --git a/videos/synthetic/make_coffee/0014_pt1.mp4 b/videos/synthetic/make_coffee/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c9e95ec36ae282bff413ab78eda64b99080b2143 --- /dev/null +++ b/videos/synthetic/make_coffee/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6619e7bb3f20b48395353db17fca74c1c15cc9e2d953165fc64e54a6ec3bc8ca +size 349307 diff --git a/videos/synthetic/make_coffee/0015_pt1.mp4 b/videos/synthetic/make_coffee/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..342c74fa6e91f0dabffad4dc38d3e049bd9a61d5 --- /dev/null +++ b/videos/synthetic/make_coffee/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbf48030d67ee6f9f2e0a8da32b699c3ff90aed1c5812e56ce81c3452705a5e +size 347872 diff --git a/videos/synthetic/make_coffee/0016_pt1.mp4 b/videos/synthetic/make_coffee/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e358d3f27b01925bc76c321838f0ea118225c32 --- /dev/null +++ b/videos/synthetic/make_coffee/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4d7de5e53718b75b87c6304a35959d6dbe620f1feaf854a0636ab41c3a35db +size 349495 diff --git a/videos/synthetic/make_coffee/0017_pt1.mp4 b/videos/synthetic/make_coffee/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a50f059a9d389f446a020244ca496625252b8c6c --- /dev/null +++ b/videos/synthetic/make_coffee/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982d8d6a2702110fd3962909ad9dee184be5fbde3798eca59ae917ad147257b4 +size 340273 diff --git a/videos/synthetic/make_coffee/0018_pt1.mp4 b/videos/synthetic/make_coffee/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d76a836eee7f5e5fa6bdcd1e58d0384231fdab19 --- /dev/null +++ b/videos/synthetic/make_coffee/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3907645577bda169a5d3e14c2255784c9e3693475e33dc11a9e3620b9450974 +size 347139 diff --git a/videos/synthetic/make_coffee/0019_pt1.mp4 b/videos/synthetic/make_coffee/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5a4f15854a1f1fe6910671837f3f00165a1db320 --- /dev/null +++ b/videos/synthetic/make_coffee/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e0db4ab74e58039487dde255432c65f489a6b065c0623bc89dfacad0dd1209 +size 328975 diff --git a/videos/synthetic/make_coffee/0020_pt1.mp4 b/videos/synthetic/make_coffee/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..23ea8b2ce49882b8980557483611448f12e44663 --- /dev/null +++ b/videos/synthetic/make_coffee/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a582f9d85aae9150ac2a214fbb5c67584068e14c521e1261dc0e3917c8e74aae +size 335212 diff --git a/videos/synthetic/make_coffee/0021_pt1.mp4 b/videos/synthetic/make_coffee/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..23b9a5cb59c38bc4d614898f80e6f48599045991 --- /dev/null +++ b/videos/synthetic/make_coffee/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4574777690f440845762bba3b87b4843e84e0b8a95b3b61c47ad261651adfee +size 351428 diff --git a/videos/synthetic/make_coffee/0022_pt1.mp4 b/videos/synthetic/make_coffee/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e46cf3ec420be0c32ed7b08963b6bdc454132eee --- /dev/null +++ b/videos/synthetic/make_coffee/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac684565c8746bec68bcc309ae2c0696f2423fb6b9f0af93b6cc3029cdded15 +size 336408 diff --git a/videos/synthetic/make_coffee/0023_pt1.mp4 b/videos/synthetic/make_coffee/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ad89d25e452509e2f1b022e2aaa17d4461e93bbb --- /dev/null +++ b/videos/synthetic/make_coffee/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22e0a19770283fc2d91de6cccd5a8c9adac21aaf77fa709c0cb57a0f5c0e0fb +size 341807 diff --git a/videos/synthetic/make_coffee/0024_pt1.mp4 b/videos/synthetic/make_coffee/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5ee4ce0ef383129134868ffd0d477cc2f4890239 --- /dev/null +++ b/videos/synthetic/make_coffee/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c1f10e983b0524cc4e955392664d63ede41026616b244b700a7f2d7a3735a9 +size 343610 diff --git a/videos/synthetic/make_coffee/0025_pt1.mp4 b/videos/synthetic/make_coffee/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..94d6430e8bc9c0d15e88f91b694dd0fb03b87ed0 --- /dev/null +++ b/videos/synthetic/make_coffee/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f423842abfdd162880a242fc64cbf7a634b785f960974b1c34d9094b29c96ef1 +size 327204 diff --git a/videos/synthetic/make_coffee/0026_pt1.mp4 b/videos/synthetic/make_coffee/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..02c03870618689c5b7f7d3fbde78381081e676df --- /dev/null +++ b/videos/synthetic/make_coffee/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35141996c3f45dd2e71d673240eed162f375656761507088f68ecfccc6fb4e0 +size 359138 diff --git a/videos/synthetic/make_coffee/0027_pt1.mp4 b/videos/synthetic/make_coffee/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4448b9bd2e37900e2c4d31c379450cf0e6bc3edc --- /dev/null +++ b/videos/synthetic/make_coffee/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b70ffa087f9603c697efa10e6f632ca6cdbbef630098a96292186847b6b177 +size 338485 diff --git a/videos/synthetic/make_coffee/0028_pt1.mp4 b/videos/synthetic/make_coffee/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..722a8023f6b51b370ca32c198c99ec209179cd9f --- /dev/null +++ b/videos/synthetic/make_coffee/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6c3a3bc922d0b6c82c2b29a1da99162c89423fa387dfa966d7a3890e789f57 +size 326517 diff --git a/videos/synthetic/make_coffee/0029_pt1.mp4 b/videos/synthetic/make_coffee/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..738377e516efdcb3e618a8a8ff711e7342a61eda --- /dev/null +++ b/videos/synthetic/make_coffee/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4759ada796a98e7991d9f95717a5d00b25c82de9790722b22cbdcd54db7bde9b +size 347552 diff --git a/videos/synthetic/make_coffee/0030_pt1.mp4 b/videos/synthetic/make_coffee/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b3487db86fe2f61c6b1938563706ad872c22a420 --- /dev/null +++ b/videos/synthetic/make_coffee/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b9d7078c6a17dcb804d27bc3895907219e0154e3f431c5e50597eb9406549c +size 345001 diff --git a/videos/synthetic/make_coffee/0031_pt1.mp4 b/videos/synthetic/make_coffee/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0d03b52c1108f7f9b41e633beb789f6b6ed8595f --- /dev/null +++ b/videos/synthetic/make_coffee/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7b764c215ab80b23a5fc6e68a587b1787dce70e7a4a1e9ba0f895d2419c4f6 +size 348688 diff --git a/videos/synthetic/make_coffee/0032_pt1.mp4 b/videos/synthetic/make_coffee/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6412df3c0cdff723fce0d32af2e88b6040551389 --- /dev/null +++ b/videos/synthetic/make_coffee/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cbb0578b4e651bbcdfee122be6ac2a58f08ee5be358a805ece46e789a3fd597 +size 322842 diff --git a/videos/synthetic/make_coffee/0033_pt1.mp4 b/videos/synthetic/make_coffee/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a2af279a102ad554e0644971c7e384f5c1f7b8ad --- /dev/null +++ b/videos/synthetic/make_coffee/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52a58fcf091b291e9a22bee25e7c42be3288fd8cfede7ec1e9f5fc9f200ad12 +size 341225 diff --git a/videos/synthetic/make_coffee/0034_pt1.mp4 b/videos/synthetic/make_coffee/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3c65773e4cdd96433a1a086d4c4fdbc55640a741 --- /dev/null +++ b/videos/synthetic/make_coffee/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404ff75ef786008031b95cbefa3c19bf6a3affb1315cf6b7b481e2fb21398a14 +size 357319 diff --git a/videos/synthetic/make_coffee/0035_pt1.mp4 b/videos/synthetic/make_coffee/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8c2c3427d029440ffb3593418448d215668f8dc2 --- /dev/null +++ b/videos/synthetic/make_coffee/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b0242f956cd92f7bde0b167768fec44186d5485ef49b4a9e508266595c5194 +size 349738 diff --git a/videos/synthetic/make_coffee/0036_pt1.mp4 b/videos/synthetic/make_coffee/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..06966ab7af1c350278139c90f1dc4cfa8b315ba0 --- /dev/null +++ b/videos/synthetic/make_coffee/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f06f6138a04b6427c24e1e67361d3489b704452ac13b2917297c52888e01e1 +size 334841 diff --git a/videos/synthetic/make_coffee/0037_pt1.mp4 b/videos/synthetic/make_coffee/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4bf87a46ffff53dfb000c31feba815c40d9e34da --- /dev/null +++ b/videos/synthetic/make_coffee/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dad5ee8fca7aad500b908d92934cab29700af4da87338bc20027ee1a5ecc1b7 +size 336298 diff --git a/videos/synthetic/make_coffee/0038_pt1.mp4 b/videos/synthetic/make_coffee/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..81a4b6cd8ef9c8cafd6a70240a682f5f5b3a1f17 --- /dev/null +++ b/videos/synthetic/make_coffee/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0caecaaf952ae0c01e21822f8c9a8c52bed7a290adaee9847774b4524564f4d9 +size 356212 diff --git a/videos/synthetic/make_coffee/0039_pt1.mp4 b/videos/synthetic/make_coffee/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e98e0f29899633c0b0d7da2730b865b180efcf72 --- /dev/null +++ b/videos/synthetic/make_coffee/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbc18c8bce172e53e8d8ab102b15d5074c8a2ccd9843616338b3c1c73396523 +size 338867 diff --git a/videos/synthetic/make_coffee/0040_pt1.mp4 b/videos/synthetic/make_coffee/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a8272427bf6218d79ec9d006b28133eadf0f8ed4 --- /dev/null +++ b/videos/synthetic/make_coffee/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1408aff5435862635c7f494c635e391e100b962905c1caed6cd9fffc670de433 +size 319151 diff --git a/videos/synthetic/make_coffee/0041_pt1.mp4 b/videos/synthetic/make_coffee/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b970c07ed30b56b5dfdedf67f90f60ccdba1a3fc --- /dev/null +++ b/videos/synthetic/make_coffee/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a79f872e599097741428375ed30847674bcdceb3fedf75493db9f956cbc325f +size 342129 diff --git a/videos/synthetic/make_coffee/0042_pt1.mp4 b/videos/synthetic/make_coffee/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b32714defeee380b400c99c3909c782698949f7a --- /dev/null +++ b/videos/synthetic/make_coffee/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1213939deee4b2ced6eaec7540559fec0fd9ec851d627bf13dd4a83a84622b9f +size 345823 diff --git a/videos/synthetic/make_coffee/0043_pt1.mp4 b/videos/synthetic/make_coffee/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fd4bf9b4c67b0a08a256459679f1a7aa0227b682 --- /dev/null +++ b/videos/synthetic/make_coffee/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14241d5572ba19a352038e765118e4129141d64d9d78223c310ce599ebd1e23e +size 354140 diff --git a/videos/synthetic/make_coffee/0044_pt1.mp4 b/videos/synthetic/make_coffee/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2d4bdb2e40888cb4b6f2ad312b82318b20c00ff8 --- /dev/null +++ b/videos/synthetic/make_coffee/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22161f210f493e330f1110f274b95fec1664100ce283494df6bf862d71a2982 +size 317656 diff --git a/videos/synthetic/make_coffee/0045_pt1.mp4 b/videos/synthetic/make_coffee/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4dabd1e4dcec61d9df6e29d4d20340b473f99b98 --- /dev/null +++ b/videos/synthetic/make_coffee/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01107b2ad1633346fd4177154e07c699e6c69854fc7934c7c7b045932009099 +size 324084 diff --git a/videos/synthetic/make_coffee/0046_pt1.mp4 b/videos/synthetic/make_coffee/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b203434bea75f0a2d524961ad555bf5df4f923c2 --- /dev/null +++ b/videos/synthetic/make_coffee/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdc60a1e31d8cd6f65c7111e1ab338932857b0ff5065f1defc772b6b3b15d50 +size 342320 diff --git a/videos/synthetic/make_coffee/0047_pt1.mp4 b/videos/synthetic/make_coffee/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e6e41dd98de049d7068876dce265aed5e6667080 --- /dev/null +++ b/videos/synthetic/make_coffee/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f330ebbf175ed48c980398e5d710db730120ec294fa6a9d32142b03c0a5bd836 +size 338364 diff --git a/videos/synthetic/make_coffee/0048_pt1.mp4 b/videos/synthetic/make_coffee/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2b8e8b5f38380ae9e5b0906741f97889eb232128 --- /dev/null +++ b/videos/synthetic/make_coffee/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6e48b357128a5c7c35f7926b984291f6fd4aecea17a72328d910b0375db445 +size 333278 diff --git a/videos/synthetic/make_coffee/0049_pt1.mp4 b/videos/synthetic/make_coffee/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8747fff5f8b193f1539c616ef69a4c2d1757c633 --- /dev/null +++ b/videos/synthetic/make_coffee/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ab9be282e6ad0f87d0ae7823b2fbc1e761457184b86c87e79b0d7702c41fd5 +size 336375 diff --git a/videos/synthetic/make_coffee/0050_pt1.mp4 b/videos/synthetic/make_coffee/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..087c31a6ec138a189b4e5ac03560c8f2438afb63 --- /dev/null +++ b/videos/synthetic/make_coffee/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991b61ae5b3c21f83b382aa101faff783609444c715ee444b8946b7871bb0212 +size 347615 diff --git a/videos/synthetic/shell_game_rotate/0001_pt1.mp4 b/videos/synthetic/shell_game_rotate/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0da44bed4c44232f1bfc28bb608229d77506b2d7 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d244bd0bb21b1ab7a0752c3b968801d3364fb8b7b296684638fae0701dc0135 +size 622964 diff --git a/videos/synthetic/shell_game_rotate/0002_pt1.mp4 b/videos/synthetic/shell_game_rotate/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a6d7ec46560c471117c777b3cfd64dbe7d6cf22e --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417f4c5409b3e621eb63dd9ba8185a3cf930a51596a0f08d642c8b8de909c31b +size 871443 diff --git a/videos/synthetic/shell_game_rotate/0003_pt1.mp4 b/videos/synthetic/shell_game_rotate/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..424445eef222933b3d7fd4b541cd074325127856 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a962977dc95e06ede5b6e59a604c759334ce9fb69ea4bc356a530519af201c97 +size 725939 diff --git a/videos/synthetic/shell_game_rotate/0004_pt1.mp4 b/videos/synthetic/shell_game_rotate/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..65cc16ddfc25f317c35fc61316bfcd16a6c1151c --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6bd4d4830560cd92c0ca15da69ec9430023cd776cc25115e1cd0aa923dcc1b2 +size 757805 diff --git a/videos/synthetic/shell_game_rotate/0005_pt1.mp4 b/videos/synthetic/shell_game_rotate/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9b4c9a0557b8c99c70b541902ca865770e0851e1 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7935b2b0e69ef7186741c4ca6487e54090f1137d4529895b3551ac1ce0534d +size 597213 diff --git a/videos/synthetic/shell_game_rotate/0006_pt1.mp4 b/videos/synthetic/shell_game_rotate/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..570dd54d5137045fb809f924fdbabba4d4d39c7c --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49626d9b64a11b9a58213914d5e92845019aba03c5b37c1a68c3a8e39dfc5d84 +size 802899 diff --git a/videos/synthetic/shell_game_rotate/0007_pt1.mp4 b/videos/synthetic/shell_game_rotate/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0bab4001e097ce198335be9715708bedf33a4737 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55219bc22ccc12adb2270e4858ba7ca8c52928f4bea5e118e893a4919e5683f2 +size 755323 diff --git a/videos/synthetic/shell_game_rotate/0008_pt1.mp4 b/videos/synthetic/shell_game_rotate/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80c73e6990eb484a0f19b494ff4d020aa0fd1f3d --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29da9673c7c0c0c5b6680592ec259539cf9e33d8ad10800dbc78ca02b214da97 +size 626677 diff --git a/videos/synthetic/shell_game_rotate/0009_pt1.mp4 b/videos/synthetic/shell_game_rotate/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3887eb1524b82304ee6694cd1e97be96fa3d1452 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ad38291caa5fde5571f5f0f4b6b4ae3c0299d260e2f952dac3a61d22c7f5d9 +size 616447 diff --git a/videos/synthetic/shell_game_rotate/0010_pt1.mp4 b/videos/synthetic/shell_game_rotate/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8080cf040425342f83ed80f72d45f19b41f2d1f8 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7502a59f65b2cc8b5d752063b615924ba9f2bf39a20d62592309a6e707970a19 +size 613457 diff --git a/videos/synthetic/shell_game_rotate/0011_pt1.mp4 b/videos/synthetic/shell_game_rotate/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..27241ac4b703783f6a33b14e8e87e6b277c788f8 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306000ee3094348e2a6010749cb216ae6dcdc2c76f61dbb37e0696c7621092c5 +size 523230 diff --git a/videos/synthetic/shell_game_rotate/0012_pt1.mp4 b/videos/synthetic/shell_game_rotate/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0ec505d76ea22aa1c8a22e9acf5fe72a001ccaa1 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42be0b743c1b6dd9043581208d357659249ca8da548271b61165696d7d5b81d9 +size 640611 diff --git a/videos/synthetic/shell_game_rotate/0013_pt1.mp4 b/videos/synthetic/shell_game_rotate/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3ca21d1d68d0d5e933b9d354dbe5fe5513683e0e --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be50f6bd2b431f812234127226b68fc1242272ba9b72325790e660d9b09fa1e +size 579382 diff --git a/videos/synthetic/shell_game_rotate/0014_pt1.mp4 b/videos/synthetic/shell_game_rotate/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5fe91987ff86fb52a3f9d10056442299bcbf1ef9 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b96492ef9e85f298a015b1559a06cc0e188c92ca12422075c0adeed3888c05bc +size 577300 diff --git a/videos/synthetic/shell_game_rotate/0015_pt1.mp4 b/videos/synthetic/shell_game_rotate/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..74239014b86d9f65dd1527a287ff2749572953c0 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7dcaa969b643a7cba49435c9a9d87d21d2f983b355584a08997f76851445e80 +size 673764 diff --git a/videos/synthetic/shell_game_rotate/0016_pt1.mp4 b/videos/synthetic/shell_game_rotate/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d5584a8027a563ca88695228b68afa7b20c54654 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022eeadd5c0ffc0eef527e81b3eb374d807f89eede46d37ad654a7f1e02fae9d +size 554605 diff --git a/videos/synthetic/shell_game_rotate/0017_pt1.mp4 b/videos/synthetic/shell_game_rotate/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0ff9fc729b0101603368b19f09b80cb7908cda17 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0d43d02596f38b638362052dbe0a25c5669778a49ca8ed89e177f82e6d9532 +size 747001 diff --git a/videos/synthetic/shell_game_rotate/0018_pt1.mp4 b/videos/synthetic/shell_game_rotate/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eea3d6eebc82150143d2eb70edab6fc87a7c275e --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c31a5c95fdc692c6c7dde9cd03aa390586c9cb225fee5ca667050160c18a63aa +size 699276 diff --git a/videos/synthetic/shell_game_rotate/0019_pt1.mp4 b/videos/synthetic/shell_game_rotate/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7c163c137bfbfcb6810cbbe9a898805439a79f45 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da1d8fed832fba46cc350a7c22e96043450c0de3d03357ee28c30f101f40ef7b +size 783233 diff --git a/videos/synthetic/shell_game_rotate/0020_pt1.mp4 b/videos/synthetic/shell_game_rotate/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e622e6aa975bd13641fb537e964d5dd7556cb5c --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca76d5804730d0fbbeb29e5815a6e042b90712862b5438aa34abac566d9c3d9 +size 637854 diff --git a/videos/synthetic/shell_game_rotate/0021_pt1.mp4 b/videos/synthetic/shell_game_rotate/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..60757462290c55e9af42f3efcb316f7d91ef50f8 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51da8c4fd26a1a4bbe5b363c93462036e1831d0aaeac9a6bdb468f317814a552 +size 648438 diff --git a/videos/synthetic/shell_game_rotate/0022_pt1.mp4 b/videos/synthetic/shell_game_rotate/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..20fb4df0bf0f4f24a6d3d4da93515fdac8cf0760 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e7354d80a94928848fe098a79516b003abc43f91add400d7296a868b2af1d1 +size 613748 diff --git a/videos/synthetic/shell_game_rotate/0023_pt1.mp4 b/videos/synthetic/shell_game_rotate/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3ff5f9fd2f079198b810cef8b9c34efde410cab5 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ab41c57abdd660f72ff1ea0133e0ca9fe12af2e1f0af5a1fb3ba7843139c96 +size 760438 diff --git a/videos/synthetic/shell_game_rotate/0024_pt1.mp4 b/videos/synthetic/shell_game_rotate/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a1d221a0d62a26b09d3e67c53f95fc9bc22b2de9 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3894eab896facb3b8fdca2fbe6f1fef9a1a1eaf2766b2cbdc0a8358d65cae5f6 +size 904564 diff --git a/videos/synthetic/shell_game_rotate/0025_pt1.mp4 b/videos/synthetic/shell_game_rotate/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..33b4a4b86cf7a4080d56f5c45862245e0d7b501f --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0385e1fdcd61ddb9129f6ae2c63ea324947b8e209732430ed0e4021dc7568aab +size 784389 diff --git a/videos/synthetic/shell_game_rotate/0026_pt1.mp4 b/videos/synthetic/shell_game_rotate/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..020af893e90bede872000652f2f48d9e10c4e7ec --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:041b1ff4a03ebc6607634ac9846169ca63245d894050f19d27c03afabfa4cef3 +size 598808 diff --git a/videos/synthetic/shell_game_rotate/0027_pt1.mp4 b/videos/synthetic/shell_game_rotate/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..42a2edbd46a3abc374344ce46bdd800acc575358 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab1bb0d0e2590f08fb9dca597082c79d56edb9907ac60620dc574c6575beade +size 678625 diff --git a/videos/synthetic/shell_game_rotate/0028_pt1.mp4 b/videos/synthetic/shell_game_rotate/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e09e15b03e8fc95cc10a62208abba0c6443ae28 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd38195acaaded447d79fcaaeb13090d0cd4df7e7079f911cf0538de88b0af44 +size 688951 diff --git a/videos/synthetic/shell_game_rotate/0029_pt1.mp4 b/videos/synthetic/shell_game_rotate/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f677aaa02efd3b536921c25f27e4beb07f6eceb8 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b81cf66a644813b12fdff2fd91ef00f0796450fd9f4f9681c2818aabf74156 +size 722030 diff --git a/videos/synthetic/shell_game_rotate/0030_pt1.mp4 b/videos/synthetic/shell_game_rotate/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7c410225c733a336f205a9c68e39ddd089e04f67 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc791a8658629328c95d1dce8509d5da72c1d579ea91504ecb0e20774552215 +size 600218 diff --git a/videos/synthetic/shell_game_rotate/0031_pt1.mp4 b/videos/synthetic/shell_game_rotate/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3ac93e1438f431a1ad54be537b76c929f07ebc61 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1ca27edef0e38df72bfa65e05f8aed6b4bc3cae571ccdf95dd89c0e3dac176 +size 804621 diff --git a/videos/synthetic/shell_game_rotate/0032_pt1.mp4 b/videos/synthetic/shell_game_rotate/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9dabef0edf9fc6caf508eaaa144a80ea3c631845 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e43a7c8e8214ac823d4777ae79ce0c88e74f53329c7b4487b9ed28d87df63f2 +size 849291 diff --git a/videos/synthetic/shell_game_rotate/0033_pt1.mp4 b/videos/synthetic/shell_game_rotate/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e541d87d3ce0800cb80a6095647317e9331b45cd --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5a93eec7debc7be4fdce36a42befad134fcb069b972c0f74db31bc4e3d956e +size 606657 diff --git a/videos/synthetic/shell_game_rotate/0034_pt1.mp4 b/videos/synthetic/shell_game_rotate/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0f331c87f8f3a306fc6d6dd32fae923cec553f43 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796c9735be11d46169028b5f40b3681054ec272f568701f4a586e7e6acb36add +size 863983 diff --git a/videos/synthetic/shell_game_rotate/0035_pt1.mp4 b/videos/synthetic/shell_game_rotate/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3ca839033c2f0253c705b613d098bab47fc5e473 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b675d3bf4905c28b0ebe37c2478268982d9065a3f1cfcbfa13cc8eb7b55c35c +size 747285 diff --git a/videos/synthetic/shell_game_rotate/0036_pt1.mp4 b/videos/synthetic/shell_game_rotate/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..14620a431b1c54a9addfe9da93e0dd7a7c250e9e --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09727b3b5a39b1c25d80c060eb52f491024c708c8d110c94d868198c8f966ad9 +size 673765 diff --git a/videos/synthetic/shell_game_rotate/0037_pt1.mp4 b/videos/synthetic/shell_game_rotate/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4e65a72f59aaf695bfd149ee6f631c4fcc8e4ad1 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d47a849ee3bb03f014d994ccd4637f1ab384a726bc8ebe3d381ed82c49019e5 +size 776123 diff --git a/videos/synthetic/shell_game_rotate/0038_pt1.mp4 b/videos/synthetic/shell_game_rotate/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..edfbfc6bb67bceaa2ac0778d8015100d63446589 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c3677ff6b6f17fc7481ec0c12ce7db9918594fb7e8b1aec6e17392b3495269 +size 787965 diff --git a/videos/synthetic/shell_game_rotate/0039_pt1.mp4 b/videos/synthetic/shell_game_rotate/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d535e13e397fd8626866054c2331b16ea2c2effc --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f562148cab04474dd971bd7f39cc67bb4e96123c1f99cf0ec4da9fbbb75ad7 +size 692748 diff --git a/videos/synthetic/shell_game_rotate/0040_pt1.mp4 b/videos/synthetic/shell_game_rotate/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..775ce0a98e986c779624fdb8477583a9861998a3 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e6a3f13aa8bf1162518eb11202f13d9b608012d8fe4fe2cdc5f2b87812f7b5 +size 896429 diff --git a/videos/synthetic/shell_game_rotate/0041_pt1.mp4 b/videos/synthetic/shell_game_rotate/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2aa7b3169dc5d6f6879172cb4552d6af9d3d88ac --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41699f03cf07b8c7cd74a8a2da153d685bc52c44a1565a59d5aaf36b81e412d8 +size 609083 diff --git a/videos/synthetic/shell_game_rotate/0042_pt1.mp4 b/videos/synthetic/shell_game_rotate/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..74e462a2bbc477f532e246be165179ce24a070f8 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154b59b89d52abedad838b6b35e98f9def5c1fa9f12fcf5e1d65ef1b784954f1 +size 592676 diff --git a/videos/synthetic/shell_game_rotate/0043_pt1.mp4 b/videos/synthetic/shell_game_rotate/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cdc9a12b2f47a6991559642bd20053ebe202a330 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2411ab2f584f26b950d9bc028a33618309563d49e9ffcbde9e1b55fef08833b0 +size 734751 diff --git a/videos/synthetic/shell_game_rotate/0044_pt1.mp4 b/videos/synthetic/shell_game_rotate/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..166b2ae2d3c85e7afb2396a07f16836b298d3a76 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1a8476d5c23a4266a70972a4f0a0136eade1645e7737cd50ebb41805e97a7c +size 791592 diff --git a/videos/synthetic/shell_game_rotate/0045_pt1.mp4 b/videos/synthetic/shell_game_rotate/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dc78824f05a99ba692c8efc63ae7bf68d57beb2c --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964dc352c3ad4b76944c1cc781b852c8eb9eb943e7c0fedc60d584b1ec740d6a +size 828723 diff --git a/videos/synthetic/shell_game_rotate/0046_pt1.mp4 b/videos/synthetic/shell_game_rotate/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..604ed25a19dd91881f3aae9df175c54570ae1de6 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b6de5002c464e8b050d8b0800eabf92ee64fd8fbd4cbf496f7d47c6578a8a4 +size 568601 diff --git a/videos/synthetic/shell_game_rotate/0047_pt1.mp4 b/videos/synthetic/shell_game_rotate/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b98606f2bd3c9153d960df6ae2e6b27c1bc3d0c8 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca992711e655d195f914452a2dd6dda52389bf463a21e3d2ff893933a7119d6 +size 601144 diff --git a/videos/synthetic/shell_game_rotate/0048_pt1.mp4 b/videos/synthetic/shell_game_rotate/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f721b8c4d5f5566f07a0b90920365d785e6797c7 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e540c9e5f0b13f967b8ddd181ccfa72f96db0b93b9b58b31e1bb6334f4f65b3c +size 664805 diff --git a/videos/synthetic/shell_game_rotate/0049_pt1.mp4 b/videos/synthetic/shell_game_rotate/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9cf58027fc70af803327a42913a27db2d1e76824 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f8c6ca2385a48d86dc4325f7f9dc7f82e511ca70be04ede95f757512effee0 +size 972802 diff --git a/videos/synthetic/shell_game_rotate/0050_pt1.mp4 b/videos/synthetic/shell_game_rotate/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c19ca7c679aabeccc296ea35992fe3ff776da760 --- /dev/null +++ b/videos/synthetic/shell_game_rotate/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87df7edb9d18ec7b81fb3815b07685b449da5cba61000dee68fa8d7d1c8f972d +size 652431 diff --git a/videos/synthetic/shuffle_puzzle/0001_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..65fc6b80725bfffbd0e2deca02d31435aa7620a1 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa1b20358846d4a5a67b8bc636cf0a61a2869f7861bccea83ddfa57a480da32 +size 346042 diff --git a/videos/synthetic/shuffle_puzzle/0002_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a1ef34c9edb4e03428f917db4196805893b721b3 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6442a2619d632f7aa239f6c124641faa0d17043aaa49371cb236e879863ff52 +size 346087 diff --git a/videos/synthetic/shuffle_puzzle/0003_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5ad4fe07cbcc1c72f22995523281a8dd5c0258c4 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26c2d4bd5d52825b1d2ac68c7b1de63039d9ab68bcb0f3c5af5fcf0cabc9008 +size 348300 diff --git a/videos/synthetic/shuffle_puzzle/0004_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c160a394b66a34e716cd0a0f70a0936bec82c0dd --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0a915fa073a48ebb93e2145067cde1c524eb8fa0daeb9b60a8245f2b920bab +size 346438 diff --git a/videos/synthetic/shuffle_puzzle/0005_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cf3322fc75976010e9cc1630a70a916f4de031aa --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec3997312babc58bf15837e4c6786a1469611c2de4ffc8f98d49dbed579ab78 +size 344576 diff --git a/videos/synthetic/shuffle_puzzle/0006_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2b67fcae61bad0c7ce539b034ae5e1ac09f3e9ee --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43da6c7ab98c6880b9971c3018ade697a97dcdaced4f30c623d0199c8b837045 +size 343851 diff --git a/videos/synthetic/shuffle_puzzle/0007_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..99fc5fedc8c90b325079e707bbc0017784a9e7b8 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a188486670a797ad73dfa57eb9106c16338b64507a9b08df3a6641fcba5e3b +size 345679 diff --git a/videos/synthetic/shuffle_puzzle/0008_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3f64e875fc5111d5841a45bcec76bc65f324861c --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388a72ed566b1d334cc602cfe9c6b0f96295332532dcbba7b4277515d77ff433 +size 344909 diff --git a/videos/synthetic/shuffle_puzzle/0009_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..45ed0d11d632fb11487f915278f3cb4c3390896e --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c109a99cef0273fd268641649de71147fcbc316e746ff8a95c46ddd8db294e90 +size 346835 diff --git a/videos/synthetic/shuffle_puzzle/0010_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..862b18b969d2f17d935277222563f51a191f5f2d --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6159d659aa573bfba29423c578e69f76afe4ecd52c609aa8c7018b347c402cad +size 346719 diff --git a/videos/synthetic/shuffle_puzzle/0011_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..825d671ad2304545766af89f5f1eb60c95080db6 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:839dccd3143444acfa1d8bbd43efb8005d37d6cecef0f1909af074a99560eb72 +size 346216 diff --git a/videos/synthetic/shuffle_puzzle/0012_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..362151f3d7c90d068ccdabf57d033fa010065173 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7698f6f9f39fa932b0734577102ad56ba58b0be8be7e7ec000193fa7ff579b +size 345788 diff --git a/videos/synthetic/shuffle_puzzle/0013_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0fc29663284832d8e0a64fd42a6348c55b60cab5 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0142ce2460fc0d92623a4fe0c456aa7f450e7f3f683129217a747c78af3641 +size 346070 diff --git a/videos/synthetic/shuffle_puzzle/0014_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ddab1f3d45e38c399f169aa44bcfcca0d8000c92 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b977e506217520907dd991a709300d5acec5862420f1a0039588cb4ba0b21eae +size 346925 diff --git a/videos/synthetic/shuffle_puzzle/0015_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8a7950e64d179e02afb2d854897a83176c2c9a2b --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555d9fd2e4b6d8f1a075d6dbc124b344005fd9af82841f59b15dc72365d487e2 +size 345607 diff --git a/videos/synthetic/shuffle_puzzle/0016_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..77e29c6cae6228f8df80794fec087ead7b9b892d --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907ee600f140d689c5d3dc30c89673892a712fa1bca495a4a52231a6012d2592 +size 343874 diff --git a/videos/synthetic/shuffle_puzzle/0017_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bf7399e01dd3e15f204de7f57e80163ffd2c55ed --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d762d304c602ac0baf6d41b6eb590bb121c5b916c10571c5cb21f1c26212c446 +size 346995 diff --git a/videos/synthetic/shuffle_puzzle/0018_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9cf5f0701e725221c65a56135602d0672d326ecc --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f35ae3d13f91e6f258186ae346d95404f5ccf0a924dbb14b521d1ff4a223ad +size 345390 diff --git a/videos/synthetic/shuffle_puzzle/0019_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6f4619fe46071250d8b1147d34e247385bee7f52 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8131ec5011d512196584aa55817d88e6510c62e75aad6fd680108b88e30afd +size 345947 diff --git a/videos/synthetic/shuffle_puzzle/0020_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..44feb129e224f2da029b2f7fb04f39441b6c5037 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62dcca8096b364748c39233e181dfb443318c3180c7dac9ec389929c9df425f5 +size 345648 diff --git a/videos/synthetic/shuffle_puzzle/0021_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c992cbe5460b134e77241b179267cd05f7147f21 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a2f5a1209c9ed6ebc9f305e1981b0b7cd977a5decc106b68e68526513861d3 +size 347247 diff --git a/videos/synthetic/shuffle_puzzle/0022_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..da67d7d58b04401fcd644561d38e5dbbfc3049f4 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cdc330a27495ffa8199690504955a77955e1a97cf0459b3e80e70e6411d7a79 +size 346345 diff --git a/videos/synthetic/shuffle_puzzle/0023_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2f93a49f19bb245b091e043c5bf14fdca8707514 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311a4812e56b46992994652bb3d7d258c30f084579a5701190712e9bb89e947f +size 346057 diff --git a/videos/synthetic/shuffle_puzzle/0024_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..439f709b105c109f41acfd267c74bc878ae44c6a --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5773f6ef1295be330b189c59bc8351bd813286006cd498aa57cde1bdac39f166 +size 344833 diff --git a/videos/synthetic/shuffle_puzzle/0025_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..da1efd4e36bcaf524a4f79fe685b732079de8a8e --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c597dac58b09bd6fb3714b5daa6626324644b68ee8bfa8295f24ab44124de8 +size 345676 diff --git a/videos/synthetic/shuffle_puzzle/0026_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8c9ddd71da7df54b83441ea351586fe51fbfd583 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb30e00817cb52beda0c41555ed0ce6096c9629582eb648c7cc5c98e84b448b +size 346162 diff --git a/videos/synthetic/shuffle_puzzle/0027_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4cdb8c7a170822e24c5910f58896a523a21aa358 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e330f6e7446d03469fb2e0c880019748aaabbc436d02ff83d1ddae43782dd86 +size 347510 diff --git a/videos/synthetic/shuffle_puzzle/0028_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c15a3814d2f17c4c967d48cf2616e4b3e9d2cbd0 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef38bd5dd54ed28383380a84d6f8d319451bbbee043fba66ac4ecfe1d81c31e +size 345260 diff --git a/videos/synthetic/shuffle_puzzle/0029_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..20a5e75ed87091dd2bbe0afed4358fbe98993848 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6015803afab0384697c0dd39b3b1f2026592671b83b1de701591d2573ea2add9 +size 346052 diff --git a/videos/synthetic/shuffle_puzzle/0030_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1b763af9c12d19a38c35cf9a159c9426cddb36de --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffa1e832ce40a30701b0c05b713a2875250d2c625e4524fb6075dd975b2b765 +size 345178 diff --git a/videos/synthetic/shuffle_puzzle/0031_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8907b9806be1bc2dc2ae953038edf9fab56c8c49 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe84bd798d615a5a686f7d77099ca3453a091df4a212848ee1e7247e4f508e3 +size 346023 diff --git a/videos/synthetic/shuffle_puzzle/0032_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..148b9e62a7e5805edce50a347967e54640f8ac16 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda56e017d3ed7d201f077856b967411da00b26743aba2ab800e926f77e945d2 +size 347288 diff --git a/videos/synthetic/shuffle_puzzle/0033_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6ca24f00d91c2a0392e04cd9800a7adee4d9b8a3 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299cc8687671ac7d8042d26c7c166f1d41e0b0d328a650b75a8e0445e7b7bb27 +size 346166 diff --git a/videos/synthetic/shuffle_puzzle/0034_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ed33864be0c998e7aa197947e2f79dc28f14d51c --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d2cda11873a1cffaf24f958673d20e25cd12d67b41ba29ec23e04ff3fc6dce +size 346277 diff --git a/videos/synthetic/shuffle_puzzle/0035_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..01dfbf31a3548e6ee9d052716d06d7685e2e779d --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9291a8196395c96e9dd0311ad6f5fe1924d34faf8163d50749cb83c940422b1 +size 346776 diff --git a/videos/synthetic/shuffle_puzzle/0036_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..077457b34fbed7c068e692843dd4be3f01ff6780 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf37ccbddc8fc238ebeec1c387d6831be6ea129e6e1b9808aaaf9902ebeb457 +size 344578 diff --git a/videos/synthetic/shuffle_puzzle/0037_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..deffdcb79e2f411f80f6bde25a53431959d95418 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b774e7108e0808736baf16a85ffb8ab98fe1233e5073cd7d35ce32253b7142a +size 345939 diff --git a/videos/synthetic/shuffle_puzzle/0038_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..42ba6e461b4af700f16c1c9d53014b24b0246ae6 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635ab28f551d3b521d24cac37dcd25a565005179ebdbe838ac179bab1c949b2a +size 346604 diff --git a/videos/synthetic/shuffle_puzzle/0039_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f6041460d545d4feb50ec5a2511534ed308b4e13 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dec3a043762fec3d629de5689afde36e3e54fc05ad689ce39c08c3f5f596f2e +size 346158 diff --git a/videos/synthetic/shuffle_puzzle/0040_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1089606009ce4ad97740c5437af56d5f2d963321 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc6cea47e75c0e3f6070b9d5eaca80936f1ffcff5568b3c055831e78ef531ab +size 345523 diff --git a/videos/synthetic/shuffle_puzzle/0041_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e351e4937b21447ec2c79e30a02b4e4663a0cc08 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1040d0f4874993173d73575a5cf4df47c00b1e53edb864eee42665547bdbf36b +size 346805 diff --git a/videos/synthetic/shuffle_puzzle/0042_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d8c790ffa71ccaaed75d8b0fe5306579f1b5fc5a --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9353e32f2afc65e4473df377c51b22c3dc23098b71db09053f9ca76ff08070a5 +size 347744 diff --git a/videos/synthetic/shuffle_puzzle/0043_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..413af37f8f977e7213c84980dd0de29c0e48efe4 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9a08189bec7637fc47c7ac602a0604be4009b5e1f1347108cdd83e0539920a +size 347133 diff --git a/videos/synthetic/shuffle_puzzle/0044_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4e3f13684d68792111a0c799093513f00a3b5346 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61c051a400f9286e71c1c762ec34ba050c70af718b4aaf827d2685c30713f931 +size 345606 diff --git a/videos/synthetic/shuffle_puzzle/0045_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9b63d68cf0dca1c51f39a255801f2c6fa7d3db5c --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7574c3a6f3af963a0de6fee06d097bce781ad9c34a0120f5ded3c61f5b3ddc8f +size 345710 diff --git a/videos/synthetic/shuffle_puzzle/0046_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b9b8120bd8c45f9c82863c9eb9405f43b353baae --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2ff2f76db037e2fe8c011b23e50234f1909fa6e47b4cdb362f06af10c232ab +size 347759 diff --git a/videos/synthetic/shuffle_puzzle/0047_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..df9d5cddace6dc22c2450ad8019ef55f2a4a4a8a --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:874f43885e962f506100d90145ae4b5d83c351b990c73bc6c261a10aa89fb9db +size 346534 diff --git a/videos/synthetic/shuffle_puzzle/0048_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f44d6412dfd9c73a9a5f151b7d85dc99bb07e79e --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee74d3609b39707e7abe54f4420bf6754eee3493b96afd271538d7cb103178d +size 344602 diff --git a/videos/synthetic/shuffle_puzzle/0049_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..042e0ea34d18f00f6bb28a19b4c107d8fb71c345 --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba53fce7a3d4bdcccd0d717054905e83be2a51ba2ecbdaf0d7b5d0b11ddfe60 +size 347276 diff --git a/videos/synthetic/shuffle_puzzle/0050_pt1.mp4 b/videos/synthetic/shuffle_puzzle/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a2933864cc8fda11757906b5d5f15a7824cdf1ca --- /dev/null +++ b/videos/synthetic/shuffle_puzzle/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547ba6bf0f2b3c6aaf97e8c8a1b45c3b209f849d1fd35e9d466789026c039501 +size 345473 diff --git a/videos/synthetic/tighten_untighten/0001_pt1.mp4 b/videos/synthetic/tighten_untighten/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..44efdb45b2b8ffbbed8bb92be279d68a09c42711 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b890ea5669a2354aa283b61567b1ff44e9f8d5d4c874be3cd1f9a920ca10c16 +size 292709 diff --git a/videos/synthetic/tighten_untighten/0002_pt1.mp4 b/videos/synthetic/tighten_untighten/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3b09ac9160f003175d761f4c5f55c661609a29a2 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a6ad144c42408269e577cb5a77a6bb5fb8ab30ee53b45d9310826bc2b21482 +size 273840 diff --git a/videos/synthetic/tighten_untighten/0003_pt1.mp4 b/videos/synthetic/tighten_untighten/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..50090fe2478470cbcfaebdb61ed74fe01915aff1 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a39e55db94b1c16e8bcdc980dc15fc74a1bbd1d75f2ad4c903e11533d95bc63 +size 297155 diff --git a/videos/synthetic/tighten_untighten/0004_pt1.mp4 b/videos/synthetic/tighten_untighten/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f1b35ce01503a0cd8d52c825f023fada916d8522 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9fba8f69654a5db83398d1253e7cc63d61b78f7f1395fa0716fdc83b2dbcd3 +size 291793 diff --git a/videos/synthetic/tighten_untighten/0005_pt1.mp4 b/videos/synthetic/tighten_untighten/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8e3ddef2997e5e6cc219d80cdd9aae61f0a58e3a --- /dev/null +++ b/videos/synthetic/tighten_untighten/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb92b001dea9a4f8f68f8df130b06d3191a0bbbd2a05f7be806501de00de506 +size 295850 diff --git a/videos/synthetic/tighten_untighten/0006_pt1.mp4 b/videos/synthetic/tighten_untighten/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f6605547cbd736490b063bfb8ece86a6397baaad --- /dev/null +++ b/videos/synthetic/tighten_untighten/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d94c35cf4a14acf05b92614982a623a874905741242aac48bf4270dc904ba3 +size 304397 diff --git a/videos/synthetic/tighten_untighten/0007_pt1.mp4 b/videos/synthetic/tighten_untighten/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1f9d01531ed555591524a31d9f76f9b8133b272d --- /dev/null +++ b/videos/synthetic/tighten_untighten/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3d5d144c9987bbe02c68781faa984b8faff3fba1c15838428ef2e1ca88558f +size 280422 diff --git a/videos/synthetic/tighten_untighten/0008_pt1.mp4 b/videos/synthetic/tighten_untighten/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5d5389c663f76570f9c9ed46d0f3f3dbb032a0a8 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ab0b87f8d01e78c43f951819f1338eae19bc0c32e00cf554d66b36bfddd055 +size 301572 diff --git a/videos/synthetic/tighten_untighten/0009_pt1.mp4 b/videos/synthetic/tighten_untighten/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8e4ae03f8396cd8611841d476e82b663f17834d6 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8909fff7d683947bb90c83b31e931d526761cc85d1e656359f8abc6465830dc6 +size 298282 diff --git a/videos/synthetic/tighten_untighten/0010_pt1.mp4 b/videos/synthetic/tighten_untighten/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..286655f01cde4c81e926de148dcb3307bf456efc --- /dev/null +++ b/videos/synthetic/tighten_untighten/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9970aa0cb5e2226e4dcf88ccf9ff965535b7df54b72dfb3b506938a4e6df49c1 +size 300091 diff --git a/videos/synthetic/tighten_untighten/0011_pt1.mp4 b/videos/synthetic/tighten_untighten/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c278d48cba15968d0bd8ebf68477d2263f2e0c16 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2429718fc377d56ae471c5c59a44d47fcf44f3b2712fd348d05de04ea9f1fe2d +size 286546 diff --git a/videos/synthetic/tighten_untighten/0012_pt1.mp4 b/videos/synthetic/tighten_untighten/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ed0ce18be3f6f6fe57e1a0a858a1b031c50cab74 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:536eb549e3165ddac9f99a5c9fcc28bad2fb5154717e88e13959ec7e4cedc098 +size 285335 diff --git a/videos/synthetic/tighten_untighten/0013_pt1.mp4 b/videos/synthetic/tighten_untighten/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..13fd969cc8e39574db533839082caf009174953f --- /dev/null +++ b/videos/synthetic/tighten_untighten/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740701757be0cd72dde1f3891b2028b10610f4ef8b182cac7c0cd5125ea0af9d +size 286520 diff --git a/videos/synthetic/tighten_untighten/0014_pt1.mp4 b/videos/synthetic/tighten_untighten/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..03537c4d7c636a3c2afbb76ba6837b86c02a5494 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfde1bad396689de87269dcdb4af4d2bb0cc1a9f74e26d401b89ccfae0ccf2e5 +size 284033 diff --git a/videos/synthetic/tighten_untighten/0015_pt1.mp4 b/videos/synthetic/tighten_untighten/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6d9bf45f9c4bd557eab9999ab7200a4f463dc332 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1de1b34b7fe002473e8cd1f8b0bf74a964cec7cbf42311d327699762a37df7 +size 297745 diff --git a/videos/synthetic/tighten_untighten/0016_pt1.mp4 b/videos/synthetic/tighten_untighten/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c53818d3bb52d90846eefd1fd09fa2dbbe0d79df --- /dev/null +++ b/videos/synthetic/tighten_untighten/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ef97f571cab2963c6384cc7673de4af6096729b607555b1b177b98744819e6f +size 287603 diff --git a/videos/synthetic/tighten_untighten/0017_pt1.mp4 b/videos/synthetic/tighten_untighten/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2165e256e9f5a3d04e5bbc492af342e1501453ce --- /dev/null +++ b/videos/synthetic/tighten_untighten/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e638392793b7d6021f3cc3f2566eeae0b8d44e0a196c02fc613e791729395085 +size 288792 diff --git a/videos/synthetic/tighten_untighten/0018_pt1.mp4 b/videos/synthetic/tighten_untighten/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d8c6c233a7f71b540b629aa08ca25d43e35cc760 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2281ce931d3b2ea2e56bfa647e91e5fddd176cbdbfdb7f2d464d17d09773d0ac +size 295487 diff --git a/videos/synthetic/tighten_untighten/0019_pt1.mp4 b/videos/synthetic/tighten_untighten/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bc73041f780a78e48bbb5950a0d3013844efc4d5 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7960c9a79214febda7bfae02b357f95a56f6b7b6a32253e4ab4984568ee5f09 +size 288723 diff --git a/videos/synthetic/tighten_untighten/0020_pt1.mp4 b/videos/synthetic/tighten_untighten/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6cde5c10e31a91d95b9e6469a89d340022f164ed --- /dev/null +++ b/videos/synthetic/tighten_untighten/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49390da7a39a568515df05076894c43cc905cd228ab983f251e48bd052524c89 +size 289366 diff --git a/videos/synthetic/tighten_untighten/0021_pt1.mp4 b/videos/synthetic/tighten_untighten/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..954313f8093ac0e18acf85cd7a93aac825a40032 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bc3b02858bfdde4b5f82dadf5cf918e2ddbaaf4c272599985a4363ebcfeb23 +size 294190 diff --git a/videos/synthetic/tighten_untighten/0022_pt1.mp4 b/videos/synthetic/tighten_untighten/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bff27f49dad8a86cf9486ac3d0cc0f2fa458da2e --- /dev/null +++ b/videos/synthetic/tighten_untighten/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc011197b0dda6c488c6b6c49f059b41498cd7c86472f53aabe9a02db67bbb11 +size 300586 diff --git a/videos/synthetic/tighten_untighten/0023_pt1.mp4 b/videos/synthetic/tighten_untighten/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..34dd757e82d7b5c21d7feae0a2f9e7f3ef878dfa --- /dev/null +++ b/videos/synthetic/tighten_untighten/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35fb1ef163513192853a7bcbb06f4df1a6ee5a3e164a328f2d7496f436ddf54a +size 293376 diff --git a/videos/synthetic/tighten_untighten/0024_pt1.mp4 b/videos/synthetic/tighten_untighten/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6019fb1683617230a37da7704e58dc3f2ca95fc6 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2a7be4847bae2f0662e3ec932b098d858e0b13348529fab328d9804336f4a9 +size 299246 diff --git a/videos/synthetic/tighten_untighten/0025_pt1.mp4 b/videos/synthetic/tighten_untighten/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..374a94279fc8846b01c3862c54d39ad93f9f522e --- /dev/null +++ b/videos/synthetic/tighten_untighten/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0919466104bf5c45dbf1ad6dc62a92320eee5606e602702c9a0eab9b456ef1bb +size 292811 diff --git a/videos/synthetic/tighten_untighten/0026_pt1.mp4 b/videos/synthetic/tighten_untighten/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..aa2fe26673c70e370d7b063cd78aebfcaab4fdb0 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aebe8db45cf60162bd79f201f6b0977fb978a06623034f7afa76c8cbd3c9d9b3 +size 293402 diff --git a/videos/synthetic/tighten_untighten/0027_pt1.mp4 b/videos/synthetic/tighten_untighten/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f4d782233369f903840a888594b6b1a799960307 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a123450fa7637940097e2f7c63591559f16491bd8fc3970a316d3407bcf72f7c +size 288481 diff --git a/videos/synthetic/tighten_untighten/0028_pt1.mp4 b/videos/synthetic/tighten_untighten/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d6d144aae5c34b5a3866a1884c95f13204fca4bc --- /dev/null +++ b/videos/synthetic/tighten_untighten/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2c6d41d9e8597c98c35a0b834e7b3a32b37ed4a67546bfabaf3240c062ff50 +size 291734 diff --git a/videos/synthetic/tighten_untighten/0029_pt1.mp4 b/videos/synthetic/tighten_untighten/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..19678746f8dd83c2c5206e0074ff240149bab8ca --- /dev/null +++ b/videos/synthetic/tighten_untighten/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6aaae278aa8f16bcd2ab5ee0d9f6f92970f0219cd2f4c89095fb407b46540f +size 289629 diff --git a/videos/synthetic/tighten_untighten/0030_pt1.mp4 b/videos/synthetic/tighten_untighten/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..75a5162c7c6e9f72ad3646c09376e609f0dfe054 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5ad400805c49b71011528eded50fb016f2c1877abbf208140e5ffbc900d99e +size 293422 diff --git a/videos/synthetic/tighten_untighten/0031_pt1.mp4 b/videos/synthetic/tighten_untighten/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..640aa5d12baa2ce25cf838d54c28081574b9e424 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a787430d3ed6565acf66767e736a4d0927aaf0cd71a1415a389c94e3aba6cb5 +size 297773 diff --git a/videos/synthetic/tighten_untighten/0032_pt1.mp4 b/videos/synthetic/tighten_untighten/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..25a18e025bbd0d5c2fa74a326423c76f7548fdf1 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d98dc8a823931c94849f197ac78f41a20b8074bb08bdbb6f68cf3083ca6396 +size 294192 diff --git a/videos/synthetic/tighten_untighten/0033_pt1.mp4 b/videos/synthetic/tighten_untighten/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..824051ffa63529e279701ac6698cca223c90f6ac --- /dev/null +++ b/videos/synthetic/tighten_untighten/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5f1a258a61c8599c92dd7bf7f82c740bc7a24f1ffb5a0ac70f60d7e5d8077f +size 288982 diff --git a/videos/synthetic/tighten_untighten/0034_pt1.mp4 b/videos/synthetic/tighten_untighten/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4d4cf46098f74e192a50131de6a094ee6e7b843b --- /dev/null +++ b/videos/synthetic/tighten_untighten/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de538edbc887eddf92cde49b410707817d8574b28c347123fbdbb5f3f099b0a9 +size 291183 diff --git a/videos/synthetic/tighten_untighten/0035_pt1.mp4 b/videos/synthetic/tighten_untighten/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d8a5ed8845f69ccffd9159ee18c0200fb3143a57 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f78f09020b36f9e0ca917e49741a1b5c4fd1ffafb6b2323084e1ba0022926f3 +size 288175 diff --git a/videos/synthetic/tighten_untighten/0036_pt1.mp4 b/videos/synthetic/tighten_untighten/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..425999daff247e6759ce6a0d6a96706eae829dba --- /dev/null +++ b/videos/synthetic/tighten_untighten/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c328bbe02b10415665828a1e9212f9f76b6e3d335a751d58a45ae4a95cf9bc1 +size 296362 diff --git a/videos/synthetic/tighten_untighten/0037_pt1.mp4 b/videos/synthetic/tighten_untighten/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..71fc0206064c8f10a87f0995b5aa2b74122cb581 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072b073fc88ce743116e596783271d108e9b5a7458f37bdd6ab167021922fe06 +size 293928 diff --git a/videos/synthetic/tighten_untighten/0038_pt1.mp4 b/videos/synthetic/tighten_untighten/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..05bec2ed24f803a7afb705b490bb67cc5f3e904e --- /dev/null +++ b/videos/synthetic/tighten_untighten/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4fe7a72ec67dc8ec287bccd5a2755a804fd2a15fc9a70ee0e2be6edc33cc6ad +size 290473 diff --git a/videos/synthetic/tighten_untighten/0039_pt1.mp4 b/videos/synthetic/tighten_untighten/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e40dabfb2506323e682b147dd2773984d4562115 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bb0bc255875d4db5a8686f01363a8603f9b8155662c9afeebb8c4320010ad3 +size 292591 diff --git a/videos/synthetic/tighten_untighten/0040_pt1.mp4 b/videos/synthetic/tighten_untighten/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6b8dd451786e1bc9bb94275a6ba5b59bd98f10e1 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2feef921fe788545474a9e17f92cdc1ddb450b1e5e43968a6141292ffe03ea2f +size 290561 diff --git a/videos/synthetic/tighten_untighten/0041_pt1.mp4 b/videos/synthetic/tighten_untighten/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..72e7d48f8d1e859fd4a136fddfdb67398897e8d2 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11deb5ee9fcfb4e0e7bdd9db22bae665905b07daf6e434b8d04f7794f9b3c50a +size 295764 diff --git a/videos/synthetic/tighten_untighten/0042_pt1.mp4 b/videos/synthetic/tighten_untighten/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..589d0c68e774ab154a70f439d1e12a9878e8b7c0 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd0a3e9d44079653b65de0cb096cf95c23bc11782fa0e254a30362028719278 +size 286861 diff --git a/videos/synthetic/tighten_untighten/0043_pt1.mp4 b/videos/synthetic/tighten_untighten/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8385ca4405a904479be7ac411ffe55c59f34a947 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f83073199a2c504789d77e79d359f5850600686437a70b113635deb1a0875b6 +size 291962 diff --git a/videos/synthetic/tighten_untighten/0044_pt1.mp4 b/videos/synthetic/tighten_untighten/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dbf28b2fc76f2fe9978bccc76f51fd2d765c3d61 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719b6bc7c4879ba62817d4ddb609a328cec1d57d4beda0817530a902cc7ffdb2 +size 279029 diff --git a/videos/synthetic/tighten_untighten/0045_pt1.mp4 b/videos/synthetic/tighten_untighten/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80587b0e97e70dfade6df0ee68a96477aad850d7 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6d1f384cacdcb65653ad62e03842711c04c4a0c01e5afd79ae0b7f22f4382b +size 294938 diff --git a/videos/synthetic/tighten_untighten/0046_pt1.mp4 b/videos/synthetic/tighten_untighten/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..264477300385f85b6c2bf50b15dc2c4a1805d99c --- /dev/null +++ b/videos/synthetic/tighten_untighten/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f41f67d3f395a587ea7281837017efc7ed9ae28557399b97abe2be7589b38c +size 292401 diff --git a/videos/synthetic/tighten_untighten/0047_pt1.mp4 b/videos/synthetic/tighten_untighten/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0af4c488164fd93f56447b4e053207249ea0177a --- /dev/null +++ b/videos/synthetic/tighten_untighten/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1723d267b3ccdad1fd03d6f9f679cb63fd44898480d6750a9131615022e2cd2 +size 286876 diff --git a/videos/synthetic/tighten_untighten/0048_pt1.mp4 b/videos/synthetic/tighten_untighten/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a14a74fdbf0bd6218ad53ff3c79d85918991fd21 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f072449281f7343cff4d497918a932ae1eec0f9de25801427a3f18504d0525a9 +size 291136 diff --git a/videos/synthetic/tighten_untighten/0049_pt1.mp4 b/videos/synthetic/tighten_untighten/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80315cea78628afa9ecdf64e84a6fc87b8ab9c1a --- /dev/null +++ b/videos/synthetic/tighten_untighten/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9fafe21cc1b375b7bce1e4c1f7735b99be83e1ab9275f0bdbb668566eb2bba +size 294099 diff --git a/videos/synthetic/tighten_untighten/0050_pt1.mp4 b/videos/synthetic/tighten_untighten/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1ee1eb72b69f1d1264133d375232d9c46a185531 --- /dev/null +++ b/videos/synthetic/tighten_untighten/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff39691e579df7d5a9902d64285823b9434ffce7d5245ac6a83ea8b22771524d +size 290903 diff --git a/videos/synthetic/tilt_v2/0001_pt1.mp4 b/videos/synthetic/tilt_v2/0001_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e39e16aa8b6340727ce856a7a389835da2a2598f --- /dev/null +++ b/videos/synthetic/tilt_v2/0001_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5976913d2a931b1f02c982dc6a0a621b8b519cdda84293e7ff26997595ce77 +size 333266 diff --git a/videos/synthetic/tilt_v2/0002_pt1.mp4 b/videos/synthetic/tilt_v2/0002_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..74c7c7a490f962d7eb743a9fdab1e72144bdcc03 --- /dev/null +++ b/videos/synthetic/tilt_v2/0002_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5abecf1cafee346830a8a6a09559b939b71a1e65f2297ed504e6cb7073008887 +size 336471 diff --git a/videos/synthetic/tilt_v2/0003_pt1.mp4 b/videos/synthetic/tilt_v2/0003_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..65e50790788079c44eccfa15232b5b7726969d60 --- /dev/null +++ b/videos/synthetic/tilt_v2/0003_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a919bd251a061067353aa074bfbaa473d51935992ed5beabd3eeecc6015c01e8 +size 319822 diff --git a/videos/synthetic/tilt_v2/0004_pt1.mp4 b/videos/synthetic/tilt_v2/0004_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5908dc0764c7dc56fe697ab7c61e53b271ad74dd --- /dev/null +++ b/videos/synthetic/tilt_v2/0004_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccae56ac181df10821d6101946195ff6ff59f7bd9f8a8ae9571320a63dd818e4 +size 320582 diff --git a/videos/synthetic/tilt_v2/0005_pt1.mp4 b/videos/synthetic/tilt_v2/0005_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3924821ecbeb2b67eddddff6131daf7e100b2da3 --- /dev/null +++ b/videos/synthetic/tilt_v2/0005_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a49fc85226b118655e45cf54a88214d793e64e2bd4c704a60bf7c6ae5776f6 +size 332369 diff --git a/videos/synthetic/tilt_v2/0006_pt1.mp4 b/videos/synthetic/tilt_v2/0006_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..87e24bf1e777c8c2ce9c229f1cca0e3cbe4a676f --- /dev/null +++ b/videos/synthetic/tilt_v2/0006_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1267ee2d7636282ce42df0c8bb952e093d3ff50e99af63cd48cebf6721212655 +size 328941 diff --git a/videos/synthetic/tilt_v2/0007_pt1.mp4 b/videos/synthetic/tilt_v2/0007_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dc877e337397272685e93e773dcc48b6e841242a --- /dev/null +++ b/videos/synthetic/tilt_v2/0007_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:127f5cd335d19d156bb6de0249c59891e908c85d257f98c898c7131069281faf +size 327915 diff --git a/videos/synthetic/tilt_v2/0008_pt1.mp4 b/videos/synthetic/tilt_v2/0008_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8b4256c4dc4301bb1945bf20b225fc6d5014f551 --- /dev/null +++ b/videos/synthetic/tilt_v2/0008_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:514239a351a485a57f4cd39eb5a1aac714a8e7f9de78222c19076ae3de971c79 +size 332225 diff --git a/videos/synthetic/tilt_v2/0009_pt1.mp4 b/videos/synthetic/tilt_v2/0009_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4491d03f9d32b86d007d721fb64043237215fe1d --- /dev/null +++ b/videos/synthetic/tilt_v2/0009_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b0c38f8b800b5d6dc118c2ac14e7b2396b50c735c20d9a1b4beebb4cea3cb4 +size 327419 diff --git a/videos/synthetic/tilt_v2/0010_pt1.mp4 b/videos/synthetic/tilt_v2/0010_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..760fbd052bd517fd1de9fe8b37298ee4e8913077 --- /dev/null +++ b/videos/synthetic/tilt_v2/0010_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1cd6e3fe04a815b3ffdebc98f1cb5a762b5a7d3b2ae5805071cd049e0cae2a +size 328040 diff --git a/videos/synthetic/tilt_v2/0011_pt1.mp4 b/videos/synthetic/tilt_v2/0011_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..45707d2003d812db6926f0d3538decb78936f3d9 --- /dev/null +++ b/videos/synthetic/tilt_v2/0011_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a1131a6c424e40b0a8660d7557d45085b527538cf4dd708084d1d02c56361d +size 336335 diff --git a/videos/synthetic/tilt_v2/0012_pt1.mp4 b/videos/synthetic/tilt_v2/0012_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d8814944f647daadfbe1345e0e40c1d7a862ec32 --- /dev/null +++ b/videos/synthetic/tilt_v2/0012_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d311fc18b32a2adaf197276dbb1330067bddf05a5c0d6028878c354caa4de59 +size 323066 diff --git a/videos/synthetic/tilt_v2/0013_pt1.mp4 b/videos/synthetic/tilt_v2/0013_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c982299fcfa1c4f23cdbf2b1faa6b21c43fdb86c --- /dev/null +++ b/videos/synthetic/tilt_v2/0013_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d1fd50d7f574c8fa5cacbeb1934ef69ce7dff82f924acce3bc688bc0762c4f +size 325956 diff --git a/videos/synthetic/tilt_v2/0014_pt1.mp4 b/videos/synthetic/tilt_v2/0014_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b08d6ffe0e430597a02d3ebfced7e1826e7b88b6 --- /dev/null +++ b/videos/synthetic/tilt_v2/0014_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d4f6a4b24f1a0d92014f4c7039eccaa08d9c9291f882f505c1657ab0085a73 +size 318106 diff --git a/videos/synthetic/tilt_v2/0015_pt1.mp4 b/videos/synthetic/tilt_v2/0015_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b9edca42ce6fa1284096164a3ad2f7e930175190 --- /dev/null +++ b/videos/synthetic/tilt_v2/0015_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8f380c54c999fb01349bf6de30a878cdbce5cc834f771a6621f2daa029ed8f +size 336230 diff --git a/videos/synthetic/tilt_v2/0016_pt1.mp4 b/videos/synthetic/tilt_v2/0016_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8eec4e8046ffaeaf31753d736ec59fac4daf3f5e --- /dev/null +++ b/videos/synthetic/tilt_v2/0016_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61423833b5aa54e7285d972af6902d494a4b5287f13fd3542e6fed00b2ae334c +size 331984 diff --git a/videos/synthetic/tilt_v2/0017_pt1.mp4 b/videos/synthetic/tilt_v2/0017_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..924eeef6a35f85f07c35b9cfeb96058e58df710f --- /dev/null +++ b/videos/synthetic/tilt_v2/0017_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cd30c78bdebbce75c405b09bcc00d8b6b7aab9d8daf805d7636846469d88bb +size 333644 diff --git a/videos/synthetic/tilt_v2/0018_pt1.mp4 b/videos/synthetic/tilt_v2/0018_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f100fdf6e4e2b5abc9cc44d836a91dcc58cb8744 --- /dev/null +++ b/videos/synthetic/tilt_v2/0018_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253359af48715b873209fbd66df7d3cb5b18e7634ab5b2adc9e958850658d6a6 +size 332656 diff --git a/videos/synthetic/tilt_v2/0019_pt1.mp4 b/videos/synthetic/tilt_v2/0019_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e652f128e675d70e70b92d4721b12e7a5b346b6e --- /dev/null +++ b/videos/synthetic/tilt_v2/0019_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dae988671df87a709cc49540eb73168fe6729859249036b61ad123e912397b0 +size 324197 diff --git a/videos/synthetic/tilt_v2/0020_pt1.mp4 b/videos/synthetic/tilt_v2/0020_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9d34fb5a6dfddb6c38f4801cf58176e84305d279 --- /dev/null +++ b/videos/synthetic/tilt_v2/0020_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d5b010091393f40984170a15c48c01fc5a6d602740f27236bf423906a9c944 +size 325912 diff --git a/videos/synthetic/tilt_v2/0021_pt1.mp4 b/videos/synthetic/tilt_v2/0021_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6c26b859de0adfb957e04e172638a0ec33b15de1 --- /dev/null +++ b/videos/synthetic/tilt_v2/0021_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533bfff4dcafbd1cb86eb90a7bbafa2f8d14a16c11149c5af542c3c0ecd4663a +size 320166 diff --git a/videos/synthetic/tilt_v2/0022_pt1.mp4 b/videos/synthetic/tilt_v2/0022_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d77ed82ca1f2713a3c940b18c305eed7a8d31019 --- /dev/null +++ b/videos/synthetic/tilt_v2/0022_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19a528aa043c2a3eb3ade1d9792b7c948dd5d41c63a0a28234bf9432458f2cb +size 331797 diff --git a/videos/synthetic/tilt_v2/0023_pt1.mp4 b/videos/synthetic/tilt_v2/0023_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b71d456ba38ad7d7116613d73bac786f36995647 --- /dev/null +++ b/videos/synthetic/tilt_v2/0023_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3053506f67648e76b15dfc42994a27dcaeb2999ea8925c64331fae0e94079585 +size 323166 diff --git a/videos/synthetic/tilt_v2/0024_pt1.mp4 b/videos/synthetic/tilt_v2/0024_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..331cad11698fa6b4e37478aa230f81ddd23699e0 --- /dev/null +++ b/videos/synthetic/tilt_v2/0024_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ee8d8a5a5439deed134a271b7e64020577053e7b78cead7b2523d98dfb9006 +size 332854 diff --git a/videos/synthetic/tilt_v2/0025_pt1.mp4 b/videos/synthetic/tilt_v2/0025_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..71855881fbe7a0164a363de7e062d9d610164d2c --- /dev/null +++ b/videos/synthetic/tilt_v2/0025_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52350307f2ed5aa9a14cede6e226c516bbb5a654d80a7043dddd4cc7d04e624f +size 323015 diff --git a/videos/synthetic/tilt_v2/0026_pt1.mp4 b/videos/synthetic/tilt_v2/0026_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a28c7c33e61158691e6fb6a41be327fda2a948c0 --- /dev/null +++ b/videos/synthetic/tilt_v2/0026_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbdd2ba6f8ced107cb0bd1a1001486a77dfe3ae1c4fec1cfded61565faf3610 +size 325012 diff --git a/videos/synthetic/tilt_v2/0027_pt1.mp4 b/videos/synthetic/tilt_v2/0027_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c6265fd09213708e083086812697f9230eb3a504 --- /dev/null +++ b/videos/synthetic/tilt_v2/0027_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96851474f54a34f2755388efa11e17cc60ba354c61b27c1f50615550b26ef0dd +size 336448 diff --git a/videos/synthetic/tilt_v2/0028_pt1.mp4 b/videos/synthetic/tilt_v2/0028_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1f6434244b726ba1af8c5cefa634cd9dbc3eeb3f --- /dev/null +++ b/videos/synthetic/tilt_v2/0028_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00553cf67413afc3593c6573ff45557c9b5572eed489150644e271f80b9700bf +size 324917 diff --git a/videos/synthetic/tilt_v2/0029_pt1.mp4 b/videos/synthetic/tilt_v2/0029_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..da85ad7828c12a1fc28b4beffd58e0ee959f8f14 --- /dev/null +++ b/videos/synthetic/tilt_v2/0029_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a56f54909dcf2015c975a7fca3bc853c7213ac5e989c714c9fb55e6e1cad22 +size 322832 diff --git a/videos/synthetic/tilt_v2/0030_pt1.mp4 b/videos/synthetic/tilt_v2/0030_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8c2b5b5fed6804a9b1f1ea81846d51dafc2cfcfb --- /dev/null +++ b/videos/synthetic/tilt_v2/0030_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49f17261c273ce2f0c413fe6847aa0451d039107e1fecb3821781bed2de919e +size 331933 diff --git a/videos/synthetic/tilt_v2/0031_pt1.mp4 b/videos/synthetic/tilt_v2/0031_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..347b4b5e2ec9ed252be7ce09af34222279f392c5 --- /dev/null +++ b/videos/synthetic/tilt_v2/0031_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e351254407b853b84b9439cd737e5eda80ebbd7fc43e1de04d7ededef3720311 +size 323475 diff --git a/videos/synthetic/tilt_v2/0032_pt1.mp4 b/videos/synthetic/tilt_v2/0032_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eb6a996c50d0611a6ac29241389e7539aa9c7b34 --- /dev/null +++ b/videos/synthetic/tilt_v2/0032_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c640a277e6dc01b61c329734d73045a7d9406fc99dd3782114916e9a9d47e4 +size 330451 diff --git a/videos/synthetic/tilt_v2/0033_pt1.mp4 b/videos/synthetic/tilt_v2/0033_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..606fde3e607f1bdba9006d6003e2da883c65be5b --- /dev/null +++ b/videos/synthetic/tilt_v2/0033_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59d7e9d674afba016cab9c2d11c2dbce1de2cf9cf189c8b4602770e934016fd +size 333095 diff --git a/videos/synthetic/tilt_v2/0034_pt1.mp4 b/videos/synthetic/tilt_v2/0034_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a08dd56cc64da4fa2dc4f95f7216da3a39a3ea3a --- /dev/null +++ b/videos/synthetic/tilt_v2/0034_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d3d89606122be18a4182cad857d52a5c24840085d38ade9bb9b14a6e574b1be +size 323449 diff --git a/videos/synthetic/tilt_v2/0035_pt1.mp4 b/videos/synthetic/tilt_v2/0035_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..64955fd773a1e41e348e9d1a1b207e7844ed961c --- /dev/null +++ b/videos/synthetic/tilt_v2/0035_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7828b5226cc20609fa0f608a5e3e9c4c4730273e8fef3f77942f8d753b976390 +size 329058 diff --git a/videos/synthetic/tilt_v2/0036_pt1.mp4 b/videos/synthetic/tilt_v2/0036_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bb878ce24c41ef443eb804b8e71ceceec3f9f5b1 --- /dev/null +++ b/videos/synthetic/tilt_v2/0036_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211bcf0168f3478d012226a138c3c41faca1c538f266afe5ae2f30e62a2ebc45 +size 330298 diff --git a/videos/synthetic/tilt_v2/0037_pt1.mp4 b/videos/synthetic/tilt_v2/0037_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5358be8698396be3a9cf838a280cb68ba857382d --- /dev/null +++ b/videos/synthetic/tilt_v2/0037_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd3a671839b88f1c7bd12f93b68d3a2d3306294628155198bce6e23aebd9e8d +size 325371 diff --git a/videos/synthetic/tilt_v2/0038_pt1.mp4 b/videos/synthetic/tilt_v2/0038_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8d2e2b0f16d7dc82a47b70ee8e5c221d9c488d05 --- /dev/null +++ b/videos/synthetic/tilt_v2/0038_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fddf4a5112486e4a0c5c9a0aba635c2ae91d3dede2df894f0532e8e08517b5b3 +size 331762 diff --git a/videos/synthetic/tilt_v2/0039_pt1.mp4 b/videos/synthetic/tilt_v2/0039_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ca795fff852a5e94fdcf3d214a93271ee1d51762 --- /dev/null +++ b/videos/synthetic/tilt_v2/0039_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e920d915e7d37621a7c139771902a49532ee5799afa077f3c7b6327793439f69 +size 334681 diff --git a/videos/synthetic/tilt_v2/0040_pt1.mp4 b/videos/synthetic/tilt_v2/0040_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..deefb69c23c372b0f9c56afbba3eccfa14493d5b --- /dev/null +++ b/videos/synthetic/tilt_v2/0040_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29c46c6f69cbfe36b1b81cb94cef6407fac8aa33b0b2ed4dc81371bfd0dfabf +size 321037 diff --git a/videos/synthetic/tilt_v2/0041_pt1.mp4 b/videos/synthetic/tilt_v2/0041_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..69a0a6b096921a342e4e15168021c4ec40c1aa9b --- /dev/null +++ b/videos/synthetic/tilt_v2/0041_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01083fdb07468b5b5f497e3ef8206c942fc282598f931fd3d468c6afb9f057f +size 333518 diff --git a/videos/synthetic/tilt_v2/0042_pt1.mp4 b/videos/synthetic/tilt_v2/0042_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f6b247ae9ef6a660790cb896c3446ae0c22509ef --- /dev/null +++ b/videos/synthetic/tilt_v2/0042_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e0205efb4cd170af102123ed4a44d0ba1d82ff2f3dd1b8fe122fe04ab62b45 +size 326047 diff --git a/videos/synthetic/tilt_v2/0043_pt1.mp4 b/videos/synthetic/tilt_v2/0043_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..defaf4bdab5d9967913134b4a45d5b62d786490d --- /dev/null +++ b/videos/synthetic/tilt_v2/0043_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e08949220ae642893d60455820fe796abb45b3dd6599de13452b40d628737f +size 328242 diff --git a/videos/synthetic/tilt_v2/0044_pt1.mp4 b/videos/synthetic/tilt_v2/0044_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8d3cb8ecd74f0d9d82b96755eb7d0d0e61fd90ab --- /dev/null +++ b/videos/synthetic/tilt_v2/0044_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc495639701c63ba758364968fbd818e2561f862b810bcc0dec2aee591bb9d1b +size 324992 diff --git a/videos/synthetic/tilt_v2/0045_pt1.mp4 b/videos/synthetic/tilt_v2/0045_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8d1d0676ed48391837a5158bbead42a9bbe9c4a5 --- /dev/null +++ b/videos/synthetic/tilt_v2/0045_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4279b99beb7b2a500aaef057f2482ca120d38448bac0cb6341a659e778525243 +size 323499 diff --git a/videos/synthetic/tilt_v2/0046_pt1.mp4 b/videos/synthetic/tilt_v2/0046_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f28726eea0061d4745974ba64afd1cbe55b4b7c9 --- /dev/null +++ b/videos/synthetic/tilt_v2/0046_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1ef6e0be129e384471d0e9a91d2e66ddb5363122da97a569ad9b0cb4acb3fc +size 324841 diff --git a/videos/synthetic/tilt_v2/0047_pt1.mp4 b/videos/synthetic/tilt_v2/0047_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0ffb447ae12632485fb842cb1174517ed5167ba7 --- /dev/null +++ b/videos/synthetic/tilt_v2/0047_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c4da5c8540e9f37ded71a579581f493434860d6479d375197fc48713e326f7a +size 326362 diff --git a/videos/synthetic/tilt_v2/0048_pt1.mp4 b/videos/synthetic/tilt_v2/0048_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7b402d0680e156a6c6851a54d25456caad48995b --- /dev/null +++ b/videos/synthetic/tilt_v2/0048_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa05eaab7b0c5b233ccfe1ca057c04ee8630cd39db1e6a7140aa6c21199e635 +size 329045 diff --git a/videos/synthetic/tilt_v2/0049_pt1.mp4 b/videos/synthetic/tilt_v2/0049_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a021e4b8f072440f8f2430a72ac530a0ce81b96c --- /dev/null +++ b/videos/synthetic/tilt_v2/0049_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fcaf543a23e5148dd5e5cb33fcd985d7fc53fb32bb82929f0ecbb4560814dff +size 329682 diff --git a/videos/synthetic/tilt_v2/0050_pt1.mp4 b/videos/synthetic/tilt_v2/0050_pt1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8537f602f0de8ba9814e8eacf95c1a2fac8a2a4a --- /dev/null +++ b/videos/synthetic/tilt_v2/0050_pt1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494e6166ccc80029102500dba563f580fcd9769aba8fb540e598b87be58acd8b +size 327010 diff --git a/vstat_qa_clean.json b/vstat_qa_clean.json new file mode 100644 index 0000000000000000000000000000000000000000..c8919bf5fa316135c44ea13db6f2b4cb0f1df651 --- /dev/null +++ b/vstat_qa_clean.json @@ -0,0 +1,33792 @@ +{ + "dataset_name": "VSTAT", + "version": "1.0", + "video_root": "./videos", + "data": { + "basketball": [ + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/basketball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:00:00", + "end_time": "00:01:02", + "start_sec": 0, + "end_sec": 62, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q2", + "video_path": "videos/youtube/basketball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:00:00", + "end_time": "00:01:02", + "start_sec": 0, + "end_sec": 62, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q3", + "video_path": "videos/youtube/basketball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:00:00", + "end_time": "00:01:02", + "start_sec": 0, + "end_sec": 62, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt10_q0", + "video_path": "videos/youtube/basketball/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:09:47", + "end_time": "00:10:42", + "start_sec": 587, + "end_sec": 642, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt10_q1", + "video_path": "videos/youtube/basketball/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:09:47", + "end_time": "00:10:42", + "start_sec": 587, + "end_sec": 642, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt10_q2", + "video_path": "videos/youtube/basketball/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:09:47", + "end_time": "00:10:42", + "start_sec": 587, + "end_sec": 642, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q0", + "video_path": "videos/youtube/basketball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:01:17", + "end_time": "00:02:11", + "start_sec": 77, + "end_sec": 131, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q1", + "video_path": "videos/youtube/basketball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:01:17", + "end_time": "00:02:11", + "start_sec": 77, + "end_sec": 131, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q2", + "video_path": "videos/youtube/basketball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:01:17", + "end_time": "00:02:11", + "start_sec": 77, + "end_sec": 131, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q0", + "video_path": "videos/youtube/basketball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:02:20", + "end_time": "00:03:24", + "start_sec": 140, + "end_sec": 204, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q1", + "video_path": "videos/youtube/basketball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:02:20", + "end_time": "00:03:24", + "start_sec": 140, + "end_sec": 204, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q2", + "video_path": "videos/youtube/basketball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:02:20", + "end_time": "00:03:24", + "start_sec": 140, + "end_sec": 204, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q3", + "video_path": "videos/youtube/basketball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:02:20", + "end_time": "00:03:24", + "start_sec": 140, + "end_sec": 204, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q0", + "video_path": "videos/youtube/basketball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many times is the ball served in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:03:30", + "end_time": "00:04:30", + "start_sec": 210, + "end_sec": 270, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q1", + "video_path": "videos/youtube/basketball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:03:30", + "end_time": "00:04:30", + "start_sec": 210, + "end_sec": 270, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q2", + "video_path": "videos/youtube/basketball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:03:30", + "end_time": "00:04:30", + "start_sec": 210, + "end_sec": 270, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q3", + "video_path": "videos/youtube/basketball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:03:30", + "end_time": "00:04:30", + "start_sec": 210, + "end_sec": 270, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q0", + "video_path": "videos/youtube/basketball/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage in the video? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 20, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:04:40", + "end_time": "00:05:40", + "start_sec": 280, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q1", + "video_path": "videos/youtube/basketball/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:04:40", + "end_time": "00:05:40", + "start_sec": 280, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q2", + "video_path": "videos/youtube/basketball/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:04:40", + "end_time": "00:05:40", + "start_sec": 280, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q3", + "video_path": "videos/youtube/basketball/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:04:40", + "end_time": "00:05:40", + "start_sec": 280, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q0", + "video_path": "videos/youtube/basketball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage in the video? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 25, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:05:50", + "end_time": "00:06:40", + "start_sec": 350, + "end_sec": 400, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q1", + "video_path": "videos/youtube/basketball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:05:50", + "end_time": "00:06:40", + "start_sec": 350, + "end_sec": 400, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q2", + "video_path": "videos/youtube/basketball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:05:50", + "end_time": "00:06:40", + "start_sec": 350, + "end_sec": 400, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q3", + "video_path": "videos/youtube/basketball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:05:50", + "end_time": "00:06:40", + "start_sec": 350, + "end_sec": 400, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q0", + "video_path": "videos/youtube/basketball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many passes are made by the end of the video?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:06:42", + "end_time": "00:07:30", + "start_sec": 402, + "end_sec": 450, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q1", + "video_path": "videos/youtube/basketball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:06:42", + "end_time": "00:07:30", + "start_sec": 402, + "end_sec": 450, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q2", + "video_path": "videos/youtube/basketball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:06:42", + "end_time": "00:07:30", + "start_sec": 402, + "end_sec": 450, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q3", + "video_path": "videos/youtube/basketball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:06:42", + "end_time": "00:07:30", + "start_sec": 402, + "end_sec": 450, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q0", + "video_path": "videos/youtube/basketball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many successful passes are made by the end of the video?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:07:43", + "end_time": "00:08:32", + "start_sec": 463, + "end_sec": 512, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q1", + "video_path": "videos/youtube/basketball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:07:43", + "end_time": "00:08:32", + "start_sec": 463, + "end_sec": 512, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q2", + "video_path": "videos/youtube/basketball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:07:43", + "end_time": "00:08:32", + "start_sec": 463, + "end_sec": 512, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q3", + "video_path": "videos/youtube/basketball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:07:43", + "end_time": "00:08:32", + "start_sec": 463, + "end_sec": 512, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9_q0", + "video_path": "videos/youtube/basketball/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goals are scored in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:08:38", + "end_time": "00:09:32", + "start_sec": 518, + "end_sec": 572, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9_q1", + "video_path": "videos/youtube/basketball/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:08:38", + "end_time": "00:09:32", + "start_sec": 518, + "end_sec": 572, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9_q2", + "video_path": "videos/youtube/basketball/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:08:38", + "end_time": "00:09:32", + "start_sec": 518, + "end_sec": 572, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9_q3", + "video_path": "videos/youtube/basketball/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possession of the ball in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "start_time": "00:08:38", + "end_time": "00:09:32", + "start_sec": 518, + "end_sec": 572, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/basketball/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the field goal percentage of the player with black t-shirt? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:09:51", + "end_time": "00:10:56", + "start_sec": 591, + "end_sec": 656, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10", + "video_path": "videos/youtube/basketball/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the field goal percentage of the player with the white tank top? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:21:20", + "end_time": "00:22:15", + "start_sec": 1280, + "end_sec": 1335, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/basketball/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the field goal percentage of the player with white tank top? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 75, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:10:56", + "end_time": "00:11:41", + "start_sec": 656, + "end_sec": 701, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3", + "video_path": "videos/youtube/basketball/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many back-and-forth exchanges take place during the 1-on-1 game shown?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:11:42", + "end_time": "00:12:40", + "start_sec": 702, + "end_sec": 760, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4", + "video_path": "videos/youtube/basketball/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many three-pointers are made in the video by all players?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:13:38", + "end_time": "00:14:42", + "start_sec": 818, + "end_sec": 882, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5", + "video_path": "videos/youtube/basketball/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many three-pointers are made by the player with the light-colored shirt?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:14:42", + "end_time": "00:15:30", + "start_sec": 882, + "end_sec": 930, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6", + "video_path": "videos/youtube/basketball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many successful defensive plays are made in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:16:13", + "end_time": "00:17:17", + "start_sec": 973, + "end_sec": 1037, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7", + "video_path": "videos/youtube/basketball/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goals are scored by the player with the light-colored shirt?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:17:30", + "end_time": "00:18:25", + "start_sec": 1050, + "end_sec": 1105, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8", + "video_path": "videos/youtube/basketball/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage of both players in the video? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 60, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:19:31", + "end_time": "00:20:23", + "start_sec": 1171, + "end_sec": 1223, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9", + "video_path": "videos/youtube/basketball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the ratio of three-pointers made to all goals scored by the player with the white tank top? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "start_time": "00:20:23", + "end_time": "00:21:15", + "start_sec": 1223, + "end_sec": 1275, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q2", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q3", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 60, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q4", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 60, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q5", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q6", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q7", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q8", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q9", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of goal attempts by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q10", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q11", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q12", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by a single player? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q13", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by a single player? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q14", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q15", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q16", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q17", + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q0", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q1", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q2", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q3", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 40, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q4", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q5", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q6", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q7", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q8", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q9", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q10", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q11", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10_q12", + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q0", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q1", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q2", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q3", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 20, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q4", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q5", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q6", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q7", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 25, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q8", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q9", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of goal attempts by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q10", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q11", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by a single player?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q12", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by a single player? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q13", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by a single player? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q14", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q15", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q16", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q17", + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q0", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q1", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q2", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q3", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q4", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q5", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q6", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q7", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q8", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of goal attempts by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q9", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q10", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by a single player?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q11", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by a single player? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q12", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by a single player? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q13", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q14", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q15", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q16", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q17", + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q0", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q1", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q2", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q3", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q4", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q5", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q6", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q7", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q8", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q9", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q10", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q11", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q12", + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q0", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q1", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q2", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q3", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q4", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q5", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q6", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q7", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q8", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q9", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q10", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q11", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q12", + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q0", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q1", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q2", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 29, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q3", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q4", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q5", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q6", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q7", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q8", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q9", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q10", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q11", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q12", + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q0", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q1", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q2", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q3", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q4", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q5", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q6", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q7", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q8", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q9", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q10", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q11", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7_q12", + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q0", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q1", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q2", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 43, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q3", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q4", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q5", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q6", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q7", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q8", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q9", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q10", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q11", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt8_q12", + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q0", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many goal attempts are made in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q1", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many shots are made in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q2", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many 3-pointers are made in total?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q3", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q4", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the total 3-pointer field goal percentage? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q5", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of shots made by one team?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q6", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest number of 3-pointers made by one team?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q7", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q8", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the largest 3-pointer field goal percentage by one team? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q9", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "How many different players make a shot in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q10", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that make a shot attempt in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q11", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that attempt a pass in the video? Excluding the ball checking.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt9_q12", + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "basketball", + "question": "What's the number of **different** players that get possesion of the ball in the video?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "choices": [], + "answer_index": null + } + ], + "block_counting": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/block_counting/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/block_counting/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/block_counting/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/block_counting/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/block_counting/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/block_counting/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 15, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/block_counting/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/block_counting/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/block_counting/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/block_counting/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/block_counting/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/block_counting/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/block_counting/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/block_counting/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/block_counting/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/block_counting/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/block_counting/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/block_counting/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/block_counting/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/block_counting/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/block_counting/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/block_counting/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/block_counting/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/block_counting/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/block_counting/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/block_counting/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/block_counting/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/block_counting/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/block_counting/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/block_counting/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/block_counting/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/block_counting/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/block_counting/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/block_counting/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/block_counting/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/block_counting/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/block_counting/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/block_counting/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/block_counting/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/block_counting/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/block_counting/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/block_counting/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/block_counting/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/block_counting/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/block_counting/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/block_counting/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/block_counting/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/block_counting/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/block_counting/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/block_counting/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "block_counting", + "question": "The video first shows an initial central block structure. Then the camera keeps moving while a robot hand makes several add/remove attempts. After all actions finish, how many blocks remain in the central structure?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + } + ], + "book": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/book/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/book/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": -2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/book/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/book/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": -5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/book/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/book/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/book/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/book/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": -1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/book/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/book/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "book", + "question": "From the reader's perspective, how many pages were turned? Answer with a positive number if the page number increased (turned forward), a negative number if it decreased (turned backward), or 0 if it remained the same.", + "answer_type": "numeric", + "answer": -1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + } + ], + "bouldering": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/bouldering/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sN8Yzcd7NJs", + "youtube_id": "sN8Yzcd7NJs", + "youtube_title": "Kilter Board V10 “monkey corporation” @ 45°", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/bouldering/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=sN8Yzcd7NJs", + "youtube_id": "sN8Yzcd7NJs", + "youtube_title": "Kilter Board V10 “monkey corporation” @ 45°", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/bouldering/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=wn2okX1bTcQ", + "youtube_id": "wn2okX1bTcQ", + "youtube_title": "\"Master Chief\" @ 40° on the Kilter Board Original.", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/bouldering/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=wn2okX1bTcQ", + "youtube_id": "wn2okX1bTcQ", + "youtube_title": "\"Master Chief\" @ 40° on the Kilter Board Original.", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/bouldering/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=B5cNn-IsjHk", + "youtube_id": "B5cNn-IsjHk", + "youtube_title": "Kilter Board Training || \"proj braj\" V7/7a+ @ 40degrees", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/bouldering/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=B5cNn-IsjHk", + "youtube_id": "B5cNn-IsjHk", + "youtube_title": "Kilter Board Training || \"proj braj\" V7/7a+ @ 40degrees", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q0", + "video_path": "videos/youtube/bouldering/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=mn9LFwR9SKw", + "youtube_id": "mn9LFwR9SKw", + "youtube_title": "Kilter Board V4 \"Mike's Hard Lemonade\" @ 40° #kilterboard #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q1", + "video_path": "videos/youtube/bouldering/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=mn9LFwR9SKw", + "youtube_id": "mn9LFwR9SKw", + "youtube_title": "Kilter Board V4 \"Mike's Hard Lemonade\" @ 40° #kilterboard #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q0", + "video_path": "videos/youtube/bouldering/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 15, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=CEIwzR7KEns", + "youtube_id": "CEIwzR7KEns", + "youtube_title": "Kilter Board V8 “Great good best” @ 40 degrees #kilterboard #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q1", + "video_path": "videos/youtube/bouldering/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=CEIwzR7KEns", + "youtube_id": "CEIwzR7KEns", + "youtube_title": "Kilter Board V8 “Great good best” @ 40 degrees #kilterboard #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1_q0", + "video_path": "videos/youtube/bouldering/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 17, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=8HBe71_M2bs", + "youtube_id": "8HBe71_M2bs", + "youtube_title": "Kilterboard V5 \"Priest Drawn\" @ 40° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1_q1", + "video_path": "videos/youtube/bouldering/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=8HBe71_M2bs", + "youtube_id": "8HBe71_M2bs", + "youtube_title": "Kilterboard V5 \"Priest Drawn\" @ 40° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1_q0", + "video_path": "videos/youtube/bouldering/0007_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=k5NTPom2SFs", + "youtube_id": "k5NTPom2SFs", + "youtube_title": "Wagon at home (8a+/v12), Kilter Board at 50° #bouldering #climbing #shorts", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1_q1", + "video_path": "videos/youtube/bouldering/0007_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=k5NTPom2SFs", + "youtube_id": "k5NTPom2SFs", + "youtube_title": "Wagon at home (8a+/v12), Kilter Board at 50° #bouldering #climbing #shorts", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1_q0", + "video_path": "videos/youtube/bouldering/0008_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 21, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=2RZHzZEbLkU", + "youtube_id": "2RZHzZEbLkU", + "youtube_title": "7C/V9 \"Sequences\" @ 40° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1_q1", + "video_path": "videos/youtube/bouldering/0008_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=2RZHzZEbLkU", + "youtube_id": "2RZHzZEbLkU", + "youtube_title": "7C/V9 \"Sequences\" @ 40° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1_q0", + "video_path": "videos/youtube/bouldering/0009_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Uo_AwsDgfVo", + "youtube_id": "Uo_AwsDgfVo", + "youtube_title": "Legen-Darry 8A @ 50° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1_q1", + "video_path": "videos/youtube/bouldering/0009_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=Uo_AwsDgfVo", + "youtube_id": "Uo_AwsDgfVo", + "youtube_title": "Legen-Darry 8A @ 50° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1_q0", + "video_path": "videos/youtube/bouldering/0010_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "How many times does the climber's hands or feet touch the lit holds?", + "answer_type": "numeric", + "answer": 18, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=T5zAC8Mxoe8", + "youtube_id": "T5zAC8Mxoe8", + "youtube_title": "\"swooped\" @ 40° on the Kilter Board Original. @auroraclimbing #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1_q1", + "video_path": "videos/youtube/bouldering/0010_pt1.mp4", + "video_source": "youtube", + "source_task": "bouldering", + "question": "What's the maximum number of touches the climber's hands or feet make to a single lit holds?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=T5zAC8Mxoe8", + "youtube_id": "T5zAC8Mxoe8", + "youtube_title": "\"swooped\" @ 40° on the Kilter Board Original. @auroraclimbing #kilterboard #climbing #bouldering", + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + } + ], + "boxing": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/boxing/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with red and white gloves throw?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "start_time": "00:01:08", + "end_time": "00:01:20", + "start_sec": 68, + "end_sec": 80, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/boxing/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with organge shorts throw?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "start_time": "00:01:57.967", + "end_time": "00:02:09.033", + "start_sec": 117.967, + "end_sec": 129.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3", + "video_path": "videos/youtube/boxing/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with red and white gloves throw?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "start_time": "00:02:38.967", + "end_time": "00:02:56.033", + "start_sec": 158.967, + "end_sec": 176.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q0", + "video_path": "videos/youtube/boxing/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with organge shorts throw?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "start_time": "00:03:26", + "end_time": "00:03:36", + "start_sec": 206, + "end_sec": 216, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q1", + "video_path": "videos/youtube/boxing/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "What is the order of the punches thrown\n\n(A) [boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with pink shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes]\n(B) [boxer with pink shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes]\n(C) [boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with pink shoes]\n(D) [boxer with blue shoes, boxer with blue shoes, boxer with pink shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes]", + "answer_type": "mcq", + "choices": [ + "[boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with pink shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes]", + "[boxer with pink shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes]", + "[boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with pink shoes]", + "[boxer with blue shoes, boxer with blue shoes, boxer with pink shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes, boxer with blue shoes]" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "start_time": "00:03:26", + "end_time": "00:03:36", + "start_sec": 206, + "end_sec": 216 + }, + { + "video_id": "0001_pt5", + "video_path": "videos/youtube/boxing/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with red and white gloves throw?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "start_time": "00:04:13.967", + "end_time": "00:04:30.033", + "start_sec": 253.967, + "end_sec": 270.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/boxing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with black pants throw?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:01:06", + "end_time": "00:01:21", + "start_sec": 66, + "end_sec": 81, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/boxing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "What is the order of the jabs (left hand punch) (the jab does not have to hit the opponent)\n\n(A) [boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]\n(B) [boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]\n(C) [boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]\n(D) [boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]", + "answer_type": "mcq", + "choices": [ + "[boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]", + "[boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]", + "[boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]", + "[boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with red shorts, boxer with red shorts, boxer with red shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:01:06", + "end_time": "00:01:21", + "start_sec": 66, + "end_sec": 81 + }, + { + "video_id": "0002_pt2_q0", + "video_path": "videos/youtube/boxing/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with black pants throw?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:03:17", + "end_time": "00:03:32", + "start_sec": 197, + "end_sec": 212, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q1", + "video_path": "videos/youtube/boxing/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "what is the order of the side of punch thrown by the boxer with black shorts\n\n(A) [left, left, left, left, left, left, left, left, right]\n(B) [left, left, right, left, left, left, left, left, left]\n(C) [right, left, left, left, left, left, left, left, left]\n(D) [left, left, left, left, left, left, left, right, left]", + "answer_type": "mcq", + "choices": [ + "[left, left, left, left, left, left, left, left, right]", + "[left, left, right, left, left, left, left, left, left]", + "[right, left, left, left, left, left, left, left, left]", + "[left, left, left, left, left, left, left, right, left]" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:03:17", + "end_time": "00:03:32", + "start_sec": 197, + "end_sec": 212 + }, + { + "video_id": "0002_pt3_q0", + "video_path": "videos/youtube/boxing/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with black pants throw?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:08:25", + "end_time": "00:08:41", + "start_sec": 505, + "end_sec": 521, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q1", + "video_path": "videos/youtube/boxing/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "what is the order of the side of punch thrown by the boxer with black shorts (does not have to hit/touch the opponent, half way of a punch also counts as a punch)\n\n(A) [right, left, left, left, left, left, left, left, left, left, left, left, left, right]\n(B) [left, right, left, left, left, left, left, left, left, left, left, left, left, right]\n(C) [left, left, left, left, left, left, left, left, left, left, left, left, right, right]\n(D) [left, left, left, left, left, left, left, left, right, left, left, left, left, right]", + "answer_type": "mcq", + "choices": [ + "[right, left, left, left, left, left, left, left, left, left, left, left, left, right]", + "[left, right, left, left, left, left, left, left, left, left, left, left, left, right]", + "[left, left, left, left, left, left, left, left, left, left, left, left, right, right]", + "[left, left, left, left, left, left, left, left, right, left, left, left, left, right]" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:08:25", + "end_time": "00:08:41", + "start_sec": 505, + "end_sec": 521 + }, + { + "video_id": "0002_pt3_q2", + "video_path": "videos/youtube/boxing/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "what is the order of the side of punch thrown by the boxer with black shorts that hit/touched the opponent\n\n(A) [right, left, left, left, left, left, left, left, right]\n(B) [left, left, left, right, left, left, left, left, right]\n(C) [left, left, left, left, right, left, left, left, right]\n(D) [left, left, left, left, left, left, left, right, right]", + "answer_type": "mcq", + "choices": [ + "[right, left, left, left, left, left, left, left, right]", + "[left, left, left, right, left, left, left, left, right]", + "[left, left, left, left, right, left, left, left, right]", + "[left, left, left, left, left, left, left, right, right]" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:08:25", + "end_time": "00:08:41", + "start_sec": 505, + "end_sec": 521 + }, + { + "video_id": "0002_pt4_q0", + "video_path": "videos/youtube/boxing/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with black pants throw?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:09:49", + "end_time": "00:09:58", + "start_sec": 589, + "end_sec": 598, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q1", + "video_path": "videos/youtube/boxing/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "Identify where the boxer in the black shorts is aiming their punches\n\n(A) [glove of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts, glove of the boxer in red shorts]\n(B) [glove of the boxer in red shorts, glove of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts]\n(C) [glove of the boxer in red shorts, head of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts]\n(D) [head of the boxer in red shorts, head of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts]", + "answer_type": "mcq", + "choices": [ + "[glove of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts, glove of the boxer in red shorts]", + "[glove of the boxer in red shorts, glove of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts]", + "[glove of the boxer in red shorts, head of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts]", + "[head of the boxer in red shorts, head of the boxer in red shorts, head of the boxer in red shorts, glove of the boxer in red shorts]" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "start_time": "00:09:49", + "end_time": "00:09:58", + "start_sec": 589, + "end_sec": 598 + }, + { + "video_id": "0003_pt1", + "video_path": "videos/youtube/boxing/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with red gloves throw?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "start_time": "00:18:24", + "end_time": "00:18:43", + "start_sec": 1104, + "end_sec": 1123, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2", + "video_path": "videos/youtube/boxing/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with red gloves throw?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "start_time": "00:18:59", + "end_time": "00:19:14", + "start_sec": 1139, + "end_sec": 1154, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q0", + "video_path": "videos/youtube/boxing/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with red gloves throw?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "start_time": "00:30:09", + "end_time": "00:30:21", + "start_sec": 1809, + "end_sec": 1821, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q1", + "video_path": "videos/youtube/boxing/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "What is the order of the punches thrown\n\n(A) [boxer with black shorts, boxer with green shorts, boxer with black shorts, boxer with green shorts, boxer with green shorts]\n(B) [boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with green shorts, boxer with green shorts]\n(C) [boxer with green shorts, boxer with green shorts, boxer with black shorts, boxer with green shorts, boxer with black shorts]\n(D) [boxer with green shorts, boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with green shorts]", + "answer_type": "mcq", + "choices": [ + "[boxer with black shorts, boxer with green shorts, boxer with black shorts, boxer with green shorts, boxer with green shorts]", + "[boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with green shorts, boxer with green shorts]", + "[boxer with green shorts, boxer with green shorts, boxer with black shorts, boxer with green shorts, boxer with black shorts]", + "[boxer with green shorts, boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with green shorts]" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "start_time": "00:30:09", + "end_time": "00:30:21", + "start_sec": 1809, + "end_sec": 1821 + }, + { + "video_id": "0003_pt4_q0", + "video_path": "videos/youtube/boxing/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with red gloves throw?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "start_time": "00:38:35", + "end_time": "00:38:50", + "start_sec": 2315, + "end_sec": 2330, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q1", + "video_path": "videos/youtube/boxing/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "What is the order of the left punches thrown\n\n(A) [boxer with black shorts, boxer with black shorts, boxer with green shorts, boxer with black shorts, boxer with black shorts]\n(B) [boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with green shorts]\n(C) [boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]\n(D) [boxer with black shorts, boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]", + "answer_type": "mcq", + "choices": [ + "[boxer with black shorts, boxer with black shorts, boxer with green shorts, boxer with black shorts, boxer with black shorts]", + "[boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with green shorts]", + "[boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]", + "[boxer with black shorts, boxer with green shorts, boxer with black shorts, boxer with black shorts, boxer with black shorts]" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "start_time": "00:38:35", + "end_time": "00:38:50", + "start_sec": 2315, + "end_sec": 2330 + }, + { + "video_id": "0004_pt1_q0", + "video_path": "videos/youtube/boxing/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many left punches does the boxer with white gloves throw?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "start_time": "00:00:00", + "end_time": "00:00:28", + "start_sec": 0, + "end_sec": 28, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q1", + "video_path": "videos/youtube/boxing/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many right punches does the boxer with white gloves throw?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "start_time": "00:00:00", + "end_time": "00:00:28", + "start_sec": 0, + "end_sec": 28, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q2", + "video_path": "videos/youtube/boxing/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "What is the order of the punches thrown\n\n(A) [left punch from boxer with white gloves, right punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, right punch from boxer with white gloves, left punch from boxer with white gloves, right punch from boxer with white gloves]\n(B) [right punch from boxer with white gloves, right punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, left punch from boxer with white gloves, left punch from boxer with white gloves, right punch from boxer with white gloves]\n(C) [right punch from boxer with white gloves, left punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, right punch from boxer with white gloves, left punch from boxer with white gloves, right punch from boxer with white gloves]\n(D) [right punch from boxer with white gloves, right punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, right punch from boxer with white gloves, left punch from boxer with white gloves, left punch from boxer with white gloves]", + "answer_type": "mcq", + "choices": [ + "[left punch from boxer with white gloves, right punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, right punch from boxer with white gloves, left punch from boxer with white gloves, right punch from boxer with white gloves]", + "[right punch from boxer with white gloves, right punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, left punch from boxer with white gloves, left punch from boxer with white gloves, right punch from boxer with white gloves]", + "[right punch from boxer with white gloves, left punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, right punch from boxer with white gloves, left punch from boxer with white gloves, right punch from boxer with white gloves]", + "[right punch from boxer with white gloves, right punch from boxer with white gloves, left punch from boxer with red shots, right punch from boxer with red shots, right punch from boxer with white gloves, left punch from boxer with white gloves, left punch from boxer with white gloves]" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "start_time": "00:00:00", + "end_time": "00:00:28", + "start_sec": 0, + "end_sec": 28 + }, + { + "video_id": "0004_pt2", + "video_path": "videos/youtube/boxing/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many times does the boxer with the red glove touch the opponent?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "start_time": "00:00:41", + "end_time": "00:00:55", + "start_sec": 41, + "end_sec": 55, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt3", + "video_path": "videos/youtube/boxing/0004_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "How many punches does the boxer with white gloves land on the opponent?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "start_time": "00:01:08", + "end_time": "00:01:19", + "start_sec": 68, + "end_sec": 79, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q0", + "video_path": "videos/youtube/boxing/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "how many punches does the blue boxer throw", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "start_time": "00:01:35", + "end_time": "00:01:51", + "start_sec": 95, + "end_sec": 111, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q1", + "video_path": "videos/youtube/boxing/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "What is the order of the side pf punches thrown by boxer in blue\n\n(A) [right, right, right, left, right, left, left, left, left, right]\n(B) [right, right, right, right, left, left, left, left, left, right]\n(C) [right, right, right, right, right, left, left, left, left, left]\n(D) [right, right, left, right, right, left, left, left, left, right]", + "answer_type": "mcq", + "choices": [ + "[right, right, right, left, right, left, left, left, left, right]", + "[right, right, right, right, left, left, left, left, left, right]", + "[right, right, right, right, right, left, left, left, left, left]", + "[right, right, left, right, right, left, left, left, left, right]" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "start_time": "00:01:35", + "end_time": "00:01:51", + "start_sec": 95, + "end_sec": 111 + }, + { + "video_id": "0005_pt2_q0", + "video_path": "videos/youtube/boxing/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "how many punches does the blue boxer throw", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "start_time": "00:01:57", + "end_time": "00:02:06", + "start_sec": 117, + "end_sec": 126, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q1", + "video_path": "videos/youtube/boxing/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "What is the order of the side pf punches thrown by boxer in blue\n\n(A) [left, right, left, right, left, left]\n(B) [left, right, left, left, right, left]\n(C) [left, right, right, left, left, left]\n(D) [right, right, left, left, left, left]", + "answer_type": "mcq", + "choices": [ + "[left, right, left, right, left, left]", + "[left, right, left, left, right, left]", + "[left, right, right, left, left, left]", + "[right, right, left, left, left, left]" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "start_time": "00:01:57", + "end_time": "00:02:06", + "start_sec": 117, + "end_sec": 126 + }, + { + "video_id": "0005_pt3", + "video_path": "videos/youtube/boxing/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "boxing", + "question": "how many punches does the blue boxer throw", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "start_time": "00:05:40", + "end_time": "00:05:55", + "start_sec": 340, + "end_sec": 355, + "choices": [], + "answer_index": null + } + ], + "carousel": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/carousel/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many people are standing on this carrousel?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "multi_entity_attribution", + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zVvuz7VXlNc", + "youtube_id": "zVvuz7VXlNc", + "youtube_title": "King Arthur Carrousel with the Pearly Band - Disneyland Ride 2022 [4K POV]", + "start_time": "00:00:25", + "end_time": "00:00:36", + "start_sec": 25, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/carousel/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many horses on the outmost circle shown in the video?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "multi_entity_attribution", + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zVvuz7VXlNc", + "youtube_id": "zVvuz7VXlNc", + "youtube_title": "King Arthur Carrousel with the Pearly Band - Disneyland Ride 2022 [4K POV]", + "start_time": "00:00:25", + "end_time": "00:00:36", + "start_sec": 25, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/carousel/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many people are in the carousel?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution", + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=CVv9KIK3ET4", + "youtube_id": "CVv9KIK3ET4", + "youtube_title": "快乐的旋转木马🎠#carousel #playground #children #happy #childhood #travel #citylife", + "start_time": "00:00:00", + "end_time": "00:00:14.033", + "start_sec": 0, + "end_sec": 14.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/carousel/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many times did the person pass an exit? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "start_time": "00:00:29", + "end_time": "00:01:25", + "start_sec": 29, + "end_sec": 85, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/carousel/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many complete rounds did the person ride?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "start_time": "00:00:29", + "end_time": "00:01:25", + "start_sec": 29, + "end_sec": 85, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q2", + "video_path": "videos/youtube/carousel/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many exits are there in the carousel? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "start_time": "00:00:29", + "end_time": "00:01:25", + "start_sec": 29, + "end_sec": 85, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q0", + "video_path": "videos/youtube/carousel/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many times did the person pass an exit? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "start_time": "00:01:26", + "end_time": "00:02:26", + "start_sec": 86, + "end_sec": 146, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q1", + "video_path": "videos/youtube/carousel/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many complete rounds did the person ride?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "start_time": "00:01:26", + "end_time": "00:02:26", + "start_sec": 86, + "end_sec": 146, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q2", + "video_path": "videos/youtube/carousel/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many exits are there in the carousel? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "start_time": "00:01:26", + "end_time": "00:02:26", + "start_sec": 86, + "end_sec": 146, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q0", + "video_path": "videos/youtube/carousel/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many times did the person pass an exit? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "start_time": "00:00:00", + "end_time": "00:01:00.033", + "start_sec": 0, + "end_sec": 60.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q1", + "video_path": "videos/youtube/carousel/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many complete rounds did the person ride?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "start_time": "00:00:00", + "end_time": "00:01:00.033", + "start_sec": 0, + "end_sec": 60.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q2", + "video_path": "videos/youtube/carousel/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many different red exits are there in the carousel? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "start_time": "00:00:00", + "end_time": "00:01:00.033", + "start_sec": 0, + "end_sec": 60.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt2_q0", + "video_path": "videos/youtube/carousel/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many times did the person pass an exit? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "start_time": "00:01:00", + "end_time": "00:02:00", + "start_sec": 60, + "end_sec": 120, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt2_q1", + "video_path": "videos/youtube/carousel/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many complete rounds did the person ride?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "start_time": "00:01:00", + "end_time": "00:02:00", + "start_sec": 60, + "end_sec": 120, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt2_q2", + "video_path": "videos/youtube/carousel/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many different red exits are there in the carousel? Count only barred gates that have a red inverted-triangle sign on them as exits.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "camera_motion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "start_time": "00:01:00", + "end_time": "00:02:00", + "start_sec": 60, + "end_sec": 120, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/youtube/carousel/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many people are on the carousel?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution", + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=s3vbGxdRuaM", + "youtube_id": "s3vbGxdRuaM", + "youtube_title": "Fun times for Daniela", + "start_time": "00:00:00", + "end_time": "00:00:11", + "start_sec": 0, + "end_sec": 11, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q0", + "video_path": "videos/youtube/carousel/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many people are on a ride that don't go up and down?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=s3vbGxdRuaM", + "youtube_id": "s3vbGxdRuaM", + "youtube_title": "Fun times for Daniela", + "start_time": "00:00:11", + "end_time": "00:00:23", + "start_sec": 11, + "end_sec": 23, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q1", + "video_path": "videos/youtube/carousel/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many people are sitting?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=s3vbGxdRuaM", + "youtube_id": "s3vbGxdRuaM", + "youtube_title": "Fun times for Daniela", + "start_time": "00:00:11", + "end_time": "00:00:23", + "start_sec": 11, + "end_sec": 23, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/youtube/carousel/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "carousel", + "question": "How many complete rounds did the person ride?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=UKNfQ5-I88I", + "youtube_id": "UKNfQ5-I88I", + "youtube_title": "Jessie's Critter Carousel 2023 - Disney California Adventure Ride [4K POV]", + "start_time": "00:00:38", + "end_time": "00:01:38", + "start_sec": 38, + "end_sec": 98, + "choices": [], + "answer_index": null + } + ], + "coffee": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/coffee/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many cups of espresso are made or being made by the end of video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=mULwi814HQ0", + "youtube_id": "mULwi814HQ0", + "youtube_title": "Anthony Douglas, Australia — 2022 World Barista Championship: Finals", + "start_time": "00:00:59", + "end_time": "00:01:59.067", + "start_sec": 59, + "end_sec": 119.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/coffee/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many cups of espresso are made or being made by the end of video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=mULwi814HQ0", + "youtube_id": "mULwi814HQ0", + "youtube_title": "Anthony Douglas, Australia — 2022 World Barista Championship: Finals", + "start_time": "00:05:15", + "end_time": "00:05:53", + "start_sec": 315, + "end_sec": 353, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3", + "video_path": "videos/youtube/coffee/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many cups of latte are made or being made by the end of video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=mULwi814HQ0", + "youtube_id": "mULwi814HQ0", + "youtube_title": "Anthony Douglas, Australia — 2022 World Barista Championship: Finals", + "start_time": "00:09:30", + "end_time": "00:10:30.067", + "start_sec": 570, + "end_sec": 630.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/coffee/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many cups of espresso are made by the end of video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Bw7WuL4NyPI", + "youtube_id": "Bw7WuL4NyPI", + "youtube_title": "Benjamin Put, Canada — 2022 World Barista Championship: Finals", + "start_time": "00:01:45", + "end_time": "00:02:35", + "start_sec": 105, + "end_sec": 155, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/coffee/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many cups of latte are made by the end of video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Bw7WuL4NyPI", + "youtube_id": "Bw7WuL4NyPI", + "youtube_title": "Benjamin Put, Canada — 2022 World Barista Championship: Finals", + "start_time": "00:07:15", + "end_time": "00:08:25", + "start_sec": 435, + "end_sec": 505, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3", + "video_path": "videos/youtube/coffee/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many servings of espresso are added to the can? One portafilter makes one serving.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Bw7WuL4NyPI", + "youtube_id": "Bw7WuL4NyPI", + "youtube_title": "Benjamin Put, Canada — 2022 World Barista Championship: Finals", + "start_time": "00:10:20", + "end_time": "00:11:22", + "start_sec": 620, + "end_sec": 682, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/youtube/coffee/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many cups of espresso are made or being made by the end of video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=HVoHoMhzy2w", + "youtube_id": "HVoHoMhzy2w", + "youtube_title": "Jack Simpson, Australia | 2025 World Barista Championship: Finals", + "start_time": "00:03:55", + "end_time": "00:04:35", + "start_sec": 235, + "end_sec": 275, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2", + "video_path": "videos/youtube/coffee/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many cups of latte are made by the end of video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=HVoHoMhzy2w", + "youtube_id": "HVoHoMhzy2w", + "youtube_title": "Jack Simpson, Australia | 2025 World Barista Championship: Finals", + "start_time": "00:09:00", + "end_time": "00:09:50", + "start_sec": 540, + "end_sec": 590, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3", + "video_path": "videos/youtube/coffee/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many times does the barista pour with the glass pitcher?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=HVoHoMhzy2w", + "youtube_id": "HVoHoMhzy2w", + "youtube_title": "Jack Simpson, Australia | 2025 World Barista Championship: Finals", + "start_time": "00:13:15", + "end_time": "00:13:55", + "start_sec": 795, + "end_sec": 835, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/youtube/coffee/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many different portafilters are being used by the barista by the end of video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "start_time": "00:00:00", + "end_time": "00:00:36", + "start_sec": 0, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt2", + "video_path": "videos/youtube/coffee/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "coffee", + "question": "How many lattes are made or being made by the end of video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "start_time": "00:01:30", + "end_time": "00:02:15", + "start_sec": 90, + "end_sec": 135, + "choices": [], + "answer_index": null + } + ], + "cooking": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/cooking/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "How many wooden objects are on the counter?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=INiAM1u925E", + "youtube_id": "INiAM1u925E", + "youtube_title": "POV How to Cook a Steak", + "start_time": "00:07:38", + "end_time": "00:08:06", + "start_sec": 458, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/cooking/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "How many pans are on the stove?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=INiAM1u925E", + "youtube_id": "INiAM1u925E", + "youtube_title": "POV How to Cook a Steak", + "start_time": "00:07:38", + "end_time": "00:08:06", + "start_sec": 458, + "end_sec": 486, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/cooking/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "How many cuts does he make to the shallots?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=INiAM1u925E", + "youtube_id": "INiAM1u925E", + "youtube_title": "POV How to Cook a Steak", + "start_time": "00:17:50", + "end_time": "00:18:00", + "start_sec": 1070, + "end_sec": 1080, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/cooking/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "How many distinct pieces does he cut the potato into?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=2nhjTXUUx9g", + "youtube_id": "2nhjTXUUx9g", + "youtube_title": "One-pan mini-roast with fondant potatoes (Christmas dinner for 1 or 2)", + "start_time": "00:00:35", + "end_time": "00:00:43", + "start_sec": 35, + "end_sec": 43, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/cooking/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "How many pieces of potato does he touch with the spoon?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "homogeneity" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=2nhjTXUUx9g", + "youtube_id": "2nhjTXUUx9g", + "youtube_title": "One-pan mini-roast with fondant potatoes (Christmas dinner for 1 or 2)", + "start_time": "00:02:45", + "end_time": "00:02:50", + "start_sec": 165, + "end_sec": 170, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1_q0", + "video_path": "videos/youtube/cooking/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "How many different ingredients are used in the sandwich?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:05:17", + "end_time": "00:05:45", + "start_sec": 317, + "end_sec": 345, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1_q1", + "video_path": "videos/youtube/cooking/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. What is the sequence of different pans the chef reached into?\n\n(A) [7, 6, 1, 6]\n(B) [7, 6, 1, 9]\n(C) [6, 6, 1, 9]\n(D) [7, 1, 1, 9]", + "answer_type": "mcq", + "choices": [ + "[7, 6, 1, 6]", + "[7, 6, 1, 9]", + "[6, 6, 1, 9]", + "[7, 1, 1, 9]" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:05:17", + "end_time": "00:05:45", + "start_sec": 317, + "end_sec": 345 + }, + { + "video_id": "0006_pt1_q2", + "video_path": "videos/youtube/cooking/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. For a same sandwich ordered without tomato, which pans shoould the chef reach into?\n\n(A) (7,5,9)\n(B) (7,6,10)\n(C) (8,6,9)\n(D) (7, 6, 9)", + "answer_type": "mcq", + "choices": [ + "(7,5,9)", + "(7,6,10)", + "(8,6,9)", + "(7, 6, 9)" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:05:17", + "end_time": "00:05:45", + "start_sec": 317, + "end_sec": 345 + }, + { + "video_id": "0006_pt1_q3", + "video_path": "videos/youtube/cooking/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. For a same sandwich ordered without tomato and lettuce, which pans should the chef reach into?\n\n(A) (7, 9)\n(B) (6,9)\n(C) (7,10)\n(D) (8,9)", + "answer_type": "mcq", + "choices": [ + "(7, 9)", + "(6,9)", + "(7,10)", + "(8,9)" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:05:17", + "end_time": "00:05:45", + "start_sec": 317, + "end_sec": 345 + }, + { + "video_id": "0006_pt2_q0", + "video_path": "videos/youtube/cooking/0006_pt2.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "How many different ingredients are used in the sandwich?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:23:22", + "end_time": "00:23:58", + "start_sec": 1402, + "end_sec": 1438, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt2_q1", + "video_path": "videos/youtube/cooking/0006_pt2.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. For a same sandwich ordered without sauce, which pans should the chef reach into?\n\n(A) (5,1,9)\n(B) (6,1,10)\n(C) (6,2,9)\n(D) (6, 1, 9)", + "answer_type": "mcq", + "choices": [ + "(5,1,9)", + "(6,1,10)", + "(6,2,9)", + "(6, 1, 9)" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:23:22", + "end_time": "00:23:58", + "start_sec": 1402, + "end_sec": 1438 + }, + { + "video_id": "0006_pt2_q2", + "video_path": "videos/youtube/cooking/0006_pt2.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. For a same sandwich ordered with additional onion, which pans should the chef reach into?\n\n(A) (7,6,1,9,14)\n(B) (7,5,1,9,13)\n(C) (7,6,2,9,13)\n(D) (7, 6, 1, 9, 13)", + "answer_type": "mcq", + "choices": [ + "(7,6,1,9,14)", + "(7,5,1,9,13)", + "(7,6,2,9,13)", + "(7, 6, 1, 9, 13)" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:23:22", + "end_time": "00:23:58", + "start_sec": 1402, + "end_sec": 1438 + }, + { + "video_id": "0006_pt3_q0", + "video_path": "videos/youtube/cooking/0006_pt3.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. What is the sequence of different pans the chef reached into?\n\n(A) [1, 6, 1]\n(B) [6, 6, 1]\n(C) [13, 6, 1]\n(D) [13, 1, 1]", + "answer_type": "mcq", + "choices": [ + "[1, 6, 1]", + "[6, 6, 1]", + "[13, 6, 1]", + "[13, 1, 1]" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:27:46", + "end_time": "00:27:54", + "start_sec": 1666, + "end_sec": 1674 + }, + { + "video_id": "0006_pt3_q1", + "video_path": "videos/youtube/cooking/0006_pt3.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. For a same burger ordered without onion, which pans should the chef reach into?\n\n(A) (7,1)\n(B) (6, 1)\n(C) (5,1)\n(D) (6,2)", + "answer_type": "mcq", + "choices": [ + "(7,1)", + "(6, 1)", + "(5,1)", + "(6,2)" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:27:46", + "end_time": "00:27:54", + "start_sec": 1666, + "end_sec": 1674 + }, + { + "video_id": "0006_pt3_q2", + "video_path": "videos/youtube/cooking/0006_pt3.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. For a same burger ordered with additional cucumber, which pans should the chef reach into?\n\n(A) (6,1,9,13)\n(B) (6, 1, 8, 13)\n(C) (7,1,8,13)\n(D) (6,1,7,13)", + "answer_type": "mcq", + "choices": [ + "(6,1,9,13)", + "(6, 1, 8, 13)", + "(7,1,8,13)", + "(6,1,7,13)" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:27:46", + "end_time": "00:27:54", + "start_sec": 1666, + "end_sec": 1674 + }, + { + "video_id": "0006_pt3_q3", + "video_path": "videos/youtube/cooking/0006_pt3.mp4", + "video_source": "youtube", + "source_task": "cooking", + "question": "Using row-wise labels from the camera's perspective: 1 to 5 for the first row, 6 to 10 for the second row, and 11 to 14 for the third row, excluding the duplicate count of the largest pan. For a same burger ordered without tomato, which pans should the chef reach into?\n\n(A) (5,13)\n(B) (6, 13)\n(C) (7,13)\n(D) (6,14)", + "answer_type": "mcq", + "choices": [ + "(5,13)", + "(6, 13)", + "(7,13)", + "(6,14)" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "start_time": "00:27:46", + "end_time": "00:27:54", + "start_sec": 1666, + "end_sec": 1674 + } + ], + "cube": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/cube/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "How many steps did the person do to solve the cube?", + "answer_type": "numeric", + "answer": 76, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=5DCo_bZ0PEo", + "youtube_id": "5DCo_bZ0PEo", + "youtube_title": "How to Solve a Rubik’s Cube in 4 Moves", + "start_time": "00:00:11", + "end_time": "00:01:15", + "start_sec": 11, + "end_sec": 75, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/cube/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the green sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) top-right\n(B) top-left\n(C) bottom-left\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "top-right", + "top-left", + "bottom-left", + "bottom-right" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=5DCo_bZ0PEo", + "youtube_id": "5DCo_bZ0PEo", + "youtube_title": "How to Solve a Rubik’s Cube in 4 Moves", + "start_time": "00:00:09", + "end_time": "00:00:21", + "start_sec": 9, + "end_sec": 21 + }, + { + "video_id": "0001_pt3", + "video_path": "videos/youtube/cube/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the blue sticker (at the bottom-left of the front face from the viewer's perspective) end up?\n\n(A) bottom-right\n(B) bottom-left\n(C) top-left\n(D) top-right", + "answer_type": "mcq", + "choices": [ + "bottom-right", + "bottom-left", + "top-left", + "top-right" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=5DCo_bZ0PEo", + "youtube_id": "5DCo_bZ0PEo", + "youtube_title": "How to Solve a Rubik’s Cube in 4 Moves", + "start_time": "00:00:10", + "end_time": "00:00:22", + "start_sec": 10, + "end_sec": 22 + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/cube/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the orange sticker (at the top-right of the left face from the viewer's perspective) end up?\n\n(A) top-right\n(B) top-left\n(C) bottom-left\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "top-right", + "top-left", + "bottom-left", + "bottom-right" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=R-R0KrXvWbc", + "youtube_id": "R-R0KrXvWbc", + "youtube_title": "How to Solve a Rubik's Cube | WIRED", + "start_time": "00:07:24", + "end_time": "00:07:38", + "start_sec": 444, + "end_sec": 458 + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/cube/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the green sticker (the one pointed by the person's right index finger at the start of the video) end up?\n\n(A) top-right\n(B) top-left\n(C) bottom-right\n(D) bottom-left", + "answer_type": "mcq", + "choices": [ + "top-right", + "top-left", + "bottom-right", + "bottom-left" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=R-R0KrXvWbc", + "youtube_id": "R-R0KrXvWbc", + "youtube_title": "How to Solve a Rubik's Cube | WIRED", + "start_time": "00:09:14", + "end_time": "00:09:28", + "start_sec": 554, + "end_sec": 568 + }, + { + "video_id": "0002_pt3", + "video_path": "videos/youtube/cube/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the red sticker (at the top-right of the front face from the viewer's perspective) end up?\n\n(A) top-right\n(B) bottom-right\n(C) bottom-left\n(D) top-left", + "answer_type": "mcq", + "choices": [ + "top-right", + "bottom-right", + "bottom-left", + "top-left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=R-R0KrXvWbc", + "youtube_id": "R-R0KrXvWbc", + "youtube_title": "How to Solve a Rubik's Cube | WIRED", + "start_time": "00:09:30", + "end_time": "00:09:38.067", + "start_sec": 570, + "end_sec": 578.067 + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/cube/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the orange sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) bottom-right\n(B) top-right\n(C) bottom-left\n(D) top-left", + "answer_type": "mcq", + "choices": [ + "bottom-right", + "top-right", + "bottom-left", + "top-left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "start_time": "00:01:20", + "end_time": "00:01:41", + "start_sec": 80, + "end_sec": 101 + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/cube/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the red sticker (at the top-right of the front face from the viewer's perspective) end up?\n\n(A) bottom-left\n(B) top-left\n(C) top-right\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-left", + "top-right", + "bottom-right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "start_time": "00:01:20", + "end_time": "00:01:41", + "start_sec": 80, + "end_sec": 101 + }, + { + "video_id": "0003_pt2_q0", + "video_path": "videos/youtube/cube/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the green sticker (at the top-right of the front face from the viewer's perspective) end up?\n\n(A) top-right\n(B) top-left\n(C) bottom-left\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "top-right", + "top-left", + "bottom-left", + "bottom-right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "start_time": "00:05:01", + "end_time": "00:05:39", + "start_sec": 301, + "end_sec": 339 + }, + { + "video_id": "0003_pt2_q1", + "video_path": "videos/youtube/cube/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the green sticker (at the top-center of the side that the person's left thumb is at) end up?\n\n(A) bottom-left\n(B) top-left\n(C) center-right\n(D) top-right", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-left", + "center-right", + "top-right" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "start_time": "00:05:01", + "end_time": "00:05:39", + "start_sec": 301, + "end_sec": 339 + }, + { + "video_id": "0003_pt3", + "video_path": "videos/youtube/cube/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the orange sticker (at the bottom-left of the front face from the viewer's perspective) end up?\n\n(A) top-right\n(B) top-left\n(C) bottom-right\n(D) bottom-left", + "answer_type": "mcq", + "choices": [ + "top-right", + "top-left", + "bottom-right", + "bottom-left" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "start_time": "00:07:15", + "end_time": "00:07:31", + "start_sec": 435, + "end_sec": 451 + }, + { + "video_id": "0003_pt4", + "video_path": "videos/youtube/cube/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the orange sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) top-right\n(B) top-left\n(C) bottom-right\n(D) bottom-left", + "answer_type": "mcq", + "choices": [ + "top-right", + "top-left", + "bottom-right", + "bottom-left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "start_time": "00:07:35", + "end_time": "00:07:47", + "start_sec": 455, + "end_sec": 467 + }, + { + "video_id": "0004_pt1_q0", + "video_path": "videos/youtube/cube/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the black sticker (at the bottom-left of the front face from the viewer's perspective) end up?\n\n(A) bottom-left\n(B) top-left\n(C) top-right\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-left", + "top-right", + "bottom-right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "start_time": "00:02:13", + "end_time": "00:02:56", + "start_sec": 133, + "end_sec": 176 + }, + { + "video_id": "0004_pt1_q1", + "video_path": "videos/youtube/cube/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the blue sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) top-right\n(B) top-left\n(C) bottom-right\n(D) bottom-left", + "answer_type": "mcq", + "choices": [ + "top-right", + "top-left", + "bottom-right", + "bottom-left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "start_time": "00:02:13", + "end_time": "00:02:56", + "start_sec": 133, + "end_sec": 176 + }, + { + "video_id": "0004_pt1_q2", + "video_path": "videos/youtube/cube/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the yellow sticker (at the bottom-right of the front face from the viewer's perspective) end up?\n\n(A) top-right\n(B) bottom-right\n(C) bottom-left\n(D) top-left", + "answer_type": "mcq", + "choices": [ + "top-right", + "bottom-right", + "bottom-left", + "top-left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "start_time": "00:02:13", + "end_time": "00:02:56", + "start_sec": 133, + "end_sec": 176 + }, + { + "video_id": "0004_pt2_q0", + "video_path": "videos/youtube/cube/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the blue sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) bottom-left\n(B) top-left\n(C) top-right\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-left", + "top-right", + "bottom-right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "start_time": "00:03:26", + "end_time": "00:04:01", + "start_sec": 206, + "end_sec": 241 + }, + { + "video_id": "0004_pt2_q1", + "video_path": "videos/youtube/cube/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the green sticker (at the top-right of the front face from the viewer's perspective) end up?\n\n(A) bottom-left\n(B) top-right\n(C) top-left\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-right", + "top-left", + "bottom-right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "start_time": "00:03:26", + "end_time": "00:04:01", + "start_sec": 206, + "end_sec": 241 + }, + { + "video_id": "0004_pt3", + "video_path": "videos/youtube/cube/0004_pt3.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the red sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) bottom-left\n(B) top-right\n(C) bottom-right\n(D) top-left", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-right", + "bottom-right", + "top-left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "start_time": "00:10:15", + "end_time": "00:10:37", + "start_sec": 615, + "end_sec": 637 + }, + { + "video_id": "0005_pt1_q0", + "video_path": "videos/youtube/cube/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the red sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) bottom-right\n(B) top-right\n(C) bottom-left\n(D) top-left", + "answer_type": "mcq", + "choices": [ + "bottom-right", + "top-right", + "bottom-left", + "top-left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7Ron6MN45LY", + "youtube_id": "7Ron6MN45LY", + "youtube_title": "Learn How to Solve a Rubik's Cube in 10 Minutes (Beginner Tutorial)", + "start_time": "00:05:57", + "end_time": "00:06:07", + "start_sec": 357, + "end_sec": 367 + }, + { + "video_id": "0005_pt1_q1", + "video_path": "videos/youtube/cube/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the yellow sticker (at the top-right of the front face from the viewer's perspective) end up?\n\n(A) bottom-left\n(B) top-left\n(C) top-right\n(D) bottom-right", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-left", + "top-right", + "bottom-right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7Ron6MN45LY", + "youtube_id": "7Ron6MN45LY", + "youtube_title": "Learn How to Solve a Rubik's Cube in 10 Minutes (Beginner Tutorial)", + "start_time": "00:05:57", + "end_time": "00:06:07", + "start_sec": 357, + "end_sec": 367 + }, + { + "video_id": "0005_pt2", + "video_path": "videos/youtube/cube/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the yellow sticker (at the top-left of the side that the person's left thumb is at) end up?\n\n(A) bottom-left\n(B) top-right\n(C) bottom-right\n(D) top-left", + "answer_type": "mcq", + "choices": [ + "bottom-left", + "top-right", + "bottom-right", + "top-left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7Ron6MN45LY", + "youtube_id": "7Ron6MN45LY", + "youtube_title": "Learn How to Solve a Rubik's Cube in 10 Minutes (Beginner Tutorial)", + "start_time": "00:06:54", + "end_time": "00:07:16", + "start_sec": 414, + "end_sec": 436 + }, + { + "video_id": "0005_pt3", + "video_path": "videos/youtube/cube/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "cube", + "question": "Where does the cubie with the yellow sticker (at the top-left of the front face from the viewer's perspective) end up?\n\n(A) top-left\n(B) bottom-left\n(C) bottom-right\n(D) top-right", + "answer_type": "mcq", + "choices": [ + "top-left", + "bottom-left", + "bottom-right", + "top-right" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=7Ron6MN45LY", + "youtube_id": "7Ron6MN45LY", + "youtube_title": "Learn How to Solve a Rubik's Cube in 10 Minutes (Beginner Tutorial)", + "start_time": "00:07:18", + "end_time": "00:08:14", + "start_sec": 438, + "end_sec": 494 + } + ], + "cup_stacking_1st": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/cup_stacking/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_1st", + "question": "What animal is drawn on the cup that is 1st from the bottom?\n\n(A) alligator\n(B) monkey\n(C) tiger\n(D) hippo", + "answer_type": "mcq", + "choices": [ + "alligator", + "monkey", + "tiger", + "hippo" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/cup_stacking/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_1st", + "question": "What animal is drawn on the cup that is 1st from the bottom?\n\n(A) tiger\n(B) lion\n(C) hippo\n(D) giraffe", + "answer_type": "mcq", + "choices": [ + "tiger", + "lion", + "hippo", + "giraffe" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/cup_stacking/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_1st", + "question": "What animal is drawn on the cup that is 1st from the bottom?\n\n(A) giraffe\n(B) hippo\n(C) lion\n(D) monkey", + "answer_type": "mcq", + "choices": [ + "giraffe", + "hippo", + "lion", + "monkey" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/cup_stacking/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_1st", + "question": "What animal is drawn on the cup that is 1st from the bottom?\n\n(A) giraffe\n(B) zebra\n(C) monkey\n(D) hippo", + "answer_type": "mcq", + "choices": [ + "giraffe", + "zebra", + "monkey", + "hippo" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "cup_stacking_2nd": [ + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/cup_stacking/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_2nd", + "question": "What animal is drawn on the cup that is 2nd from the bottom?\n\n(A) elephant\n(B) alligator\n(C) zebra\n(D) tiger", + "answer_type": "mcq", + "choices": [ + "elephant", + "alligator", + "zebra", + "tiger" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/cup_stacking/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_2nd", + "question": "What animal is drawn on the cup that is 2nd from the bottom?\n\n(A) tiger\n(B) alligator\n(C) zebra\n(D) giraffe", + "answer_type": "mcq", + "choices": [ + "tiger", + "alligator", + "zebra", + "giraffe" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/cup_stacking/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_2nd", + "question": "What animal is drawn on the cup that is 2nd from the bottom?\n\n(A) giraffe\n(B) alligator\n(C) monkey\n(D) lion", + "answer_type": "mcq", + "choices": [ + "giraffe", + "alligator", + "monkey", + "lion" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "cup_stacking_3rd": [ + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/cup_stacking/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_3rd", + "question": "What animal is drawn on the cup that is 3rd from the bottom?\n\n(A) elephant\n(B) monkey\n(C) hippo\n(D) tiger", + "answer_type": "mcq", + "choices": [ + "elephant", + "monkey", + "hippo", + "tiger" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/cup_stacking/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_3rd", + "question": "What animal is drawn on the cup that is 3rd from the bottom?\n\n(A) alligator\n(B) hippo\n(C) lion\n(D) zebra", + "answer_type": "mcq", + "choices": [ + "alligator", + "hippo", + "lion", + "zebra" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/cup_stacking/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_3rd", + "question": "What animal is drawn on the cup that is 3rd from the bottom?\n\n(A) hippo\n(B) alligator\n(C) tiger\n(D) giraffe", + "answer_type": "mcq", + "choices": [ + "hippo", + "alligator", + "tiger", + "giraffe" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "cup_stacking_4th": [ + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/cup_stacking/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_4th", + "question": "What animal is drawn on the cup that is 4th from the bottom?\n\n(A) lion\n(B) zebra\n(C) tiger\n(D) elephant", + "answer_type": "mcq", + "choices": [ + "lion", + "zebra", + "tiger", + "elephant" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/cup_stacking/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_4th", + "question": "What animal is drawn on the cup that is 4th from the bottom?\n\n(A) elephant\n(B) monkey\n(C) zebra\n(D) giraffe", + "answer_type": "mcq", + "choices": [ + "elephant", + "monkey", + "zebra", + "giraffe" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/cup_stacking/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_4th", + "question": "What animal is drawn on the cup that is 4th from the bottom?\n\n(A) alligator\n(B) zebra\n(C) elephant\n(D) giraffe", + "answer_type": "mcq", + "choices": [ + "alligator", + "zebra", + "elephant", + "giraffe" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "cup_stacking_5th": [ + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/cup_stacking/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_5th", + "question": "What animal is drawn on the cup that is 5th from the bottom?\n\n(A) elephant\n(B) zebra\n(C) hippo\n(D) tiger", + "answer_type": "mcq", + "choices": [ + "elephant", + "zebra", + "hippo", + "tiger" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/cup_stacking/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_5th", + "question": "What animal is drawn on the cup that is 5th from the bottom?\n\n(A) hippo\n(B) giraffe\n(C) monkey\n(D) lion", + "answer_type": "mcq", + "choices": [ + "hippo", + "giraffe", + "monkey", + "lion" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "cup_stacking_6th": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/cup_stacking/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_6th", + "question": "What animal is drawn on the cup that is 6th from the bottom?\n\n(A) lion\n(B) zebra\n(C) tiger\n(D) giraffe", + "answer_type": "mcq", + "choices": [ + "lion", + "zebra", + "tiger", + "giraffe" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/cup_stacking/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_6th", + "question": "What animal is drawn on the cup that is 6th from the bottom?\n\n(A) giraffe\n(B) zebra\n(C) tiger\n(D) hippo", + "answer_type": "mcq", + "choices": [ + "giraffe", + "zebra", + "tiger", + "hippo" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/cup_stacking/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_6th", + "question": "What animal is drawn on the cup that is 6th from the bottom?\n\n(A) alligator\n(B) elephant\n(C) lion\n(D) hippo", + "answer_type": "mcq", + "choices": [ + "alligator", + "elephant", + "lion", + "hippo" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "cup_stacking_7th": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/cup_stacking/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_7th", + "question": "What animal is drawn on the cup that is 7th from the bottom?\n\n(A) monkey\n(B) lion\n(C) tiger\n(D) zebra", + "answer_type": "mcq", + "choices": [ + "monkey", + "lion", + "tiger", + "zebra" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/cup_stacking/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_7th", + "question": "What animal is drawn on the cup that is 7th from the bottom?\n\n(A) tiger\n(B) alligator\n(C) monkey\n(D) hippo", + "answer_type": "mcq", + "choices": [ + "tiger", + "alligator", + "monkey", + "hippo" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/cup_stacking/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "cup_stacking_7th", + "question": "What animal is drawn on the cup that is 7th from the bottom?\n\n(A) hippo\n(B) zebra\n(C) giraffe\n(D) tiger", + "answer_type": "mcq", + "choices": [ + "hippo", + "zebra", + "giraffe", + "tiger" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "dice": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/dice/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion", + "action_ambiguity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/dice/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/dice/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/dice/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Blue** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/dice/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/dice/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/dice/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/dice/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Red** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/dice/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/dice/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Red** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/dice/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/dice/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/dice/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/dice/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/dice/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/dice/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Blue** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/dice/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/dice/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/dice/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/dice/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/dice/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/dice/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/dice/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/dice/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/dice/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Blue** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/dice/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/dice/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **White** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/dice/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/dice/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/dice/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/dice/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/dice/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Red** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/dice/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/dice/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/dice/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/dice/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **White** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/dice/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/dice/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **White** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/dice/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Blue** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/dice/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/dice/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Red** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/dice/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/dice/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Green** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/dice/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/dice/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Pink** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/dice/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Yellow** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/dice/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Red** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/dice/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Red** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/dice/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Red** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/dice/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "dice", + "question": "During the roll, how many times did the **Blue** face land on the bottom? (Consecutive stays count as 1, including the initial position)", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + } + ], + "eating_contest": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/eating_contest/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "eating_contest", + "question": "How many burgers did the person on the left eat?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution", + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=f63qxa_lAdU", + "youtube_id": "f63qxa_lAdU", + "youtube_title": "Most burgers eaten in one minute - Guinness World Records", + "start_time": "00:01:15", + "end_time": "00:02:05", + "start_sec": 75, + "end_sec": 125, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/eating_contest/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "eating_contest", + "question": "How many burgers did the person on the right eat?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=f63qxa_lAdU", + "youtube_id": "f63qxa_lAdU", + "youtube_title": "Most burgers eaten in one minute - Guinness World Records", + "start_time": "00:01:15", + "end_time": "00:02:05", + "start_sec": 75, + "end_sec": 125, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q2", + "video_path": "videos/youtube/eating_contest/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "eating_contest", + "question": "From the viewer's perspective, what was the order in which the contestants finished eating their burgers?\n\n(A) [left, right, left, right, left, right, left]\n(B) [left, right, left, left, left, right, left]\n(C) [right, right, left, right, left, right, left]\n(D) [left, right, left, right, right, right, left]", + "answer_type": "mcq", + "choices": [ + "[left, right, left, right, left, right, left]", + "[left, right, left, left, left, right, left]", + "[right, right, left, right, left, right, left]", + "[left, right, left, right, right, right, left]" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "action_ambiguity" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=f63qxa_lAdU", + "youtube_id": "f63qxa_lAdU", + "youtube_title": "Most burgers eaten in one minute - Guinness World Records", + "start_time": "00:01:15", + "end_time": "00:02:05", + "start_sec": 75, + "end_sec": 125 + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/eating_contest/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "eating_contest", + "question": "How many burgers did she finish eating, or appear to be about to finish?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I6HmlvQx64A", + "youtube_id": "I6HmlvQx64A", + "youtube_title": "Kinoshita Yuka [OoGui Eater] 100 Hamburger Challenge", + "start_time": "00:01:00", + "end_time": "00:01:37", + "start_sec": 60, + "end_sec": 97, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/eating_contest/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "eating_contest", + "question": "In chronological order, from which side of the table did the person pick up each burger and eat it: their right-hand side or their left-hand side?\n\n(A) [center, left, right, left, right, left, right, center, right, left]\n(B) [center, left, left, left, right, left, right, left, right, left]\n(C) [center, left, right, center, right, left, right, left, right, left]\n(D) [center, left, right, left, right, left, right, left, right, left]", + "answer_type": "mcq", + "choices": [ + "[center, left, right, left, right, left, right, center, right, left]", + "[center, left, left, left, right, left, right, left, right, left]", + "[center, left, right, center, right, left, right, left, right, left]", + "[center, left, right, left, right, left, right, left, right, left]" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "action_ambiguity" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=I6HmlvQx64A", + "youtube_id": "I6HmlvQx64A", + "youtube_title": "Kinoshita Yuka [OoGui Eater] 100 Hamburger Challenge", + "start_time": "00:01:00", + "end_time": "00:01:37", + "start_sec": 60, + "end_sec": 97 + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/eating_contest/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "eating_contest", + "question": "How many burgers did she finish eating, or appear to be about to finish?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I6HmlvQx64A", + "youtube_id": "I6HmlvQx64A", + "youtube_title": "Kinoshita Yuka [OoGui Eater] 100 Hamburger Challenge", + "start_time": "00:01:38", + "end_time": "00:02:14", + "start_sec": 98, + "end_sec": 134, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3", + "video_path": "videos/youtube/eating_contest/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "eating_contest", + "question": "How many burgers did she finish eating, or appear to be about to finish?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I6HmlvQx64A", + "youtube_id": "I6HmlvQx64A", + "youtube_title": "Kinoshita Yuka [OoGui Eater] 100 Hamburger Challenge", + "start_time": "00:02:15", + "end_time": "00:02:56", + "start_sec": 135, + "end_sec": 176, + "choices": [], + "answer_index": null + } + ], + "funnel_ball": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/funnel_ball/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_2\n(C) ball_3\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_2", + "ball_3", + "ball_4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/funnel_ball/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_3\n(C) ball_2\n(D) ball_6", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_3", + "ball_2", + "ball_6" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/funnel_ball/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_4\n(C) ball_2\n(D) ball_3", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_4", + "ball_2", + "ball_3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/funnel_ball/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_5\n(B) ball_2\n(C) ball_3\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_5", + "ball_2", + "ball_3", + "ball_4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/funnel_ball/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_2\n(B) ball_6\n(C) ball_3\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_2", + "ball_6", + "ball_3", + "ball_4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/funnel_ball/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_2\n(B) ball_5\n(C) ball_1\n(D) ball_6", + "answer_type": "mcq", + "choices": [ + "ball_2", + "ball_5", + "ball_1", + "ball_6" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/funnel_ball/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_2\n(C) ball_6\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_2", + "ball_6", + "ball_4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/funnel_ball/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_1\n(C) ball_2\n(D) ball_6", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_1", + "ball_2", + "ball_6" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/funnel_ball/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_5\n(C) ball_1\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_5", + "ball_1", + "ball_4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/funnel_ball/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_5\n(B) ball_1\n(C) ball_6\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_5", + "ball_1", + "ball_6", + "ball_2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/funnel_ball/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_5\n(C) ball_1\n(D) ball_3", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_5", + "ball_1", + "ball_3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/funnel_ball/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_1\n(C) ball_2\n(D) ball_3", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_1", + "ball_2", + "ball_3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/funnel_ball/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_5\n(B) ball_4\n(C) ball_2\n(D) ball_3", + "answer_type": "mcq", + "choices": [ + "ball_5", + "ball_4", + "ball_2", + "ball_3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/funnel_ball/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_2\n(B) ball_5\n(C) ball_6\n(D) ball_3", + "answer_type": "mcq", + "choices": [ + "ball_2", + "ball_5", + "ball_6", + "ball_3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/funnel_ball/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_4\n(C) ball_6\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_4", + "ball_6", + "ball_5" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/funnel_ball/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_4\n(C) ball_1\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_4", + "ball_1", + "ball_2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/funnel_ball/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_1\n(C) ball_2\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_1", + "ball_2", + "ball_4" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/funnel_ball/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_6\n(C) ball_1\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_6", + "ball_1", + "ball_2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/funnel_ball/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_2\n(C) ball_1\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_2", + "ball_1", + "ball_4" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/funnel_ball/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_2\n(C) ball_1\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_2", + "ball_1", + "ball_4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/funnel_ball/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_6\n(C) ball_3\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_6", + "ball_3", + "ball_5" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/funnel_ball/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_1\n(C) ball_3\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_1", + "ball_3", + "ball_5" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/funnel_ball/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_2\n(B) ball_3\n(C) ball_5\n(D) ball_1", + "answer_type": "mcq", + "choices": [ + "ball_2", + "ball_3", + "ball_5", + "ball_1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/funnel_ball/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_4\n(C) ball_3\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_4", + "ball_3", + "ball_5" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/funnel_ball/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_6\n(C) ball_2\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_6", + "ball_2", + "ball_4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/funnel_ball/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_4\n(C) ball_5\n(D) ball_1", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_4", + "ball_5", + "ball_1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/funnel_ball/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_6\n(C) ball_1\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_6", + "ball_1", + "ball_2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/funnel_ball/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_5\n(C) ball_6\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_5", + "ball_6", + "ball_2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/funnel_ball/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_1\n(C) ball_2\n(D) ball_6", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_1", + "ball_2", + "ball_6" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/funnel_ball/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_2\n(C) ball_1\n(D) ball_6", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_2", + "ball_1", + "ball_6" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/funnel_ball/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_5\n(C) ball_3\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_5", + "ball_3", + "ball_4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/funnel_ball/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_2\n(B) ball_4\n(C) ball_6\n(D) ball_1", + "answer_type": "mcq", + "choices": [ + "ball_2", + "ball_4", + "ball_6", + "ball_1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/funnel_ball/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_6\n(C) ball_1\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_6", + "ball_1", + "ball_4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/funnel_ball/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_1\n(C) ball_5\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_1", + "ball_5", + "ball_4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/funnel_ball/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_5\n(B) ball_3\n(C) ball_1\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_5", + "ball_3", + "ball_1", + "ball_4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/funnel_ball/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_2\n(B) ball_3\n(C) ball_6\n(D) ball_1", + "answer_type": "mcq", + "choices": [ + "ball_2", + "ball_3", + "ball_6", + "ball_1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/funnel_ball/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_2\n(C) ball_6\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_2", + "ball_6", + "ball_5" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/funnel_ball/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_4\n(B) ball_6\n(C) ball_1\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_4", + "ball_6", + "ball_1", + "ball_5" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/funnel_ball/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_2\n(B) ball_1\n(C) ball_4\n(D) ball_6", + "answer_type": "mcq", + "choices": [ + "ball_2", + "ball_1", + "ball_4", + "ball_6" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/funnel_ball/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_1\n(C) ball_2\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_1", + "ball_2", + "ball_5" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/funnel_ball/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_1\n(C) ball_5\n(D) ball_3", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_1", + "ball_5", + "ball_3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/funnel_ball/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_4\n(C) ball_6\n(D) ball_5", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_4", + "ball_6", + "ball_5" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/funnel_ball/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_1\n(B) ball_6\n(C) ball_5\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_1", + "ball_6", + "ball_5", + "ball_4" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/funnel_ball/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_5\n(B) ball_1\n(C) ball_6\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_5", + "ball_1", + "ball_6", + "ball_2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/funnel_ball/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_5\n(B) ball_6\n(C) ball_1\n(D) ball_3", + "answer_type": "mcq", + "choices": [ + "ball_5", + "ball_6", + "ball_1", + "ball_3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/funnel_ball/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_3\n(C) ball_1\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_3", + "ball_1", + "ball_2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/funnel_ball/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_5\n(C) ball_1\n(D) ball_4", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_5", + "ball_1", + "ball_4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/funnel_ball/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_5\n(B) ball_3\n(C) ball_1\n(D) ball_6", + "answer_type": "mcq", + "choices": [ + "ball_5", + "ball_3", + "ball_1", + "ball_6" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/funnel_ball/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_6\n(B) ball_3\n(C) ball_5\n(D) ball_1", + "answer_type": "mcq", + "choices": [ + "ball_6", + "ball_3", + "ball_5", + "ball_1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/funnel_ball/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "funnel_ball", + "question": "Balls are indexed left-to-right in the last frame before any release from `ball_1` through `ball_6`. Which ball took the longest time to fall through the hole after its own release?\n\n(A) ball_3\n(B) ball_1\n(C) ball_5\n(D) ball_2", + "answer_type": "mcq", + "choices": [ + "ball_3", + "ball_1", + "ball_5", + "ball_2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "dictionary" + } + ], + "graffiti": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/graffiti/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What is the letter being drawn on the wall?\n\n(A) Z\n(B) 5\n(C) C\n(D) S", + "answer_type": "mcq", + "choices": [ + "Z", + "5", + "C", + "S" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:01:58", + "end_time": "00:02:19.033", + "start_sec": 118, + "end_sec": 139.033 + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/graffiti/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What is the letter being drawn on the wall?\n\n(A) R\n(B) K\n(C) X\n(D) Y", + "answer_type": "mcq", + "choices": [ + "R", + "K", + "X", + "Y" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:02:20", + "end_time": "00:02:32", + "start_sec": 140, + "end_sec": 152 + }, + { + "video_id": "0001_pt3", + "video_path": "videos/youtube/graffiti/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What is the letter being drawn on the wall?\n\n(A) V\n(B) Y\n(C) W\n(D) 7", + "answer_type": "mcq", + "choices": [ + "V", + "Y", + "W", + "7" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:02:31", + "end_time": "00:02:44", + "start_sec": 151, + "end_sec": 164 + }, + { + "video_id": "0001_pt4", + "video_path": "videos/youtube/graffiti/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What is the number being drawn on the wall?\n\n(A) 3\n(B) 7\n(C) 2\n(D) 4", + "answer_type": "mcq", + "choices": [ + "3", + "7", + "2", + "4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:02:46", + "end_time": "00:03:00", + "start_sec": 166, + "end_sec": 180 + }, + { + "video_id": "0001_pt5", + "video_path": "videos/youtube/graffiti/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What is the letter being outlined on the wall?\n\n(A) Z\n(B) C\n(C) 5\n(D) S", + "answer_type": "mcq", + "choices": [ + "Z", + "C", + "5", + "S" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:15:04", + "end_time": "00:15:51.500", + "start_sec": 904, + "end_sec": null + }, + { + "video_id": "0001_pt6", + "video_path": "videos/youtube/graffiti/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What is the letter being outlined on the wall?\n\n(A) V and Z\n(B) Y and Z\n(C) V and 2\n(D) Y and 2", + "answer_type": "mcq", + "choices": [ + "V and Z", + "Y and Z", + "V and 2", + "Y and 2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:17:50", + "end_time": "00:18:35.1", + "start_sec": 1070, + "end_sec": 1115.1 + }, + { + "video_id": "0001_pt7", + "video_path": "videos/youtube/graffiti/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "How many white rectangles are covered by red paint on the wall?\n\n(A) 2\n(B) 4\n(C) 5\n(D) 3", + "answer_type": "mcq", + "choices": [ + "2", + "4", + "5", + "3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:20:45", + "end_time": "00:21:58", + "start_sec": 1245, + "end_sec": 1318 + }, + { + "video_id": "0001_pt8", + "video_path": "videos/youtube/graffiti/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "How many blanks are covered by red paint on the wall?\n\n(A) 3\n(B) 4\n(C) 2\n(D) 1", + "answer_type": "mcq", + "choices": [ + "3", + "4", + "2", + "1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:22:12", + "end_time": "00:22:58", + "start_sec": 1332, + "end_sec": 1378 + }, + { + "video_id": "0001_pt9", + "video_path": "videos/youtube/graffiti/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "How many different rectangles are drawn?\n\n(A) 2\n(B) 4\n(C) 5\n(D) 3", + "answer_type": "mcq", + "choices": [ + "2", + "4", + "5", + "3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "start_time": "00:29:12", + "end_time": "00:29:32", + "start_sec": 1752, + "end_sec": 1772 + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/graffiti/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What's the alphabetical letter being drawn?\n\n(A) S\n(B) N\n(C) E\n(D) Z", + "answer_type": "mcq", + "choices": [ + "S", + "N", + "E", + "Z" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=G37ODQ2yWnM", + "youtube_id": "G37ODQ2yWnM", + "youtube_title": "Noob or pro??? Follow 4 more letters!!!!", + "start_time": "00:00:07", + "end_time": "00:00:20", + "start_sec": 7, + "end_sec": 20 + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/graffiti/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What's the alphabetical letter being drawn?\n\n(A) S\n(B) 2\n(C) N\n(D) Z", + "answer_type": "mcq", + "choices": [ + "S", + "2", + "N", + "Z" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=G37ODQ2yWnM", + "youtube_id": "G37ODQ2yWnM", + "youtube_title": "Noob or pro??? Follow 4 more letters!!!!", + "start_time": "00:00:26", + "end_time": "00:00:32", + "start_sec": 26, + "end_sec": 32 + }, + { + "video_id": "0003_pt1", + "video_path": "videos/youtube/graffiti/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What's the word being drawn?\n\n(A) SVMSUNG\n(B) SAHSUNG\n(C) CAMSUNG\n(D) SAMSUNG", + "answer_type": "mcq", + "choices": [ + "SVMSUNG", + "SAHSUNG", + "CAMSUNG", + "SAMSUNG" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=Z60nas68BXU", + "youtube_id": "Z60nas68BXU", + "youtube_title": "Creéis que lo verá @Samsung ??", + "start_time": "00:00:02", + "end_time": "00:00:35", + "start_sec": 2, + "end_sec": 35 + }, + { + "video_id": "0004_pt1", + "video_path": "videos/youtube/graffiti/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What's the letter being drawn?\n\n(A) K\n(B) Y\n(C) X\n(D) R", + "answer_type": "mcq", + "choices": [ + "K", + "Y", + "X", + "R" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=C8c5ZYk1Ark", + "youtube_id": "C8c5ZYk1Ark", + "youtube_title": "Graffiti Letters Economic Roller Style 2", + "start_time": "00:00:45", + "end_time": "00:01:29", + "start_sec": 45, + "end_sec": 89 + }, + { + "video_id": "0004_pt2", + "video_path": "videos/youtube/graffiti/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What's the letter being drawn?\n\n(A) Z\n(B) 5\n(C) C\n(D) S", + "answer_type": "mcq", + "choices": [ + "Z", + "5", + "C", + "S" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=C8c5ZYk1Ark", + "youtube_id": "C8c5ZYk1Ark", + "youtube_title": "Graffiti Letters Economic Roller Style 2", + "start_time": "00:02:19", + "end_time": "00:02:44", + "start_sec": 139, + "end_sec": 164 + }, + { + "video_id": "0004_pt3", + "video_path": "videos/youtube/graffiti/0004_pt3.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What's the letter being drawn?\n\n(A) K\n(B) X\n(C) Y\n(D) R", + "answer_type": "mcq", + "choices": [ + "K", + "X", + "Y", + "R" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=C8c5ZYk1Ark", + "youtube_id": "C8c5ZYk1Ark", + "youtube_title": "Graffiti Letters Economic Roller Style 2", + "start_time": "00:02:44", + "end_time": "00:03:09", + "start_sec": 164, + "end_sec": 189 + }, + { + "video_id": "0005_pt1", + "video_path": "videos/youtube/graffiti/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "graffiti", + "question": "What's the word being drawn?\n\n(A) VEKBOY\n(B) YEKBOY\n(C) WEKBOY\n(D) MEKBOY", + "answer_type": "mcq", + "choices": [ + "VEKBOY", + "YEKBOY", + "WEKBOY", + "MEKBOY" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "camera_motion", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=gri5ELjXi08", + "youtube_id": "gri5ELjXi08", + "youtube_title": "Graffiti trip pART31 Tbilisi train line 22", + "start_time": "00:07:00", + "end_time": "00:07:14", + "start_sec": 420, + "end_sec": 434 + } + ], + "hockey": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/synthetic/hockey/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/synthetic/hockey/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 3-1\n(C) 0-4\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "2-2", + "3-1", + "0-4", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0001_pt1_q2", + "video_path": "videos/synthetic/hockey/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 1\n(C) Game 2\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 1", + "Game 2", + "Game 4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/synthetic/hockey/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/synthetic/hockey/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 0-4\n(C) 1-3\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "2-2", + "0-4", + "1-3", + "3-1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/synthetic/hockey/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 2\n(C) Game 1\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 2", + "Game 1", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/synthetic/hockey/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/synthetic/hockey/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 1-3\n(B) 0-4\n(C) 4-0\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "1-3", + "0-4", + "4-0", + "3-1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0003_pt1_q2", + "video_path": "videos/synthetic/hockey/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 3\n(C) Game 2\n(D) Game 1", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 3", + "Game 2", + "Game 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0004_pt1_q0", + "video_path": "videos/synthetic/hockey/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q1", + "video_path": "videos/synthetic/hockey/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 0-4\n(C) 1-3\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "3-1", + "0-4", + "1-3", + "2-2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0004_pt1_q2", + "video_path": "videos/synthetic/hockey/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 4\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 4", + "Game 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0005_pt1_q0", + "video_path": "videos/synthetic/hockey/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q1", + "video_path": "videos/synthetic/hockey/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 2-2\n(C) 0-4\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "4-0", + "2-2", + "0-4", + "3-1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0005_pt1_q2", + "video_path": "videos/synthetic/hockey/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 4\n(C) Game 3\n(D) Game 1", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 4", + "Game 3", + "Game 1" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0006_pt1_q0", + "video_path": "videos/synthetic/hockey/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1_q1", + "video_path": "videos/synthetic/hockey/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 4-0\n(C) 2-2\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "3-1", + "4-0", + "2-2", + "0-4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0006_pt1_q2", + "video_path": "videos/synthetic/hockey/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 1\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 1", + "Game 2", + "Game 3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0007_pt1_q0", + "video_path": "videos/synthetic/hockey/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1_q1", + "video_path": "videos/synthetic/hockey/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 0-4\n(C) 3-1\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "2-2", + "0-4", + "3-1", + "1-3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0007_pt1_q2", + "video_path": "videos/synthetic/hockey/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 4\n(C) Game 3\n(D) Game 2", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 4", + "Game 3", + "Game 2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0008_pt1_q0", + "video_path": "videos/synthetic/hockey/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1_q1", + "video_path": "videos/synthetic/hockey/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 4-0\n(C) 1-3\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "2-2", + "4-0", + "1-3", + "3-1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0008_pt1_q2", + "video_path": "videos/synthetic/hockey/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 3", + "Game 4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0009_pt1_q0", + "video_path": "videos/synthetic/hockey/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1_q1", + "video_path": "videos/synthetic/hockey/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 3-1\n(C) 2-2\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "0-4", + "3-1", + "2-2", + "1-3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0009_pt1_q2", + "video_path": "videos/synthetic/hockey/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 4\n(C) Game 1\n(D) Game 2", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 4", + "Game 1", + "Game 2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0010_pt1_q0", + "video_path": "videos/synthetic/hockey/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1_q1", + "video_path": "videos/synthetic/hockey/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 3-1\n(C) 0-4\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "2-2", + "3-1", + "0-4", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0010_pt1_q2", + "video_path": "videos/synthetic/hockey/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 3", + "Game 4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0011_pt1_q0", + "video_path": "videos/synthetic/hockey/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0011_pt1_q1", + "video_path": "videos/synthetic/hockey/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 4-0\n(C) 2-2\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "0-4", + "4-0", + "2-2", + "1-3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0011_pt1_q2", + "video_path": "videos/synthetic/hockey/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 1\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 1", + "Game 2", + "Game 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0012_pt1_q0", + "video_path": "videos/synthetic/hockey/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0012_pt1_q1", + "video_path": "videos/synthetic/hockey/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 1-3\n(B) 4-0\n(C) 0-4\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "1-3", + "4-0", + "0-4", + "2-2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0012_pt1_q2", + "video_path": "videos/synthetic/hockey/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 1\n(C) Game 3\n(D) Game 2", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 1", + "Game 3", + "Game 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0013_pt1_q0", + "video_path": "videos/synthetic/hockey/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0013_pt1_q1", + "video_path": "videos/synthetic/hockey/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 2-2\n(C) 0-4\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "4-0", + "2-2", + "0-4", + "3-1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0013_pt1_q2", + "video_path": "videos/synthetic/hockey/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 2\n(C) Game 1\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 2", + "Game 1", + "Game 4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0014_pt1_q0", + "video_path": "videos/synthetic/hockey/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0014_pt1_q1", + "video_path": "videos/synthetic/hockey/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 3-1\n(C) 0-4\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "2-2", + "3-1", + "0-4", + "1-3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0014_pt1_q2", + "video_path": "videos/synthetic/hockey/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 4\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 4", + "Game 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0015_pt1_q0", + "video_path": "videos/synthetic/hockey/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0015_pt1_q1", + "video_path": "videos/synthetic/hockey/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 1-3\n(C) 3-1\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "2-2", + "1-3", + "3-1", + "0-4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0015_pt1_q2", + "video_path": "videos/synthetic/hockey/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 4\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 4", + "Game 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0016_pt1_q0", + "video_path": "videos/synthetic/hockey/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0016_pt1_q1", + "video_path": "videos/synthetic/hockey/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 2-2\n(C) 0-4\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "3-1", + "2-2", + "0-4", + "1-3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0016_pt1_q2", + "video_path": "videos/synthetic/hockey/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 4\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 4", + "Game 2", + "Game 3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0017_pt1_q0", + "video_path": "videos/synthetic/hockey/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0017_pt1_q1", + "video_path": "videos/synthetic/hockey/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 1-3\n(C) 4-0\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "0-4", + "1-3", + "4-0", + "2-2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0017_pt1_q2", + "video_path": "videos/synthetic/hockey/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 4\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 4", + "Game 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0018_pt1_q0", + "video_path": "videos/synthetic/hockey/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0018_pt1_q1", + "video_path": "videos/synthetic/hockey/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 3-1\n(C) 1-3\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "0-4", + "3-1", + "1-3", + "2-2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0018_pt1_q2", + "video_path": "videos/synthetic/hockey/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 1\n(C) Game 4\n(D) Game 2", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 1", + "Game 4", + "Game 2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0019_pt1_q0", + "video_path": "videos/synthetic/hockey/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0019_pt1_q1", + "video_path": "videos/synthetic/hockey/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 1-3\n(B) 4-0\n(C) 2-2\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "1-3", + "4-0", + "2-2", + "0-4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0019_pt1_q2", + "video_path": "videos/synthetic/hockey/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 4\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 4", + "Game 2", + "Game 3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0020_pt1_q0", + "video_path": "videos/synthetic/hockey/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0020_pt1_q1", + "video_path": "videos/synthetic/hockey/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 1-3\n(C) 2-2\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "0-4", + "1-3", + "2-2", + "4-0" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0020_pt1_q2", + "video_path": "videos/synthetic/hockey/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 3\n(C) Game 1\n(D) Game 2", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 3", + "Game 1", + "Game 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0021_pt1_q0", + "video_path": "videos/synthetic/hockey/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0021_pt1_q1", + "video_path": "videos/synthetic/hockey/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 1-3\n(C) 3-1\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "4-0", + "1-3", + "3-1", + "2-2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0021_pt1_q2", + "video_path": "videos/synthetic/hockey/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 4\n(C) Game 1\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 4", + "Game 1", + "Game 3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0022_pt1_q0", + "video_path": "videos/synthetic/hockey/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0022_pt1_q1", + "video_path": "videos/synthetic/hockey/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 2-2\n(C) 3-1\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "0-4", + "2-2", + "3-1", + "1-3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0022_pt1_q2", + "video_path": "videos/synthetic/hockey/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 3", + "Game 4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0023_pt1_q0", + "video_path": "videos/synthetic/hockey/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0023_pt1_q1", + "video_path": "videos/synthetic/hockey/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 0-4\n(C) 2-2\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "3-1", + "0-4", + "2-2", + "1-3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0023_pt1_q2", + "video_path": "videos/synthetic/hockey/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 3\n(C) Game 1\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 3", + "Game 1", + "Game 4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0024_pt1_q0", + "video_path": "videos/synthetic/hockey/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0024_pt1_q1", + "video_path": "videos/synthetic/hockey/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 0-4\n(C) 4-0\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "3-1", + "0-4", + "4-0", + "2-2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0024_pt1_q2", + "video_path": "videos/synthetic/hockey/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 2\n(C) Game 4\n(D) Game 1", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 2", + "Game 4", + "Game 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0025_pt1_q0", + "video_path": "videos/synthetic/hockey/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0025_pt1_q1", + "video_path": "videos/synthetic/hockey/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 4-0\n(C) 0-4\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "3-1", + "4-0", + "0-4", + "1-3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0025_pt1_q2", + "video_path": "videos/synthetic/hockey/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 3\n(C) Game 2\n(D) Game 1", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 3", + "Game 2", + "Game 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0026_pt1_q0", + "video_path": "videos/synthetic/hockey/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0026_pt1_q1", + "video_path": "videos/synthetic/hockey/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 1-3\n(C) 2-2\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "3-1", + "1-3", + "2-2", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0026_pt1_q2", + "video_path": "videos/synthetic/hockey/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 4\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 4", + "Game 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0027_pt1_q0", + "video_path": "videos/synthetic/hockey/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0027_pt1_q1", + "video_path": "videos/synthetic/hockey/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 3-1\n(C) 2-2\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "0-4", + "3-1", + "2-2", + "1-3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0027_pt1_q2", + "video_path": "videos/synthetic/hockey/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 4\n(C) Game 1\n(D) Game 2", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 4", + "Game 1", + "Game 2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0028_pt1_q0", + "video_path": "videos/synthetic/hockey/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0028_pt1_q1", + "video_path": "videos/synthetic/hockey/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 0-4\n(C) 3-1\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "4-0", + "0-4", + "3-1", + "2-2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0028_pt1_q2", + "video_path": "videos/synthetic/hockey/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 3", + "Game 4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0029_pt1_q0", + "video_path": "videos/synthetic/hockey/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0029_pt1_q1", + "video_path": "videos/synthetic/hockey/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 2-2\n(C) 4-0\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "0-4", + "2-2", + "4-0", + "1-3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0029_pt1_q2", + "video_path": "videos/synthetic/hockey/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 3", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0030_pt1_q0", + "video_path": "videos/synthetic/hockey/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0030_pt1_q1", + "video_path": "videos/synthetic/hockey/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 3-1\n(C) 0-4\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "4-0", + "3-1", + "0-4", + "2-2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0030_pt1_q2", + "video_path": "videos/synthetic/hockey/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 3\n(C) Game 4\n(D) Game 1", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 3", + "Game 4", + "Game 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0031_pt1_q0", + "video_path": "videos/synthetic/hockey/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0031_pt1_q1", + "video_path": "videos/synthetic/hockey/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 4-0\n(C) 2-2\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "0-4", + "4-0", + "2-2", + "3-1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0031_pt1_q2", + "video_path": "videos/synthetic/hockey/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 1\n(C) Game 2\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 1", + "Game 2", + "Game 4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0032_pt1_q0", + "video_path": "videos/synthetic/hockey/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0032_pt1_q1", + "video_path": "videos/synthetic/hockey/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 4-0\n(C) 2-2\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "0-4", + "4-0", + "2-2", + "1-3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0032_pt1_q2", + "video_path": "videos/synthetic/hockey/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 3\n(C) Game 2\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 3", + "Game 2", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0033_pt1_q0", + "video_path": "videos/synthetic/hockey/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0033_pt1_q1", + "video_path": "videos/synthetic/hockey/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 1-3\n(B) 2-2\n(C) 3-1\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "1-3", + "2-2", + "3-1", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0033_pt1_q2", + "video_path": "videos/synthetic/hockey/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 4\n(C) Game 2\n(D) Game 1", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 4", + "Game 2", + "Game 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0034_pt1_q0", + "video_path": "videos/synthetic/hockey/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0034_pt1_q1", + "video_path": "videos/synthetic/hockey/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 1-3\n(B) 0-4\n(C) 2-2\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "1-3", + "0-4", + "2-2", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0034_pt1_q2", + "video_path": "videos/synthetic/hockey/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 1\n(C) Game 4\n(D) Game 2", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 1", + "Game 4", + "Game 2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0035_pt1_q0", + "video_path": "videos/synthetic/hockey/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0035_pt1_q1", + "video_path": "videos/synthetic/hockey/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 4-0\n(C) 3-1\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "2-2", + "4-0", + "3-1", + "1-3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0035_pt1_q2", + "video_path": "videos/synthetic/hockey/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 4\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 4", + "Game 2", + "Game 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0036_pt1_q0", + "video_path": "videos/synthetic/hockey/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0036_pt1_q1", + "video_path": "videos/synthetic/hockey/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 1-3\n(B) 2-2\n(C) 3-1\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "1-3", + "2-2", + "3-1", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0036_pt1_q2", + "video_path": "videos/synthetic/hockey/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 3", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0037_pt1_q0", + "video_path": "videos/synthetic/hockey/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0037_pt1_q1", + "video_path": "videos/synthetic/hockey/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 3-1\n(C) 0-4\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "2-2", + "3-1", + "0-4", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0037_pt1_q2", + "video_path": "videos/synthetic/hockey/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 2\n(C) Game 1\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 2", + "Game 1", + "Game 3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0038_pt1_q0", + "video_path": "videos/synthetic/hockey/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0038_pt1_q1", + "video_path": "videos/synthetic/hockey/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 3-1\n(C) 4-0\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "2-2", + "3-1", + "4-0", + "0-4" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0038_pt1_q2", + "video_path": "videos/synthetic/hockey/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 1\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 1", + "Game 2", + "Game 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0039_pt1_q0", + "video_path": "videos/synthetic/hockey/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0039_pt1_q1", + "video_path": "videos/synthetic/hockey/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 1-3\n(C) 4-0\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "2-2", + "1-3", + "4-0", + "3-1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0039_pt1_q2", + "video_path": "videos/synthetic/hockey/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 1\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 1", + "Game 2", + "Game 3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0040_pt1_q0", + "video_path": "videos/synthetic/hockey/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0040_pt1_q1", + "video_path": "videos/synthetic/hockey/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 0-4\n(C) 4-0\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "3-1", + "0-4", + "4-0", + "2-2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0040_pt1_q2", + "video_path": "videos/synthetic/hockey/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 3", + "Game 4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0041_pt1_q0", + "video_path": "videos/synthetic/hockey/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0041_pt1_q1", + "video_path": "videos/synthetic/hockey/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 0-4\n(C) 1-3\n(D) 4-0", + "answer_type": "mcq", + "choices": [ + "2-2", + "0-4", + "1-3", + "4-0" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0041_pt1_q2", + "video_path": "videos/synthetic/hockey/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 2\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 2", + "Game 3", + "Game 4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0042_pt1_q0", + "video_path": "videos/synthetic/hockey/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0042_pt1_q1", + "video_path": "videos/synthetic/hockey/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 2-2\n(C) 1-3\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "3-1", + "2-2", + "1-3", + "0-4" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0042_pt1_q2", + "video_path": "videos/synthetic/hockey/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 3\n(C) Game 2\n(D) Game 1", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 3", + "Game 2", + "Game 1" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0043_pt1_q0", + "video_path": "videos/synthetic/hockey/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0043_pt1_q1", + "video_path": "videos/synthetic/hockey/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 1-3\n(C) 3-1\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "4-0", + "1-3", + "3-1", + "2-2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0043_pt1_q2", + "video_path": "videos/synthetic/hockey/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 4\n(C) Game 1\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 4", + "Game 1", + "Game 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0044_pt1_q0", + "video_path": "videos/synthetic/hockey/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0044_pt1_q1", + "video_path": "videos/synthetic/hockey/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 2-2\n(B) 4-0\n(C) 1-3\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "2-2", + "4-0", + "1-3", + "0-4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0044_pt1_q2", + "video_path": "videos/synthetic/hockey/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 3\n(C) Game 2\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 3", + "Game 2", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0045_pt1_q0", + "video_path": "videos/synthetic/hockey/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0045_pt1_q1", + "video_path": "videos/synthetic/hockey/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 0-4\n(B) 4-0\n(C) 2-2\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "0-4", + "4-0", + "2-2", + "3-1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0045_pt1_q2", + "video_path": "videos/synthetic/hockey/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 1\n(B) Game 4\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 1", + "Game 4", + "Game 2", + "Game 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0046_pt1_q0", + "video_path": "videos/synthetic/hockey/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0046_pt1_q1", + "video_path": "videos/synthetic/hockey/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 2-2\n(C) 4-0\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "3-1", + "2-2", + "4-0", + "0-4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0046_pt1_q2", + "video_path": "videos/synthetic/hockey/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 3\n(B) Game 1\n(C) Game 2\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 3", + "Game 1", + "Game 2", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0047_pt1_q0", + "video_path": "videos/synthetic/hockey/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0047_pt1_q1", + "video_path": "videos/synthetic/hockey/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 3-1\n(B) 0-4\n(C) 1-3\n(D) 2-2", + "answer_type": "mcq", + "choices": [ + "3-1", + "0-4", + "1-3", + "2-2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0047_pt1_q2", + "video_path": "videos/synthetic/hockey/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 3", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0048_pt1_q0", + "video_path": "videos/synthetic/hockey/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0048_pt1_q1", + "video_path": "videos/synthetic/hockey/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 1-3\n(B) 4-0\n(C) 0-4\n(D) 3-1", + "answer_type": "mcq", + "choices": [ + "1-3", + "4-0", + "0-4", + "3-1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0048_pt1_q2", + "video_path": "videos/synthetic/hockey/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 3", + "Game 4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0049_pt1_q0", + "video_path": "videos/synthetic/hockey/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0049_pt1_q1", + "video_path": "videos/synthetic/hockey/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 1-3\n(C) 2-2\n(D) 0-4", + "answer_type": "mcq", + "choices": [ + "4-0", + "1-3", + "2-2", + "0-4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0049_pt1_q2", + "video_path": "videos/synthetic/hockey/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 4\n(B) Game 1\n(C) Game 2\n(D) Game 3", + "answer_type": "mcq", + "choices": [ + "Game 4", + "Game 1", + "Game 2", + "Game 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0050_pt1_q0", + "video_path": "videos/synthetic/hockey/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "How many own goals were committed in total across all games?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0050_pt1_q1", + "video_path": "videos/synthetic/hockey/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "What is the final score (red-blue)?\n\n(A) 4-0\n(B) 3-1\n(C) 2-2\n(D) 1-3", + "answer_type": "mcq", + "choices": [ + "4-0", + "3-1", + "2-2", + "1-3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary" + }, + { + "video_id": "0050_pt1_q2", + "video_path": "videos/synthetic/hockey/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "hockey", + "question": "Which game had the longest duration?\n\n(A) Game 2\n(B) Game 1\n(C) Game 3\n(D) Game 4", + "answer_type": "mcq", + "choices": [ + "Game 2", + "Game 1", + "Game 3", + "Game 4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "horse_racing": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/horse_racing/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "What rank is rider #14 in at the end of the video?", + "answer_type": "numeric", + "answer": 20, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=wIYD42DV3Ro", + "youtube_id": "wIYD42DV3Ro", + "youtube_title": "Kentucky Derby 2022 (FULL RACE) | NBC Sports", + "start_time": "00:00:00", + "end_time": "00:00:23", + "start_sec": 0, + "end_sec": 23, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/horse_racing/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "What rank is rider #4 in at the end of the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=wIYD42DV3Ro", + "youtube_id": "wIYD42DV3Ro", + "youtube_title": "Kentucky Derby 2022 (FULL RACE) | NBC Sports", + "start_time": "00:00:00", + "end_time": "00:00:23", + "start_sec": 0, + "end_sec": 23, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q0", + "video_path": "videos/youtube/horse_racing/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "How many riders were overtaken by rider #6?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=wIYD42DV3Ro", + "youtube_id": "wIYD42DV3Ro", + "youtube_title": "Kentucky Derby 2022 (FULL RACE) | NBC Sports", + "start_time": "00:01:00", + "end_time": "00:01:32", + "start_sec": 60, + "end_sec": 92, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q1", + "video_path": "videos/youtube/horse_racing/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "What rank is rider #12 in at the end of the video?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=wIYD42DV3Ro", + "youtube_id": "wIYD42DV3Ro", + "youtube_title": "Kentucky Derby 2022 (FULL RACE) | NBC Sports", + "start_time": "00:01:00", + "end_time": "00:01:32", + "start_sec": 60, + "end_sec": 92, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q2", + "video_path": "videos/youtube/horse_racing/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "How many people overtook rider #12?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=wIYD42DV3Ro", + "youtube_id": "wIYD42DV3Ro", + "youtube_title": "Kentucky Derby 2022 (FULL RACE) | NBC Sports", + "start_time": "00:01:00", + "end_time": "00:01:32", + "start_sec": 60, + "end_sec": 92, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/horse_racing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "What rank is rider #6 in at the end of the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=NqrDJmmh1AA", + "youtube_id": "NqrDJmmh1AA", + "youtube_title": "Kentucky Derby 2025 (FULL RACE) | NBC Sports", + "start_time": "00:00:00", + "end_time": "00:00:23", + "start_sec": 0, + "end_sec": 23, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/horse_racing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "What rank is rider #17 in at the end of the video?", + "answer_type": "numeric", + "answer": 18, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=NqrDJmmh1AA", + "youtube_id": "NqrDJmmh1AA", + "youtube_title": "Kentucky Derby 2025 (FULL RACE) | NBC Sports", + "start_time": "00:00:00", + "end_time": "00:00:23", + "start_sec": 0, + "end_sec": 23, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/horse_racing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "What rank is rider #1 in at the end of the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=NqrDJmmh1AA", + "youtube_id": "NqrDJmmh1AA", + "youtube_title": "Kentucky Derby 2025 (FULL RACE) | NBC Sports", + "start_time": "00:00:00", + "end_time": "00:00:23", + "start_sec": 0, + "end_sec": 23, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q0", + "video_path": "videos/youtube/horse_racing/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "How many riders did rider #8 overtake?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "camera_motion", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=NqrDJmmh1AA", + "youtube_id": "NqrDJmmh1AA", + "youtube_title": "Kentucky Derby 2025 (FULL RACE) | NBC Sports", + "start_time": "00:01:15", + "end_time": "00:01:38", + "start_sec": 75, + "end_sec": 98, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q1", + "video_path": "videos/youtube/horse_racing/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "horse_racing", + "question": "How many riders overtook rider #16 (the rider wearing yellow suit and red helmet)?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=NqrDJmmh1AA", + "youtube_id": "NqrDJmmh1AA", + "youtube_title": "Kentucky Derby 2025 (FULL RACE) | NBC Sports", + "start_time": "00:01:15", + "end_time": "00:01:38", + "start_sec": 75, + "end_sec": 98, + "choices": [], + "answer_index": null + } + ], + "keyboard": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/keyboard/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) interpole\n(B) incapable\n(C) pineapple\n(D) engrapple", + "answer_type": "mcq", + "choices": [ + "interpole", + "incapable", + "pineapple", + "engrapple" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/keyboard/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) questman\n(B) egestion\n(C) question\n(D) adustion", + "answer_type": "mcq", + "choices": [ + "questman", + "egestion", + "question", + "adustion" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/keyboard/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) burtonize\n(B) anatomize\n(C) castorite\n(D) customize", + "answer_type": "mcq", + "choices": [ + "burtonize", + "anatomize", + "castorite", + "customize" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/keyboard/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) christiad\n(B) christian\n(C) chrismary\n(D) christmas", + "answer_type": "mcq", + "choices": [ + "christiad", + "christian", + "chrismary", + "christmas" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/keyboard/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) spaniard\n(B) standard\n(C) staggard\n(D) standage", + "answer_type": "mcq", + "choices": [ + "spaniard", + "standard", + "staggard", + "standage" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/keyboard/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) acrylate\n(B) airedale\n(C) airplane\n(D) warplane", + "answer_type": "mcq", + "choices": [ + "acrylate", + "airedale", + "airplane", + "warplane" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/keyboard/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) monitor\n(B) donator\n(C) genitor\n(D) ignitor", + "answer_type": "mcq", + "choices": [ + "monitor", + "donator", + "genitor", + "ignitor" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/keyboard/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) stairless\n(B) staircase\n(C) stairwise\n(D) smearcase", + "answer_type": "mcq", + "choices": [ + "stairless", + "staircase", + "stairwise", + "smearcase" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/keyboard/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) chinking\n(B) bricking\n(C) blinking\n(D) drinking", + "answer_type": "mcq", + "choices": [ + "chinking", + "bricking", + "blinking", + "drinking" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/keyboard/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "keyboard", + "question": "What word was typed on the keyboard?\n\n(A) imperence\n(B) deference\n(C) inherence\n(D) inference", + "answer_type": "mcq", + "choices": [ + "imperence", + "deference", + "inherence", + "inference" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding", + "action_ambiguity" + ], + "state_element_type": "location", + "state_structure": "sequence" + } + ], + "latte_art": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/latte_art/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art made during the video takes the longest time?\n\n(A) The first cup\n(B) The second cup", + "answer_type": "mcq", + "choices": [ + "The first cup", + "The second cup" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "start_time": "00:02:00", + "end_time": "00:02:40", + "start_sec": 120, + "end_sec": 160 + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/latte_art/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art made during the video takes the longest time?\n\n(A) The second cup\n(B) The first cup", + "answer_type": "mcq", + "choices": [ + "The second cup", + "The first cup" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "start_time": "00:02:40", + "end_time": "00:03:25", + "start_sec": 160, + "end_sec": 205 + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/latte_art/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the longest time to make?\n\n(A) The third cup\n(B) The first cup\n(C) The second cup", + "answer_type": "mcq", + "choices": [ + "The third cup", + "The first cup", + "The second cup" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "start_time": "00:00:26.400", + "end_time": "00:01:17", + "start_sec": null, + "end_sec": 77 + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/latte_art/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the shortest time to make?\n\n(A) The third cup\n(B) The fourth cup\n(C) The first cup\n(D) The second cup", + "answer_type": "mcq", + "choices": [ + "The third cup", + "The fourth cup", + "The first cup", + "The second cup" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "start_time": "00:02:30.540", + "end_time": "00:03:26", + "start_sec": null, + "end_sec": 206 + }, + { + "video_id": "0002_pt3", + "video_path": "videos/youtube/latte_art/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the longest time to make?\n\n(A) The third cup\n(B) The second cup\n(C) The first cup", + "answer_type": "mcq", + "choices": [ + "The third cup", + "The second cup", + "The first cup" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "start_time": "00:03:56.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291 + }, + { + "video_id": "0002_pt4", + "video_path": "videos/youtube/latte_art/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the longest time to make?\n\n(A) The second cup\n(B) The first cup", + "answer_type": "mcq", + "choices": [ + "The second cup", + "The first cup" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "start_time": "00:07:04", + "end_time": "00:07:53", + "start_sec": 424, + "end_sec": 473 + }, + { + "video_id": "0003_pt1", + "video_path": "videos/youtube/latte_art/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the shortest time to make?,\n\n(A) The second cup\n(B) The first cup\n(C) The third cup", + "answer_type": "mcq", + "choices": [ + "The second cup", + "The first cup", + "The third cup" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "start_time": "00:00:00", + "end_time": "00:00:53", + "start_sec": 0, + "end_sec": 53 + }, + { + "video_id": "0003_pt2", + "video_path": "videos/youtube/latte_art/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the shortest time to make?,\n\n(A) The third cup\n(B) The second cup\n(C) The first cup", + "answer_type": "mcq", + "choices": [ + "The third cup", + "The second cup", + "The first cup" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "start_time": "00:02:27.500", + "end_time": "00:03:09", + "start_sec": null, + "end_sec": 189 + }, + { + "video_id": "0003_pt3", + "video_path": "videos/youtube/latte_art/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the longest time to make?,\n\n(A) The third cup\n(B) The first cup\n(C) The second cup", + "answer_type": "mcq", + "choices": [ + "The third cup", + "The first cup", + "The second cup" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "start_time": "00:03:08.650", + "end_time": "00:03:38", + "start_sec": null, + "end_sec": 218 + }, + { + "video_id": "0003_pt4", + "video_path": "videos/youtube/latte_art/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "latte_art", + "question": "Which cup of latte art takes the shortest time to make?,\n\n(A) The first cup\n(B) The third cup\n(C) The second cup", + "answer_type": "mcq", + "choices": [ + "The first cup", + "The third cup", + "The second cup" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "start_time": "00:03:38.900", + "end_time": "00:04:34", + "start_sec": null, + "end_sec": 274 + } + ], + "lego": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/lego/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "In total, how many different lego pieces are directly connected to the two yellow cross axles in the video?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:01:00", + "end_time": "00:01:54", + "start_sec": 60, + "end_sec": 114, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/lego/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many different lego pieces are directly connected to reddish brown cross axles in the video?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:01:00", + "end_time": "00:01:54", + "start_sec": 60, + "end_sec": 114, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q0", + "video_path": "videos/youtube/lego/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many blue lego connectors are used in the video?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:03:45", + "end_time": "00:04:05", + "start_sec": 225, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q1", + "video_path": "videos/youtube/lego/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "What's the maximum number of lego pieces that are connected to the same blue connector in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:03:45", + "end_time": "00:04:05", + "start_sec": 225, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q0", + "video_path": "videos/youtube/lego/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many red lego pieces are used in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:04:14", + "end_time": "00:04:34", + "start_sec": 254, + "end_sec": 274, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q1", + "video_path": "videos/youtube/lego/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Is the assembled lego piece symmetric?\n\n(A) Yes\n(B) No", + "answer_type": "mcq", + "choices": [ + "Yes", + "No" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:04:14", + "end_time": "00:04:34", + "start_sec": 254, + "end_sec": 274 + }, + { + "video_id": "0001_pt4_q0", + "video_path": "videos/youtube/lego/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many different lego pieces are directly connected to the long yellow axle in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:05:39", + "end_time": "00:05:55", + "start_sec": 339, + "end_sec": 355, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q1", + "video_path": "videos/youtube/lego/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Is the assembled lego piece symmetric?\n\n(A) Yes\n(B) No", + "answer_type": "mcq", + "choices": [ + "Yes", + "No" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:05:39", + "end_time": "00:05:55", + "start_sec": 339, + "end_sec": 355 + }, + { + "video_id": "0001_pt5", + "video_path": "videos/youtube/lego/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many blue lego connectors are used in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "start_time": "00:07:57", + "end_time": "00:08:15", + "start_sec": 477, + "end_sec": 495, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/lego/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "What's the largest number of distinct other pieces physcially attached to the same piece (excluding the attaching piece itself) in the final model?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=C-gak2TrheE", + "youtube_id": "C-gak2TrheE", + "youtube_title": "Easy DIY LEGO Bulldozer Instructions: Build for Your LEGO City", + "start_time": "00:00:13", + "end_time": "00:00:40", + "start_sec": 13, + "end_sec": 40, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/lego/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many green pieces are attached to white pieces, or have white pieces attached to them?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=C-gak2TrheE", + "youtube_id": "C-gak2TrheE", + "youtube_title": "Easy DIY LEGO Bulldozer Instructions: Build for Your LEGO City", + "start_time": "00:00:13", + "end_time": "00:00:40", + "start_sec": 13, + "end_sec": 40, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/lego/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Is the assembled lego piece symmetric?\n\n(A) Yes\n(B) No", + "answer_type": "mcq", + "choices": [ + "Yes", + "No" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=C-gak2TrheE", + "youtube_id": "C-gak2TrheE", + "youtube_title": "Easy DIY LEGO Bulldozer Instructions: Build for Your LEGO City", + "start_time": "00:00:13", + "end_time": "00:00:40", + "start_sec": 13, + "end_sec": 40 + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/lego/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many blue lego pieces are attached to, or have orange pieces attached to them?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=mvAfnSGK2GA", + "youtube_id": "mvAfnSGK2GA", + "youtube_title": "How to Build a LEGO Off-Road Car | Easy Step-by-Step Tutorial", + "start_time": "00:00:13", + "end_time": "00:00:38", + "start_sec": 13, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/lego/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many connections are made between lego pieces with different colors? Excluding tires.", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=mvAfnSGK2GA", + "youtube_id": "mvAfnSGK2GA", + "youtube_title": "How to Build a LEGO Off-Road Car | Easy Step-by-Step Tutorial", + "start_time": "00:00:13", + "end_time": "00:00:38", + "start_sec": 13, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q2", + "video_path": "videos/youtube/lego/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "What's the largest number of distinct other pieces physcially attached to the same piece (excluding the attaching piece itself) in the final model?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=mvAfnSGK2GA", + "youtube_id": "mvAfnSGK2GA", + "youtube_title": "How to Build a LEGO Off-Road Car | Easy Step-by-Step Tutorial", + "start_time": "00:00:13", + "end_time": "00:00:38", + "start_sec": 13, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q3", + "video_path": "videos/youtube/lego/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Is the assembled lego piece symmetric?\n\n(A) No\n(B) Yes", + "answer_type": "mcq", + "choices": [ + "No", + "Yes" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=mvAfnSGK2GA", + "youtube_id": "mvAfnSGK2GA", + "youtube_title": "How to Build a LEGO Off-Road Car | Easy Step-by-Step Tutorial", + "start_time": "00:00:13", + "end_time": "00:00:38", + "start_sec": 13, + "end_sec": 38 + }, + { + "video_id": "0004_pt1_q0", + "video_path": "videos/youtube/lego/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many connections are made between lego pieces with different colors?", + "answer_type": "numeric", + "answer": 21, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=_EtTIRBhA0k", + "youtube_id": "_EtTIRBhA0k", + "youtube_title": "Mini Lego Rescue Helicopter", + "start_time": "00:01:23", + "end_time": "00:01:52", + "start_sec": 83, + "end_sec": 112, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q1", + "video_path": "videos/youtube/lego/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Is the assembled lego piece symmetric?\n\n(A) No\n(B) Yes", + "answer_type": "mcq", + "choices": [ + "No", + "Yes" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=_EtTIRBhA0k", + "youtube_id": "_EtTIRBhA0k", + "youtube_title": "Mini Lego Rescue Helicopter", + "start_time": "00:01:23", + "end_time": "00:01:52", + "start_sec": 83, + "end_sec": 112 + }, + { + "video_id": "0004_pt1_q2", + "video_path": "videos/youtube/lego/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "What's the largest number of distinct other pieces physcially attached to the same piece (excluding the attaching piece itself) in the final model?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=_EtTIRBhA0k", + "youtube_id": "_EtTIRBhA0k", + "youtube_title": "Mini Lego Rescue Helicopter", + "start_time": "00:01:23", + "end_time": "00:01:52", + "start_sec": 83, + "end_sec": 112, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q0", + "video_path": "videos/youtube/lego/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many lego pieces are directly connected to the two long gray axles in total?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:01:10", + "end_time": "00:01:34", + "start_sec": 70, + "end_sec": 94, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q1", + "video_path": "videos/youtube/lego/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Based strictly on the footage, how many gears do we actually see the person install?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:01:10", + "end_time": "00:01:34", + "start_sec": 70, + "end_sec": 94, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q0", + "video_path": "videos/youtube/lego/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many lego pieces are directly connected to the long yellow axle in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:02:06", + "end_time": "00:02:18", + "start_sec": 126, + "end_sec": 138, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q1", + "video_path": "videos/youtube/lego/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many black axles are used in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:02:06", + "end_time": "00:02:18", + "start_sec": 126, + "end_sec": 138, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt3_q0", + "video_path": "videos/youtube/lego/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Based strictly on the footage, how many gears do we actually see the person install?", + "answer_type": "numeric", + "answer": 19, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:02:28", + "end_time": "00:03:04", + "start_sec": 148, + "end_sec": 184, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt3_q1", + "video_path": "videos/youtube/lego/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Based strictly on the footage, how many gear axles do we actually see the person install that do not connect to the yellow connector?", + "answer_type": "numeric", + "answer": 15, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:02:28", + "end_time": "00:03:04", + "start_sec": 148, + "end_sec": 184, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt4_q1", + "video_path": "videos/youtube/lego/0005_pt4.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "Is the assembled piece symmetric?\n\n(A) No\n(B) Yes", + "answer_type": "mcq", + "choices": [ + "No", + "Yes" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:03:21", + "end_time": "00:03:32", + "start_sec": 201, + "end_sec": 212 + }, + { + "video_id": "0005_pt5_q0", + "video_path": "videos/youtube/lego/0005_pt5.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "How many different colors are used in the assembled piece?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:04:05", + "end_time": "00:04:41", + "start_sec": 245, + "end_sec": 281, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt5_q1", + "video_path": "videos/youtube/lego/0005_pt5.mp4", + "video_source": "youtube", + "source_task": "lego", + "question": "What's the largest number of lego pieces that are directly connected to the same long yellow axle?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "homogeneity", + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "start_time": "00:04:05", + "end_time": "00:04:41", + "start_sec": 245, + "end_sec": 281, + "choices": [], + "answer_index": null + } + ], + "make_coffee": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/make_coffee/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/make_coffee/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/make_coffee/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/make_coffee/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/make_coffee/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/make_coffee/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/make_coffee/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/make_coffee/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/make_coffee/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/make_coffee/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/make_coffee/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/make_coffee/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/make_coffee/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/make_coffee/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/make_coffee/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/make_coffee/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/make_coffee/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/make_coffee/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/make_coffee/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/make_coffee/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/make_coffee/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/make_coffee/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/make_coffee/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/make_coffee/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/make_coffee/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/make_coffee/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/make_coffee/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/make_coffee/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/make_coffee/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/make_coffee/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/make_coffee/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/make_coffee/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/make_coffee/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/make_coffee/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/make_coffee/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/make_coffee/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/make_coffee/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/make_coffee/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/make_coffee/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/make_coffee/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/make_coffee/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/make_coffee/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/make_coffee/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/make_coffee/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/make_coffee/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/make_coffee/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/make_coffee/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/make_coffee/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/make_coffee/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/make_coffee/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "make_coffee", + "question": "There is first a water-pouring phase and then a separate espresso-pouring phase. A cup counts as successful only if it receives both water in the first phase and espresso in the second phase. How many cups were successful?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "occlusion", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "choices": [], + "answer_index": null + } + ], + "matryoshka": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/matryoshka/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the matryoshka set?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=9Go15bcEUUw", + "youtube_id": "9Go15bcEUUw", + "youtube_title": "Open nesting doll (Matryoshka)", + "start_time": "00:00:09", + "end_time": "00:01:30", + "start_sec": 9, + "end_sec": 90, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/matryoshka/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls wearing a bright red headscarf are there in the matryoshka set?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=9Go15bcEUUw", + "youtube_id": "9Go15bcEUUw", + "youtube_title": "Open nesting doll (Matryoshka)", + "start_time": "00:00:09", + "end_time": "00:01:30", + "start_sec": 9, + "end_sec": 90, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q2", + "video_path": "videos/youtube/matryoshka/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "Does the eighth doll wear a headscarf?\n\n(A) No\n(B) Yes", + "answer_type": "mcq", + "choices": [ + "No", + "Yes" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=9Go15bcEUUw", + "youtube_id": "9Go15bcEUUw", + "youtube_title": "Open nesting doll (Matryoshka)", + "start_time": "00:00:09", + "end_time": "00:01:30", + "start_sec": 9, + "end_sec": 90 + }, + { + "video_id": "0001_pt1_q3", + "video_path": "videos/youtube/matryoshka/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "What is the largest possible number of nesting dolls that can be nested together such that every doll with a bright red headscarf is smaller than every doll with a magenta headscarf?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=9Go15bcEUUw", + "youtube_id": "9Go15bcEUUw", + "youtube_title": "Open nesting doll (Matryoshka)", + "start_time": "00:00:09", + "end_time": "00:01:30", + "start_sec": 9, + "end_sec": 90, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/matryoshka/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the matryoshka set?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=uuJk9shmUGw", + "youtube_id": "uuJk9shmUGw", + "youtube_title": "Opening a Russian matryoshka doll", + "start_time": "00:00:00", + "end_time": "00:00:50", + "start_sec": 0, + "end_sec": 50, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/matryoshka/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls wearing a bright red headscarf are there in the matryoshka set?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=uuJk9shmUGw", + "youtube_id": "uuJk9shmUGw", + "youtube_title": "Opening a Russian matryoshka doll", + "start_time": "00:00:00", + "end_time": "00:00:50", + "start_sec": 0, + "end_sec": 50, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/matryoshka/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "What color is the fourth doll's headscarf?\n\n(A) yellow\n(B) magenta\n(C) red\n(D) white", + "answer_type": "mcq", + "choices": [ + "yellow", + "magenta", + "red", + "white" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=uuJk9shmUGw", + "youtube_id": "uuJk9shmUGw", + "youtube_title": "Opening a Russian matryoshka doll", + "start_time": "00:00:00", + "end_time": "00:00:50", + "start_sec": 0, + "end_sec": 50 + }, + { + "video_id": "0002_pt1_q3", + "video_path": "videos/youtube/matryoshka/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "What is the largest possible number of nesting dolls that can be nested together such that every doll with a bright red headscarf is smaller than every doll with a magenta headscarf?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=uuJk9shmUGw", + "youtube_id": "uuJk9shmUGw", + "youtube_title": "Opening a Russian matryoshka doll", + "start_time": "00:00:00", + "end_time": "00:00:50", + "start_sec": 0, + "end_sec": 50, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/youtube/matryoshka/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the matryoshka set?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=bhULVvRfFb4", + "youtube_id": "bhULVvRfFb4", + "youtube_title": "Smallest Matryoshka|Russian Nesting Dolls #shorts", + "start_time": "00:00:00", + "end_time": "00:00:14.977", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q0", + "video_path": "videos/youtube/matryoshka/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the matryoshka set?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=LfCvLn31s68", + "youtube_id": "LfCvLn31s68", + "youtube_title": "Вятская Матрёшка", + "start_time": "00:00:07", + "end_time": "00:01:45", + "start_sec": 7, + "end_sec": 105, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1_q1", + "video_path": "videos/youtube/matryoshka/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls have more than two flower or flower-bud pattern drawn on their bodies?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=LfCvLn31s68", + "youtube_id": "LfCvLn31s68", + "youtube_title": "Вятская Матрёшка", + "start_time": "00:00:07", + "end_time": "00:01:45", + "start_sec": 7, + "end_sec": 105, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q0", + "video_path": "videos/youtube/matryoshka/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the opened matryoshka set?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=vSZ9ruf74k8", + "youtube_id": "vSZ9ruf74k8", + "youtube_title": "Opening a small Matryoshka \"Tradition\"", + "start_time": "00:00:24", + "end_time": "00:01:04", + "start_sec": 24, + "end_sec": 64, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q1", + "video_path": "videos/youtube/matryoshka/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls (that are not already on the table at the beginning of the video) are wearing headscarves?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=vSZ9ruf74k8", + "youtube_id": "vSZ9ruf74k8", + "youtube_title": "Opening a small Matryoshka \"Tradition\"", + "start_time": "00:00:24", + "end_time": "00:01:04", + "start_sec": 24, + "end_sec": 64, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1_q0", + "video_path": "videos/youtube/matryoshka/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the opened matryoshka set?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XRCE6m_x6yA", + "youtube_id": "XRCE6m_x6yA", + "youtube_title": "Матрёшка \"Зимние Забавы\"", + "start_time": "00:00:03", + "end_time": "00:01:10", + "start_sec": 3, + "end_sec": 70, + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1_q1", + "video_path": "videos/youtube/matryoshka/0006_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls with human figures drawn on their bodies are there in the matryoshka set?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XRCE6m_x6yA", + "youtube_id": "XRCE6m_x6yA", + "youtube_title": "Матрёшка \"Зимние Забавы\"", + "start_time": "00:00:03", + "end_time": "00:01:10", + "start_sec": 3, + "end_sec": 70, + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1_q0", + "video_path": "videos/youtube/matryoshka/0007_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the opened matryoshka set?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RK5GT7Ku2Dg", + "youtube_id": "RK5GT7Ku2Dg", + "youtube_title": "Традиционная Матрёшка/Traditional Matryoshka", + "start_time": "00:00:05", + "end_time": "00:01:05", + "start_sec": 5, + "end_sec": 65, + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1_q1", + "video_path": "videos/youtube/matryoshka/0007_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls in the opened matryoshka set are wearing warm-colored (excluding black and white) headscarves? Do not count dolls without headscarves.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=RK5GT7Ku2Dg", + "youtube_id": "RK5GT7Ku2Dg", + "youtube_title": "Традиционная Матрёшка/Traditional Matryoshka", + "start_time": "00:00:05", + "end_time": "00:01:05", + "start_sec": 5, + "end_sec": 65, + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1_q2", + "video_path": "videos/youtube/matryoshka/0007_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "What is the maximum number of matryoshka dolls that can be nested together while including exactly two primary headscarf colors? (Dolls without headscarves should not be counted toward the two-color limit)", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=RK5GT7Ku2Dg", + "youtube_id": "RK5GT7Ku2Dg", + "youtube_title": "Традиционная Матрёшка/Traditional Matryoshka", + "start_time": "00:00:05", + "end_time": "00:01:05", + "start_sec": 5, + "end_sec": 65, + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1_q3", + "video_path": "videos/youtube/matryoshka/0007_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "What is the maximum number of dolls that can be nested together such that the set contains at least one warm-colored headscarf and at least one cool-colored headscarf, so that every doll with a warm-colored headscarf is smaller than the dolls with cool-colored headscarves? (Note: Black and white headscarves are neutral and do not count as warm or cool.)", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=RK5GT7Ku2Dg", + "youtube_id": "RK5GT7Ku2Dg", + "youtube_title": "Традиционная Матрёшка/Traditional Matryoshka", + "start_time": "00:00:05", + "end_time": "00:01:05", + "start_sec": 5, + "end_sec": 65, + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/youtube/matryoshka/0008_pt1.mp4", + "video_source": "youtube", + "source_task": "matryoshka", + "question": "How many dolls are there in the opened matryoshka set?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=3RIjHlDfMy8", + "youtube_id": "3RIjHlDfMy8", + "youtube_title": "Matryoshka \"Tea Party\"", + "start_time": "00:00:08", + "end_time": "00:01:05", + "start_sec": 8, + "end_sec": 65, + "choices": [], + "answer_index": null + } + ], + "memory_card": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/memory_card/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Flip two face-down cards with the same value to make a match. Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-5 and 6-10. Which two face-down positions contain the matching pair? Answer in (x,y) format.\n\n(A) (3,11)\n(B) (4,10)\n(C) (3,9)\n(D) (3,10)", + "answer_type": "mcq", + "choices": [ + "(3,11)", + "(4,10)", + "(3,9)", + "(3,10)" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "start_time": "00:00:28", + "end_time": "00:00:44", + "start_sec": 28, + "end_sec": 44 + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/memory_card/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Flip two face-down cards with the same value to make a match. Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-5 and 6-10. Which two face-down positions contain the matching pair? Answer in (x,y) format.\n\n(A) (3,5)\n(B) (2,4)\n(C) (1,5)\n(D) (2,5)", + "answer_type": "mcq", + "choices": [ + "(3,5)", + "(2,4)", + "(1,5)", + "(2,5)" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "start_time": "00:00:28", + "end_time": "00:01:00", + "start_sec": 28, + "end_sec": 60 + }, + { + "video_id": "0001_pt3_q0", + "video_path": "videos/youtube/memory_card/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Flip two face-down cards with the same value to make a match. Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-5 and 6-10. Up to the end of the clip, which positions have not yet been revealed or flipped face-up?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "start_time": "00:00:28", + "end_time": "00:01:26", + "start_sec": 28, + "end_sec": 86, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q1", + "video_path": "videos/youtube/memory_card/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Flip two face-down cards with the same value to make a match. Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-5 and 6-10. What values should be on the cards that have not yet been revealed or flipped face-up by the end of the clip?\n\n(A) A\n(B) 5\n(C) J\n(D) Q", + "answer_type": "mcq", + "choices": [ + "A", + "5", + "J", + "Q" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "start_time": "00:00:28", + "end_time": "00:01:26", + "start_sec": 28, + "end_sec": 86 + }, + { + "video_id": "0001_pt4", + "video_path": "videos/youtube/memory_card/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Flip two face-down cards with the same value to make a match. Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-2 and 3-6. What are the optimal next two flips? Answer in (x,y) format.\n\n(A) (1,4)\n(B) (1,6)\n(C) (1,5)\n(D) (2,5)", + "answer_type": "mcq", + "choices": [ + "(1,4)", + "(1,6)", + "(1,5)", + "(2,5)" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "start_time": "00:01:07", + "end_time": "00:01:21", + "start_sec": 67, + "end_sec": 81 + }, + { + "video_id": "0001_pt5_q0", + "video_path": "videos/youtube/memory_card/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Flip two face-down cards with the same value to make a match. Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-2 and 3-6. Which position matches the card placed in position 1 in the clip?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "start_time": "00:01:07", + "end_time": "00:01:30", + "start_sec": 67, + "end_sec": 90, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q1", + "video_path": "videos/youtube/memory_card/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Flip two face-down cards with the same value to make a match. Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-2 and 3-6. Which position matches the card placed in position 3 in the clip?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "start_time": "00:01:07", + "end_time": "00:01:30", + "start_sec": 67, + "end_sec": 90, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/memory_card/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Number the cards starting from the top-left (from the viewer's perspective). Count left to right across each row, then move to the next row and start again from the left. The rows are numbered 1-6, 7-13, 14-20, and 21-26. Which numbered card matches the card last flipped over?", + "answer_type": "numeric", + "answer": 12, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=_UCpR0vmCvw", + "youtube_id": "_UCpR0vmCvw", + "youtube_title": "Just Desserts - Concentration", + "start_time": "00:02:00", + "end_time": "00:03:07.800", + "start_sec": 120, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q0", + "video_path": "videos/youtube/memory_card/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Number the six cards as 1-6 from left to right across each row (from the viewer's perspective), then move to the next row and start again from the left. Which positions are A? Answer in (x,y) format.\n\n(A) (2,4)\n(B) (2,5)\n(C) (3,5)\n(D) (1,5)", + "answer_type": "mcq", + "choices": [ + "(2,4)", + "(2,5)", + "(3,5)", + "(1,5)" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=_UCpR0vmCvw", + "youtube_id": "_UCpR0vmCvw", + "youtube_title": "Just Desserts - Concentration", + "start_time": "00:06:35", + "end_time": "00:07:34.345", + "start_sec": 395, + "end_sec": null + }, + { + "video_id": "0002_pt2_q1", + "video_path": "videos/youtube/memory_card/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Number the six cards as 1-6 from left to right across each row (from the viewer's perspective), then move to the next row and start again from the left. Which positions are 10? Answer in (x,y) format.\n\n(A) (4,6)\n(B) (4,5)\n(C) (3,6)\n(D) (4,7)", + "answer_type": "mcq", + "choices": [ + "(4,6)", + "(4,5)", + "(3,6)", + "(4,7)" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=_UCpR0vmCvw", + "youtube_id": "_UCpR0vmCvw", + "youtube_title": "Just Desserts - Concentration", + "start_time": "00:06:35", + "end_time": "00:07:34.345", + "start_sec": 395, + "end_sec": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/youtube/memory_card/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Rules: This is a memory card game. Use the panel numbers shown on screen. Based on the panels revealed earlier in the clip, which two numbered panels should be selected next to make a matching pair? Answer in (x,y) format.\n\n(A) (1,2)\n(B) (0,3)\n(C) (2,3)\n(D) (1,3)", + "answer_type": "mcq", + "choices": [ + "(1,2)", + "(0,3)", + "(2,3)", + "(1,3)" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=IRpUDwYLo7M", + "youtube_id": "IRpUDwYLo7M", + "youtube_title": "Classic Concentration gameplay (PC Game, 1988)", + "start_time": "00:03:20", + "end_time": "00:03:38.500", + "start_sec": 200, + "end_sec": null + }, + { + "video_id": "0003_pt2_q0", + "video_path": "videos/youtube/memory_card/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "Which numbered card matches the lastly revealed card?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=IRpUDwYLo7M", + "youtube_id": "IRpUDwYLo7M", + "youtube_title": "Classic Concentration gameplay (PC Game, 1988)", + "start_time": "00:03:20", + "end_time": "00:04:33", + "start_sec": 200, + "end_sec": 273, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q1", + "video_path": "videos/youtube/memory_card/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "memory_card", + "question": "How many matches, including those made with wild cards, were guessed without complete evidence because both (or one of the) cards had not yet been revealed?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=IRpUDwYLo7M", + "youtube_id": "IRpUDwYLo7M", + "youtube_title": "Classic Concentration gameplay (PC Game, 1988)", + "start_time": "00:03:20", + "end_time": "00:04:33", + "start_sec": 200, + "end_sec": 273, + "choices": [], + "answer_index": null + } + ], + "morse": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/morse/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) APPLE\n(B) AMPLE\n(C) APPLY\n(D) ABELE", + "answer_type": "mcq", + "choices": [ + "APPLE", + "AMPLE", + "APPLY", + "ABELE" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/morse/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) ANANAS\n(B) BANABA\n(C) ANANDA\n(D) BANANA", + "answer_type": "mcq", + "choices": [ + "ANANAS", + "BANABA", + "ANANDA", + "BANANA" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/morse/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) PHONY\n(B) PHENE\n(C) PHONO\n(D) PHONE", + "answer_type": "mcq", + "choices": [ + "PHONY", + "PHENE", + "PHONO", + "PHONE" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/morse/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) BIGHT\n(B) DIGHT\n(C) LIGHT\n(D) EIGHT", + "answer_type": "mcq", + "choices": [ + "BIGHT", + "DIGHT", + "LIGHT", + "EIGHT" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/morse/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) SHIFT\n(B) SHIRT\n(C) SHIRE\n(D) SHIRK", + "answer_type": "mcq", + "choices": [ + "SHIFT", + "SHIRT", + "SHIRE", + "SHIRK" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/morse/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) CAPTOR\n(B) LAWTON\n(C) LACTOL\n(D) LAPTOP", + "answer_type": "mcq", + "choices": [ + "CAPTOR", + "LAWTON", + "LACTOL", + "LAPTOP" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/morse/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) FABLE\n(B) TABLE\n(C) GABLE\n(D) CABLE", + "answer_type": "mcq", + "choices": [ + "FABLE", + "TABLE", + "GABLE", + "CABLE" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/morse/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) BEIRA\n(B) ZABRA\n(C) BESRA\n(D) ZEBRA", + "answer_type": "mcq", + "choices": [ + "BEIRA", + "ZABRA", + "BESRA", + "ZEBRA" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/morse/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) BAIERA\n(B) BAHERA\n(C) CAMARA\n(D) CAMERA", + "answer_type": "mcq", + "choices": [ + "BAIERA", + "BAHERA", + "CAMARA", + "CAMERA" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/morse/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "morse", + "question": "What text message is encoded by the Morse light flashes? Use this Morse mapping: A=.-, B=-..., C=-.-., D=-.., E=., F=..-., G=--., H=...., I=.., J=.---, K=-.-, L=.-.., M=--, N=-., O=---, P=.--., Q=--.-, R=.-., S=..., T=-, U=..-, V=...-, W=.--, X=-..-, Y=-.--, Z=--.., 0=-----, 1=.----, 2=..---, 3=...--, 4=....-, 5=....., 6=-...., 7=--..., 8=---.., 9=----., .=.-.-.-, ,=--..--, ?=..--.., '=.----., !=-.-.--, /=-..-., (=-.--., )=-.--.-, &=.-..., :=---..., ;=-.-.-., ==-...-, +=.-.-., -=-....-, _=..--.-, \"=.-..-., $=...-..-, @=.--.-.\n\n(A) COFFER\n(B) COFFEE\n(C) COFFLE\n(D) COFFEA", + "answer_type": "mcq", + "choices": [ + "COFFER", + "COFFEE", + "COFFLE", + "COFFEA" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "symbolic_decoding" + ], + "state_element_type": "attribute", + "state_structure": "sequence" + } + ], + "neuro_tracker": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/neuro_tracker/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the four balls highlighted at the very beginning. Among the balls numbered 1-8 shown at the end, which numbers correspond to the originally highlighted balls? Answer in (x,y,z,w) format, ordered from smallest to largest number.\n\n(A) (3,4,5,6)\n(B) (3,4,5,7)\n(C) (2,4,5,6)", + "answer_type": "mcq", + "choices": [ + "(3,4,5,6)", + "(3,4,5,7)", + "(2,4,5,6)" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=cmFmfkuae2w", + "youtube_id": "cmFmfkuae2w", + "youtube_title": "NeuroTracker Tactical - Soccer", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12 + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/neuro_tracker/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the lowest position?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=cmFmfkuae2w", + "youtube_id": "cmFmfkuae2w", + "youtube_title": "NeuroTracker Tactical - Soccer", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q2", + "video_path": "videos/youtube/neuro_tracker/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the leftmost position?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=cmFmfkuae2w", + "youtube_id": "cmFmfkuae2w", + "youtube_title": "NeuroTracker Tactical - Soccer", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q3", + "video_path": "videos/youtube/neuro_tracker/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the rightmost position?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=cmFmfkuae2w", + "youtube_id": "cmFmfkuae2w", + "youtube_title": "NeuroTracker Tactical - Soccer", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q4", + "video_path": "videos/youtube/neuro_tracker/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the topmost position?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=cmFmfkuae2w", + "youtube_id": "cmFmfkuae2w", + "youtube_title": "NeuroTracker Tactical - Soccer", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/neuro_tracker/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the four balls highlighted at the very beginning. Among the balls numbered 1-8 shown at the end, which numbers correspond to the originally highlighted balls? Answer in (x,y,z,w) format, ordered from smallest to largest number.\n\n(A) (2,5,7,8)\n(B) (2,5,6,8)\n(C) (3,5,6,8)\n(D) (1,5,6,8)", + "answer_type": "mcq", + "choices": [ + "(2,5,7,8)", + "(2,5,6,8)", + "(3,5,6,8)", + "(1,5,6,8)" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=HAg6ZumNOZY", + "youtube_id": "HAg6ZumNOZY", + "youtube_title": "NeuroTracker Tactical - Football", + "start_time": "00:00:00", + "end_time": "00:00:14", + "start_sec": 0, + "end_sec": 14 + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/neuro_tracker/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the lowest position?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=HAg6ZumNOZY", + "youtube_id": "HAg6ZumNOZY", + "youtube_title": "NeuroTracker Tactical - Football", + "start_time": "00:00:00", + "end_time": "00:00:14", + "start_sec": 0, + "end_sec": 14, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/neuro_tracker/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the leftmost position?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=HAg6ZumNOZY", + "youtube_id": "HAg6ZumNOZY", + "youtube_title": "NeuroTracker Tactical - Football", + "start_time": "00:00:00", + "end_time": "00:00:14", + "start_sec": 0, + "end_sec": 14, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q3", + "video_path": "videos/youtube/neuro_tracker/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the rightmost position?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=HAg6ZumNOZY", + "youtube_id": "HAg6ZumNOZY", + "youtube_title": "NeuroTracker Tactical - Football", + "start_time": "00:00:00", + "end_time": "00:00:14", + "start_sec": 0, + "end_sec": 14, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q4", + "video_path": "videos/youtube/neuro_tracker/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the topmost position?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=HAg6ZumNOZY", + "youtube_id": "HAg6ZumNOZY", + "youtube_title": "NeuroTracker Tactical - Football", + "start_time": "00:00:00", + "end_time": "00:00:14", + "start_sec": 0, + "end_sec": 14, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/neuro_tracker/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the four balls highlighted at the very beginning. Among the balls numbered 1-8 shown at the end, which numbers correspond to the originally highlighted balls? Answer in (x,y,z,w) format, ordered from smallest to largest number.\n\n(A) (2,4,6,7)\n(B) (3,4,6,8)\n(C) (3,4,5,7)\n(D) (3,4,6,7)", + "answer_type": "mcq", + "choices": [ + "(2,4,6,7)", + "(3,4,6,8)", + "(3,4,5,7)", + "(3,4,6,7)" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=abH_HVCwmh0", + "youtube_id": "abH_HVCwmh0", + "youtube_title": "NeuroTracker Tactical - Baseball", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12 + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/neuro_tracker/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the lowest position?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=abH_HVCwmh0", + "youtube_id": "abH_HVCwmh0", + "youtube_title": "NeuroTracker Tactical - Baseball", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q2", + "video_path": "videos/youtube/neuro_tracker/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the leftmost position?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=abH_HVCwmh0", + "youtube_id": "abH_HVCwmh0", + "youtube_title": "NeuroTracker Tactical - Baseball", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q3", + "video_path": "videos/youtube/neuro_tracker/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the rightmost position?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=abH_HVCwmh0", + "youtube_id": "abH_HVCwmh0", + "youtube_title": "NeuroTracker Tactical - Baseball", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q4", + "video_path": "videos/youtube/neuro_tracker/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "neuro_tracker", + "question": "Track the balls highlighted at the very beginning. At the end, among those highlighted balls, which numbered ball is at the topmost position?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "camera_motion", + "multi_entity_attribution", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=abH_HVCwmh0", + "youtube_id": "abH_HVCwmh0", + "youtube_title": "NeuroTracker Tactical - Baseball", + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "choices": [], + "answer_index": null + } + ], + "numberpad": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/numberpad/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 5,7\n(B) 0,7\n(C) 1,7\n(D) 2,7", + "answer_type": "mcq", + "choices": [ + "5,7", + "0,7", + "1,7", + "2,7" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/numberpad/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 2,4\n(B) 1,4\n(C) 0,4\n(D) 3,4", + "answer_type": "mcq", + "choices": [ + "2,4", + "1,4", + "0,4", + "3,4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/numberpad/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 5,9\n(B) 2,9\n(C) 1,9\n(D) 0,9", + "answer_type": "mcq", + "choices": [ + "5,9", + "2,9", + "1,9", + "0,9" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/numberpad/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 0,7\n(B) 0,1\n(C) 0,3\n(D) 0,2", + "answer_type": "mcq", + "choices": [ + "0,7", + "0,1", + "0,3", + "0,2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/numberpad/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 4,6\n(B) 1,6\n(C) 0,6\n(D) 2,6", + "answer_type": "mcq", + "choices": [ + "4,6", + "1,6", + "0,6", + "2,6" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/numberpad/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 0,8\n(B) 1,2\n(C) 1,3\n(D) 1,8", + "answer_type": "mcq", + "choices": [ + "0,8", + "1,2", + "1,3", + "1,8" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/numberpad/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 0,9\n(B) 2,9\n(C) 1,9\n(D) 2,3", + "answer_type": "mcq", + "choices": [ + "0,9", + "2,9", + "1,9", + "2,3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/numberpad/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 1,5\n(B) 0,5\n(C) 2,5\n(D) 3,5", + "answer_type": "mcq", + "choices": [ + "1,5", + "0,5", + "2,5", + "3,5" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/numberpad/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 7,8\n(B) 2,8\n(C) 1,8\n(D) 0,8", + "answer_type": "mcq", + "choices": [ + "7,8", + "2,8", + "1,8", + "0,8" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/numberpad/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "numberpad", + "question": "Which two numbers on the number pad were not pressed? Answer with two numbers separated by a comma.\n\n(A) 2,3\n(B) 0,4\n(C) 2,4\n(D) 1,4", + "answer_type": "mcq", + "choices": [ + "2,3", + "0,4", + "2,4", + "1,4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "symbolic_decoding" + ], + "state_element_type": "location", + "state_structure": "set" + } + ], + "order_packing": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/order_packing/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Based on the number of cookies needed per box, how many cookies are required to pack 6 boxes in total?", + "answer_type": "numeric", + "answer": 18, + "perceptual_complexity": [], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=InbBex5katE", + "youtube_id": "InbBex5katE", + "youtube_title": "Packing order with me/ Selling homemade cookies/ Making money from home/ Silent vlog 🍃", + "start_time": "00:01:43", + "end_time": "00:02:29", + "start_sec": 103, + "end_sec": 149, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/order_packing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:00:00", + "end_time": "00:01:15", + "start_sec": 0, + "end_sec": 75, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/order_packing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items have already been packed before the white sandal?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:00:00", + "end_time": "00:01:15", + "start_sec": 0, + "end_sec": 75, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/order_packing/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Assuming only one of the medium-sized boxes from the video is used, how many of the shown grocery items can be packed into?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:00:00", + "end_time": "00:01:15", + "start_sec": 0, + "end_sec": 75, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q0", + "video_path": "videos/youtube/order_packing/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:01:25", + "end_time": "00:02:48", + "start_sec": 85, + "end_sec": 168, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q1", + "video_path": "videos/youtube/order_packing/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many boxes are used in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:01:25", + "end_time": "00:02:48", + "start_sec": 85, + "end_sec": 168, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q2", + "video_path": "videos/youtube/order_packing/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Assuming only one of the smallest boxes from the video is used, how many of the shown grocery items can be packed into?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:01:25", + "end_time": "00:02:48", + "start_sec": 85, + "end_sec": 168, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q0", + "video_path": "videos/youtube/order_packing/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:02:57", + "end_time": "00:04:15", + "start_sec": 177, + "end_sec": 255, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q1", + "video_path": "videos/youtube/order_packing/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many different kinds of grocery items are packed in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:02:57", + "end_time": "00:04:15", + "start_sec": 177, + "end_sec": 255, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q0", + "video_path": "videos/youtube/order_packing/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:04:58", + "end_time": "00:05:56", + "start_sec": 298, + "end_sec": 356, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q1", + "video_path": "videos/youtube/order_packing/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Is the earthy-yellow item packed after the blue item?\n\n(A) Yes\n(B) No", + "answer_type": "mcq", + "choices": [ + "Yes", + "No" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:04:58", + "end_time": "00:05:56", + "start_sec": 298, + "end_sec": 356 + }, + { + "video_id": "0002_pt4_q2", + "video_path": "videos/youtube/order_packing/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Suppose two additional orders arrive: one containing three grocery items of different colors, and another containing a single item (matching the item types shown previously). Including the original orders from the video, how many bags are needed in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:04:58", + "end_time": "00:05:56", + "start_sec": 298, + "end_sec": 356, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q0", + "video_path": "videos/youtube/order_packing/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:05:58", + "end_time": "00:07:16.791", + "start_sec": 358, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q1", + "video_path": "videos/youtube/order_packing/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many bags are used in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "start_time": "00:05:58", + "end_time": "00:07:16.791", + "start_sec": 358, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/order_packing/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:00:00", + "end_time": "00:00:57", + "start_sec": 0, + "end_sec": 57, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/order_packing/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Among all packed grocery items, what is the maximum count of items sharing the same packaging color?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:00:00", + "end_time": "00:00:57", + "start_sec": 0, + "end_sec": 57, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q2", + "video_path": "videos/youtube/order_packing/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Once packing is complete, what is the minimum number of grocery items that must be removed so that one of the items bagged with transparent plastic is fully visible, with nothing even partially covering it?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:00:00", + "end_time": "00:00:57", + "start_sec": 0, + "end_sec": 57, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q0", + "video_path": "videos/youtube/order_packing/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Once packing is complete, what is the minimum number of grocery items that must be removed so that one of the items bagged with transparent plastic is fully visible, with nothing even partially covering it?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:01:50", + "end_time": "00:02:32", + "start_sec": 110, + "end_sec": 152, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q1", + "video_path": "videos/youtube/order_packing/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:01:50", + "end_time": "00:02:32", + "start_sec": 110, + "end_sec": 152, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q2", + "video_path": "videos/youtube/order_packing/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Among all packed grocery items, what is the maximum count of items sharing the same packaging color?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:01:50", + "end_time": "00:02:32", + "start_sec": 110, + "end_sec": 152, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q0", + "video_path": "videos/youtube/order_packing/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:02:45", + "end_time": "00:04:05", + "start_sec": 165, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q1", + "video_path": "videos/youtube/order_packing/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "What's the minimum number of grocery items packed in a single box?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:02:45", + "end_time": "00:04:05", + "start_sec": 165, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q2", + "video_path": "videos/youtube/order_packing/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Suppose two additional orders arrive: one containing three grocery items, and another containing a single item (matching the item sizes shown previously). Including the original orders from the video, how many boxes are needed in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:02:45", + "end_time": "00:04:05", + "start_sec": 165, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q0", + "video_path": "videos/youtube/order_packing/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:04:19", + "end_time": "00:05:28", + "start_sec": 259, + "end_sec": 328, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q1", + "video_path": "videos/youtube/order_packing/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Suppose one additional order arrives containing 4 records. How many more boxes will be needed?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:04:19", + "end_time": "00:05:28", + "start_sec": 259, + "end_sec": 328, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q2", + "video_path": "videos/youtube/order_packing/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Among all packed grocery items, what is the maximum count of items sharing the same packaging color?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:04:19", + "end_time": "00:05:28", + "start_sec": 259, + "end_sec": 328, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q0", + "video_path": "videos/youtube/order_packing/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:06:03", + "end_time": "00:07:05", + "start_sec": 363, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q1", + "video_path": "videos/youtube/order_packing/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many unique colors are represented among the packed grocery items?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:06:03", + "end_time": "00:07:05", + "start_sec": 363, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q2", + "video_path": "videos/youtube/order_packing/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Among all packed grocery items, what is the maximum count of items sharing the same packaging color?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:06:03", + "end_time": "00:07:05", + "start_sec": 363, + "end_sec": 425, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q0", + "video_path": "videos/youtube/order_packing/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:07:13", + "end_time": "00:08:23.571", + "start_sec": 433, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q1", + "video_path": "videos/youtube/order_packing/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many bags are used in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:07:13", + "end_time": "00:08:23.571", + "start_sec": 433, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/youtube/order_packing/0004_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:00:00", + "end_time": "00:00:52", + "start_sec": 0, + "end_sec": 52, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt2_q0", + "video_path": "videos/youtube/order_packing/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:01:00", + "end_time": "00:02:06", + "start_sec": 60, + "end_sec": 126, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt2_q1", + "video_path": "videos/youtube/order_packing/0004_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Assuming three more orders arrive, each containing 4 records (matching the sizes shown previously), how many additional boxes will be needed?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:01:00", + "end_time": "00:02:06", + "start_sec": 60, + "end_sec": 126, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt3_q0", + "video_path": "videos/youtube/order_packing/0004_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:04:29", + "end_time": "00:05:40", + "start_sec": 269, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt3_q1", + "video_path": "videos/youtube/order_packing/0004_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "If identical grocery items are grouped together, how many total item groups are there in the order, including groups that contain only one item?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:04:29", + "end_time": "00:05:40", + "start_sec": 269, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt3_q2", + "video_path": "videos/youtube/order_packing/0004_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Counting all items that have at least one identical match in the order, how many total grocery items are duplicated?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:04:29", + "end_time": "00:05:40", + "start_sec": 269, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt3_q3", + "video_path": "videos/youtube/order_packing/0004_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Once the packing is complete, what is the minimum number of grocery grocery items that must be removed to uncover the blue bag of Chips Ahoy?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "start_time": "00:04:29", + "end_time": "00:05:40", + "start_sec": 269, + "end_sec": 340, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q0", + "video_path": "videos/youtube/order_packing/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:00:00", + "end_time": "00:01:18", + "start_sec": 0, + "end_sec": 78, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q1", + "video_path": "videos/youtube/order_packing/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "If identical grocery items are grouped together, how many total item groups are there in the order, excluding groups that contain only one item?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:00:00", + "end_time": "00:01:18", + "start_sec": 0, + "end_sec": 78, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1_q2", + "video_path": "videos/youtube/order_packing/0005_pt1.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Counting all items that have at least one identical match in the order, how many total grocery items are duplicated?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:00:00", + "end_time": "00:01:18", + "start_sec": 0, + "end_sec": 78, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q0", + "video_path": "videos/youtube/order_packing/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:01:34", + "end_time": "00:02:25", + "start_sec": 94, + "end_sec": 145, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q1", + "video_path": "videos/youtube/order_packing/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Counting all items that have at least one identical match in the order, how many total grocery items are duplicated?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:01:34", + "end_time": "00:02:25", + "start_sec": 94, + "end_sec": 145, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q2", + "video_path": "videos/youtube/order_packing/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "If identical grocery items are grouped together, how many total item groups are there in the order, excluding groups that contain only one item?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:01:34", + "end_time": "00:02:25", + "start_sec": 94, + "end_sec": 145, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt2_q3", + "video_path": "videos/youtube/order_packing/0005_pt2.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "If a new order arrives containing four grocery items identical to those in the video's final order, will a larger box be required?\n\n(A) Yes\n(B) No", + "answer_type": "mcq", + "choices": [ + "Yes", + "No" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:01:34", + "end_time": "00:02:25", + "start_sec": 94, + "end_sec": 145 + }, + { + "video_id": "0005_pt3_q0", + "video_path": "videos/youtube/order_packing/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:02:35", + "end_time": "00:03:35", + "start_sec": 155, + "end_sec": 215, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt3_q1", + "video_path": "videos/youtube/order_packing/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "If identical grocery items are grouped together, how many total item groups are there in the order, excluding groups that contain only one item?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:02:35", + "end_time": "00:03:35", + "start_sec": 155, + "end_sec": 215, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt3_q2", + "video_path": "videos/youtube/order_packing/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Counting all items that have at least one identical match in the order, how many total grocery items are duplicated?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:02:35", + "end_time": "00:03:35", + "start_sec": 155, + "end_sec": 215, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt3_q3", + "video_path": "videos/youtube/order_packing/0005_pt3.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Which order has the most grocery items?\n\n(A) The first one\n(B) The second one\n(C) The third one", + "answer_type": "mcq", + "choices": [ + "The first one", + "The second one", + "The third one" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:02:35", + "end_time": "00:03:35", + "start_sec": 155, + "end_sec": 215 + }, + { + "video_id": "0005_pt4_q0", + "video_path": "videos/youtube/order_packing/0005_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:03:22", + "end_time": "00:04:30", + "start_sec": 202, + "end_sec": 270, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt4_q1", + "video_path": "videos/youtube/order_packing/0005_pt4.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Which order has the most grocery items?\n\n(A) The first one\n(B) The second one\n(C) The fourth one\n(D) The third one", + "answer_type": "mcq", + "choices": [ + "The first one", + "The second one", + "The fourth one", + "The third one" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:03:22", + "end_time": "00:04:30", + "start_sec": 202, + "end_sec": 270 + }, + { + "video_id": "0005_pt5_q0", + "video_path": "videos/youtube/order_packing/0005_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many grocery items are packed in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:04:40", + "end_time": "00:05:50", + "start_sec": 280, + "end_sec": 350, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt5_q1", + "video_path": "videos/youtube/order_packing/0005_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "Which order has the largest item?\n\n(A) The first one\n(B) The third one\n(C) The second one", + "answer_type": "mcq", + "choices": [ + "The first one", + "The third one", + "The second one" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:04:40", + "end_time": "00:05:50", + "start_sec": 280, + "end_sec": 350 + }, + { + "video_id": "0005_pt5_q2", + "video_path": "videos/youtube/order_packing/0005_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "How many boxes are used in total?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:04:40", + "end_time": "00:05:50", + "start_sec": 280, + "end_sec": 350, + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt5_q3", + "video_path": "videos/youtube/order_packing/0005_pt5.mp4", + "video_source": "youtube", + "source_task": "order_packing", + "question": "What's the largest number of grocery items packed in a single box?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "start_time": "00:04:40", + "end_time": "00:05:50", + "start_sec": 280, + "end_sec": 350, + "choices": [], + "answer_index": null + } + ], + "packing_order_blue": [ + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/packing_order/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_blue", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many blue papers need to be added so that all cups have the same number of blue papers?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/packing_order/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_blue", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many blue papers need to be added so that all cups have the same number of blue papers?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/packing_order/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_blue", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many blue papers need to be added so that all cups have the same number of blue papers?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/packing_order/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_blue", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many blue papers need to be added so that all cups have the same number of blue papers?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/packing_order/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_blue", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many blue papers need to be added so that all cups have the same number of blue papers?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + } + ], + "packing_order_chopsticks": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/packing_order/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_chopsticks", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many chopsticks need to be added so that all cups have the same number of chopsticks?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/packing_order/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_chopsticks", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many chopsticks need to be added so that all cups have the same number of chopsticks?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/packing_order/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_chopsticks", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many chopsticks need to be added so that all cups have the same number of chopsticks?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/packing_order/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_chopsticks", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many chopsticks need to be added so that all cups have the same number of chopsticks?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/packing_order/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_chopsticks", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many chopsticks need to be added so that all cups have the same number of chopsticks?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + } + ], + "packing_order_green": [ + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/packing_order/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_green", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many green papers need to be added so that all cups have the same number of green papers?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/packing_order/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_green", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many green papers need to be added so that all cups have the same number of green papers?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/packing_order/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_green", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many green papers need to be added so that all cups have the same number of green papers?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/packing_order/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_green", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many green papers need to be added so that all cups have the same number of green papers?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/packing_order/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_green", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many green papers need to be added so that all cups have the same number of green papers?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + } + ], + "packing_order_yellow": [ + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/packing_order/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_yellow", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many yellow papers need to be added so that all cups have the same number of yellow papers?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/packing_order/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_yellow", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many yellow papers need to be added so that all cups have the same number of yellow papers?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/packing_order/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_yellow", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many yellow papers need to be added so that all cups have the same number of yellow papers?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/packing_order/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "packing_order_yellow", + "question": "In the video, papers and chopsticks are being distributed into cups so that each cup has the same amount. How many yellow papers need to be added so that all cups have the same number of yellow papers?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "choices": [], + "answer_index": null + } + ], + "shell_game": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/shell_game/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/shell_game/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/shell_game/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Center\n(B) Right\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Center", + "Right", + "Left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/shell_game/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/shell_game/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/shell_game/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/shell_game/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/shell_game/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/shell_game/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/shell_game/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "shell_game", + "question": "At the end of the video, which position is the cup (that contains the smaller cup) in? Left, Center, or Right? Answer from the viewer's perspective.\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + } + ], + "shell_game_rotate": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Right\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Center", + "Right", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Right\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Center", + "Right", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Right\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Center", + "Right", + "Left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Right\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Center", + "Right", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Right\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Center", + "Right", + "Left" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Right\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Left", + "Right", + "Center" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Left\n(C) Center", + "answer_type": "mcq", + "choices": [ + "Right", + "Left", + "Center" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Left\n(B) Center\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Left", + "Center", + "Right" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Center\n(B) Left\n(C) Right", + "answer_type": "mcq", + "choices": [ + "Center", + "Left", + "Right" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/shell_game_rotate/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "shell_game_rotate", + "question": "At the end of the video, which position is the Cup_B (that contains the ball) in? Left, Center, or Right?\n\n(A) Right\n(B) Center\n(C) Left", + "answer_type": "mcq", + "choices": [ + "Right", + "Center", + "Left" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "camera_motion", + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + } + ], + "shuffle_puzzle": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter A tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 1\n(B) Row 2, Column 1\n(C) Row 2, Column 2\n(D) Row 1, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 1", + "Row 2, Column 1", + "Row 2, Column 2", + "Row 1, Column 1" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 3\n(B) Row 3, Column 2\n(C) Row 2, Column 3\n(D) Row 1, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 3", + "Row 3, Column 2", + "Row 2, Column 3", + "Row 1, Column 3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter E tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 2\n(B) Row 3, Column 1\n(C) Row 1, Column 2\n(D) Row 2, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 2", + "Row 3, Column 1", + "Row 1, Column 2", + "Row 2, Column 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter E tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 3\n(B) Row 2, Column 3\n(C) Row 1, Column 3\n(D) Row 3, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 3", + "Row 2, Column 3", + "Row 1, Column 3", + "Row 3, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 3\n(B) Row 1, Column 1\n(C) Row 2, Column 3\n(D) Row 1, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 3", + "Row 1, Column 1", + "Row 2, Column 3", + "Row 1, Column 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 1\n(B) Row 1, Column 3\n(C) Row 3, Column 1\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 1", + "Row 1, Column 3", + "Row 3, Column 1", + "Row 2, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter G tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 1\n(B) Row 3, Column 3\n(C) Row 3, Column 1\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 1", + "Row 3, Column 3", + "Row 3, Column 1", + "Row 2, Column 1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 1\n(B) Row 3, Column 1\n(C) Row 3, Column 3\n(D) Row 3, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 1", + "Row 3, Column 1", + "Row 3, Column 3", + "Row 3, Column 2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 2\n(B) Row 2, Column 2\n(C) Row 3, Column 1\n(D) Row 3, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 2", + "Row 2, Column 2", + "Row 3, Column 1", + "Row 3, Column 3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 3, Column 3\n(C) Row 1, Column 3\n(D) Row 1, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 3, Column 3", + "Row 1, Column 3", + "Row 1, Column 1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 3\n(B) Row 1, Column 2\n(C) Row 2, Column 3\n(D) Row 1, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 3", + "Row 1, Column 2", + "Row 2, Column 3", + "Row 1, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter B tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 1\n(B) Row 1, Column 3\n(C) Row 2, Column 3\n(D) Row 2, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 1", + "Row 1, Column 3", + "Row 2, Column 3", + "Row 2, Column 2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter E tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 3\n(B) Row 3, Column 3\n(C) Row 1, Column 3\n(D) Row 1, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 3", + "Row 3, Column 3", + "Row 1, Column 3", + "Row 1, Column 1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter B tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 1\n(B) Row 2, Column 1\n(C) Row 3, Column 1\n(D) Row 2, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 1", + "Row 2, Column 1", + "Row 3, Column 1", + "Row 2, Column 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter A tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 1\n(B) Row 1, Column 1\n(C) Row 3, Column 1\n(D) Row 3, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 1", + "Row 1, Column 1", + "Row 3, Column 1", + "Row 3, Column 2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter F tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 3, Column 3\n(C) Row 2, Column 1\n(D) Row 2, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 3, Column 3", + "Row 2, Column 1", + "Row 2, Column 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 3, Column 2\n(C) Row 2, Column 2\n(D) Row 1, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 3, Column 2", + "Row 2, Column 2", + "Row 1, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 3\n(B) Row 1, Column 3\n(C) Row 1, Column 2\n(D) Row 3, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 3", + "Row 1, Column 3", + "Row 1, Column 2", + "Row 3, Column 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter H tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 1, Column 3\n(C) Row 2, Column 3\n(D) Row 3, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 1, Column 3", + "Row 2, Column 3", + "Row 3, Column 3" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter H tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 1\n(B) Row 2, Column 2\n(C) Row 3, Column 2\n(D) Row 1, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 1", + "Row 2, Column 2", + "Row 3, Column 2", + "Row 1, Column 2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 2, Column 3\n(C) Row 3, Column 1\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 2, Column 3", + "Row 3, Column 1", + "Row 2, Column 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 3\n(B) Row 1, Column 2\n(C) Row 1, Column 1\n(D) Row 2, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 3", + "Row 1, Column 2", + "Row 1, Column 1", + "Row 2, Column 2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 1\n(B) Row 3, Column 3\n(C) Row 3, Column 2\n(D) Row 3, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 1", + "Row 3, Column 3", + "Row 3, Column 2", + "Row 3, Column 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter B tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 2, Column 1\n(C) Row 3, Column 3\n(D) Row 2, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 2, Column 1", + "Row 3, Column 3", + "Row 2, Column 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter A tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 1\n(B) Row 1, Column 2\n(C) Row 1, Column 1\n(D) Row 3, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 1", + "Row 1, Column 2", + "Row 1, Column 1", + "Row 3, Column 1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 1\n(B) Row 1, Column 2\n(C) Row 1, Column 3\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 1", + "Row 1, Column 2", + "Row 1, Column 3", + "Row 2, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter E tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 3, Column 3\n(C) Row 2, Column 1\n(D) Row 2, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 3, Column 3", + "Row 2, Column 1", + "Row 2, Column 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter B tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 1, Column 3\n(C) Row 1, Column 1\n(D) Row 3, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 1, Column 3", + "Row 1, Column 1", + "Row 3, Column 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter F tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 1, Column 3\n(C) Row 3, Column 2\n(D) Row 2, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 1, Column 3", + "Row 3, Column 2", + "Row 2, Column 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 3, Column 1\n(C) Row 1, Column 1\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 3, Column 1", + "Row 1, Column 1", + "Row 2, Column 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter H tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 3\n(B) Row 1, Column 3\n(C) Row 3, Column 2\n(D) Row 3, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 3", + "Row 1, Column 3", + "Row 3, Column 2", + "Row 3, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter H tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 3\n(B) Row 2, Column 2\n(C) Row 1, Column 3\n(D) Row 3, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 3", + "Row 2, Column 2", + "Row 1, Column 3", + "Row 3, Column 3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter F tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 1, Column 1\n(C) Row 1, Column 3\n(D) Row 2, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 1, Column 1", + "Row 1, Column 3", + "Row 2, Column 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 1\n(B) Row 2, Column 1\n(C) Row 2, Column 3\n(D) Row 2, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 1", + "Row 2, Column 1", + "Row 2, Column 3", + "Row 2, Column 2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter G tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 3, Column 1\n(C) Row 2, Column 2\n(D) Row 3, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 3, Column 1", + "Row 2, Column 2", + "Row 3, Column 2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter B tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 1, Column 3\n(C) Row 1, Column 2\n(D) Row 3, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 1, Column 3", + "Row 1, Column 2", + "Row 3, Column 2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter H tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 3, Column 2\n(C) Row 3, Column 1\n(D) Row 1, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 3, Column 2", + "Row 3, Column 1", + "Row 1, Column 2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter A tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 2\n(B) Row 1, Column 1\n(C) Row 1, Column 3\n(D) Row 1, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 2", + "Row 1, Column 1", + "Row 1, Column 3", + "Row 1, Column 2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter D tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 1, Column 2\n(C) Row 1, Column 1\n(D) Row 1, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 1, Column 2", + "Row 1, Column 1", + "Row 1, Column 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter E tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 2, Column 1\n(C) Row 2, Column 3\n(D) Row 2, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 2, Column 1", + "Row 2, Column 3", + "Row 2, Column 2" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter A tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 1\n(B) Row 2, Column 2\n(C) Row 1, Column 1\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 1", + "Row 2, Column 2", + "Row 1, Column 1", + "Row 2, Column 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter H tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 2\n(B) Row 3, Column 1\n(C) Row 1, Column 3\n(D) Row 3, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 2", + "Row 3, Column 1", + "Row 1, Column 3", + "Row 3, Column 3" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter B tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 3\n(B) Row 3, Column 3\n(C) Row 1, Column 3\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 3", + "Row 3, Column 3", + "Row 1, Column 3", + "Row 2, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter E tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 2, Column 3\n(C) Row 3, Column 3\n(D) Row 1, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 2, Column 3", + "Row 3, Column 3", + "Row 1, Column 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter E tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 1\n(B) Row 3, Column 1\n(C) Row 1, Column 2\n(D) Row 1, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 1", + "Row 3, Column 1", + "Row 1, Column 2", + "Row 1, Column 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter H tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 3\n(B) Row 3, Column 3\n(C) Row 3, Column 1\n(D) Row 1, Column 3", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 3", + "Row 3, Column 3", + "Row 3, Column 1", + "Row 1, Column 3" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter C tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 1, Column 2\n(B) Row 1, Column 3\n(C) Row 2, Column 2\n(D) Row 3, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 1, Column 2", + "Row 1, Column 3", + "Row 2, Column 2", + "Row 3, Column 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter F tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 2\n(B) Row 3, Column 2\n(C) Row 1, Column 2\n(D) Row 2, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 2", + "Row 3, Column 2", + "Row 1, Column 2", + "Row 2, Column 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter A tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 3, Column 2\n(B) Row 2, Column 2\n(C) Row 3, Column 3\n(D) Row 1, Column 2", + "answer_type": "mcq", + "choices": [ + "Row 3, Column 2", + "Row 2, Column 2", + "Row 3, Column 3", + "Row 1, Column 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/shuffle_puzzle/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "shuffle_puzzle", + "question": "Where is the letter F tile located on the 3x3 board? Please answer in 'Row x, Column y' format, where x and y start from 1 (x=1, y=1 is the top-left corner).\n\n(A) Row 2, Column 3\n(B) Row 2, Column 2\n(C) Row 2, Column 1\n(D) Row 1, Column 1", + "answer_type": "mcq", + "choices": [ + "Row 2, Column 3", + "Row 2, Column 2", + "Row 2, Column 1", + "Row 1, Column 1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "atomic" + } + ], + "soccer": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/soccer/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goals are scored in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "start_time": "00:00:06", + "end_time": "00:00:36", + "start_sec": 6, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/soccer/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goals are made in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "start_time": "00:01:00.700", + "end_time": "00:01:31", + "start_sec": null, + "end_sec": 91, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3", + "video_path": "videos/youtube/soccer/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many passes are made in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "start_time": "00:01:42", + "end_time": "00:01:50", + "start_sec": 102, + "end_sec": 110, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4", + "video_path": "videos/youtube/soccer/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many passes are made in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "start_time": "00:01:50.700", + "end_time": "00:02:06.500", + "start_sec": 110.7, + "end_sec": 126.5, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5", + "video_path": "videos/youtube/soccer/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many passes are made in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "start_time": "00:02:07", + "end_time": "00:02:31", + "start_sec": 127, + "end_sec": 151, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6", + "video_path": "videos/youtube/soccer/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many passes are made in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "start_time": "00:02:31", + "end_time": "00:02:50", + "start_sec": 151, + "end_sec": 170, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/soccer/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:01:05", + "end_time": "00:01:25", + "start_sec": 65, + "end_sec": 85, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/soccer/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful passes are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:01:05", + "end_time": "00:01:25", + "start_sec": 65, + "end_sec": 85, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q0", + "video_path": "videos/youtube/soccer/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful passes are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:02:57", + "end_time": "00:03:14", + "start_sec": 177, + "end_sec": 194, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q1", + "video_path": "videos/youtube/soccer/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:02:57", + "end_time": "00:03:14", + "start_sec": 177, + "end_sec": 194, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q0", + "video_path": "videos/youtube/soccer/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful passes are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:04:03", + "end_time": "00:04:22", + "start_sec": 243, + "end_sec": 262, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q1", + "video_path": "videos/youtube/soccer/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:04:03", + "end_time": "00:04:22", + "start_sec": 243, + "end_sec": 262, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q0", + "video_path": "videos/youtube/soccer/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful passes are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:04:35", + "end_time": "00:05:04", + "start_sec": 275, + "end_sec": 304, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q1", + "video_path": "videos/youtube/soccer/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:04:35", + "end_time": "00:05:04", + "start_sec": 275, + "end_sec": 304, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q0", + "video_path": "videos/youtube/soccer/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goal attempts are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:06:44", + "end_time": "00:07:35", + "start_sec": 404, + "end_sec": 455, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q1", + "video_path": "videos/youtube/soccer/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful passes are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 14, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:06:44", + "end_time": "00:07:35", + "start_sec": 404, + "end_sec": 455, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q2", + "video_path": "videos/youtube/soccer/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:06:44", + "end_time": "00:07:35", + "start_sec": 404, + "end_sec": 455, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q0", + "video_path": "videos/youtube/soccer/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many **different** players touch the ball by the end of the video in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:07:50", + "end_time": "00:08:07", + "start_sec": 470, + "end_sec": 487, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q1", + "video_path": "videos/youtube/soccer/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:07:50", + "end_time": "00:08:07", + "start_sec": 470, + "end_sec": 487, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q2", + "video_path": "videos/youtube/soccer/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful passes are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:07:50", + "end_time": "00:08:07", + "start_sec": 470, + "end_sec": 487, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7_q0", + "video_path": "videos/youtube/soccer/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many **different** players (excluding the goalkeeper) touch the ball by the end of the video in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:08:07", + "end_time": "00:08:18", + "start_sec": 487, + "end_sec": 498, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7_q1", + "video_path": "videos/youtube/soccer/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:08:07", + "end_time": "00:08:18", + "start_sec": 487, + "end_sec": 498, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q0", + "video_path": "videos/youtube/soccer/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "What's the success goal rate out of the total goal attempts? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 40, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:08:23", + "end_time": "00:09:30", + "start_sec": 503, + "end_sec": 570, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q1", + "video_path": "videos/youtube/soccer/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many times does the recording player get possession of the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:08:23", + "end_time": "00:09:30", + "start_sec": 503, + "end_sec": 570, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q2", + "video_path": "videos/youtube/soccer/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goals are scored by the recording player's team?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:08:23", + "end_time": "00:09:30", + "start_sec": 503, + "end_sec": 570, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q3", + "video_path": "videos/youtube/soccer/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goals attempts are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:08:23", + "end_time": "00:09:30", + "start_sec": 503, + "end_sec": 570, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q4", + "video_path": "videos/youtube/soccer/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful passes are made by the recording player's team by the end of the video in total?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "start_time": "00:08:23", + "end_time": "00:09:30", + "start_sec": 503, + "end_sec": 570, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q0", + "video_path": "videos/youtube/soccer/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goals are made to the big gate in total by the end of the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:03:04", + "end_time": "00:03:38", + "start_sec": 184, + "end_sec": 218, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1_q1", + "video_path": "videos/youtube/soccer/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "What's the success goal rate out of the total goal attempts to the big gate? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:03:04", + "end_time": "00:03:38", + "start_sec": 184, + "end_sec": 218, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q0", + "video_path": "videos/youtube/soccer/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goals are made to the big gate in total by the end of the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:03:45", + "end_time": "00:04:15", + "start_sec": 225, + "end_sec": 255, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2_q1", + "video_path": "videos/youtube/soccer/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "What's the success goal rate out of the total goal attempts to the big gate? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:03:45", + "end_time": "00:04:15", + "start_sec": 225, + "end_sec": 255, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q0", + "video_path": "videos/youtube/soccer/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many goals are made to the big gate in total by the end of the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:04:44", + "end_time": "00:05:22", + "start_sec": 284, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q1", + "video_path": "videos/youtube/soccer/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "What's the success goal rate out of the total goal attempts to the big gate? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:04:44", + "end_time": "00:05:22", + "start_sec": 284, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt3_q2", + "video_path": "videos/youtube/soccer/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many passes does all players make in total?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:04:44", + "end_time": "00:05:22", + "start_sec": 284, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q0", + "video_path": "videos/youtube/soccer/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many passes does the black-shirt player make in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:06:00", + "end_time": "00:06:38", + "start_sec": 360, + "end_sec": 398, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q1", + "video_path": "videos/youtube/soccer/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful goals does the black-shirt player make in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:06:00", + "end_time": "00:06:38", + "start_sec": 360, + "end_sec": 398, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt4_q2", + "video_path": "videos/youtube/soccer/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "What's the success goal rate out of the total goal attempts to the gate? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:06:00", + "end_time": "00:06:38", + "start_sec": 360, + "end_sec": 398, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q0", + "video_path": "videos/youtube/soccer/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful goal does the player make to the gate?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:07:05", + "end_time": "00:07:56", + "start_sec": 425, + "end_sec": 476, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5_q1", + "video_path": "videos/youtube/soccer/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "What's the success goal rate out of the total goal attempts to the gate? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:07:05", + "end_time": "00:07:56", + "start_sec": 425, + "end_sec": 476, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q0", + "video_path": "videos/youtube/soccer/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "How many successful goal does the player make to the gate?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:08:00", + "end_time": "00:08:32", + "start_sec": 480, + "end_sec": 512, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6_q1", + "video_path": "videos/youtube/soccer/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "soccer", + "question": "What's the success goal rate out of the total goal attempts to gate? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "start_time": "00:08:00", + "end_time": "00:08:32", + "start_sec": 480, + "end_sec": 512, + "choices": [], + "answer_index": null + } + ], + "sokoban": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/sokoban/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "How many total box pushes occur during this clip?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=qf50IDCAFkU", + "youtube_id": "qf50IDCAFkU", + "youtube_title": "sokoban level 15 solution", + "start_time": "00:00:00", + "end_time": "00:00:23.01", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q2", + "video_path": "videos/youtube/sokoban/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "The blue balls are target destinations. At the first frame of the clip, index the three white cross-marked boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box first reaches a blue target destination during this clip?\n\n(A) box 3\n(B) box 1\n(C) box 2", + "answer_type": "mcq", + "choices": [ + "box 3", + "box 1", + "box 2" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=qf50IDCAFkU", + "youtube_id": "qf50IDCAFkU", + "youtube_title": "sokoban level 15 solution", + "start_time": "00:00:23", + "end_time": "00:00:43.8", + "start_sec": 23, + "end_sec": null + }, + { + "video_id": "0001_pt2_q4", + "video_path": "videos/youtube/sokoban/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "The blue balls are target destinations. At the first frame of the clip, index the three white cross-marked boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box is not on a blue target destination at the end of this clip?\n\n(A) box 3\n(B) box 1\n(C) box 2", + "answer_type": "mcq", + "choices": [ + "box 3", + "box 1", + "box 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=qf50IDCAFkU", + "youtube_id": "qf50IDCAFkU", + "youtube_title": "sokoban level 15 solution", + "start_time": "00:00:23", + "end_time": "00:00:43.8", + "start_sec": 23, + "end_sec": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/sokoban/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "How many total box pushes occur during this clip?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:00:00", + "end_time": "00:01:01.485", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/sokoban/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). How many times is box 1 pushed during this clip?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:00:00", + "end_time": "00:01:01.485", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/sokoban/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). How many times is box 3 pushed during this clip?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:00:00", + "end_time": "00:01:01.485", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q3", + "video_path": "videos/youtube/sokoban/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box is pushed most often during this clip?\n\n(A) box 1\n(B) box 4\n(C) box 5\n(D) box 2", + "answer_type": "mcq", + "choices": [ + "box 1", + "box 4", + "box 5", + "box 2" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:00:00", + "end_time": "00:01:01.485", + "start_sec": 0, + "end_sec": null + }, + { + "video_id": "0002_pt1_q4", + "video_path": "videos/youtube/sokoban/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). The green circular markers are target destinations. At the end of this clip, which indexed box is on the leftmost occupied green target marker?\n\n(A) box 5\n(B) box 6\n(C) box 3\n(D) box 1", + "answer_type": "mcq", + "choices": [ + "box 5", + "box 6", + "box 3", + "box 1" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:00:00", + "end_time": "00:01:01.485", + "start_sec": 0, + "end_sec": null + }, + { + "video_id": "0002_pt2_q0", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). How many total box pushes occur during this clip?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q1", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). How many times is box 1 pushed during this clip?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q2", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). How many times is box 4 pushed during this clip?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q3", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). How many times is box 5 pushed during this clip?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q4", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box is never pushed during this clip?\n\n(A) box 5\n(B) box 4\n(C) box 6\n(D) box 1", + "answer_type": "mcq", + "choices": [ + "box 5", + "box 4", + "box 6", + "box 1" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "count", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null + }, + { + "video_id": "0002_pt2_q5", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "The green circular markers are the target destinations. At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box ends on the leftmost green target marker when the level is completed?\n\n(A) box 5\n(B) box 3\n(C) box 4\n(D) box 6", + "answer_type": "mcq", + "choices": [ + "box 5", + "box 3", + "box 4", + "box 6" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null + }, + { + "video_id": "0002_pt2_q6", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "The green circular markers are the target destinations. At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box ends on the rightmost green target marker when the level is completed?\n\n(A) box 5\n(B) box 3\n(C) box 4\n(D) box 2", + "answer_type": "mcq", + "choices": [ + "box 5", + "box 3", + "box 4", + "box 2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null + }, + { + "video_id": "0002_pt2_q7", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box is pushed last before the level is completed?\n\n(A) box 3\n(B) box 4\n(C) box 2\n(D) box 5", + "answer_type": "mcq", + "choices": [ + "box 3", + "box 4", + "box 2", + "box 5" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null + }, + { + "video_id": "0002_pt2_q8", + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "sokoban", + "question": "At the first frame of the clip, index the six boxes by reading each row from left to right, then moving from the top row to the bottom row (indexing starts from 1). Which indexed box is pushed last before the level is completed?\n\n(A) box 5\n(B) box 2\n(C) box 4\n(D) box 1", + "answer_type": "mcq", + "choices": [ + "box 5", + "box 2", + "box 4", + "box 1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "homogeneity" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null + } + ], + "table_tennis": [ + { + "video_id": "0001_pt1", + "video_path": "videos/youtube/table_tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the ball hit the table?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:00", + "end_time": "00:00:09", + "start_sec": 0, + "end_sec": 9, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt10", + "video_path": "videos/youtube/table_tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the player on the left side hit the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:01:15", + "end_time": "00:01:20", + "start_sec": 75, + "end_sec": 80, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2", + "video_path": "videos/youtube/table_tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "Which side won the round, the left side or the right side?\n\n(A) right side\n(B) left side", + "answer_type": "mcq", + "choices": [ + "right side", + "left side" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:11", + "end_time": "00:00:15", + "start_sec": 11, + "end_sec": 15 + }, + { + "video_id": "0001_pt3", + "video_path": "videos/youtube/table_tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many time did the player on the left side hit the ball in this match?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:17", + "end_time": "00:00:27", + "start_sec": 17, + "end_sec": 27, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4", + "video_path": "videos/youtube/table_tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "Which side served, the left side or the right side?\n\n(A) right side\n(B) left side", + "answer_type": "mcq", + "choices": [ + "right side", + "left side" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:29", + "end_time": "00:00:34", + "start_sec": 29, + "end_sec": 34 + }, + { + "video_id": "0001_pt5", + "video_path": "videos/youtube/table_tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the ball hit the table?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:36", + "end_time": "00:00:40", + "start_sec": 36, + "end_sec": 40, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6", + "video_path": "videos/youtube/table_tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the ball hit the net?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:41", + "end_time": "00:00:49", + "start_sec": 41, + "end_sec": 49, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7", + "video_path": "videos/youtube/table_tennis/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times in total did any of the players hit the ball?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:51", + "end_time": "00:00:56", + "start_sec": 51, + "end_sec": 56, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8", + "video_path": "videos/youtube/table_tennis/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the player on the right side hit the ball?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:00:57", + "end_time": "00:01:04", + "start_sec": 57, + "end_sec": 64, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9", + "video_path": "videos/youtube/table_tennis/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the player on the left side hit the ball until before he missed it?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "start_time": "00:01:06", + "end_time": "00:01:13", + "start_sec": 66, + "end_sec": 73, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/youtube/table_tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did any of the players hit the ball?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:00:00", + "end_time": "00:00:05", + "start_sec": 0, + "end_sec": 5, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10", + "video_path": "videos/youtube/table_tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the players on the near side to the camera hit the ball in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:01:35", + "end_time": "00:01:40", + "start_sec": 95, + "end_sec": 100, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2", + "video_path": "videos/youtube/table_tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the female player on the far side hit the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:00:07", + "end_time": "00:00:12", + "start_sec": 7, + "end_sec": 12, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3", + "video_path": "videos/youtube/table_tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the male player on the far side hit the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:00:14", + "end_time": "00:00:18", + "start_sec": 14, + "end_sec": 18, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4", + "video_path": "videos/youtube/table_tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the female player on the near side to the camera hit the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:00:21", + "end_time": "00:00:24", + "start_sec": 21, + "end_sec": 24, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5", + "video_path": "videos/youtube/table_tennis/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the male player on the near side to the camera hit the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:01:02", + "end_time": "00:01:06", + "start_sec": 62, + "end_sec": 66, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6", + "video_path": "videos/youtube/table_tennis/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the ball hit the table?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:01:08", + "end_time": "00:01:12", + "start_sec": 68, + "end_sec": 72, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7", + "video_path": "videos/youtube/table_tennis/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "Which player hit the ball into the net, male player or the female player of which side (on the near side to the camera or on the far side)?\n\n(A) male player on the near side\n(B) male player on the far side\n(C) female player on the near side\n(D) female player on the far side", + "answer_type": "mcq", + "choices": [ + "male player on the near side", + "male player on the far side", + "female player on the near side", + "female player on the far side" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:01:16", + "end_time": "00:01:19", + "start_sec": 76, + "end_sec": 79 + }, + { + "video_id": "0002_pt8", + "video_path": "videos/youtube/table_tennis/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did any of the players hit the ball?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:01:22", + "end_time": "00:01:28", + "start_sec": 82, + "end_sec": 88, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9", + "video_path": "videos/youtube/table_tennis/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the players on the far side hit the ball in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "start_time": "00:01:30", + "end_time": "00:01:34.100", + "start_sec": 90, + "end_sec": 94.1, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/youtube/table_tennis/0003_pt1.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did any of the players hit the ball in total?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:00:00", + "end_time": "00:00:05", + "start_sec": 0, + "end_sec": 5, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt10", + "video_path": "videos/youtube/table_tennis/0003_pt10.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the ball hit the table?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:01:57", + "end_time": "00:02:00", + "start_sec": 117, + "end_sec": 120, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt2", + "video_path": "videos/youtube/table_tennis/0003_pt2.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "Which player hit the ball into the net, the player in the green uniform or the player in the blue uniform?\n\n(A) the player in the green uniform\n(B) the player in the blue uniform", + "answer_type": "mcq", + "choices": [ + "the player in the green uniform", + "the player in the blue uniform" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:00:07", + "end_time": "00:00:10", + "start_sec": 7, + "end_sec": 10 + }, + { + "video_id": "0003_pt3", + "video_path": "videos/youtube/table_tennis/0003_pt3.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "Which player served, the player in the green uniform or the player in the blue uniform?\n\n(A) the player in the green uniform\n(B) the player in the blue uniform", + "answer_type": "mcq", + "choices": [ + "the player in the green uniform", + "the player in the blue uniform" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:00:12", + "end_time": "00:00:16", + "start_sec": 12, + "end_sec": 16 + }, + { + "video_id": "0003_pt4", + "video_path": "videos/youtube/table_tennis/0003_pt4.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many time the player in the green uniform hit the ball?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:00:18", + "end_time": "00:00:25", + "start_sec": 18, + "end_sec": 25, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt5", + "video_path": "videos/youtube/table_tennis/0003_pt5.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many time the player in the blue uniform hit the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:00:32", + "end_time": "00:00:37", + "start_sec": 32, + "end_sec": 37, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt6", + "video_path": "videos/youtube/table_tennis/0003_pt6.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many times did the ball hit the table?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:00:39", + "end_time": "00:00:47", + "start_sec": 39, + "end_sec": 47, + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt7", + "video_path": "videos/youtube/table_tennis/0003_pt7.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "Which player won the round, the player in the blue uniform or the player in the green uniform?\n\n(A) the player in the green uniform\n(B) the player in the blue uniform", + "answer_type": "mcq", + "choices": [ + "the player in the green uniform", + "the player in the blue uniform" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:00:49", + "end_time": "00:00:54", + "start_sec": 49, + "end_sec": 54 + }, + { + "video_id": "0003_pt8", + "video_path": "videos/youtube/table_tennis/0003_pt8.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "Which player won the round, the player in the green uniform or the player in the blue uniform?\n\n(A) the player in the green uniform\n(B) the player in the blue uniform", + "answer_type": "mcq", + "choices": [ + "the player in the green uniform", + "the player in the blue uniform" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:01:32", + "end_time": "00:01:39", + "start_sec": 92, + "end_sec": 99 + }, + { + "video_id": "0003_pt9", + "video_path": "videos/youtube/table_tennis/0003_pt9.mp4", + "video_source": "youtube", + "source_task": "table_tennis", + "question": "How many time did any of the players hit the ball in total excluding the hit that made the ball hit the net?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "start_time": "00:01:41", + "end_time": "00:01:48", + "start_sec": 101, + "end_sec": 108, + "choices": [], + "answer_index": null + } + ], + "tennis": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many total serves occur during the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q2", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player score?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q4", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q6", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the blue-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q7", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 100, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q8", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q9", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball with forehand?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q14", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the backcourt\n(C) out of bounds\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the backcourt", + "out of bounds", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null + }, + { + "video_id": "0001_pt1_q15", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the right service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the right service box", + "the backcourt", + "out of bounds" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null + }, + { + "video_id": "0001_pt1_q16", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the backcourt", + "the right service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null + }, + { + "video_id": "0001_pt1_q17", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the right service box\n(C) the left service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the right service box", + "the left service box", + "out of bounds" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null + }, + { + "video_id": "0001_pt1_q18", + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt player -> the blue-shirt player\n(B) the blue-shirt player -> the blue-shirt player\n(C) the blue-shirt player -> the white-shirt player", + "answer_type": "mcq", + "choices": [ + "the white-shirt player -> the blue-shirt player", + "the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the white-shirt player" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null + }, + { + "video_id": "0001_pt10_q13", + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) out of bounds\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the left service box", + "out of bounds", + "the backcourt", + "the right service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482 + }, + { + "video_id": "0001_pt10_q14", + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the left service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the left service box", + "the backcourt", + "out of bounds" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482 + }, + { + "video_id": "0001_pt10_q15", + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) out of bounds\n(C) the right service box\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "out of bounds", + "the right service box", + "the left service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482 + }, + { + "video_id": "0001_pt10_q16", + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the right service box\n(C) the left service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the right service box", + "the left service box", + "the backcourt" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482 + }, + { + "video_id": "0001_pt10_q17", + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the backcourt\n(C) the right service box\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the backcourt", + "the right service box", + "the left service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482 + }, + { + "video_id": "0001_pt10_q18", + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the right service box\n(C) the left service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the right service box", + "the left service box", + "out of bounds" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482 + }, + { + "video_id": "0001_pt10_q19", + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt player -> the red-shirt player -> the red-shirt player\n(B) the white-shirt player -> the white-shirt player -> the white-shirt player\n(C) the white-shirt player -> the white-shirt player -> the red-shirt player\n(D) the red-shirt player -> the white-shirt player -> the red-shirt player", + "answer_type": "mcq", + "choices": [ + "the white-shirt player -> the red-shirt player -> the red-shirt player", + "the white-shirt player -> the white-shirt player -> the white-shirt player", + "the white-shirt player -> the white-shirt player -> the red-shirt player", + "the red-shirt player -> the white-shirt player -> the red-shirt player" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482 + }, + { + "video_id": "0001_pt2_q1", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player score?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q3", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q5", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the blue-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q6", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 75, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q7", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 25, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q8", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball with forehand?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q16", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the scoring ball land? (Note: \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the right service box\n(C) out of bounds\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the right service box", + "out of bounds", + "the left service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73 + }, + { + "video_id": "0001_pt2_q17", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) out of bounds\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the left service box", + "out of bounds", + "the right service box", + "the backcourt" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73 + }, + { + "video_id": "0001_pt2_q18", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the left service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the left service box", + "the backcourt", + "out of bounds" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73 + }, + { + "video_id": "0001_pt2_q19", + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the backcourt\n(C) out of bounds\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the backcourt", + "out of bounds", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73 + }, + { + "video_id": "0001_pt3_q3", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q5", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the blue-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q6", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 62, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q7", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 38, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q8", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball with forehand?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q14", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the ball land on its sixth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the backcourt", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122 + }, + { + "video_id": "0001_pt3_q15", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) out of bounds\n(C) the right service box\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "out of bounds", + "the right service box", + "the left service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122 + }, + { + "video_id": "0001_pt3_q16", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the scoring ball land? (Note: \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the backcourt\n(C) the left service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the backcourt", + "the left service box", + "out of bounds" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122 + }, + { + "video_id": "0001_pt3_q17", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the right service box\n(C) the backcourt\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the right service box", + "the backcourt", + "the left service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122 + }, + { + "video_id": "0001_pt3_q18", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the left service box\n(C) out of bounds\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the left service box", + "out of bounds", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122 + }, + { + "video_id": "0001_pt3_q19", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the backcourt\n(C) out of bounds\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the backcourt", + "out of bounds", + "the left service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122 + }, + { + "video_id": "0001_pt3_q20", + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the blue-shirt player -> the blue-shirt player\n(B) the blue-shirt player -> the white-shirt player\n(C) the white-shirt player -> the blue-shirt player", + "answer_type": "mcq", + "choices": [ + "the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the white-shirt player", + "the white-shirt player -> the blue-shirt player" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122 + }, + { + "video_id": "0001_pt4_q3", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q5", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the blue-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q6", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q7", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 50, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q8", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball with forehand?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q14", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the left service box\n(C) the right service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the left service box", + "the right service box", + "out of bounds" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175 + }, + { + "video_id": "0001_pt4_q15", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the right service box\n(C) the left service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the right service box", + "the left service box", + "out of bounds" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175 + }, + { + "video_id": "0001_pt4_q16", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the scoring ball land? (Note: \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) out of bounds\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the left service box", + "out of bounds", + "the backcourt", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175 + }, + { + "video_id": "0001_pt4_q17", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) out of bounds\n(C) the left service box\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "out of bounds", + "the left service box", + "the right service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175 + }, + { + "video_id": "0001_pt4_q18", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its fifth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the backcourt", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175 + }, + { + "video_id": "0001_pt4_q19", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the right service box\n(C) the left service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the right service box", + "the left service box", + "out of bounds" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175 + }, + { + "video_id": "0001_pt4_q20", + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the blue-shirt player -> the white-shirt player -> the white-shirt player\n(B) the blue-shirt player -> the blue-shirt player -> the blue-shirt player\n(C) the blue-shirt player -> the blue-shirt player -> the white-shirt player\n(D) the white-shirt player -> the blue-shirt player -> the white-shirt player", + "answer_type": "mcq", + "choices": [ + "the blue-shirt player -> the white-shirt player -> the white-shirt player", + "the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the blue-shirt player -> the white-shirt player", + "the white-shirt player -> the blue-shirt player -> the white-shirt player" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175 + }, + { + "video_id": "0001_pt5_q3", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q5", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the blue-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q6", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 75, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q7", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 25, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q8", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball with forehand?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q14", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) out of bounds\n(C) the backcourt\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "the right service box", + "out of bounds", + "the backcourt", + "the left service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245 + }, + { + "video_id": "0001_pt5_q15", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the backcourt\n(C) the left service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the backcourt", + "the left service box", + "out of bounds" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245 + }, + { + "video_id": "0001_pt5_q16", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the scoring ball land? (Note: \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the backcourt\n(C) the left service box\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the backcourt", + "the left service box", + "the right service box" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245 + }, + { + "video_id": "0001_pt5_q17", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the backcourt", + "the right service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245 + }, + { + "video_id": "0001_pt5_q18", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the right service box\n(C) the backcourt\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the right service box", + "the backcourt", + "the left service box" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245 + }, + { + "video_id": "0001_pt5_q19", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the left service box\n(C) out of bounds\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the left service box", + "out of bounds", + "the right service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245 + }, + { + "video_id": "0001_pt5_q20", + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt player -> the blue-shirt player\n(B) the blue-shirt player -> the blue-shirt player\n(C) the blue-shirt player -> the white-shirt player", + "answer_type": "mcq", + "choices": [ + "the white-shirt player -> the blue-shirt player", + "the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the white-shirt player" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245 + }, + { + "video_id": "0001_pt6_q1", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its third-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the right service box\n(C) the backcourt\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the right service box", + "the backcourt", + "the left service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291 + }, + { + "video_id": "0001_pt6_q2", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) out of bounds\n(C) the left service box\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "out of bounds", + "the left service box", + "the right service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291 + }, + { + "video_id": "0001_pt6_q3", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the blue-shirt player -> the blue-shirt player -> the blue-shirt player\n(B) the white-shirt player -> the white-shirt player -> the blue-shirt player\n(C) the white-shirt player -> the blue-shirt player -> the blue-shirt player\n(D) the white-shirt player -> the blue-shirt player -> the white-shirt player", + "answer_type": "mcq", + "choices": [ + "the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "the white-shirt player -> the white-shirt player -> the blue-shirt player", + "the white-shirt player -> the blue-shirt player -> the blue-shirt player", + "the white-shirt player -> the blue-shirt player -> the white-shirt player" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291 + }, + { + "video_id": "0001_pt6_q7", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q9", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the blue-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q10", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 22, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q11", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 78, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q12", + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball with forehand?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q14", + "video_path": "videos/youtube/tennis/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the backcourt\n(C) the right service box\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the backcourt", + "the right service box", + "the left service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:05:34", + "end_time": "00:06:17", + "start_sec": 334, + "end_sec": 377 + }, + { + "video_id": "0001_pt7_q15", + "video_path": "videos/youtube/tennis/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its third-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the backcourt\n(C) the right service box\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the backcourt", + "the right service box", + "the left service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:05:34", + "end_time": "00:06:17", + "start_sec": 334, + "end_sec": 377 + }, + { + "video_id": "0001_pt7_q16", + "video_path": "videos/youtube/tennis/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was second most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) out of bounds\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the left service box", + "out of bounds", + "the right service box", + "the backcourt" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:05:34", + "end_time": "00:06:17", + "start_sec": 334, + "end_sec": 377 + }, + { + "video_id": "0001_pt7_q17", + "video_path": "videos/youtube/tennis/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt player -> the red-shirt player -> the red-shirt player\n(B) the red-shirt player -> the white-shirt player -> the red-shirt player\n(C) the white-shirt player -> the white-shirt player -> the white-shirt player\n(D) the white-shirt player -> the white-shirt player -> the red-shirt player", + "answer_type": "mcq", + "choices": [ + "the white-shirt player -> the red-shirt player -> the red-shirt player", + "the red-shirt player -> the white-shirt player -> the red-shirt player", + "the white-shirt player -> the white-shirt player -> the white-shirt player", + "the white-shirt player -> the white-shirt player -> the red-shirt player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:05:34", + "end_time": "00:06:17", + "start_sec": 334, + "end_sec": 377 + }, + { + "video_id": "0001_pt8_q14", + "video_path": "videos/youtube/tennis/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the backcourt", + "the right service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:18", + "end_time": "00:06:45", + "start_sec": 378, + "end_sec": 405 + }, + { + "video_id": "0001_pt8_q15", + "video_path": "videos/youtube/tennis/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the right service box\n(C) the left service box\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the right service box", + "the left service box", + "out of bounds" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:18", + "end_time": "00:06:45", + "start_sec": 378, + "end_sec": 405 + }, + { + "video_id": "0001_pt8_q16", + "video_path": "videos/youtube/tennis/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) out of bounds\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the left service box", + "out of bounds", + "the right service box", + "the backcourt" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:18", + "end_time": "00:06:45", + "start_sec": 378, + "end_sec": 405 + }, + { + "video_id": "0001_pt8_q17", + "video_path": "videos/youtube/tennis/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt player -> the red-shirt player -> the white-shirt player\n(B) the red-shirt player -> the white-shirt player -> the white-shirt player\n(C) the white-shirt player -> the white-shirt player -> the red-shirt player\n(D) the white-shirt player -> the white-shirt player -> the white-shirt player", + "answer_type": "mcq", + "choices": [ + "the white-shirt player -> the red-shirt player -> the white-shirt player", + "the red-shirt player -> the white-shirt player -> the white-shirt player", + "the white-shirt player -> the white-shirt player -> the red-shirt player", + "the white-shirt player -> the white-shirt player -> the white-shirt player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:18", + "end_time": "00:06:45", + "start_sec": 378, + "end_sec": 405 + }, + { + "video_id": "0001_pt9_q14", + "video_path": "videos/youtube/tennis/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the left service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the left service box", + "the backcourt", + "out of bounds" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:46.500", + "end_time": "00:07:23", + "start_sec": null, + "end_sec": 443 + }, + { + "video_id": "0001_pt9_q15", + "video_path": "videos/youtube/tennis/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the left service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the left service box", + "the backcourt", + "out of bounds" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:46.500", + "end_time": "00:07:23", + "start_sec": null, + "end_sec": 443 + }, + { + "video_id": "0001_pt9_q16", + "video_path": "videos/youtube/tennis/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the right service box\n(C) the backcourt\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the right service box", + "the backcourt", + "the left service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:46.500", + "end_time": "00:07:23", + "start_sec": null, + "end_sec": 443 + }, + { + "video_id": "0001_pt9_q17", + "video_path": "videos/youtube/tennis/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt player -> the white-shirt player -> the red-shirt player\n(B) the red-shirt player -> the white-shirt player -> the white-shirt player\n(C) the white-shirt player -> the red-shirt player -> the white-shirt player\n(D) the white-shirt player -> the white-shirt player -> the white-shirt player", + "answer_type": "mcq", + "choices": [ + "the white-shirt player -> the white-shirt player -> the red-shirt player", + "the red-shirt player -> the white-shirt player -> the white-shirt player", + "the white-shirt player -> the red-shirt player -> the white-shirt player", + "the white-shirt player -> the white-shirt player -> the white-shirt player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "start_time": "00:06:46.500", + "end_time": "00:07:23", + "start_sec": null, + "end_sec": 443 + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player score?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q4", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q6", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the black-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q7", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 63, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q8", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 38, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q9", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball with forehand?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q14", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the right service box", + "the backcourt" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38 + }, + { + "video_id": "0002_pt1_q15", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its third-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) out of bounds\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the left service box", + "out of bounds", + "the backcourt", + "the right service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38 + }, + { + "video_id": "0002_pt1_q16", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the left service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the left service box", + "the backcourt", + "out of bounds" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38 + }, + { + "video_id": "0002_pt1_q17", + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player\n(B) the white-shirt and black-vest player -> the black-shirt player -> the black-shirt player\n(C) the black-shirt player -> the black-shirt player -> the white-shirt and black-vest player\n(D) the white-shirt and black-vest player -> the black-shirt player -> the white-shirt and black-vest player", + "answer_type": "mcq", + "choices": [ + "the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player", + "the white-shirt and black-vest player -> the black-shirt player -> the black-shirt player", + "the black-shirt player -> the black-shirt player -> the white-shirt and black-vest player", + "the white-shirt and black-vest player -> the black-shirt player -> the white-shirt and black-vest player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38 + }, + { + "video_id": "0002_pt10_q2", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player score?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q4", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q6", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the blue-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q7", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 40, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q8", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the blue-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 60, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q9", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player return the ball with forehand?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q14", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the backcourt\n(C) out of bounds\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the backcourt", + "out of bounds", + "the right service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469 + }, + { + "video_id": "0002_pt10_q15", + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) out of bounds\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the left service box", + "out of bounds", + "the right service box", + "the backcourt" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469 + }, + { + "video_id": "0002_pt2_q2", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player score?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q4", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q6", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the black-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q7", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q8", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q9", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball with forehand?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q14", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its third-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the backcourt\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the backcourt", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033 + }, + { + "video_id": "0002_pt2_q15", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the right service box\n(C) out of bounds\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the right service box", + "out of bounds", + "the backcourt" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033 + }, + { + "video_id": "0002_pt2_q16", + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player\n(B) the white-shirt and black-vest player -> the white-shirt and black-vest player -> the black-shirt player\n(C) the black-shirt player -> the white-shirt and black-vest player -> the white-shirt and black-vest player\n(D) the white-shirt and black-vest player -> the black-shirt player -> the white-shirt and black-vest player", + "answer_type": "mcq", + "choices": [ + "the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player", + "the white-shirt and black-vest player -> the white-shirt and black-vest player -> the black-shirt player", + "the black-shirt player -> the white-shirt and black-vest player -> the white-shirt and black-vest player", + "the white-shirt and black-vest player -> the black-shirt player -> the white-shirt and black-vest player" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033 + }, + { + "video_id": "0002_pt3_q2", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player score?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q4", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q6", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the black-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q7", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q8", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q9", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball with forehand?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q14", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the first point, where did the ball land on its third-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the right service box\n(C) out of bounds\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the right service box", + "out of bounds", + "the backcourt" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128 + }, + { + "video_id": "0002_pt3_q15", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the right service box\n(C) out of bounds\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the right service box", + "out of bounds", + "the left service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128 + }, + { + "video_id": "0002_pt3_q16", + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player\n(B) the black-shirt player -> the black-shirt player -> the white-shirt and black-vest player\n(C) the black-shirt player -> the white-shirt and black-vest player -> the black-shirt player\n(D) the black-shirt player -> the white-shirt and black-vest player -> the white-shirt and black-vest player", + "answer_type": "mcq", + "choices": [ + "the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player", + "the black-shirt player -> the black-shirt player -> the white-shirt and black-vest player", + "the black-shirt player -> the white-shirt and black-vest player -> the black-shirt player", + "the black-shirt player -> the white-shirt and black-vest player -> the white-shirt and black-vest player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128 + }, + { + "video_id": "0002_pt4_q2", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player score?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q4", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q6", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the black-shirt player return the ball with backhand?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q7", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's forehand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 33, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q8", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "What's the ratio of the black-shirt player's backhand to total returns? Round to the nearest integer in percentage.", + "answer_type": "numeric", + "answer": 67, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q9", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt and black-vest player return the ball with forehand?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q14", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its fourth-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) out of bounds\n(C) the backcourt\n(D) the left service box", + "answer_type": "mcq", + "choices": [ + "the right service box", + "out of bounds", + "the backcourt", + "the left service box" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033 + }, + { + "video_id": "0002_pt4_q15", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the left service box\n(C) out of bounds\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the left service box", + "out of bounds", + "the backcourt" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033 + }, + { + "video_id": "0002_pt4_q16", + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player\n(B) the blue-shirt player -> the blue-shirt player -> the white-shirt and black-vest player\n(C) the blue-shirt player -> the white-shirt and black-vest player -> the blue-shirt player\n(D) the blue-shirt player -> the white-shirt and black-vest player -> the white-shirt and black-vest player", + "answer_type": "mcq", + "choices": [ + "the white-shirt and black-vest player -> the white-shirt and black-vest player -> the white-shirt and black-vest player", + "the blue-shirt player -> the blue-shirt player -> the white-shirt and black-vest player", + "the blue-shirt player -> the white-shirt and black-vest player -> the blue-shirt player", + "the blue-shirt player -> the white-shirt and black-vest player -> the white-shirt and black-vest player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033 + }, + { + "video_id": "0002_pt5_q2", + "video_path": "videos/youtube/tennis/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the orange-shirt player score?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:06", + "end_time": "00:03:44", + "start_sec": 186, + "end_sec": 224, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q14", + "video_path": "videos/youtube/tennis/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, where did the ball land on its third-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) out of bounds\n(C) the left service box\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "out of bounds", + "the left service box", + "the right service box" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:06", + "end_time": "00:03:44", + "start_sec": 186, + "end_sec": 224 + }, + { + "video_id": "0002_pt5_q15", + "video_path": "videos/youtube/tennis/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) the left service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the right service box", + "the left service box", + "the backcourt", + "out of bounds" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:06", + "end_time": "00:03:44", + "start_sec": 186, + "end_sec": 224 + }, + { + "video_id": "0002_pt5_q16", + "video_path": "videos/youtube/tennis/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the blue-shirt player -> the blue-shirt player -> the blue-shirt player\n(B) the orange-shirt player -> the blue-shirt player -> the orange-shirt player\n(C) the blue-shirt player -> the blue-shirt player -> the orange-shirt player\n(D) the blue-shirt player -> the orange-shirt player -> the orange-shirt player", + "answer_type": "mcq", + "choices": [ + "the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "the orange-shirt player -> the blue-shirt player -> the orange-shirt player", + "the blue-shirt player -> the blue-shirt player -> the orange-shirt player", + "the blue-shirt player -> the orange-shirt player -> the orange-shirt player" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:06", + "end_time": "00:03:44", + "start_sec": 186, + "end_sec": 224 + }, + { + "video_id": "0002_pt6_q2", + "video_path": "videos/youtube/tennis/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the orange-shirt player score?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:45", + "end_time": "00:04:23.033", + "start_sec": 225, + "end_sec": 263.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q14", + "video_path": "videos/youtube/tennis/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the right service box", + "the backcourt" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:45", + "end_time": "00:04:23.033", + "start_sec": 225, + "end_sec": 263.033 + }, + { + "video_id": "0002_pt6_q15", + "video_path": "videos/youtube/tennis/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second-to-last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the right service box\n(B) out of bounds\n(C) the left service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "the right service box", + "out of bounds", + "the left service box", + "the backcourt" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:45", + "end_time": "00:04:23.033", + "start_sec": 225, + "end_sec": 263.033 + }, + { + "video_id": "0002_pt6_q16", + "video_path": "videos/youtube/tennis/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the orange-shirt player -> the blue-shirt player -> the blue-shirt player\n(B) the blue-shirt player -> the orange-shirt player -> the blue-shirt player\n(C) the blue-shirt player -> the blue-shirt player -> the orange-shirt player\n(D) the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "answer_type": "mcq", + "choices": [ + "the orange-shirt player -> the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the orange-shirt player -> the blue-shirt player", + "the blue-shirt player -> the blue-shirt player -> the orange-shirt player", + "the blue-shirt player -> the blue-shirt player -> the blue-shirt player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:03:45", + "end_time": "00:04:23.033", + "start_sec": 225, + "end_sec": 263.033 + }, + { + "video_id": "0002_pt7_q2", + "video_path": "videos/youtube/tennis/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the orange-shirt player score?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:04:24", + "end_time": "00:05:01", + "start_sec": 264, + "end_sec": 301, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7_q14", + "video_path": "videos/youtube/tennis/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the backcourt\n(C) out of bounds\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the backcourt", + "out of bounds", + "the right service box" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:04:24", + "end_time": "00:05:01", + "start_sec": 264, + "end_sec": 301 + }, + { + "video_id": "0002_pt7_q15", + "video_path": "videos/youtube/tennis/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the right service box", + "the backcourt" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:04:24", + "end_time": "00:05:01", + "start_sec": 264, + "end_sec": 301 + }, + { + "video_id": "0002_pt7_q16", + "video_path": "videos/youtube/tennis/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the orange-shirt player -> the blue-shirt player -> the orange-shirt player -> the orange-shirt player\n(B) the orange-shirt player -> the blue-shirt player -> the blue-shirt player -> the blue-shirt player\n(C) the blue-shirt player -> the blue-shirt player -> the blue-shirt player -> the orange-shirt player\n(D) the orange-shirt player -> the blue-shirt player -> the blue-shirt player -> the orange-shirt player", + "answer_type": "mcq", + "choices": [ + "the orange-shirt player -> the blue-shirt player -> the orange-shirt player -> the orange-shirt player", + "the orange-shirt player -> the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the blue-shirt player -> the blue-shirt player -> the orange-shirt player", + "the orange-shirt player -> the blue-shirt player -> the blue-shirt player -> the orange-shirt player" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:04:24", + "end_time": "00:05:01", + "start_sec": 264, + "end_sec": 301 + }, + { + "video_id": "0002_pt8_q2", + "video_path": "videos/youtube/tennis/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the orange-shirt player score?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:05:01", + "end_time": "00:05:45.033", + "start_sec": 301, + "end_sec": 345.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q14", + "video_path": "videos/youtube/tennis/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the left service box\n(C) the right service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the left service box", + "the right service box", + "the backcourt" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:05:01", + "end_time": "00:05:45.033", + "start_sec": 301, + "end_sec": 345.033 + }, + { + "video_id": "0002_pt8_q15", + "video_path": "videos/youtube/tennis/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) out of bounds\n(B) the right service box\n(C) the left service box\n(D) the backcourt", + "answer_type": "mcq", + "choices": [ + "out of bounds", + "the right service box", + "the left service box", + "the backcourt" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:05:01", + "end_time": "00:05:45.033", + "start_sec": 301, + "end_sec": 345.033 + }, + { + "video_id": "0002_pt8_q16", + "video_path": "videos/youtube/tennis/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the orange-shirt player -> the blue-shirt player -> the orange-shirt player -> the blue-shirt player\n(B) the orange-shirt player -> the blue-shirt player -> the blue-shirt player -> the blue-shirt player\n(C) the blue-shirt player -> the blue-shirt player -> the blue-shirt player -> the blue-shirt player\n(D) the orange-shirt player -> the orange-shirt player -> the blue-shirt player -> the blue-shirt player", + "answer_type": "mcq", + "choices": [ + "the orange-shirt player -> the blue-shirt player -> the orange-shirt player -> the blue-shirt player", + "the orange-shirt player -> the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "the orange-shirt player -> the orange-shirt player -> the blue-shirt player -> the blue-shirt player" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:05:01", + "end_time": "00:05:45.033", + "start_sec": 301, + "end_sec": 345.033 + }, + { + "video_id": "0002_pt9_q2", + "video_path": "videos/youtube/tennis/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "How many times does the white-shirt player score?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:06:22", + "end_time": "00:07:03", + "start_sec": 382, + "end_sec": 423, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q14", + "video_path": "videos/youtube/tennis/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the second point, where did the ball land on its second-to-last bounce? (Note: only count bounces that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the left service box\n(B) the right service box\n(C) the backcourt\n(D) out of bounds", + "answer_type": "mcq", + "choices": [ + "the left service box", + "the right service box", + "the backcourt", + "out of bounds" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "location", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:06:22", + "end_time": "00:07:03", + "start_sec": 382, + "end_sec": 423 + }, + { + "video_id": "0002_pt9_q15", + "video_path": "videos/youtube/tennis/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In the last point, which area was most frequently hit by the ball? (Note: only count hit that occur while the point is still active; do not count extra bounces after a player fails to return the ball. \"Left\" and \"right\" are from the perspective of the player on that side of the court).\n\n(A) the backcourt\n(B) the left service box\n(C) out of bounds\n(D) the right service box", + "answer_type": "mcq", + "choices": [ + "the backcourt", + "the left service box", + "out of bounds", + "the right service box" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "count", + "state_structure": "dictionary", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:06:22", + "end_time": "00:07:03", + "start_sec": 382, + "end_sec": 423 + }, + { + "video_id": "0002_pt9_q16", + "video_path": "videos/youtube/tennis/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "tennis", + "question": "In what order do the players score throughout the video?\n\n(A) the blue-shirt player -> the blue-shirt player -> the blue-shirt player\n(B) the blue-shirt player -> the white-shirt player -> the white-shirt player\n(C) the blue-shirt player -> the blue-shirt player -> the white-shirt player\n(D) the white-shirt player -> the blue-shirt player -> the white-shirt player", + "answer_type": "mcq", + "choices": [ + "the blue-shirt player -> the blue-shirt player -> the blue-shirt player", + "the blue-shirt player -> the white-shirt player -> the white-shirt player", + "the blue-shirt player -> the blue-shirt player -> the white-shirt player", + "the white-shirt player -> the blue-shirt player -> the white-shirt player" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "start_time": "00:06:22", + "end_time": "00:07:03", + "start_sec": 382, + "end_sec": 423 + } + ], + "tighten_untighten": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/tighten_untighten/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/tighten_untighten/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/tighten_untighten/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/tighten_untighten/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/tighten_untighten/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/tighten_untighten/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/tighten_untighten/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/tighten_untighten/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/tighten_untighten/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/tighten_untighten/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/tighten_untighten/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/tighten_untighten/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/tighten_untighten/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/tighten_untighten/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/tighten_untighten/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/tighten_untighten/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/tighten_untighten/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/tighten_untighten/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/tighten_untighten/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/tighten_untighten/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/tighten_untighten/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/tighten_untighten/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/tighten_untighten/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/tighten_untighten/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/tighten_untighten/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/tighten_untighten/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/tighten_untighten/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/tighten_untighten/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/tighten_untighten/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/tighten_untighten/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/tighten_untighten/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/tighten_untighten/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/tighten_untighten/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/tighten_untighten/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/tighten_untighten/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/tighten_untighten/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/tighten_untighten/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/tighten_untighten/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/tighten_untighten/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/tighten_untighten/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/tighten_untighten/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/tighten_untighten/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/tighten_untighten/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/tighten_untighten/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/tighten_untighten/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/tighten_untighten/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/tighten_untighten/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/tighten_untighten/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/tighten_untighten/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/tighten_untighten/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "tighten_untighten", + "question": "How many tightening actions (turning clockwise) were performed in the video?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity" + ], + "state_element_type": "count", + "state_structure": "atomic", + "choices": [], + "answer_index": null + } + ], + "tilt_box": [ + { + "video_id": "0001_pt1", + "video_path": "videos/self_recorded/tilt_box/0001_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 1 (Top-Left). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 3\n(B) 4\n(C) 1\n(D) 2", + "answer_type": "mcq", + "choices": [ + "3", + "4", + "1", + "2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0002_pt1", + "video_path": "videos/self_recorded/tilt_box/0002_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 3 (Bottom-Right). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 1\n(B) 2\n(C) 3\n(D) 4", + "answer_type": "mcq", + "choices": [ + "1", + "2", + "3", + "4" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0003_pt1", + "video_path": "videos/self_recorded/tilt_box/0003_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 2 (Top-Right). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 3\n(B) 2\n(C) 1\n(D) 4", + "answer_type": "mcq", + "choices": [ + "3", + "2", + "1", + "4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0004_pt1", + "video_path": "videos/self_recorded/tilt_box/0004_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 4 (Bottom-Left). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 3\n(B) 4\n(C) 2\n(D) 1", + "answer_type": "mcq", + "choices": [ + "3", + "4", + "2", + "1" + ], + "answer": "C", + "answer_index": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0005_pt1", + "video_path": "videos/self_recorded/tilt_box/0005_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 3 (Bottom-Right). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 2\n(B) 3\n(C) 1\n(D) 4", + "answer_type": "mcq", + "choices": [ + "2", + "3", + "1", + "4" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0006_pt1", + "video_path": "videos/self_recorded/tilt_box/0006_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 1 (Top-Left). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 2\n(B) 1\n(C) 4\n(D) 3", + "answer_type": "mcq", + "choices": [ + "2", + "1", + "4", + "3" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0007_pt1", + "video_path": "videos/self_recorded/tilt_box/0007_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 3 (Bottom-Right). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 2\n(B) 1\n(C) 3\n(D) 4", + "answer_type": "mcq", + "choices": [ + "2", + "1", + "3", + "4" + ], + "answer": "B", + "answer_index": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0008_pt1", + "video_path": "videos/self_recorded/tilt_box/0008_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 1 (Top-Left). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 3\n(B) 4\n(C) 1\n(D) 2", + "answer_type": "mcq", + "choices": [ + "3", + "4", + "1", + "2" + ], + "answer": "A", + "answer_index": 0, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0009_pt1", + "video_path": "videos/self_recorded/tilt_box/0009_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 3 (Bottom-Right). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 1\n(B) 2\n(C) 3\n(D) 4", + "answer_type": "mcq", + "choices": [ + "1", + "2", + "3", + "4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + }, + { + "video_id": "0010_pt1", + "video_path": "videos/self_recorded/tilt_box/0010_pt1.mp4", + "video_source": "self_recorded", + "source_task": "tilt_box", + "question": "A ball was placed at corner 4 (Bottom-Left). At the end of the video, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.\n\n(A) 2\n(B) 3\n(C) 1\n(D) 4", + "answer_type": "mcq", + "choices": [ + "2", + "3", + "1", + "4" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic" + } + ], + "tilt_v2": [ + { + "video_id": "0001_pt1", + "video_path": "videos/synthetic/tilt_v2/0001_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1", + "video_path": "videos/synthetic/tilt_v2/0002_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0003_pt1", + "video_path": "videos/synthetic/tilt_v2/0003_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0004_pt1", + "video_path": "videos/synthetic/tilt_v2/0004_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0005_pt1", + "video_path": "videos/synthetic/tilt_v2/0005_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0006_pt1", + "video_path": "videos/synthetic/tilt_v2/0006_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0007_pt1", + "video_path": "videos/synthetic/tilt_v2/0007_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0008_pt1", + "video_path": "videos/synthetic/tilt_v2/0008_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0009_pt1", + "video_path": "videos/synthetic/tilt_v2/0009_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0010_pt1", + "video_path": "videos/synthetic/tilt_v2/0010_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0011_pt1", + "video_path": "videos/synthetic/tilt_v2/0011_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0012_pt1", + "video_path": "videos/synthetic/tilt_v2/0012_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0013_pt1", + "video_path": "videos/synthetic/tilt_v2/0013_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0014_pt1", + "video_path": "videos/synthetic/tilt_v2/0014_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0015_pt1", + "video_path": "videos/synthetic/tilt_v2/0015_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0016_pt1", + "video_path": "videos/synthetic/tilt_v2/0016_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0017_pt1", + "video_path": "videos/synthetic/tilt_v2/0017_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0018_pt1", + "video_path": "videos/synthetic/tilt_v2/0018_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0019_pt1", + "video_path": "videos/synthetic/tilt_v2/0019_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0020_pt1", + "video_path": "videos/synthetic/tilt_v2/0020_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0021_pt1", + "video_path": "videos/synthetic/tilt_v2/0021_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0022_pt1", + "video_path": "videos/synthetic/tilt_v2/0022_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0023_pt1", + "video_path": "videos/synthetic/tilt_v2/0023_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0024_pt1", + "video_path": "videos/synthetic/tilt_v2/0024_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0025_pt1", + "video_path": "videos/synthetic/tilt_v2/0025_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0026_pt1", + "video_path": "videos/synthetic/tilt_v2/0026_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0027_pt1", + "video_path": "videos/synthetic/tilt_v2/0027_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0028_pt1", + "video_path": "videos/synthetic/tilt_v2/0028_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0029_pt1", + "video_path": "videos/synthetic/tilt_v2/0029_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0030_pt1", + "video_path": "videos/synthetic/tilt_v2/0030_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0031_pt1", + "video_path": "videos/synthetic/tilt_v2/0031_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0032_pt1", + "video_path": "videos/synthetic/tilt_v2/0032_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0033_pt1", + "video_path": "videos/synthetic/tilt_v2/0033_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0034_pt1", + "video_path": "videos/synthetic/tilt_v2/0034_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0035_pt1", + "video_path": "videos/synthetic/tilt_v2/0035_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0036_pt1", + "video_path": "videos/synthetic/tilt_v2/0036_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0037_pt1", + "video_path": "videos/synthetic/tilt_v2/0037_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0038_pt1", + "video_path": "videos/synthetic/tilt_v2/0038_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0039_pt1", + "video_path": "videos/synthetic/tilt_v2/0039_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0040_pt1", + "video_path": "videos/synthetic/tilt_v2/0040_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0041_pt1", + "video_path": "videos/synthetic/tilt_v2/0041_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0042_pt1", + "video_path": "videos/synthetic/tilt_v2/0042_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0043_pt1", + "video_path": "videos/synthetic/tilt_v2/0043_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0044_pt1", + "video_path": "videos/synthetic/tilt_v2/0044_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 4 (Bottom-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0045_pt1", + "video_path": "videos/synthetic/tilt_v2/0045_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0046_pt1", + "video_path": "videos/synthetic/tilt_v2/0046_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0047_pt1", + "video_path": "videos/synthetic/tilt_v2/0047_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0048_pt1", + "video_path": "videos/synthetic/tilt_v2/0048_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 3 (Bottom-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0049_pt1", + "video_path": "videos/synthetic/tilt_v2/0049_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 2 (Top-Right). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + }, + { + "video_id": "0050_pt1", + "video_path": "videos/synthetic/tilt_v2/0050_pt1.mp4", + "video_source": "synthetic", + "source_task": "tilt_v2", + "question": "A ball was placed at corner 1 (Top-Left). After the lid was closed and the box was tilted 6 times, at which corner (1-4) is the ball now? Corner mapping: 1=Top-Left, 2=Top-Right, 3=Bottom-Right, 4=Bottom-Left.", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "occlusion" + ], + "state_element_type": "location", + "state_structure": "atomic", + "choices": [], + "answer_index": null + } + ], + "volleyball": [ + { + "video_id": "0001_pt1_q0", + "video_path": "videos/youtube/volleyball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:17", + "end_time": "00:00:36", + "start_sec": 17, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q1", + "video_path": "videos/youtube/volleyball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:17", + "end_time": "00:00:36", + "start_sec": 17, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q2", + "video_path": "videos/youtube/volleyball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:17", + "end_time": "00:00:36", + "start_sec": 17, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q3", + "video_path": "videos/youtube/volleyball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:17", + "end_time": "00:00:36", + "start_sec": 17, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q4", + "video_path": "videos/youtube/volleyball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:17", + "end_time": "00:00:36", + "start_sec": 17, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt1_q5", + "video_path": "videos/youtube/volleyball/0001_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:17", + "end_time": "00:00:36", + "start_sec": 17, + "end_sec": 36, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt10_q1", + "video_path": "videos/youtube/volleyball/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:05:25", + "end_time": "00:05:55.067", + "start_sec": 325, + "end_sec": 355.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt10_q2", + "video_path": "videos/youtube/volleyball/0001_pt10.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:05:25", + "end_time": "00:05:55.067", + "start_sec": 325, + "end_sec": 355.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q0", + "video_path": "videos/youtube/volleyball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:40", + "end_time": "00:01:00", + "start_sec": 40, + "end_sec": 60, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q1", + "video_path": "videos/youtube/volleyball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:40", + "end_time": "00:01:00", + "start_sec": 40, + "end_sec": 60, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q2", + "video_path": "videos/youtube/volleyball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:40", + "end_time": "00:01:00", + "start_sec": 40, + "end_sec": 60, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q3", + "video_path": "videos/youtube/volleyball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:40", + "end_time": "00:01:00", + "start_sec": 40, + "end_sec": 60, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q4", + "video_path": "videos/youtube/volleyball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:40", + "end_time": "00:01:00", + "start_sec": 40, + "end_sec": 60, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt2_q5", + "video_path": "videos/youtube/volleyball/0001_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:00:40", + "end_time": "00:01:00", + "start_sec": 40, + "end_sec": 60, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q0", + "video_path": "videos/youtube/volleyball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the first point, how many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:04", + "end_time": "00:01:25.067", + "start_sec": 64, + "end_sec": 85.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q1", + "video_path": "videos/youtube/volleyball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the first point, how many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:04", + "end_time": "00:01:25.067", + "start_sec": 64, + "end_sec": 85.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q2", + "video_path": "videos/youtube/volleyball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the first point, how many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:04", + "end_time": "00:01:25.067", + "start_sec": 64, + "end_sec": 85.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q3", + "video_path": "videos/youtube/volleyball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the second point, how many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:04", + "end_time": "00:01:25.067", + "start_sec": 64, + "end_sec": 85.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q4", + "video_path": "videos/youtube/volleyball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the second point, how many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:04", + "end_time": "00:01:25.067", + "start_sec": 64, + "end_sec": 85.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt3_q5", + "video_path": "videos/youtube/volleyball/0001_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:04", + "end_time": "00:01:25.067", + "start_sec": 64, + "end_sec": 85.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q0", + "video_path": "videos/youtube/volleyball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:39", + "end_time": "00:02:00.067", + "start_sec": 99, + "end_sec": 120.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q1", + "video_path": "videos/youtube/volleyball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:39", + "end_time": "00:02:00.067", + "start_sec": 99, + "end_sec": 120.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q2", + "video_path": "videos/youtube/volleyball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:39", + "end_time": "00:02:00.067", + "start_sec": 99, + "end_sec": 120.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q3", + "video_path": "videos/youtube/volleyball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:39", + "end_time": "00:02:00.067", + "start_sec": 99, + "end_sec": 120.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q4", + "video_path": "videos/youtube/volleyball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:39", + "end_time": "00:02:00.067", + "start_sec": 99, + "end_sec": 120.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt4_q5", + "video_path": "videos/youtube/volleyball/0001_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:01:39", + "end_time": "00:02:00.067", + "start_sec": 99, + "end_sec": 120.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q0", + "video_path": "videos/youtube/volleyball/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:05", + "end_time": "00:02:18", + "start_sec": 125, + "end_sec": 138, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q1", + "video_path": "videos/youtube/volleyball/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:05", + "end_time": "00:02:18", + "start_sec": 125, + "end_sec": 138, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt5_q2", + "video_path": "videos/youtube/volleyball/0001_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:05", + "end_time": "00:02:18", + "start_sec": 125, + "end_sec": 138, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q0", + "video_path": "videos/youtube/volleyball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:21", + "end_time": "00:02:46", + "start_sec": 141, + "end_sec": 166, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q1", + "video_path": "videos/youtube/volleyball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the first point, how many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:21", + "end_time": "00:02:46", + "start_sec": 141, + "end_sec": 166, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q2", + "video_path": "videos/youtube/volleyball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the first point, how many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:21", + "end_time": "00:02:46", + "start_sec": 141, + "end_sec": 166, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q3", + "video_path": "videos/youtube/volleyball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the second point, how many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:21", + "end_time": "00:02:46", + "start_sec": 141, + "end_sec": 166, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt6_q4", + "video_path": "videos/youtube/volleyball/0001_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the second point, how many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:21", + "end_time": "00:02:46", + "start_sec": 141, + "end_sec": 166, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q0", + "video_path": "videos/youtube/volleyball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:55", + "end_time": "00:03:21", + "start_sec": 175, + "end_sec": 201, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q1", + "video_path": "videos/youtube/volleyball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the first point, how many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:55", + "end_time": "00:03:21", + "start_sec": 175, + "end_sec": 201, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q2", + "video_path": "videos/youtube/volleyball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the first point, how many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:55", + "end_time": "00:03:21", + "start_sec": 175, + "end_sec": 201, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q3", + "video_path": "videos/youtube/volleyball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the second point, how many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:55", + "end_time": "00:03:21", + "start_sec": 175, + "end_sec": 201, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt7_q4", + "video_path": "videos/youtube/volleyball/0001_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "In the second point, how many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:02:55", + "end_time": "00:03:21", + "start_sec": 175, + "end_sec": 201, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q0", + "video_path": "videos/youtube/volleyball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:04:52", + "end_time": "00:05:07.067", + "start_sec": 292, + "end_sec": 307.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q1", + "video_path": "videos/youtube/volleyball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:04:52", + "end_time": "00:05:07.067", + "start_sec": 292, + "end_sec": 307.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q2", + "video_path": "videos/youtube/volleyball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:04:52", + "end_time": "00:05:07.067", + "start_sec": 292, + "end_sec": 307.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q3", + "video_path": "videos/youtube/volleyball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:04:52", + "end_time": "00:05:07.067", + "start_sec": 292, + "end_sec": 307.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q4", + "video_path": "videos/youtube/volleyball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:04:52", + "end_time": "00:05:07.067", + "start_sec": 292, + "end_sec": 307.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt8_q5", + "video_path": "videos/youtube/volleyball/0001_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:04:52", + "end_time": "00:05:07.067", + "start_sec": 292, + "end_sec": 307.067, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9_q0", + "video_path": "videos/youtube/volleyball/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 13, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9_q1", + "video_path": "videos/youtube/volleyball/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0001_pt9_q2", + "video_path": "videos/youtube/volleyball/0001_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q0", + "video_path": "videos/youtube/volleyball/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:23", + "end_time": "00:00:39.033", + "start_sec": 23, + "end_sec": 39.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q1", + "video_path": "videos/youtube/volleyball/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:23", + "end_time": "00:00:39.033", + "start_sec": 23, + "end_sec": 39.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q2", + "video_path": "videos/youtube/volleyball/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:23", + "end_time": "00:00:39.033", + "start_sec": 23, + "end_sec": 39.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q3", + "video_path": "videos/youtube/volleyball/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:23", + "end_time": "00:00:39.033", + "start_sec": 23, + "end_sec": 39.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q4", + "video_path": "videos/youtube/volleyball/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:23", + "end_time": "00:00:39.033", + "start_sec": 23, + "end_sec": 39.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt1_q5", + "video_path": "videos/youtube/volleyball/0002_pt1.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:23", + "end_time": "00:00:39.033", + "start_sec": 23, + "end_sec": 39.033, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q0", + "video_path": "videos/youtube/volleyball/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:52", + "end_time": "00:06:00", + "start_sec": 352, + "end_sec": 360, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q1", + "video_path": "videos/youtube/volleyball/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:52", + "end_time": "00:06:00", + "start_sec": 352, + "end_sec": 360, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q2", + "video_path": "videos/youtube/volleyball/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:52", + "end_time": "00:06:00", + "start_sec": 352, + "end_sec": 360, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt10_q3", + "video_path": "videos/youtube/volleyball/0002_pt10.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "What is the chronological sequence of the teams making contact with the ball? The clip may start mid-rally; the first contact is not necessarily a serve, and receive-set-attack patterns do not imply the answer.\n\n(A) white team -> red team -> white team -> red team\n(B) white team -> red team -> red team -> white team\n(C) white team -> white team -> red team -> red team\n(D) white team -> red team -> red team -> red team", + "answer_type": "mcq", + "choices": [ + "white team -> red team -> white team -> red team", + "white team -> red team -> red team -> white team", + "white team -> white team -> red team -> red team", + "white team -> red team -> red team -> red team" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:52", + "end_time": "00:06:00", + "start_sec": 352, + "end_sec": 360 + }, + { + "video_id": "0002_pt2_q0", + "video_path": "videos/youtube/volleyball/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 15, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:41", + "end_time": "00:01:01", + "start_sec": 41, + "end_sec": 61, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q1", + "video_path": "videos/youtube/volleyball/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 11, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:41", + "end_time": "00:01:01", + "start_sec": 41, + "end_sec": 61, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q2", + "video_path": "videos/youtube/volleyball/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:41", + "end_time": "00:01:01", + "start_sec": 41, + "end_sec": 61, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q3", + "video_path": "videos/youtube/volleyball/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:41", + "end_time": "00:01:01", + "start_sec": 41, + "end_sec": 61, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q4", + "video_path": "videos/youtube/volleyball/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:41", + "end_time": "00:01:01", + "start_sec": 41, + "end_sec": 61, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt2_q5", + "video_path": "videos/youtube/volleyball/0002_pt2.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 0, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:00:41", + "end_time": "00:01:01", + "start_sec": 41, + "end_sec": 61, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q0", + "video_path": "videos/youtube/volleyball/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 19, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:01:26", + "end_time": "00:01:49", + "start_sec": 86, + "end_sec": 109, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q1", + "video_path": "videos/youtube/volleyball/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:01:26", + "end_time": "00:01:49", + "start_sec": 86, + "end_sec": 109, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q2", + "video_path": "videos/youtube/volleyball/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:01:26", + "end_time": "00:01:49", + "start_sec": 86, + "end_sec": 109, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q3", + "video_path": "videos/youtube/volleyball/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:01:26", + "end_time": "00:01:49", + "start_sec": 86, + "end_sec": 109, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q4", + "video_path": "videos/youtube/volleyball/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:01:26", + "end_time": "00:01:49", + "start_sec": 86, + "end_sec": 109, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt3_q5", + "video_path": "videos/youtube/volleyball/0002_pt3.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:01:26", + "end_time": "00:01:49", + "start_sec": 86, + "end_sec": 109, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q0", + "video_path": "videos/youtube/volleyball/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 16, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:02:14", + "end_time": "00:02:36", + "start_sec": 134, + "end_sec": 156, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q1", + "video_path": "videos/youtube/volleyball/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 9, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:02:14", + "end_time": "00:02:36", + "start_sec": 134, + "end_sec": 156, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q2", + "video_path": "videos/youtube/volleyball/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:02:14", + "end_time": "00:02:36", + "start_sec": 134, + "end_sec": 156, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q3", + "video_path": "videos/youtube/volleyball/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:02:14", + "end_time": "00:02:36", + "start_sec": 134, + "end_sec": 156, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q4", + "video_path": "videos/youtube/volleyball/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:02:14", + "end_time": "00:02:36", + "start_sec": 134, + "end_sec": 156, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt4_q5", + "video_path": "videos/youtube/volleyball/0002_pt4.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:02:14", + "end_time": "00:02:36", + "start_sec": 134, + "end_sec": 156, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q0", + "video_path": "videos/youtube/volleyball/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:03:54", + "end_time": "00:04:05", + "start_sec": 234, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q1", + "video_path": "videos/youtube/volleyball/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 6, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:03:54", + "end_time": "00:04:05", + "start_sec": 234, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q2", + "video_path": "videos/youtube/volleyball/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:03:54", + "end_time": "00:04:05", + "start_sec": 234, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q3", + "video_path": "videos/youtube/volleyball/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:03:54", + "end_time": "00:04:05", + "start_sec": 234, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q4", + "video_path": "videos/youtube/volleyball/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:03:54", + "end_time": "00:04:05", + "start_sec": 234, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt5_q5", + "video_path": "videos/youtube/volleyball/0002_pt5.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:03:54", + "end_time": "00:04:05", + "start_sec": 234, + "end_sec": 245, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q0", + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q1", + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q2", + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 1, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q3", + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q4", + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q5", + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt6_q6", + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "What is the chronological sequence of the teams making contact with the ball? The clip may start mid-rally; the first contact is not necessarily a serve, and receive-set-attack patterns do not imply the answer.\n\n(A) red team -> white team -> red team -> white team\n(B) red team -> white team -> white team -> red team\n(C) red team -> red team -> white team -> white team\n(D) red team -> white team -> white team -> white team", + "answer_type": "mcq", + "choices": [ + "red team -> white team -> red team -> white team", + "red team -> white team -> white team -> red team", + "red team -> red team -> white team -> white team", + "red team -> white team -> white team -> white team" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258 + }, + { + "video_id": "0002_pt7_q0", + "video_path": "videos/youtube/volleyball/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 5, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:53", + "end_time": "00:05:01", + "start_sec": 293, + "end_sec": 301, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7_q1", + "video_path": "videos/youtube/volleyball/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:53", + "end_time": "00:05:01", + "start_sec": 293, + "end_sec": 301, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7_q2", + "video_path": "videos/youtube/volleyball/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:53", + "end_time": "00:05:01", + "start_sec": 293, + "end_sec": 301, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt7_q3", + "video_path": "videos/youtube/volleyball/0002_pt7.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "What is the chronological sequence of the teams making contact with the ball? The clip may start mid-rally; the first contact is not necessarily a serve, and receive-set-attack patterns do not imply the answer.\n\n(A) red team -> white team -> white team -> red team -> red team\n(B) red team -> white team -> red team -> white team -> red team\n(C) red team -> red team -> white team -> white team -> red team\n(D) red team -> white team -> white team -> white team -> red team", + "answer_type": "mcq", + "choices": [ + "red team -> white team -> white team -> red team -> red team", + "red team -> white team -> red team -> white team -> red team", + "red team -> red team -> white team -> white team -> red team", + "red team -> white team -> white team -> white team -> red team" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:04:53", + "end_time": "00:05:01", + "start_sec": 293, + "end_sec": 301 + }, + { + "video_id": "0002_pt8_q0", + "video_path": "videos/youtube/volleyball/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 10, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q1", + "video_path": "videos/youtube/volleyball/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q2", + "video_path": "videos/youtube/volleyball/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q3", + "video_path": "videos/youtube/volleyball/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q4", + "video_path": "videos/youtube/volleyball/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt8_q5", + "video_path": "videos/youtube/volleyball/0002_pt8.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q0", + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many times is the ball hit in total?", + "answer_type": "numeric", + "answer": 8, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "count", + "state_structure": "atomic", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q1", + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players hit the ball in total?", + "answer_type": "numeric", + "answer": 7, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q2", + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team touch the ball", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q3", + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the red team do not touch the ball?", + "answer_type": "numeric", + "answer": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q4", + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team touch the ball", + "answer_type": "numeric", + "answer": 4, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q5", + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "How many different players on the white team do not touch the ball?", + "answer_type": "numeric", + "answer": 2, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "set", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347, + "choices": [], + "answer_index": null + }, + { + "video_id": "0002_pt9_q6", + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "video_source": "youtube", + "source_task": "volleyball", + "question": "What is the chronological sequence of the teams making contact with the ball? The clip may start mid-rally; the first contact is not necessarily a serve, and receive-set-attack patterns do not imply the answer.\n\n(A) white team -> red team -> red team -> red team -> white team -> white team -> white team -> red team\n(B) white team -> red team -> red team -> white team -> white team -> white team -> white team -> white team\n(C) red team -> white team -> white team -> white team -> red team -> red team -> red team -> red team\n(D) white team -> red team -> red team -> red team -> white team -> white team -> white team -> white team", + "answer_type": "mcq", + "choices": [ + "white team -> red team -> red team -> red team -> white team -> white team -> white team -> red team", + "white team -> red team -> red team -> white team -> white team -> white team -> white team -> white team", + "red team -> white team -> white team -> white team -> red team -> red team -> red team -> red team", + "white team -> red team -> red team -> red team -> white team -> white team -> white team -> white team" + ], + "answer": "D", + "answer_index": 3, + "perceptual_complexity": [ + "action_ambiguity", + "multi_entity_attribution", + "homogeneity", + "camera_motion" + ], + "state_element_type": "attribute", + "state_structure": "sequence", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347 + } + ] + }, + "splits": { + "synthetic": { + "unique_videos": 450, + "qa_count": 550 + }, + "self_recorded": { + "unique_videos": 80, + "qa_count": 100 + }, + "youtube": { + "unique_videos": 284, + "qa_count": 830 + } + }, + "question_types": { + "mcq": 515, + "numeric": 965 + }, + "taxonomy": { + "perceptual_complexity": { + "action_ambiguity": 826, + "multi_entity_attribution": 816, + "occlusion": 613, + "camera_motion": 541, + "homogeneity": 376, + "symbolic_decoding": 46 + }, + "state_element_type": { + "attribute": 370, + "count": 747, + "location": 363 + }, + "state_structure": { + "set": 250, + "atomic": 710, + "dictionary": 309, + "sequence": 211 + } + } +} diff --git a/youtube_metadata.json b/youtube_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..1b554a052420f709b923f741b4da821d4026682c --- /dev/null +++ b/youtube_metadata.json @@ -0,0 +1,3969 @@ +{ + "description": "Per-chunk metadata for YouTube videos referenced by VSTAT. VSTAT does NOT redistribute YouTube videos. Use the provided download script to fetch each clip via yt-dlp + ffmpeg trim.", + "license_note": "Each YouTube video remains under the original uploader's license. Users are responsible for complying with YouTube's Terms of Service.", + "count": 284, + "videos": [ + { + "video_path": "videos/youtube/basketball/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:00:00", + "end_time": "00:01:02", + "start_sec": 0, + "end_sec": 62, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:09:47", + "end_time": "00:10:42", + "start_sec": 587, + "end_sec": 642, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:01:17", + "end_time": "00:02:11", + "start_sec": 77, + "end_sec": 131, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:02:20", + "end_time": "00:03:24", + "start_sec": 140, + "end_sec": 204, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:03:30", + "end_time": "00:04:30", + "start_sec": 210, + "end_sec": 270, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:04:40", + "end_time": "00:05:40", + "start_sec": 280, + "end_sec": 340, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:05:50", + "end_time": "00:06:40", + "start_sec": 350, + "end_sec": 400, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:06:42", + "end_time": "00:07:30", + "start_sec": 402, + "end_sec": 450, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:07:43", + "end_time": "00:08:32", + "start_sec": 463, + "end_sec": 512, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0001_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=1X4LJqjGVlM", + "youtube_id": "1X4LJqjGVlM", + "youtube_title": "Fair Oaks 125", + "uploader": "Srundon Wong", + "channel_url": "https://www.youtube.com/channel/UCESBWQ-_TP9K7Pm0OXimkpg", + "duration": 1545, + "start_time": "00:08:38", + "end_time": "00:09:32", + "start_sec": 518, + "end_sec": 572, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:21:20", + "end_time": "00:22:15", + "start_sec": 1280, + "end_sec": 1335, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:09:51", + "end_time": "00:10:56", + "start_sec": 591, + "end_sec": 656, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:10:56", + "end_time": "00:11:41", + "start_sec": 656, + "end_sec": 701, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:11:42", + "end_time": "00:12:40", + "start_sec": 702, + "end_sec": 760, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:13:38", + "end_time": "00:14:42", + "start_sec": 818, + "end_sec": 882, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:14:42", + "end_time": "00:15:30", + "start_sec": 882, + "end_sec": 930, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:16:13", + "end_time": "00:17:17", + "start_sec": 973, + "end_sec": 1037, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:17:30", + "end_time": "00:18:25", + "start_sec": 1050, + "end_sec": 1105, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:19:31", + "end_time": "00:20:23", + "start_sec": 1171, + "end_sec": 1223, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0002_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VfTYLczfz5Q", + "youtube_id": "VfTYLczfz5Q", + "youtube_title": "I FLEW Real Hoopers To MY City & THEY Exposed ME BAD...", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2000, + "start_time": "00:20:23", + "end_time": "00:21:15", + "start_sec": 1223, + "end_sec": 1275, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:12:10", + "end_time": "00:12:54", + "start_sec": 730, + "end_sec": 774, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:02:55", + "end_time": "00:03:52", + "start_sec": 175, + "end_sec": 232, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:03:53", + "end_time": "00:04:50", + "start_sec": 233, + "end_sec": 290, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:04:53", + "end_time": "00:05:53", + "start_sec": 293, + "end_sec": 353, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:05:55", + "end_time": "00:07:05", + "start_sec": 355, + "end_sec": 425, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:07:10", + "end_time": "00:08:06", + "start_sec": 430, + "end_sec": 486, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:08:06", + "end_time": "00:09:10", + "start_sec": 486, + "end_sec": 550, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:09:10", + "end_time": "00:10:05", + "start_sec": 550, + "end_sec": 605, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:10:09", + "end_time": "00:11:05", + "start_sec": 609, + "end_sec": 665, + "category": "basketball" + }, + { + "video_path": "videos/youtube/basketball/0003_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3CdquqTueaM", + "youtube_id": "3CdquqTueaM", + "youtube_title": "The Most Viral Park Run Of The Year | GAME SEASON 2", + "uploader": "D'Vontay Friga", + "channel_url": "https://www.youtube.com/channel/UCeI--jINF0G1jmDVjT2PX_Q", + "duration": 2448, + "start_time": "00:11:18", + "end_time": "00:12:10", + "start_sec": 678, + "end_sec": 730, + "category": "basketball" + }, + { + "video_path": "videos/youtube/bouldering/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sN8Yzcd7NJs", + "youtube_id": "sN8Yzcd7NJs", + "youtube_title": "Kilter Board V10 “monkey corporation” @ 45°", + "uploader": "cobyclimbs", + "channel_url": "https://www.youtube.com/channel/UCYcX6RC5E0Wl6BlKxq6uKMA", + "duration": 30, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=wn2okX1bTcQ", + "youtube_id": "wn2okX1bTcQ", + "youtube_title": "\"Master Chief\" @ 40° on the Kilter Board Original.", + "uploader": "cobyclimbs", + "channel_url": "https://www.youtube.com/channel/UCYcX6RC5E0Wl6BlKxq6uKMA", + "duration": 25, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=B5cNn-IsjHk", + "youtube_id": "B5cNn-IsjHk", + "youtube_title": "Kilter Board Training || \"proj braj\" V7/7a+ @ 40degrees", + "uploader": "Saltydogbouldering", + "channel_url": "https://www.youtube.com/channel/UCRboYBDGTg95Ra95AnTZ4kg", + "duration": 19, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=mn9LFwR9SKw", + "youtube_id": "mn9LFwR9SKw", + "youtube_title": "Kilter Board V4 \"Mike's Hard Lemonade\" @ 40° #kilterboard #bouldering", + "uploader": "Jennifer", + "channel_url": "https://www.youtube.com/channel/UCFMGqg60wchAzUtZznxD-vg", + "duration": 23, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=CEIwzR7KEns", + "youtube_id": "CEIwzR7KEns", + "youtube_title": "Kilter Board V8 “Great good best” @ 40 degrees #kilterboard #bouldering", + "uploader": "Dane Ferolin", + "channel_url": "https://www.youtube.com/channel/UCtlwsmJQtPiTo5hEFR89ouw", + "duration": 35, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0006_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=8HBe71_M2bs", + "youtube_id": "8HBe71_M2bs", + "youtube_title": "Kilterboard V5 \"Priest Drawn\" @ 40° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "uploader": "Nick Keali’i Climbs", + "channel_url": "https://www.youtube.com/channel/UC9AlIymMv4-jwYNSPMQ98eg", + "duration": 18, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0007_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=k5NTPom2SFs", + "youtube_id": "k5NTPom2SFs", + "youtube_title": "Wagon at home (8a+/v12), Kilter Board at 50° #bouldering #climbing #shorts", + "uploader": "Leo Skinner", + "channel_url": "https://www.youtube.com/channel/UCOqynBY_S1gjHqyot5ThKug", + "duration": 35, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0008_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=2RZHzZEbLkU", + "youtube_id": "2RZHzZEbLkU", + "youtube_title": "7C/V9 \"Sequences\" @ 40° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "uploader": "Justin Do", + "channel_url": "https://www.youtube.com/channel/UCXrza9SuU3axj_yFx_x4Jxw", + "duration": 33, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0009_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Uo_AwsDgfVo", + "youtube_id": "Uo_AwsDgfVo", + "youtube_title": "Legen-Darry 8A @ 50° on the Kilter Board Original. #kilterboard #climbing #bouldering", + "uploader": "Mr. Muffin", + "channel_url": "https://www.youtube.com/channel/UCkYlJiVccrKT87RDGsu2v-Q", + "duration": 39, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/bouldering/0010_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=T5zAC8Mxoe8", + "youtube_id": "T5zAC8Mxoe8", + "youtube_title": "\"swooped\" @ 40° on the Kilter Board Original. @auroraclimbing #kilterboard #climbing #bouldering", + "uploader": "Zion Castro", + "channel_url": "https://www.youtube.com/channel/UCtB7VVAHLtJzMt38V8lfOiA", + "duration": 26, + "start_time": "00:00:00", + "end_time": "none", + "start_sec": 0, + "end_sec": null, + "category": "bouldering" + }, + { + "video_path": "videos/youtube/boxing/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "uploader": "Timeless Boxing", + "channel_url": "https://www.youtube.com/channel/UC5YLPwl-Y4w6R2qrW9SABMQ", + "duration": 598, + "start_time": "00:01:08", + "end_time": "00:01:20", + "start_sec": 68, + "end_sec": 80, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "uploader": "Timeless Boxing", + "channel_url": "https://www.youtube.com/channel/UC5YLPwl-Y4w6R2qrW9SABMQ", + "duration": 598, + "start_time": "00:01:57.967", + "end_time": "00:02:09.033", + "start_sec": 117.967, + "end_sec": 129.033, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "uploader": "Timeless Boxing", + "channel_url": "https://www.youtube.com/channel/UC5YLPwl-Y4w6R2qrW9SABMQ", + "duration": 598, + "start_time": "00:02:38.967", + "end_time": "00:02:56.033", + "start_sec": 158.967, + "end_sec": 176.033, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "uploader": "Timeless Boxing", + "channel_url": "https://www.youtube.com/channel/UC5YLPwl-Y4w6R2qrW9SABMQ", + "duration": 598, + "start_time": "00:03:26", + "end_time": "00:03:36", + "start_sec": 206, + "end_sec": 216, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7bx2SrjBSQI", + "youtube_id": "7bx2SrjBSQI", + "youtube_title": "Jaron Ennis (USA) vs Sergey Lipinets (Kazakhstan) | Boxing Fight Highlights", + "uploader": "Timeless Boxing", + "channel_url": "https://www.youtube.com/channel/UC5YLPwl-Y4w6R2qrW9SABMQ", + "duration": 598, + "start_time": "00:04:13.967", + "end_time": "00:04:30.033", + "start_sec": 253.967, + "end_sec": 270.033, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "uploader": "FIGHTER CHANNEL 2", + "channel_url": "https://www.youtube.com/channel/UCzzqIWKj3Fy066PPeSN-E5w", + "duration": 1164, + "start_time": "00:01:06", + "end_time": "00:01:21", + "start_sec": 66, + "end_sec": 81, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "uploader": "FIGHTER CHANNEL 2", + "channel_url": "https://www.youtube.com/channel/UCzzqIWKj3Fy066PPeSN-E5w", + "duration": 1164, + "start_time": "00:03:17", + "end_time": "00:03:32", + "start_sec": 197, + "end_sec": 212, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "uploader": "FIGHTER CHANNEL 2", + "channel_url": "https://www.youtube.com/channel/UCzzqIWKj3Fy066PPeSN-E5w", + "duration": 1164, + "start_time": "00:08:25", + "end_time": "00:08:41", + "start_sec": 505, + "end_sec": 521, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=9CWSS3X3q7k", + "youtube_id": "9CWSS3X3q7k", + "youtube_title": "Heavyweight Boxing! Deontay Wilder (USA) vs Tyrrell Herndon (USA) | Fight Highlights", + "uploader": "FIGHTER CHANNEL 2", + "channel_url": "https://www.youtube.com/channel/UCzzqIWKj3Fy066PPeSN-E5w", + "duration": 1164, + "start_time": "00:09:49", + "end_time": "00:09:58", + "start_sec": 589, + "end_sec": 598, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "uploader": "Premier Boxing Champions", + "channel_url": "https://www.youtube.com/channel/UCWXYAGB9SadlL6p5Bb66wWw", + "duration": 3598, + "start_time": "00:18:24", + "end_time": "00:18:43", + "start_sec": 1104, + "end_sec": 1123, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "uploader": "Premier Boxing Champions", + "channel_url": "https://www.youtube.com/channel/UCWXYAGB9SadlL6p5Bb66wWw", + "duration": 3598, + "start_time": "00:18:59", + "end_time": "00:19:14", + "start_sec": 1139, + "end_sec": 1154, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "uploader": "Premier Boxing Champions", + "channel_url": "https://www.youtube.com/channel/UCWXYAGB9SadlL6p5Bb66wWw", + "duration": 3598, + "start_time": "00:30:09", + "end_time": "00:30:21", + "start_sec": 1809, + "end_sec": 1821, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0003_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=4dTzktjYIx4", + "youtube_id": "4dTzktjYIx4", + "youtube_title": "Davis vs Ryan Garcia FULL FIGHT: April 22, 2023 | PBC on Showtime PPV", + "uploader": "Premier Boxing Champions", + "channel_url": "https://www.youtube.com/channel/UCWXYAGB9SadlL6p5Bb66wWw", + "duration": 3598, + "start_time": "00:38:35", + "end_time": "00:38:50", + "start_sec": 2315, + "end_sec": 2330, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "uploader": "Netflix Sports", + "channel_url": "https://www.youtube.com/channel/UC_UJdqZuFhRXfeYXYrhwgJA", + "duration": 180, + "start_time": "00:00:00", + "end_time": "00:00:28", + "start_sec": 0, + "end_sec": 28, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0004_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "uploader": "Netflix Sports", + "channel_url": "https://www.youtube.com/channel/UC_UJdqZuFhRXfeYXYrhwgJA", + "duration": 180, + "start_time": "00:00:41", + "end_time": "00:00:55", + "start_sec": 41, + "end_sec": 55, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0004_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=TK3ntJMwTVY", + "youtube_id": "TK3ntJMwTVY", + "youtube_title": "Jake Paul vs. Anthony Joshua FULL Highlights | Netflix", + "uploader": "Netflix Sports", + "channel_url": "https://www.youtube.com/channel/UC_UJdqZuFhRXfeYXYrhwgJA", + "duration": 180, + "start_time": "00:01:08", + "end_time": "00:01:19", + "start_sec": 68, + "end_sec": 79, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "uploader": "Filipino Boxing TV", + "channel_url": "https://www.youtube.com/channel/UCsXTopS4m4AfNc9DsyS12DQ", + "duration": 434, + "start_time": "00:01:35", + "end_time": "00:01:51", + "start_sec": 95, + "end_sec": 111, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0005_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "uploader": "Filipino Boxing TV", + "channel_url": "https://www.youtube.com/channel/UCsXTopS4m4AfNc9DsyS12DQ", + "duration": 434, + "start_time": "00:01:57", + "end_time": "00:02:06", + "start_sec": 117, + "end_sec": 126, + "category": "boxing" + }, + { + "video_path": "videos/youtube/boxing/0005_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=wCmraEyThOo", + "youtube_id": "wCmraEyThOo", + "youtube_title": "JIMUEL PACQUIAO VS DARRICK GATES | FULL FIGHT | MP PROMOTIONS", + "uploader": "Filipino Boxing TV", + "channel_url": "https://www.youtube.com/channel/UCsXTopS4m4AfNc9DsyS12DQ", + "duration": 434, + "start_time": "00:05:40", + "end_time": "00:05:55", + "start_sec": 340, + "end_sec": 355, + "category": "boxing" + }, + { + "video_path": "videos/youtube/carousel/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zVvuz7VXlNc", + "youtube_id": "zVvuz7VXlNc", + "youtube_title": "King Arthur Carrousel with the Pearly Band - Disneyland Ride 2022 [4K POV]", + "uploader": "DocumentDisney", + "channel_url": "https://www.youtube.com/channel/UC9lsnxxfNyo7nhHyCEum3gg", + "duration": 229, + "start_time": "00:00:25", + "end_time": "00:00:36", + "start_sec": 25, + "end_sec": 36, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=CVv9KIK3ET4", + "youtube_id": "CVv9KIK3ET4", + "youtube_title": "快乐的旋转木马🎠#carousel #playground #children #happy #childhood #travel #citylife", + "uploader": "ABingYOLO", + "channel_url": "https://www.youtube.com/channel/UCz970PRywqjF2fgQio5FKWw", + "duration": 22, + "start_time": "00:00:00", + "end_time": "00:00:14.033", + "start_sec": 0, + "end_sec": 14.033, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "uploader": "DocumentDisney", + "channel_url": "https://www.youtube.com/channel/UC9lsnxxfNyo7nhHyCEum3gg", + "duration": 204, + "start_time": "00:00:29", + "end_time": "00:01:25", + "start_sec": 29, + "end_sec": 85, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=IBV9sDoFklg", + "youtube_id": "IBV9sDoFklg", + "youtube_title": "King Arthur Carrousel 2024 - Disneyland Ride [4K60 POV]", + "uploader": "DocumentDisney", + "channel_url": "https://www.youtube.com/channel/UC9lsnxxfNyo7nhHyCEum3gg", + "duration": 204, + "start_time": "00:01:26", + "end_time": "00:02:26", + "start_sec": 86, + "end_sec": 146, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "uploader": "TPH Productions", + "channel_url": "https://www.youtube.com/channel/UCMWSxVSo3PRFImwTGYDVvpQ", + "duration": 132, + "start_time": "00:00:00", + "end_time": "00:01:00.033", + "start_sec": 0, + "end_sec": 60.033, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0004_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=lfs2p56s0zU", + "youtube_id": "lfs2p56s0zU", + "youtube_title": "King Arthur's Carousel 4K 60fps on-ride POV Disneyland (2025)", + "uploader": "TPH Productions", + "channel_url": "https://www.youtube.com/channel/UCMWSxVSo3PRFImwTGYDVvpQ", + "duration": 132, + "start_time": "00:01:00", + "end_time": "00:02:00", + "start_sec": 60, + "end_sec": 120, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=s3vbGxdRuaM", + "youtube_id": "s3vbGxdRuaM", + "youtube_title": "Fun times for Daniela", + "uploader": "Htown67", + "channel_url": "https://www.youtube.com/channel/UCXRppWglHoPfLaqTn7c_HAA", + "duration": 82, + "start_time": "00:00:00", + "end_time": "00:00:11", + "start_sec": 0, + "end_sec": 11, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0005_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=s3vbGxdRuaM", + "youtube_id": "s3vbGxdRuaM", + "youtube_title": "Fun times for Daniela", + "uploader": "Htown67", + "channel_url": "https://www.youtube.com/channel/UCXRppWglHoPfLaqTn7c_HAA", + "duration": 82, + "start_time": "00:00:11", + "end_time": "00:00:23", + "start_sec": 11, + "end_sec": 23, + "category": "carousel" + }, + { + "video_path": "videos/youtube/carousel/0006_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=UKNfQ5-I88I", + "youtube_id": "UKNfQ5-I88I", + "youtube_title": "Jessie's Critter Carousel 2023 - Disney California Adventure Ride [4K POV]", + "uploader": "DocumentDisney", + "channel_url": "https://www.youtube.com/channel/UC9lsnxxfNyo7nhHyCEum3gg", + "duration": 183, + "start_time": "00:00:38", + "end_time": "00:01:38", + "start_sec": 38, + "end_sec": 98, + "category": "carousel" + }, + { + "video_path": "videos/youtube/coffee/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=mULwi814HQ0", + "youtube_id": "mULwi814HQ0", + "youtube_title": "Anthony Douglas, Australia — 2022 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 900, + "start_time": "00:00:59", + "end_time": "00:01:59.067", + "start_sec": 59, + "end_sec": 119.067, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=mULwi814HQ0", + "youtube_id": "mULwi814HQ0", + "youtube_title": "Anthony Douglas, Australia — 2022 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 900, + "start_time": "00:05:15", + "end_time": "00:05:53", + "start_sec": 315, + "end_sec": 353, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=mULwi814HQ0", + "youtube_id": "mULwi814HQ0", + "youtube_title": "Anthony Douglas, Australia — 2022 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 900, + "start_time": "00:09:30", + "end_time": "00:10:30.067", + "start_sec": 570, + "end_sec": 630.067, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Bw7WuL4NyPI", + "youtube_id": "Bw7WuL4NyPI", + "youtube_title": "Benjamin Put, Canada — 2022 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 903, + "start_time": "00:01:45", + "end_time": "00:02:35", + "start_sec": 105, + "end_sec": 155, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Bw7WuL4NyPI", + "youtube_id": "Bw7WuL4NyPI", + "youtube_title": "Benjamin Put, Canada — 2022 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 903, + "start_time": "00:07:15", + "end_time": "00:08:25", + "start_sec": 435, + "end_sec": 505, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Bw7WuL4NyPI", + "youtube_id": "Bw7WuL4NyPI", + "youtube_title": "Benjamin Put, Canada — 2022 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 903, + "start_time": "00:10:20", + "end_time": "00:11:22", + "start_sec": 620, + "end_sec": 682, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=HVoHoMhzy2w", + "youtube_id": "HVoHoMhzy2w", + "youtube_title": "Jack Simpson, Australia | 2025 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 915, + "start_time": "00:03:55", + "end_time": "00:04:35", + "start_sec": 235, + "end_sec": 275, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=HVoHoMhzy2w", + "youtube_id": "HVoHoMhzy2w", + "youtube_title": "Jack Simpson, Australia | 2025 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 915, + "start_time": "00:09:00", + "end_time": "00:09:50", + "start_sec": 540, + "end_sec": 590, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=HVoHoMhzy2w", + "youtube_id": "HVoHoMhzy2w", + "youtube_title": "Jack Simpson, Australia | 2025 World Barista Championship: Finals", + "uploader": "World Coffee Championships", + "channel_url": "https://www.youtube.com/channel/UCj3EGvvThysiDzBM20BabWw", + "duration": 915, + "start_time": "00:13:15", + "end_time": "00:13:55", + "start_sec": 795, + "end_sec": 835, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "uploader": "Dritan Alsela", + "channel_url": "https://www.youtube.com/channel/UCvT3R_ZzDkAB2NYDWWJVitw", + "duration": 211, + "start_time": "00:00:00", + "end_time": "00:00:36", + "start_sec": 0, + "end_sec": 36, + "category": "coffee" + }, + { + "video_path": "videos/youtube/coffee/0004_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "uploader": "Dritan Alsela", + "channel_url": "https://www.youtube.com/channel/UCvT3R_ZzDkAB2NYDWWJVitw", + "duration": 211, + "start_time": "00:01:30", + "end_time": "00:02:15", + "start_sec": 90, + "end_sec": 135, + "category": "coffee" + }, + { + "video_path": "videos/youtube/cooking/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=INiAM1u925E", + "youtube_id": "INiAM1u925E", + "youtube_title": "POV How to Cook a Steak", + "uploader": "J. Kenji López-Alt", + "channel_url": "https://www.youtube.com/channel/UCqqJQ_cXSat0KIAVfIfKkVA", + "duration": 1834, + "start_time": "00:07:38", + "end_time": "00:08:06", + "start_sec": 458, + "end_sec": 486, + "category": "cooking" + }, + { + "video_path": "videos/youtube/cooking/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=INiAM1u925E", + "youtube_id": "INiAM1u925E", + "youtube_title": "POV How to Cook a Steak", + "uploader": "J. Kenji López-Alt", + "channel_url": "https://www.youtube.com/channel/UCqqJQ_cXSat0KIAVfIfKkVA", + "duration": 1834, + "start_time": "00:17:50", + "end_time": "00:18:00", + "start_sec": 1070, + "end_sec": 1080, + "category": "cooking" + }, + { + "video_path": "videos/youtube/cooking/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=2nhjTXUUx9g", + "youtube_id": "2nhjTXUUx9g", + "youtube_title": "One-pan mini-roast with fondant potatoes (Christmas dinner for 1 or 2)", + "uploader": "Adam Ragusea", + "channel_url": "https://www.youtube.com/channel/UC9_p50tH3WmMslWRWKnM7dQ", + "duration": 374, + "start_time": "00:00:35", + "end_time": "00:00:43", + "start_sec": 35, + "end_sec": 43, + "category": "cooking" + }, + { + "video_path": "videos/youtube/cooking/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=2nhjTXUUx9g", + "youtube_id": "2nhjTXUUx9g", + "youtube_title": "One-pan mini-roast with fondant potatoes (Christmas dinner for 1 or 2)", + "uploader": "Adam Ragusea", + "channel_url": "https://www.youtube.com/channel/UC9_p50tH3WmMslWRWKnM7dQ", + "duration": 374, + "start_time": "00:02:45", + "end_time": "00:02:50", + "start_sec": 165, + "end_sec": 170, + "category": "cooking" + }, + { + "video_path": "videos/youtube/cooking/0006_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "uploader": "POV Cocinero MX", + "channel_url": "https://www.youtube.com/channel/UCClCA8_hFT4la9IW6JqXuvA", + "duration": 4347, + "start_time": "00:05:17", + "end_time": "00:05:45", + "start_sec": 317, + "end_sec": 345, + "category": "cooking" + }, + { + "video_path": "videos/youtube/cooking/0006_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "uploader": "POV Cocinero MX", + "channel_url": "https://www.youtube.com/channel/UCClCA8_hFT4la9IW6JqXuvA", + "duration": 4347, + "start_time": "00:23:22", + "end_time": "00:23:58", + "start_sec": 1402, + "end_sec": 1438, + "category": "cooking" + }, + { + "video_path": "videos/youtube/cooking/0006_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=r9DqZRM7FQU", + "youtube_id": "r9DqZRM7FQU", + "youtube_title": "Busy Friday 🤯| Simple but Great | POV Cooking", + "uploader": "POV Cocinero MX", + "channel_url": "https://www.youtube.com/channel/UCClCA8_hFT4la9IW6JqXuvA", + "duration": 4347, + "start_time": "00:27:46", + "end_time": "00:27:54", + "start_sec": 1666, + "end_sec": 1674, + "category": "cooking" + }, + { + "video_path": "videos/youtube/cube/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=5DCo_bZ0PEo", + "youtube_id": "5DCo_bZ0PEo", + "youtube_title": "How to Solve a Rubik’s Cube in 4 Moves", + "uploader": "Cuber’s Tube", + "channel_url": "https://www.youtube.com/channel/UC0ovPyCtjCABG9jm1Bf7LKQ", + "duration": 75, + "start_time": "00:00:11", + "end_time": "00:01:15", + "start_sec": 11, + "end_sec": 75, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=5DCo_bZ0PEo", + "youtube_id": "5DCo_bZ0PEo", + "youtube_title": "How to Solve a Rubik’s Cube in 4 Moves", + "uploader": "Cuber’s Tube", + "channel_url": "https://www.youtube.com/channel/UC0ovPyCtjCABG9jm1Bf7LKQ", + "duration": 75, + "start_time": "00:00:09", + "end_time": "00:00:21", + "start_sec": 9, + "end_sec": 21, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=5DCo_bZ0PEo", + "youtube_id": "5DCo_bZ0PEo", + "youtube_title": "How to Solve a Rubik’s Cube in 4 Moves", + "uploader": "Cuber’s Tube", + "channel_url": "https://www.youtube.com/channel/UC0ovPyCtjCABG9jm1Bf7LKQ", + "duration": 75, + "start_time": "00:00:10", + "end_time": "00:00:22", + "start_sec": 10, + "end_sec": 22, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=R-R0KrXvWbc", + "youtube_id": "R-R0KrXvWbc", + "youtube_title": "How to Solve a Rubik's Cube | WIRED", + "uploader": "WIRED", + "channel_url": "https://www.youtube.com/channel/UCftwRNsjfRo08xYE31tkiyw", + "duration": 1452, + "start_time": "00:07:24", + "end_time": "00:07:38", + "start_sec": 444, + "end_sec": 458, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=R-R0KrXvWbc", + "youtube_id": "R-R0KrXvWbc", + "youtube_title": "How to Solve a Rubik's Cube | WIRED", + "uploader": "WIRED", + "channel_url": "https://www.youtube.com/channel/UCftwRNsjfRo08xYE31tkiyw", + "duration": 1452, + "start_time": "00:09:14", + "end_time": "00:09:28", + "start_sec": 554, + "end_sec": 568, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=R-R0KrXvWbc", + "youtube_id": "R-R0KrXvWbc", + "youtube_title": "How to Solve a Rubik's Cube | WIRED", + "uploader": "WIRED", + "channel_url": "https://www.youtube.com/channel/UCftwRNsjfRo08xYE31tkiyw", + "duration": 1452, + "start_time": "00:09:30", + "end_time": "00:09:38.067", + "start_sec": 570, + "end_sec": 578.067, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "uploader": "CubeHead", + "channel_url": "https://www.youtube.com/channel/UC9wvQsn9VGQsX9uFWEuQW4A", + "duration": 777, + "start_time": "00:01:20", + "end_time": "00:01:41", + "start_sec": 80, + "end_sec": 101, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "uploader": "CubeHead", + "channel_url": "https://www.youtube.com/channel/UC9wvQsn9VGQsX9uFWEuQW4A", + "duration": 777, + "start_time": "00:05:01", + "end_time": "00:05:39", + "start_sec": 301, + "end_sec": 339, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "uploader": "CubeHead", + "channel_url": "https://www.youtube.com/channel/UC9wvQsn9VGQsX9uFWEuQW4A", + "duration": 777, + "start_time": "00:07:15", + "end_time": "00:07:31", + "start_sec": 435, + "end_sec": 451, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0003_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=PW2J8IblczM", + "youtube_id": "PW2J8IblczM", + "youtube_title": "How to Solve a Rubik's Cube [Best Method 2026]", + "uploader": "CubeHead", + "channel_url": "https://www.youtube.com/channel/UC9wvQsn9VGQsX9uFWEuQW4A", + "duration": 777, + "start_time": "00:07:35", + "end_time": "00:07:47", + "start_sec": 455, + "end_sec": 467, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "uploader": "Haluk TATAR", + "channel_url": "https://www.youtube.com/channel/UCrVR30q-Seo82gBhmAe_1uQ", + "duration": 959, + "start_time": "00:02:13", + "end_time": "00:02:56", + "start_sec": 133, + "end_sec": 176, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0004_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "uploader": "Haluk TATAR", + "channel_url": "https://www.youtube.com/channel/UCrVR30q-Seo82gBhmAe_1uQ", + "duration": 959, + "start_time": "00:03:26", + "end_time": "00:04:01", + "start_sec": 206, + "end_sec": 241, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0004_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=RcUAVc0tl0I", + "youtube_id": "RcUAVc0tl0I", + "youtube_title": "3X3 RÜBİK KÜP NASIL ÇÖZÜLÜR?", + "uploader": "Haluk TATAR", + "channel_url": "https://www.youtube.com/channel/UCrVR30q-Seo82gBhmAe_1uQ", + "duration": 959, + "start_time": "00:10:15", + "end_time": "00:10:37", + "start_sec": 615, + "end_sec": 637, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7Ron6MN45LY", + "youtube_id": "7Ron6MN45LY", + "youtube_title": "Learn How to Solve a Rubik's Cube in 10 Minutes (Beginner Tutorial)", + "uploader": "J Perm", + "channel_url": "https://www.youtube.com/channel/UCqTVfT9JQqhA6_Hi_h_h97Q", + "duration": 603, + "start_time": "00:05:57", + "end_time": "00:06:07", + "start_sec": 357, + "end_sec": 367, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0005_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7Ron6MN45LY", + "youtube_id": "7Ron6MN45LY", + "youtube_title": "Learn How to Solve a Rubik's Cube in 10 Minutes (Beginner Tutorial)", + "uploader": "J Perm", + "channel_url": "https://www.youtube.com/channel/UCqTVfT9JQqhA6_Hi_h_h97Q", + "duration": 603, + "start_time": "00:06:54", + "end_time": "00:07:16", + "start_sec": 414, + "end_sec": 436, + "category": "cube" + }, + { + "video_path": "videos/youtube/cube/0005_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=7Ron6MN45LY", + "youtube_id": "7Ron6MN45LY", + "youtube_title": "Learn How to Solve a Rubik's Cube in 10 Minutes (Beginner Tutorial)", + "uploader": "J Perm", + "channel_url": "https://www.youtube.com/channel/UCqTVfT9JQqhA6_Hi_h_h97Q", + "duration": 603, + "start_time": "00:07:18", + "end_time": "00:08:14", + "start_sec": 438, + "end_sec": 494, + "category": "cube" + }, + { + "video_path": "videos/youtube/eating_contest/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=f63qxa_lAdU", + "youtube_id": "f63qxa_lAdU", + "youtube_title": "Most burgers eaten in one minute - Guinness World Records", + "uploader": "Guinness World Records", + "channel_url": "https://www.youtube.com/channel/UCeSRjhfeeqIgr--AcP9qhyg", + "duration": 125, + "start_time": "00:01:15", + "end_time": "00:02:05", + "start_sec": 75, + "end_sec": 125, + "category": "eating_contest" + }, + { + "video_path": "videos/youtube/eating_contest/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I6HmlvQx64A", + "youtube_id": "I6HmlvQx64A", + "youtube_title": "Kinoshita Yuka [OoGui Eater] 100 Hamburger Challenge", + "uploader": "Yuka Kinoshita木下ゆうか", + "channel_url": "https://www.youtube.com/channel/UCFTVNLC7ysej-sD5lkLqNGA", + "duration": 450, + "start_time": "00:01:00", + "end_time": "00:01:37", + "start_sec": 60, + "end_sec": 97, + "category": "eating_contest" + }, + { + "video_path": "videos/youtube/eating_contest/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I6HmlvQx64A", + "youtube_id": "I6HmlvQx64A", + "youtube_title": "Kinoshita Yuka [OoGui Eater] 100 Hamburger Challenge", + "uploader": "Yuka Kinoshita木下ゆうか", + "channel_url": "https://www.youtube.com/channel/UCFTVNLC7ysej-sD5lkLqNGA", + "duration": 450, + "start_time": "00:01:38", + "end_time": "00:02:14", + "start_sec": 98, + "end_sec": 134, + "category": "eating_contest" + }, + { + "video_path": "videos/youtube/eating_contest/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I6HmlvQx64A", + "youtube_id": "I6HmlvQx64A", + "youtube_title": "Kinoshita Yuka [OoGui Eater] 100 Hamburger Challenge", + "uploader": "Yuka Kinoshita木下ゆうか", + "channel_url": "https://www.youtube.com/channel/UCFTVNLC7ysej-sD5lkLqNGA", + "duration": 450, + "start_time": "00:02:15", + "end_time": "00:02:56", + "start_sec": 135, + "end_sec": 176, + "category": "eating_contest" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:01:58", + "end_time": "00:02:19.033", + "start_sec": 118, + "end_sec": 139.033, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:02:20", + "end_time": "00:02:32", + "start_sec": 140, + "end_sec": 152, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:02:31", + "end_time": "00:02:44", + "start_sec": 151, + "end_sec": 164, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:02:46", + "end_time": "00:03:00", + "start_sec": 166, + "end_sec": 180, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:15:04", + "end_time": "00:15:51.500", + "start_sec": 904, + "end_sec": null, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:17:50", + "end_time": "00:18:35.1", + "start_sec": 1070, + "end_sec": 1115.1, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:20:45", + "end_time": "00:21:58", + "start_sec": 1245, + "end_sec": 1318, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:22:12", + "end_time": "00:22:58", + "start_sec": 1332, + "end_sec": 1378, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0001_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dUn1ErACDws", + "youtube_id": "dUn1ErACDws", + "youtube_title": "Graffiti Letters Economic Roller Style", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 2607, + "start_time": "00:29:12", + "end_time": "00:29:32", + "start_sec": 1752, + "end_sec": 1772, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=G37ODQ2yWnM", + "youtube_id": "G37ODQ2yWnM", + "youtube_title": "Noob or pro??? Follow 4 more letters!!!!", + "uploader": "Dale Color", + "channel_url": "https://www.youtube.com/channel/UChtMAE_1stT2uQjR-gGi9Yg", + "duration": 58, + "start_time": "00:00:07", + "end_time": "00:00:20", + "start_sec": 7, + "end_sec": 20, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=G37ODQ2yWnM", + "youtube_id": "G37ODQ2yWnM", + "youtube_title": "Noob or pro??? Follow 4 more letters!!!!", + "uploader": "Dale Color", + "channel_url": "https://www.youtube.com/channel/UChtMAE_1stT2uQjR-gGi9Yg", + "duration": 58, + "start_time": "00:00:26", + "end_time": "00:00:32", + "start_sec": 26, + "end_sec": 32, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Z60nas68BXU", + "youtube_id": "Z60nas68BXU", + "youtube_title": "Creéis que lo verá @Samsung ??", + "uploader": "Dale Color", + "channel_url": "https://www.youtube.com/channel/UChtMAE_1stT2uQjR-gGi9Yg", + "duration": 54, + "start_time": "00:00:02", + "end_time": "00:00:35", + "start_sec": 2, + "end_sec": 35, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=C8c5ZYk1Ark", + "youtube_id": "C8c5ZYk1Ark", + "youtube_title": "Graffiti Letters Economic Roller Style 2", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 4214, + "start_time": "00:00:45", + "end_time": "00:01:29", + "start_sec": 45, + "end_sec": 89, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0004_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=C8c5ZYk1Ark", + "youtube_id": "C8c5ZYk1Ark", + "youtube_title": "Graffiti Letters Economic Roller Style 2", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 4214, + "start_time": "00:02:19", + "end_time": "00:02:44", + "start_sec": 139, + "end_sec": 164, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0004_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=C8c5ZYk1Ark", + "youtube_id": "C8c5ZYk1Ark", + "youtube_title": "Graffiti Letters Economic Roller Style 2", + "uploader": "RESK 12", + "channel_url": "https://www.youtube.com/channel/UC6AhVv_zAitFu9FacGt_zrw", + "duration": 4214, + "start_time": "00:02:44", + "end_time": "00:03:09", + "start_sec": 164, + "end_sec": 189, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/graffiti/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=gri5ELjXi08", + "youtube_id": "gri5ELjXi08", + "youtube_title": "Graffiti trip pART31 Tbilisi train line 22", + "uploader": "TagMachine", + "channel_url": "https://www.youtube.com/channel/UC2O8UjohA50PY16J2O9311w", + "duration": 1043, + "start_time": "00:07:00", + "end_time": "00:07:14", + "start_sec": 420, + "end_sec": 434, + "category": "graffiti" + }, + { + "video_path": "videos/youtube/horse_racing/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=wIYD42DV3Ro", + "youtube_id": "wIYD42DV3Ro", + "youtube_title": "Kentucky Derby 2022 (FULL RACE) | NBC Sports", + "uploader": "NBC Sports", + "channel_url": "https://www.youtube.com/channel/UCqZQlzSHbVJrwrn5XvzrzcA", + "duration": 158, + "start_time": "00:00:00", + "end_time": "00:00:23", + "start_sec": 0, + "end_sec": 23, + "category": "horse_racing" + }, + { + "video_path": "videos/youtube/horse_racing/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=wIYD42DV3Ro", + "youtube_id": "wIYD42DV3Ro", + "youtube_title": "Kentucky Derby 2022 (FULL RACE) | NBC Sports", + "uploader": "NBC Sports", + "channel_url": "https://www.youtube.com/channel/UCqZQlzSHbVJrwrn5XvzrzcA", + "duration": 158, + "start_time": "00:01:00", + "end_time": "00:01:32", + "start_sec": 60, + "end_sec": 92, + "category": "horse_racing" + }, + { + "video_path": "videos/youtube/horse_racing/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=NqrDJmmh1AA", + "youtube_id": "NqrDJmmh1AA", + "youtube_title": "Kentucky Derby 2025 (FULL RACE) | NBC Sports", + "uploader": "NBC Sports", + "channel_url": "https://www.youtube.com/channel/UCqZQlzSHbVJrwrn5XvzrzcA", + "duration": 150, + "start_time": "00:00:00", + "end_time": "00:00:23", + "start_sec": 0, + "end_sec": 23, + "category": "horse_racing" + }, + { + "video_path": "videos/youtube/horse_racing/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=NqrDJmmh1AA", + "youtube_id": "NqrDJmmh1AA", + "youtube_title": "Kentucky Derby 2025 (FULL RACE) | NBC Sports", + "uploader": "NBC Sports", + "channel_url": "https://www.youtube.com/channel/UCqZQlzSHbVJrwrn5XvzrzcA", + "duration": 150, + "start_time": "00:01:15", + "end_time": "00:01:38", + "start_sec": 75, + "end_sec": 98, + "category": "horse_racing" + }, + { + "video_path": "videos/youtube/latte_art/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "uploader": "Dritan Alsela", + "channel_url": "https://www.youtube.com/channel/UCvT3R_ZzDkAB2NYDWWJVitw", + "duration": 211, + "start_time": "00:02:00", + "end_time": "00:02:40", + "start_sec": 120, + "end_sec": 160, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Z7e8tmcSrxg", + "youtube_id": "Z7e8tmcSrxg", + "youtube_title": "Barista Show", + "uploader": "Dritan Alsela", + "channel_url": "https://www.youtube.com/channel/UCvT3R_ZzDkAB2NYDWWJVitw", + "duration": 211, + "start_time": "00:02:40", + "end_time": "00:03:25", + "start_sec": 160, + "end_sec": 205, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "uploader": "노프라블엄 Noprobl_Um", + "channel_url": "https://www.youtube.com/channel/UC5p4fTVsY6a8UiUuppVFtZg", + "duration": 1656, + "start_time": "00:00:26.400", + "end_time": "00:01:17", + "start_sec": null, + "end_sec": 77, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "uploader": "노프라블엄 Noprobl_Um", + "channel_url": "https://www.youtube.com/channel/UC5p4fTVsY6a8UiUuppVFtZg", + "duration": 1656, + "start_time": "00:02:30.540", + "end_time": "00:03:26", + "start_sec": null, + "end_sec": 206, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "uploader": "노프라블엄 Noprobl_Um", + "channel_url": "https://www.youtube.com/channel/UC5p4fTVsY6a8UiUuppVFtZg", + "duration": 1656, + "start_time": "00:03:56.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=VJy4L5iAQNU", + "youtube_id": "VJy4L5iAQNU", + "youtube_title": "Amazing latte art with World Champion Umpaul signature Designs cafe vlog 월드라떼아트 챔피언 엄폴의 라떼아트 디자인들", + "uploader": "노프라블엄 Noprobl_Um", + "channel_url": "https://www.youtube.com/channel/UC5p4fTVsY6a8UiUuppVFtZg", + "duration": 1656, + "start_time": "00:07:04", + "end_time": "00:07:53", + "start_sec": 424, + "end_sec": 473, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "uploader": "Foodie Satisfaction", + "channel_url": "https://www.youtube.com/channel/UCZ-Kufk42qTmsygKVjC0gkQ", + "duration": 3595, + "start_time": "00:00:00", + "end_time": "00:00:53", + "start_sec": 0, + "end_sec": 53, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "uploader": "Foodie Satisfaction", + "channel_url": "https://www.youtube.com/channel/UCZ-Kufk42qTmsygKVjC0gkQ", + "duration": 3595, + "start_time": "00:02:27.500", + "end_time": "00:03:09", + "start_sec": null, + "end_sec": 189, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "uploader": "Foodie Satisfaction", + "channel_url": "https://www.youtube.com/channel/UCZ-Kufk42qTmsygKVjC0gkQ", + "duration": 3595, + "start_time": "00:03:08.650", + "end_time": "00:03:38", + "start_sec": null, + "end_sec": 218, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/latte_art/0003_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=c3ie2d7EX5M", + "youtube_id": "c3ie2d7EX5M", + "youtube_title": "Hour Of Pure Barista Latte Art Training Compilation! ~ Very Satisfying ~ MUST SEE!", + "uploader": "Foodie Satisfaction", + "channel_url": "https://www.youtube.com/channel/UCZ-Kufk42qTmsygKVjC0gkQ", + "duration": 3595, + "start_time": "00:03:38.900", + "end_time": "00:04:34", + "start_sec": null, + "end_sec": 274, + "category": "latte_art" + }, + { + "video_path": "videos/youtube/lego/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 601, + "start_time": "00:01:00", + "end_time": "00:01:54", + "start_sec": 60, + "end_sec": 114, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 601, + "start_time": "00:03:45", + "end_time": "00:04:05", + "start_sec": 225, + "end_sec": 245, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 601, + "start_time": "00:04:14", + "end_time": "00:04:34", + "start_sec": 254, + "end_sec": 274, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 601, + "start_time": "00:05:39", + "end_time": "00:05:55", + "start_sec": 339, + "end_sec": 355, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=ReWSULH-EQo", + "youtube_id": "ReWSULH-EQo", + "youtube_title": "LEGO TECHNIC 42207 Ferrari SF-24 F1 Car - Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 601, + "start_time": "00:07:57", + "end_time": "00:08:15", + "start_sec": 477, + "end_sec": 495, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=C-gak2TrheE", + "youtube_id": "C-gak2TrheE", + "youtube_title": "Easy DIY LEGO Bulldozer Instructions: Build for Your LEGO City", + "uploader": "Fayfaw", + "channel_url": "https://www.youtube.com/channel/UCIn4wQ-wUdeSppjIodKzLNQ", + "duration": 75, + "start_time": "00:00:13", + "end_time": "00:00:40", + "start_sec": 13, + "end_sec": 40, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=mvAfnSGK2GA", + "youtube_id": "mvAfnSGK2GA", + "youtube_title": "How to Build a LEGO Off-Road Car | Easy Step-by-Step Tutorial", + "uploader": "Fayfaw", + "channel_url": "https://www.youtube.com/channel/UCIn4wQ-wUdeSppjIodKzLNQ", + "duration": 72, + "start_time": "00:00:13", + "end_time": "00:00:38", + "start_sec": 13, + "end_sec": 38, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=_EtTIRBhA0k", + "youtube_id": "_EtTIRBhA0k", + "youtube_title": "Mini Lego Rescue Helicopter", + "uploader": "Fayfaw", + "channel_url": "https://www.youtube.com/channel/UCIn4wQ-wUdeSppjIodKzLNQ", + "duration": 189, + "start_time": "00:01:23", + "end_time": "00:01:52", + "start_sec": 83, + "end_sec": 112, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 814, + "start_time": "00:01:10", + "end_time": "00:01:34", + "start_sec": 70, + "end_sec": 94, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0005_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 814, + "start_time": "00:02:06", + "end_time": "00:02:18", + "start_sec": 126, + "end_sec": 138, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0005_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 814, + "start_time": "00:02:28", + "end_time": "00:03:04", + "start_sec": 148, + "end_sec": 184, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0005_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 814, + "start_time": "00:03:21", + "end_time": "00:03:32", + "start_sec": 201, + "end_sec": 212, + "category": "lego" + }, + { + "video_path": "videos/youtube/lego/0005_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=hQ6S2Nm-9hg", + "youtube_id": "hQ6S2Nm-9hg", + "youtube_title": "LEGO TECHNIC 42172 McLaren P1 Speed Build - Brick Builder", + "uploader": "Brick Builder", + "channel_url": "https://www.youtube.com/channel/UCWrYq18mdNMkU44WcWGqNtw", + "duration": 814, + "start_time": "00:04:05", + "end_time": "00:04:41", + "start_sec": 245, + "end_sec": 281, + "category": "lego" + }, + { + "video_path": "videos/youtube/matryoshka/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=9Go15bcEUUw", + "youtube_id": "9Go15bcEUUw", + "youtube_title": "Open nesting doll (Matryoshka)", + "uploader": "Matreshka Tanushka", + "channel_url": "https://www.youtube.com/channel/UCz4JMEPpShrwVnpLqCUujjQ", + "duration": 96, + "start_time": "00:00:09", + "end_time": "00:01:30", + "start_sec": 9, + "end_sec": 90, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/matryoshka/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=uuJk9shmUGw", + "youtube_id": "uuJk9shmUGw", + "youtube_title": "Opening a Russian matryoshka doll", + "uploader": "Matreshka Tanushka", + "channel_url": "https://www.youtube.com/channel/UCz4JMEPpShrwVnpLqCUujjQ", + "duration": 55, + "start_time": "00:00:00", + "end_time": "00:00:50", + "start_sec": 0, + "end_sec": 50, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/matryoshka/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=bhULVvRfFb4", + "youtube_id": "bhULVvRfFb4", + "youtube_title": "Smallest Matryoshka|Russian Nesting Dolls #shorts", + "uploader": "Suroy HK", + "channel_url": "https://www.youtube.com/channel/UCvFCXseh08iBUyGFwlyI9yw", + "duration": 15, + "start_time": "00:00:00", + "end_time": "00:00:14.977", + "start_sec": 0, + "end_sec": null, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/matryoshka/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=LfCvLn31s68", + "youtube_id": "LfCvLn31s68", + "youtube_title": "Вятская Матрёшка", + "uploader": "Matreshka Tanushka", + "channel_url": "https://www.youtube.com/channel/UCz4JMEPpShrwVnpLqCUujjQ", + "duration": 114, + "start_time": "00:00:07", + "end_time": "00:01:45", + "start_sec": 7, + "end_sec": 105, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/matryoshka/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=vSZ9ruf74k8", + "youtube_id": "vSZ9ruf74k8", + "youtube_title": "Opening a small Matryoshka \"Tradition\"", + "uploader": "Matreshka Tanushka", + "channel_url": "https://www.youtube.com/channel/UCz4JMEPpShrwVnpLqCUujjQ", + "duration": 87, + "start_time": "00:00:24", + "end_time": "00:01:04", + "start_sec": 24, + "end_sec": 64, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/matryoshka/0006_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=XRCE6m_x6yA", + "youtube_id": "XRCE6m_x6yA", + "youtube_title": "Матрёшка \"Зимние Забавы\"", + "uploader": "Matreshka Tanushka", + "channel_url": "https://www.youtube.com/channel/UCz4JMEPpShrwVnpLqCUujjQ", + "duration": 82, + "start_time": "00:00:03", + "end_time": "00:01:10", + "start_sec": 3, + "end_sec": 70, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/matryoshka/0007_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=RK5GT7Ku2Dg", + "youtube_id": "RK5GT7Ku2Dg", + "youtube_title": "Традиционная Матрёшка/Traditional Matryoshka", + "uploader": "Matreshka Tanushka", + "channel_url": "https://www.youtube.com/channel/UCz4JMEPpShrwVnpLqCUujjQ", + "duration": 68, + "start_time": "00:00:05", + "end_time": "00:01:05", + "start_sec": 5, + "end_sec": 65, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/matryoshka/0008_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=3RIjHlDfMy8", + "youtube_id": "3RIjHlDfMy8", + "youtube_title": "Matryoshka \"Tea Party\"", + "uploader": "Matreshka Tanushka", + "channel_url": "https://www.youtube.com/channel/UCz4JMEPpShrwVnpLqCUujjQ", + "duration": 71, + "start_time": "00:00:08", + "end_time": "00:01:05", + "start_sec": 8, + "end_sec": 65, + "category": "matryoshka" + }, + { + "video_path": "videos/youtube/memory_card/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "uploader": "Fix and Play", + "channel_url": "https://www.youtube.com/channel/UC4oFdg_7pdzKnBmwE9ZI-Jg", + "duration": 140, + "start_time": "00:00:28", + "end_time": "00:00:44", + "start_sec": 28, + "end_sec": 44, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "uploader": "Fix and Play", + "channel_url": "https://www.youtube.com/channel/UC4oFdg_7pdzKnBmwE9ZI-Jg", + "duration": 140, + "start_time": "00:00:28", + "end_time": "00:01:00", + "start_sec": 28, + "end_sec": 60, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "uploader": "Fix and Play", + "channel_url": "https://www.youtube.com/channel/UC4oFdg_7pdzKnBmwE9ZI-Jg", + "duration": 140, + "start_time": "00:00:28", + "end_time": "00:01:26", + "start_sec": 28, + "end_sec": 86, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "uploader": "Fix and Play", + "channel_url": "https://www.youtube.com/channel/UC4oFdg_7pdzKnBmwE9ZI-Jg", + "duration": 140, + "start_time": "00:01:07", + "end_time": "00:01:21", + "start_sec": 67, + "end_sec": 81, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=rrVHpx747KU", + "youtube_id": "rrVHpx747KU", + "youtube_title": "How to Play Memory Card Game - Games For Fun and Distance Learning | Kids and Family | Fix and Play", + "uploader": "Fix and Play", + "channel_url": "https://www.youtube.com/channel/UC4oFdg_7pdzKnBmwE9ZI-Jg", + "duration": 140, + "start_time": "00:01:07", + "end_time": "00:01:30", + "start_sec": 67, + "end_sec": 90, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=_UCpR0vmCvw", + "youtube_id": "_UCpR0vmCvw", + "youtube_title": "Just Desserts - Concentration", + "uploader": "ESSDACK", + "channel_url": "https://www.youtube.com/channel/UCdRupgxpdrpkRjI05HbYEJg", + "duration": 454, + "start_time": "00:02:00", + "end_time": "00:03:07.800", + "start_sec": 120, + "end_sec": null, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=_UCpR0vmCvw", + "youtube_id": "_UCpR0vmCvw", + "youtube_title": "Just Desserts - Concentration", + "uploader": "ESSDACK", + "channel_url": "https://www.youtube.com/channel/UCdRupgxpdrpkRjI05HbYEJg", + "duration": 454, + "start_time": "00:06:35", + "end_time": "00:07:34.345", + "start_sec": 395, + "end_sec": null, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=IRpUDwYLo7M", + "youtube_id": "IRpUDwYLo7M", + "youtube_title": "Classic Concentration gameplay (PC Game, 1988)", + "uploader": "Squakenet", + "channel_url": "https://www.youtube.com/channel/UCxd0EQG3ODJz0encVA1ABKg", + "duration": 409, + "start_time": "00:03:20", + "end_time": "00:03:38.500", + "start_sec": 200, + "end_sec": null, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/memory_card/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=IRpUDwYLo7M", + "youtube_id": "IRpUDwYLo7M", + "youtube_title": "Classic Concentration gameplay (PC Game, 1988)", + "uploader": "Squakenet", + "channel_url": "https://www.youtube.com/channel/UCxd0EQG3ODJz0encVA1ABKg", + "duration": 409, + "start_time": "00:03:20", + "end_time": "00:04:33", + "start_sec": 200, + "end_sec": 273, + "category": "memory_card" + }, + { + "video_path": "videos/youtube/neuro_tracker/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=cmFmfkuae2w", + "youtube_id": "cmFmfkuae2w", + "youtube_title": "NeuroTracker Tactical - Soccer", + "uploader": "NeuroTracker", + "channel_url": "https://www.youtube.com/channel/UCCZzahj1mogQ6F-ytWPuuQw", + "duration": 17, + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "category": "neuro_tracker" + }, + { + "video_path": "videos/youtube/neuro_tracker/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=HAg6ZumNOZY", + "youtube_id": "HAg6ZumNOZY", + "youtube_title": "NeuroTracker Tactical - Football", + "uploader": "NeuroTracker", + "channel_url": "https://www.youtube.com/channel/UCCZzahj1mogQ6F-ytWPuuQw", + "duration": 17, + "start_time": "00:00:00", + "end_time": "00:00:14", + "start_sec": 0, + "end_sec": 14, + "category": "neuro_tracker" + }, + { + "video_path": "videos/youtube/neuro_tracker/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=abH_HVCwmh0", + "youtube_id": "abH_HVCwmh0", + "youtube_title": "NeuroTracker Tactical - Baseball", + "uploader": "NeuroTracker", + "channel_url": "https://www.youtube.com/channel/UCCZzahj1mogQ6F-ytWPuuQw", + "duration": 17, + "start_time": "00:00:00", + "end_time": "00:00:12", + "start_sec": 0, + "end_sec": 12, + "category": "neuro_tracker" + }, + { + "video_path": "videos/youtube/order_packing/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=InbBex5katE", + "youtube_id": "InbBex5katE", + "youtube_title": "Packing order with me/ Selling homemade cookies/ Making money from home/ Silent vlog 🍃", + "uploader": "Slow living in Sweden ", + "channel_url": "https://www.youtube.com/channel/UCznG48NIEkkAQI7CYnzetWA", + "duration": 578, + "start_time": "00:01:43", + "end_time": "00:02:29", + "start_sec": 103, + "end_sec": 149, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 437, + "start_time": "00:00:00", + "end_time": "00:01:15", + "start_sec": 0, + "end_sec": 75, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 437, + "start_time": "00:01:25", + "end_time": "00:02:48", + "start_sec": 85, + "end_sec": 168, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 437, + "start_time": "00:02:57", + "end_time": "00:04:15", + "start_sec": 177, + "end_sec": 255, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 437, + "start_time": "00:04:58", + "end_time": "00:05:56", + "start_sec": 298, + "end_sec": 356, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0002_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Wqy6XnWhR24", + "youtube_id": "Wqy6XnWhR24", + "youtube_title": "Packing orders at Target | Asmr Soothing Videos | TikTok compilation", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 437, + "start_time": "00:05:58", + "end_time": "00:07:16.791", + "start_sec": 358, + "end_sec": null, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 504, + "start_time": "00:00:00", + "end_time": "00:00:57", + "start_sec": 0, + "end_sec": 57, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 504, + "start_time": "00:01:50", + "end_time": "00:02:32", + "start_sec": 110, + "end_sec": 152, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 504, + "start_time": "00:02:45", + "end_time": "00:04:05", + "start_sec": 165, + "end_sec": 245, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0003_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 504, + "start_time": "00:04:19", + "end_time": "00:05:28", + "start_sec": 259, + "end_sec": 328, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0003_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 504, + "start_time": "00:06:03", + "end_time": "00:07:05", + "start_sec": 363, + "end_sec": 425, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0003_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=pgZaEvstFwE", + "youtube_id": "pgZaEvstFwE", + "youtube_title": "POV of a Target Employee | HUGE Grocery Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 504, + "start_time": "00:07:13", + "end_time": "00:08:23.571", + "start_sec": 433, + "end_sec": null, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0004_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 355, + "start_time": "00:00:00", + "end_time": "00:00:52", + "start_sec": 0, + "end_sec": 52, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0004_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 355, + "start_time": "00:01:00", + "end_time": "00:02:06", + "start_sec": 60, + "end_sec": 126, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0004_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=-LGe8WSKc1Y", + "youtube_id": "-LGe8WSKc1Y", + "youtube_title": "POV of a Target Employee | HUGE Snack Order | TikTok Compilation | Packing boxes and orders 📦", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 355, + "start_time": "00:04:29", + "end_time": "00:05:40", + "start_sec": 269, + "end_sec": 340, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0005_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 475, + "start_time": "00:00:00", + "end_time": "00:01:18", + "start_sec": 0, + "end_sec": 78, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0005_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 475, + "start_time": "00:01:34", + "end_time": "00:02:25", + "start_sec": 94, + "end_sec": 145, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0005_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 475, + "start_time": "00:02:35", + "end_time": "00:03:35", + "start_sec": 155, + "end_sec": 215, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0005_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 475, + "start_time": "00:03:22", + "end_time": "00:04:30", + "start_sec": 202, + "end_sec": 270, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/order_packing/0005_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=0vu5Rc7tskA", + "youtube_id": "0vu5Rc7tskA", + "youtube_title": "POV of a Target Employee | Packing Orders and Boxes 📦 | Behind The Scenes", + "uploader": "Josh Is Packing", + "channel_url": "https://www.youtube.com/channel/UCecSZYj7eMFDBXNPaztLgGQ", + "duration": 475, + "start_time": "00:04:40", + "end_time": "00:05:50", + "start_sec": 280, + "end_sec": 350, + "category": "order_packing" + }, + { + "video_path": "videos/youtube/soccer/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "uploader": "Swedcoach1", + "channel_url": "https://www.youtube.com/channel/UC2VPB7IVYeSU5gTxfiNRvZA", + "duration": 186, + "start_time": "00:00:06", + "end_time": "00:00:36", + "start_sec": 6, + "end_sec": 36, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "uploader": "Swedcoach1", + "channel_url": "https://www.youtube.com/channel/UC2VPB7IVYeSU5gTxfiNRvZA", + "duration": 186, + "start_time": "00:01:00.700", + "end_time": "00:01:31", + "start_sec": null, + "end_sec": 91, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "uploader": "Swedcoach1", + "channel_url": "https://www.youtube.com/channel/UC2VPB7IVYeSU5gTxfiNRvZA", + "duration": 186, + "start_time": "00:01:42", + "end_time": "00:01:50", + "start_sec": 102, + "end_sec": 110, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "uploader": "Swedcoach1", + "channel_url": "https://www.youtube.com/channel/UC2VPB7IVYeSU5gTxfiNRvZA", + "duration": 186, + "start_time": "00:01:50.700", + "end_time": "00:02:06.500", + "start_sec": 110.7, + "end_sec": 126.5, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "uploader": "Swedcoach1", + "channel_url": "https://www.youtube.com/channel/UC2VPB7IVYeSU5gTxfiNRvZA", + "duration": 186, + "start_time": "00:02:07", + "end_time": "00:02:31", + "start_sec": 127, + "end_sec": 151, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0001_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=XgtnslkITmg", + "youtube_id": "XgtnslkITmg", + "youtube_title": "Real Madrid INTENSE 1v1 2v2 Attacking & Defending Soccer Training | Small Sided Game", + "uploader": "Swedcoach1", + "channel_url": "https://www.youtube.com/channel/UC2VPB7IVYeSU5gTxfiNRvZA", + "duration": 186, + "start_time": "00:02:31", + "end_time": "00:02:50", + "start_sec": 151, + "end_sec": 170, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:01:05", + "end_time": "00:01:25", + "start_sec": 65, + "end_sec": 85, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:02:57", + "end_time": "00:03:14", + "start_sec": 177, + "end_sec": 194, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:04:03", + "end_time": "00:04:22", + "start_sec": 243, + "end_sec": 262, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:04:35", + "end_time": "00:05:04", + "start_sec": 275, + "end_sec": 304, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:06:44", + "end_time": "00:07:35", + "start_sec": 404, + "end_sec": 455, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:07:50", + "end_time": "00:08:07", + "start_sec": 470, + "end_sec": 487, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:08:07", + "end_time": "00:08:18", + "start_sec": 487, + "end_sec": 498, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0002_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=sTMfO9Wz8bw", + "youtube_id": "sTMfO9Wz8bw", + "youtube_title": "High Level match with Korean Pro football players", + "uploader": "JFootballTV", + "channel_url": "https://www.youtube.com/channel/UCFHUP1pTq7mqrYUWyyICp-A", + "duration": 620, + "start_time": "00:08:23", + "end_time": "00:09:30", + "start_sec": 503, + "end_sec": 570, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "uploader": "7mlc", + "channel_url": "https://www.youtube.com/channel/UC9xRcqG8V6yNi6Hum92EoGg", + "duration": 660, + "start_time": "00:03:04", + "end_time": "00:03:38", + "start_sec": 184, + "end_sec": 218, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "uploader": "7mlc", + "channel_url": "https://www.youtube.com/channel/UC9xRcqG8V6yNi6Hum92EoGg", + "duration": 660, + "start_time": "00:03:45", + "end_time": "00:04:15", + "start_sec": 225, + "end_sec": 255, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "uploader": "7mlc", + "channel_url": "https://www.youtube.com/channel/UC9xRcqG8V6yNi6Hum92EoGg", + "duration": 660, + "start_time": "00:04:44", + "end_time": "00:05:22", + "start_sec": 284, + "end_sec": 322, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0003_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "uploader": "7mlc", + "channel_url": "https://www.youtube.com/channel/UC9xRcqG8V6yNi6Hum92EoGg", + "duration": 660, + "start_time": "00:06:00", + "end_time": "00:06:38", + "start_sec": 360, + "end_sec": 398, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0003_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "uploader": "7mlc", + "channel_url": "https://www.youtube.com/channel/UC9xRcqG8V6yNi6Hum92EoGg", + "duration": 660, + "start_time": "00:07:05", + "end_time": "00:07:56", + "start_sec": 425, + "end_sec": 476, + "category": "soccer" + }, + { + "video_path": "videos/youtube/soccer/0003_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=O4LmZHYpeME", + "youtube_id": "O4LmZHYpeME", + "youtube_title": "Striker Training Session | Movement & Finishing Training For Center Forwards", + "uploader": "7mlc", + "channel_url": "https://www.youtube.com/channel/UC9xRcqG8V6yNi6Hum92EoGg", + "duration": 660, + "start_time": "00:08:00", + "end_time": "00:08:32", + "start_sec": 480, + "end_sec": 512, + "category": "soccer" + }, + { + "video_path": "videos/youtube/sokoban/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=qf50IDCAFkU", + "youtube_id": "qf50IDCAFkU", + "youtube_title": "sokoban level 15 solution", + "uploader": "Yellow Purple", + "channel_url": "https://www.youtube.com/channel/UCNqYc-ojesF6AbXwiWdZbeg", + "duration": 47, + "start_time": "00:00:00", + "end_time": "00:00:23.01", + "start_sec": 0, + "end_sec": null, + "category": "sokoban" + }, + { + "video_path": "videos/youtube/sokoban/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=qf50IDCAFkU", + "youtube_id": "qf50IDCAFkU", + "youtube_title": "sokoban level 15 solution", + "uploader": "Yellow Purple", + "channel_url": "https://www.youtube.com/channel/UCNqYc-ojesF6AbXwiWdZbeg", + "duration": 47, + "start_time": "00:00:23", + "end_time": "00:00:43.8", + "start_sec": 23, + "end_sec": null, + "category": "sokoban" + }, + { + "video_path": "videos/youtube/sokoban/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "uploader": "Duy Tùng Nguyễn", + "channel_url": "https://www.youtube.com/channel/UCMGVRSUSk-A_W5t1M1S2Apg", + "duration": 123, + "start_time": "00:00:00", + "end_time": "00:01:01.485", + "start_sec": 0, + "end_sec": null, + "category": "sokoban" + }, + { + "video_path": "videos/youtube/sokoban/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=WBLuNtq84ps", + "youtube_id": "WBLuNtq84ps", + "youtube_title": "Sokoban solution level 15", + "uploader": "Duy Tùng Nguyễn", + "channel_url": "https://www.youtube.com/channel/UCMGVRSUSk-A_W5t1M1S2Apg", + "duration": 123, + "start_time": "00:01:01.485", + "end_time": "00:02:02.97", + "start_sec": null, + "end_sec": null, + "category": "sokoban" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:00", + "end_time": "00:00:09", + "start_sec": 0, + "end_sec": 9, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:01:15", + "end_time": "00:01:20", + "start_sec": 75, + "end_sec": 80, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:11", + "end_time": "00:00:15", + "start_sec": 11, + "end_sec": 15, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:17", + "end_time": "00:00:27", + "start_sec": 17, + "end_sec": 27, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:29", + "end_time": "00:00:34", + "start_sec": 29, + "end_sec": 34, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:36", + "end_time": "00:00:40", + "start_sec": 36, + "end_sec": 40, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:41", + "end_time": "00:00:49", + "start_sec": 41, + "end_sec": 49, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:51", + "end_time": "00:00:56", + "start_sec": 51, + "end_sec": 56, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:00:57", + "end_time": "00:01:04", + "start_sec": 57, + "end_sec": 64, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0001_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=dqgupXx-P5I", + "youtube_id": "dqgupXx-P5I", + "youtube_title": "Csaba Andras vs Ivor Ban | MS Final | WTT Feeder Cappadocia II 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 439, + "start_time": "00:01:06", + "end_time": "00:01:13", + "start_sec": 66, + "end_sec": 73, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:00:00", + "end_time": "00:00:05", + "start_sec": 0, + "end_sec": 5, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:01:35", + "end_time": "00:01:40", + "start_sec": 95, + "end_sec": 100, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:00:07", + "end_time": "00:00:12", + "start_sec": 7, + "end_sec": 12, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:00:14", + "end_time": "00:00:18", + "start_sec": 14, + "end_sec": 18, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:00:21", + "end_time": "00:00:24", + "start_sec": 21, + "end_sec": 24, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:01:02", + "end_time": "00:01:06", + "start_sec": 62, + "end_sec": 66, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:01:08", + "end_time": "00:01:12", + "start_sec": 68, + "end_sec": 72, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:01:16", + "end_time": "00:01:19", + "start_sec": 76, + "end_sec": 79, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:01:22", + "end_time": "00:01:28", + "start_sec": 82, + "end_sec": 88, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0002_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=t_zHJw-d7aw", + "youtube_id": "t_zHJw-d7aw", + "youtube_title": "Li/Yao vs Meissner/Lee | XD R16 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 530, + "start_time": "00:01:30", + "end_time": "00:01:34.100", + "start_sec": 90, + "end_sec": 94.1, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:00:00", + "end_time": "00:00:05", + "start_sec": 0, + "end_sec": 5, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:01:57", + "end_time": "00:02:00", + "start_sec": 117, + "end_sec": 120, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:00:07", + "end_time": "00:00:10", + "start_sec": 7, + "end_sec": 10, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:00:12", + "end_time": "00:00:16", + "start_sec": 12, + "end_sec": 16, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:00:18", + "end_time": "00:00:25", + "start_sec": 18, + "end_sec": 25, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:00:32", + "end_time": "00:00:37", + "start_sec": 32, + "end_sec": 37, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:00:39", + "end_time": "00:00:47", + "start_sec": 39, + "end_sec": 47, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:00:49", + "end_time": "00:00:54", + "start_sec": 49, + "end_sec": 54, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:01:32", + "end_time": "00:01:39", + "start_sec": 92, + "end_sec": 99, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/table_tennis/0003_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=SA5G0Bf_Kh8", + "youtube_id": "SA5G0Bf_Kh8", + "youtube_title": "Wong Qi Shen vs Yuhi Sakai | MS R32 | #WTTTaiyuan 2026", + "uploader": "World Table Tennis", + "channel_url": "https://www.youtube.com/channel/UC9ckyA_A3MfXUa0ttxMoIZw", + "duration": 354, + "start_time": "00:01:41", + "end_time": "00:01:48", + "start_sec": 101, + "end_sec": 108, + "category": "table_tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:07:24", + "end_time": "00:08:02", + "start_sec": 444, + "end_sec": 482, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:00:00", + "end_time": "00:00:29.500", + "start_sec": 0, + "end_sec": null, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:00:29.500", + "end_time": "00:01:13", + "start_sec": null, + "end_sec": 73, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:01:15", + "end_time": "00:02:02", + "start_sec": 75, + "end_sec": 122, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:02:03", + "end_time": "00:02:55", + "start_sec": 123, + "end_sec": 175, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:03:32", + "end_time": "00:04:05", + "start_sec": 212, + "end_sec": 245, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:04:11.500", + "end_time": "00:04:51", + "start_sec": null, + "end_sec": 291, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:05:34", + "end_time": "00:06:17", + "start_sec": 334, + "end_sec": 377, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:06:18", + "end_time": "00:06:45", + "start_sec": 378, + "end_sec": 405, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0001_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=GG1tj8Q9Izo", + "youtube_id": "GG1tj8Q9Izo", + "youtube_title": "De Minaur, Norrie, Jodar Headline | Barcelona 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 727, + "start_time": "00:06:46.500", + "end_time": "00:07:23", + "start_sec": null, + "end_sec": 443, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:07:06", + "end_time": "00:07:49", + "start_sec": 426, + "end_sec": 469, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:00:00", + "end_time": "00:00:38", + "start_sec": 0, + "end_sec": 38, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:00:40", + "end_time": "00:01:21.033", + "start_sec": 40, + "end_sec": 81.033, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:01:22", + "end_time": "00:02:08", + "start_sec": 82, + "end_sec": 128, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:02:10", + "end_time": "00:02:52.033", + "start_sec": 130, + "end_sec": 172.033, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:03:06", + "end_time": "00:03:44", + "start_sec": 186, + "end_sec": 224, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:03:45", + "end_time": "00:04:23.033", + "start_sec": 225, + "end_sec": 263.033, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:04:24", + "end_time": "00:05:01", + "start_sec": 264, + "end_sec": 301, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:05:01", + "end_time": "00:05:45.033", + "start_sec": 301, + "end_sec": 345.033, + "category": "tennis" + }, + { + "video_path": "videos/youtube/tennis/0002_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=zR6PXdor7qI", + "youtube_id": "zR6PXdor7qI", + "youtube_title": "Shelton vs Blockx, Fonseca Takes On Rinderknech & Many More | Munich 2026 Day 3 Highlights", + "uploader": "Tennis TV", + "channel_url": "https://www.youtube.com/channel/UCbcxFkd6B9xUU54InHv4Tig", + "duration": 730, + "start_time": "00:06:22", + "end_time": "00:07:03", + "start_sec": 382, + "end_sec": 423, + "category": "tennis" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:00:17", + "end_time": "00:00:36", + "start_sec": 17, + "end_sec": 36, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:05:25", + "end_time": "00:05:55.067", + "start_sec": 325, + "end_sec": 355.067, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:00:40", + "end_time": "00:01:00", + "start_sec": 40, + "end_sec": 60, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:01:04", + "end_time": "00:01:25.067", + "start_sec": 64, + "end_sec": 85.067, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:01:39", + "end_time": "00:02:00.067", + "start_sec": 99, + "end_sec": 120.067, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:02:05", + "end_time": "00:02:18", + "start_sec": 125, + "end_sec": 138, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:02:21", + "end_time": "00:02:46", + "start_sec": 141, + "end_sec": 166, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:02:55", + "end_time": "00:03:21", + "start_sec": 175, + "end_sec": 201, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:04:52", + "end_time": "00:05:07.067", + "start_sec": 292, + "end_sec": 307.067, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0001_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=I-r8MxcityM", + "youtube_id": "I-r8MxcityM", + "youtube_title": "USA 🇺🇸 vs. Japan 🇯🇵 - Highlights | Week 3 | Men's VNL 2025", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 607, + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt1.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:00:23", + "end_time": "00:00:39.033", + "start_sec": 23, + "end_sec": 39.033, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt10.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:05:52", + "end_time": "00:06:00", + "start_sec": 352, + "end_sec": 360, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt2.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:00:41", + "end_time": "00:01:01", + "start_sec": 41, + "end_sec": 61, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt3.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:01:26", + "end_time": "00:01:49", + "start_sec": 86, + "end_sec": 109, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt4.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:02:14", + "end_time": "00:02:36", + "start_sec": 134, + "end_sec": 156, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt5.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:03:54", + "end_time": "00:04:05", + "start_sec": 234, + "end_sec": 245, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt6.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:04:08", + "end_time": "00:04:18", + "start_sec": 248, + "end_sec": 258, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt7.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:04:53", + "end_time": "00:05:01", + "start_sec": 293, + "end_sec": 301, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt8.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:05:08", + "end_time": "00:05:22", + "start_sec": 308, + "end_sec": 322, + "category": "volleyball" + }, + { + "video_path": "videos/youtube/volleyball/0002_pt9.mp4", + "youtube_url": "https://www.youtube.com/watch?v=Zn19Cgrqlqw", + "youtube_id": "Zn19Cgrqlqw", + "youtube_title": "🇩🇪 GER vs. 🇯🇵 JPN - Highlights | Week 2 | Men's VNL 2024", + "uploader": "Volleyball World", + "channel_url": "https://www.youtube.com/channel/UCNMg6XDhRZI2QzL4pWOvP_w", + "duration": 642, + "start_time": "00:05:35", + "end_time": "00:05:47", + "start_sec": 335, + "end_sec": 347, + "category": "volleyball" + } + ] +} diff --git a/youtube_resolutions.json b/youtube_resolutions.json new file mode 100644 index 0000000000000000000000000000000000000000..2dc9bf9aecb3d10c0a4d6e9375c58312369ca1ed --- /dev/null +++ b/youtube_resolutions.json @@ -0,0 +1,1700 @@ +{ + "videos/youtube/basketball/0001_pt1.mp4": { + "duration": 62.062, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt10.mp4": { + "duration": 55.055, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt2.mp4": { + "duration": 54.2208, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt3.mp4": { + "duration": 64.064, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt4.mp4": { + "duration": 60.0266, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt5.mp4": { + "duration": 60.193, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt6.mp4": { + "duration": 50.1501, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt7.mp4": { + "duration": 48.081, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt8.mp4": { + "duration": 49.0824, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0001_pt9.mp4": { + "duration": 54.1207, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt1.mp4": { + "duration": 65.065, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt10.mp4": { + "duration": 55.055, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt2.mp4": { + "duration": 45.045, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt3.mp4": { + "duration": 58.0914, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt4.mp4": { + "duration": 64.03, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt5.mp4": { + "duration": 48.048, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt6.mp4": { + "duration": 64.097, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt7.mp4": { + "duration": 55.0217, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt8.mp4": { + "duration": 52.118, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0002_pt9.mp4": { + "duration": 52.0187, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt1.mp4": { + "duration": 57.057, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt10.mp4": { + "duration": 44.0107, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt2.mp4": { + "duration": 57.09, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt3.mp4": { + "duration": 60.093, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt4.mp4": { + "duration": 70.0367, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt5.mp4": { + "duration": 56.0227, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt6.mp4": { + "duration": 64.0307, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt7.mp4": { + "duration": 55.0217, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt8.mp4": { + "duration": 56.0894, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/basketball/0003_pt9.mp4": { + "duration": 52.085, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/bouldering/0001_pt1.mp4": { + "duration": 30.2667, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0002_pt1.mp4": { + "duration": 25.3, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0003_pt1.mp4": { + "duration": 18.7667, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0004_pt1.mp4": { + "duration": 22.9896, + "fps": 29.97, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0005_pt1.mp4": { + "duration": 34.5187, + "fps": 24.016, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0006_pt1.mp4": { + "duration": 17.8667, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0007_pt1.mp4": { + "duration": 34.4667, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0008_pt1.mp4": { + "duration": 32.9329, + "fps": 29.97, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0009_pt1.mp4": { + "duration": 38.9723, + "fps": 29.97, + "height": 640, + "width": 360 + }, + "videos/youtube/bouldering/0010_pt1.mp4": { + "duration": 25.7925, + "fps": 29.97, + "height": 640, + "width": 360 + }, + "videos/youtube/boxing/0001_pt1.mp4": { + "duration": 12.012, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0001_pt2.mp4": { + "duration": 11.0444, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0001_pt3.mp4": { + "duration": 17.0504, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0001_pt4.mp4": { + "duration": 10.01, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0001_pt5.mp4": { + "duration": 16.0494, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0002_pt1.mp4": { + "duration": 15.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0002_pt2.mp4": { + "duration": 15.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0002_pt3.mp4": { + "duration": 16.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0002_pt4.mp4": { + "duration": 9.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0003_pt1.mp4": { + "duration": 19.0219, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0003_pt2.mp4": { + "duration": 15.015, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0003_pt3.mp4": { + "duration": 12.012, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0003_pt4.mp4": { + "duration": 15.027, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0004_pt1.mp4": { + "duration": 28.028, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0004_pt2.mp4": { + "duration": 14.014, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0004_pt3.mp4": { + "duration": 11.011, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0005_pt1.mp4": { + "duration": 16.0667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0005_pt2.mp4": { + "duration": 9.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/boxing/0005_pt3.mp4": { + "duration": 15.1, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0001_pt1.mp4": { + "duration": 11.044, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0002_pt1.mp4": { + "duration": 14.0474, + "fps": 29.97, + "height": 640, + "width": 360 + }, + "videos/youtube/carousel/0003_pt1.mp4": { + "duration": 56.056, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0003_pt2.mp4": { + "duration": 60.06, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0004_pt1.mp4": { + "duration": 60.0601, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0004_pt2.mp4": { + "duration": 60.093, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0005_pt1.mp4": { + "duration": 11.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0005_pt2.mp4": { + "duration": 12.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/carousel/0006_pt1.mp4": { + "duration": 60.1267, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0001_pt1.mp4": { + "duration": 60.16, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0001_pt2.mp4": { + "duration": 38.12, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0001_pt3.mp4": { + "duration": 60.16, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0002_pt1.mp4": { + "duration": 50.2, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0002_pt2.mp4": { + "duration": 70.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0002_pt3.mp4": { + "duration": 62.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0003_pt1.mp4": { + "duration": 40.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0003_pt2.mp4": { + "duration": 50.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0003_pt3.mp4": { + "duration": 40.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0004_pt1.mp4": { + "duration": 36.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/coffee/0004_pt2.mp4": { + "duration": 45.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cooking/0001_pt1.mp4": { + "duration": 10.012, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/cooking/0001_pt2.mp4": { + "duration": 10.01, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/cooking/0002_pt1.mp4": { + "duration": 5.003, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/cooking/0002_pt2.mp4": { + "duration": 5.0046, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/cooking/0006_pt1.mp4": { + "duration": 28.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cooking/0006_pt2.mp4": { + "duration": 36.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cooking/0006_pt3.mp4": { + "duration": 8.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0001_pt1.mp4": { + "duration": 63.9667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0001_pt2.mp4": { + "duration": 12.1, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0001_pt3.mp4": { + "duration": 12.0667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0002_pt1.mp4": { + "duration": 14.0974, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0002_pt2.mp4": { + "duration": 14.097, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0002_pt3.mp4": { + "duration": 8.091, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0003_pt1.mp4": { + "duration": 21.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0003_pt2.mp4": { + "duration": 38.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0003_pt3.mp4": { + "duration": 16.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0003_pt4.mp4": { + "duration": 12.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0004_pt1.mp4": { + "duration": 43.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0004_pt2.mp4": { + "duration": 35.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0004_pt3.mp4": { + "duration": 22.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0005_pt1.mp4": { + "duration": 10.033, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0005_pt2.mp4": { + "duration": 22.002, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/cube/0005_pt3.mp4": { + "duration": 56.0269, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/eating_contest/0001_pt1.mp4": { + "duration": 50.0, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/eating_contest/0002_pt1.mp4": { + "duration": 37.0704, + "fps": 29.97, + "height": 360, + "width": 360 + }, + "videos/youtube/eating_contest/0002_pt2.mp4": { + "duration": 36.136, + "fps": 29.97, + "height": 360, + "width": 360 + }, + "videos/youtube/eating_contest/0002_pt3.mp4": { + "duration": 41.0744, + "fps": 29.97, + "height": 360, + "width": 360 + }, + "videos/youtube/graffiti/0001_pt1.mp4": { + "duration": 21.021, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt2.mp4": { + "duration": 12.0954, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt3.mp4": { + "duration": 13.0964, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt4.mp4": { + "duration": 14.0557, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt5.mp4": { + "duration": 47.6309, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt6.mp4": { + "duration": 45.0867, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt7.mp4": { + "duration": 73.114, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt8.mp4": { + "duration": 46.046, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0001_pt9.mp4": { + "duration": 20.0617, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0002_pt1.mp4": { + "duration": 13.0, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/graffiti/0002_pt2.mp4": { + "duration": 6.0, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/graffiti/0003_pt1.mp4": { + "duration": 33.0, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/graffiti/0004_pt1.mp4": { + "duration": 44.085, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0004_pt2.mp4": { + "duration": 25.15, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0004_pt3.mp4": { + "duration": 25.025, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/graffiti/0005_pt1.mp4": { + "duration": 14.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/horse_racing/0001_pt1.mp4": { + "duration": 23.0564, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/horse_racing/0001_pt2.mp4": { + "duration": 32.032, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/horse_racing/0002_pt1.mp4": { + "duration": 23.0564, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/horse_racing/0002_pt2.mp4": { + "duration": 23.089, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0001_pt1.mp4": { + "duration": 40.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0001_pt2.mp4": { + "duration": 45.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0002_pt1.mp4": { + "duration": 50.6, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0002_pt2.mp4": { + "duration": 55.46, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0002_pt3.mp4": { + "duration": 54.5, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0002_pt4.mp4": { + "duration": 49.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0003_pt1.mp4": { + "duration": 53.053, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0003_pt2.mp4": { + "duration": 41.5832, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0003_pt3.mp4": { + "duration": 29.362, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/latte_art/0003_pt4.mp4": { + "duration": 55.1384, + "fps": 23.976, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0001_pt1.mp4": { + "duration": 54.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0001_pt2.mp4": { + "duration": 20.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0001_pt3.mp4": { + "duration": 20.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0001_pt4.mp4": { + "duration": 16.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0001_pt5.mp4": { + "duration": 18.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0002_pt1.mp4": { + "duration": 27.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0003_pt1.mp4": { + "duration": 25.066, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0004_pt1.mp4": { + "duration": 29.033, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0005_pt1.mp4": { + "duration": 24.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0005_pt2.mp4": { + "duration": 12.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0005_pt3.mp4": { + "duration": 36.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0005_pt4.mp4": { + "duration": 11.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/lego/0005_pt5.mp4": { + "duration": 36.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/matryoshka/0001_pt1.mp4": { + "duration": 81.0667, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/matryoshka/0002_pt1.mp4": { + "duration": 50.0333, + "fps": 30.0, + "height": 360, + "width": 202 + }, + "videos/youtube/matryoshka/0003_pt1.mp4": { + "duration": 14.9667, + "fps": 29.9332, + "height": 360, + "width": 202 + }, + "videos/youtube/matryoshka/0004_pt1.mp4": { + "duration": 98.166, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/matryoshka/0005_pt1.mp4": { + "duration": 40.033, + "fps": 30.0, + "height": 360, + "width": 202 + }, + "videos/youtube/matryoshka/0006_pt1.mp4": { + "duration": 67.0667, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/matryoshka/0007_pt1.mp4": { + "duration": 60.0333, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/matryoshka/0008_pt1.mp4": { + "duration": 57.0333, + "fps": 30.0, + "height": 640, + "width": 360 + }, + "videos/youtube/memory_card/0001_pt1.mp4": { + "duration": 15.9667, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/memory_card/0001_pt2.mp4": { + "duration": 31.9667, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/memory_card/0001_pt3.mp4": { + "duration": 57.9667, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/memory_card/0001_pt4.mp4": { + "duration": 14.0, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/memory_card/0001_pt5.mp4": { + "duration": 23.0, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/memory_card/0002_pt1.mp4": { + "duration": 67.7667, + "fps": 30.0, + "height": 720, + "width": 1280 + }, + "videos/youtube/memory_card/0002_pt2.mp4": { + "duration": 59.2667, + "fps": 30.0, + "height": 720, + "width": 1280 + }, + "videos/youtube/memory_card/0003_pt1.mp4": { + "duration": 18.5, + "fps": 30.0, + "height": 480, + "width": 854 + }, + "videos/youtube/memory_card/0003_pt2.mp4": { + "duration": 73.0, + "fps": 30.0, + "height": 480, + "width": 854 + }, + "videos/youtube/neuro_tracker/0001_pt1.mp4": { + "duration": 12.0333, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/neuro_tracker/0002_pt1.mp4": { + "duration": 14.0333, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/neuro_tracker/0003_pt1.mp4": { + "duration": 12.0333, + "fps": 30.0, + "height": 1080, + "width": 1920 + }, + "videos/youtube/order_packing/0001_pt1.mp4": { + "duration": 46.0, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0002_pt1.mp4": { + "duration": 75.0416, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0002_pt2.mp4": { + "duration": 83.016, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0002_pt3.mp4": { + "duration": 78.044, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0002_pt4.mp4": { + "duration": 58.058, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0002_pt5.mp4": { + "duration": 78.745, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0003_pt1.mp4": { + "duration": 57.057, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0003_pt2.mp4": { + "duration": 42.242, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0003_pt3.mp4": { + "duration": 80.08, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0003_pt4.mp4": { + "duration": 69.0356, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0003_pt5.mp4": { + "duration": 62.0286, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0003_pt6.mp4": { + "duration": 70.537, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0004_pt1.mp4": { + "duration": 52.052, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0004_pt2.mp4": { + "duration": 66.1327, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0004_pt3.mp4": { + "duration": 71.0376, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0005_pt1.mp4": { + "duration": 78.0446, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0005_pt2.mp4": { + "duration": 51.1511, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0005_pt3.mp4": { + "duration": 60.026, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0005_pt4.mp4": { + "duration": 68.168, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/order_packing/0005_pt5.mp4": { + "duration": 70.103, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0001_pt1.mp4": { + "duration": 30.096, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0001_pt2.mp4": { + "duration": 30.363, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0001_pt3.mp4": { + "duration": 8.041, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0001_pt4.mp4": { + "duration": 15.849, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0001_pt5.mp4": { + "duration": 24.057, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0001_pt6.mp4": { + "duration": 19.0524, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt1.mp4": { + "duration": 20.018, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt2.mp4": { + "duration": 17.027, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt3.mp4": { + "duration": 19.028, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt4.mp4": { + "duration": 29.004, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt5.mp4": { + "duration": 51.021, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt6.mp4": { + "duration": 17.02, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt7.mp4": { + "duration": 11.031, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0002_pt8.mp4": { + "duration": 67.003, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0003_pt1.mp4": { + "duration": 34.0674, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0003_pt2.mp4": { + "duration": 30.03, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0003_pt3.mp4": { + "duration": 38.038, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0003_pt4.mp4": { + "duration": 38.0714, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0003_pt5.mp4": { + "duration": 51.051, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/soccer/0003_pt6.mp4": { + "duration": 32.032, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/sokoban/0001_pt1.mp4": { + "duration": 23.0109, + "fps": 29.725, + "height": 720, + "width": 1280 + }, + "videos/youtube/sokoban/0001_pt2.mp4": { + "duration": 20.8242, + "fps": 29.725, + "height": 720, + "width": 1280 + }, + "videos/youtube/sokoban/0002_pt1.mp4": { + "duration": 61.4889, + "fps": 45.0, + "height": 1280, + "width": 720 + }, + "videos/youtube/sokoban/0002_pt2.mp4": { + "duration": 61.4222, + "fps": 45.0, + "height": 1280, + "width": 720 + }, + "videos/youtube/table_tennis/0001_pt1.mp4": { + "duration": 9.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt10.mp4": { + "duration": 5.2, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt2.mp4": { + "duration": 4.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt3.mp4": { + "duration": 10.2, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt4.mp4": { + "duration": 5.1667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt5.mp4": { + "duration": 4.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt6.mp4": { + "duration": 8.1667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt7.mp4": { + "duration": 5.1667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt8.mp4": { + "duration": 7.0667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0001_pt9.mp4": { + "duration": 7.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt1.mp4": { + "duration": 5.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt10.mp4": { + "duration": 5.0667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt2.mp4": { + "duration": 5.1667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt3.mp4": { + "duration": 4.0667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt4.mp4": { + "duration": 3.1667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt5.mp4": { + "duration": 4.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt6.mp4": { + "duration": 4.1333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt7.mp4": { + "duration": 3.1, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt8.mp4": { + "duration": 6.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0002_pt9.mp4": { + "duration": 4.1, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt1.mp4": { + "duration": 5.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt10.mp4": { + "duration": 3.1333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt2.mp4": { + "duration": 3.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt3.mp4": { + "duration": 4.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt4.mp4": { + "duration": 7.2, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt5.mp4": { + "duration": 5.1667, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt6.mp4": { + "duration": 8.2, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt7.mp4": { + "duration": 5.1333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt8.mp4": { + "duration": 7.0333, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/table_tennis/0003_pt9.mp4": { + "duration": 7.1, + "fps": 30.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt1.mp4": { + "duration": 29.52, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt10.mp4": { + "duration": 38.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt2.mp4": { + "duration": 43.5, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt3.mp4": { + "duration": 47.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt4.mp4": { + "duration": 52.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt5.mp4": { + "duration": 33.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt6.mp4": { + "duration": 39.5, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt7.mp4": { + "duration": 43.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt8.mp4": { + "duration": 27.0, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0001_pt9.mp4": { + "duration": 36.5, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt1.mp4": { + "duration": 38.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt10.mp4": { + "duration": 43.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt2.mp4": { + "duration": 41.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt3.mp4": { + "duration": 46.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt4.mp4": { + "duration": 42.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt5.mp4": { + "duration": 38.24, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt6.mp4": { + "duration": 38.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt7.mp4": { + "duration": 37.12, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt8.mp4": { + "duration": 44.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/tennis/0002_pt9.mp4": { + "duration": 41.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt1.mp4": { + "duration": 19.019, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt10.mp4": { + "duration": 30.0634, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt2.mp4": { + "duration": 20.0534, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt3.mp4": { + "duration": 21.0544, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt4.mp4": { + "duration": 21.054, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt5.mp4": { + "duration": 13.013, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt6.mp4": { + "duration": 25.0584, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt7.mp4": { + "duration": 26.0594, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt8.mp4": { + "duration": 15.048, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0001_pt9.mp4": { + "duration": 14.0807, + "fps": 29.97, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt1.mp4": { + "duration": 16.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt10.mp4": { + "duration": 8.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt2.mp4": { + "duration": 20.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt3.mp4": { + "duration": 23.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt4.mp4": { + "duration": 22.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt5.mp4": { + "duration": 11.08, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt6.mp4": { + "duration": 10.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt7.mp4": { + "duration": 8.12, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt8.mp4": { + "duration": 14.04, + "fps": 25.0, + "height": 360, + "width": 640 + }, + "videos/youtube/volleyball/0002_pt9.mp4": { + "duration": 12.08, + "fps": 25.0, + "height": 360, + "width": 640 + } +} \ No newline at end of file